├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── Planteome_profile.jpg ├── README-po-editors.md ├── README.md ├── catalog-v001.xml ├── imports ├── ncbitaxon_import.obo ├── ncbitaxon_import.owl ├── ncbitaxon_terms.txt ├── ro_import.obo ├── ro_import.owl └── ro_terms.txt ├── mapping2po ├── FNAglossary2po.txt ├── cereal-growth2po-gramene.txt ├── oryza-dev2po-gramene.txt ├── oryza-growth2po-gramene.txt └── zea-growth2po-maizegdb.txt ├── plant-ontology-dev.txt ├── plant-ontology.obo ├── plant-ontology.obo.owl ├── plant-ontology.txt ├── po-release-#21-Oct-2015 ├── Creative_Commons_License.txt ├── README-po-release-#21-Oct-21015.md ├── plant-ontology-21.obo ├── plant-ontology-21.owl ├── plant-ontology-assert-basic.obo ├── plant-ontology-assert.obo ├── po-anatomy-assert-basic.obo ├── po-temporal-assert-basic.obo ├── translations │ ├── po_Japanese.txt │ ├── po_anatomy_Spanish.txt │ └── po_pae_terms_missing_translation-21.txt └── txt-format │ ├── plant_ontology_21.txt │ ├── po_anatomy_21.txt │ ├── po_synonyms_21.txt │ └── po_temporal_21.txt ├── po.obo ├── po.owl ├── run.sh ├── scripts-etc ├── OBO_SF_PO_to_GIT.csv ├── po_term_table.pl └── po_term_table_to_js.pl └── subsets └── po-basic.obo /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/Makefile -------------------------------------------------------------------------------- /Planteome_profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/Planteome_profile.jpg -------------------------------------------------------------------------------- /README-po-editors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/README-po-editors.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/README.md -------------------------------------------------------------------------------- /catalog-v001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/catalog-v001.xml -------------------------------------------------------------------------------- /imports/ncbitaxon_import.obo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/imports/ncbitaxon_import.obo -------------------------------------------------------------------------------- /imports/ncbitaxon_import.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/imports/ncbitaxon_import.owl -------------------------------------------------------------------------------- /imports/ncbitaxon_terms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/imports/ncbitaxon_terms.txt -------------------------------------------------------------------------------- /imports/ro_import.obo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/imports/ro_import.obo -------------------------------------------------------------------------------- /imports/ro_import.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/imports/ro_import.owl -------------------------------------------------------------------------------- /imports/ro_terms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/imports/ro_terms.txt -------------------------------------------------------------------------------- /mapping2po/FNAglossary2po.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/mapping2po/FNAglossary2po.txt -------------------------------------------------------------------------------- /mapping2po/cereal-growth2po-gramene.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/mapping2po/cereal-growth2po-gramene.txt -------------------------------------------------------------------------------- /mapping2po/oryza-dev2po-gramene.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/mapping2po/oryza-dev2po-gramene.txt -------------------------------------------------------------------------------- /mapping2po/oryza-growth2po-gramene.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/mapping2po/oryza-growth2po-gramene.txt -------------------------------------------------------------------------------- /mapping2po/zea-growth2po-maizegdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/mapping2po/zea-growth2po-maizegdb.txt -------------------------------------------------------------------------------- /plant-ontology-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/plant-ontology-dev.txt -------------------------------------------------------------------------------- /plant-ontology.obo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/plant-ontology.obo -------------------------------------------------------------------------------- /plant-ontology.obo.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/plant-ontology.obo.owl -------------------------------------------------------------------------------- /plant-ontology.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/plant-ontology.txt -------------------------------------------------------------------------------- /po-release-#21-Oct-2015/Creative_Commons_License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/po-release-#21-Oct-2015/Creative_Commons_License.txt -------------------------------------------------------------------------------- /po-release-#21-Oct-2015/README-po-release-#21-Oct-21015.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/po-release-#21-Oct-2015/README-po-release-#21-Oct-21015.md -------------------------------------------------------------------------------- /po-release-#21-Oct-2015/plant-ontology-21.obo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/po-release-#21-Oct-2015/plant-ontology-21.obo -------------------------------------------------------------------------------- /po-release-#21-Oct-2015/plant-ontology-21.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/po-release-#21-Oct-2015/plant-ontology-21.owl -------------------------------------------------------------------------------- /po-release-#21-Oct-2015/plant-ontology-assert-basic.obo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/po-release-#21-Oct-2015/plant-ontology-assert-basic.obo -------------------------------------------------------------------------------- /po-release-#21-Oct-2015/plant-ontology-assert.obo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/po-release-#21-Oct-2015/plant-ontology-assert.obo -------------------------------------------------------------------------------- /po-release-#21-Oct-2015/po-anatomy-assert-basic.obo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/po-release-#21-Oct-2015/po-anatomy-assert-basic.obo -------------------------------------------------------------------------------- /po-release-#21-Oct-2015/po-temporal-assert-basic.obo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/po-release-#21-Oct-2015/po-temporal-assert-basic.obo -------------------------------------------------------------------------------- /po-release-#21-Oct-2015/translations/po_Japanese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/po-release-#21-Oct-2015/translations/po_Japanese.txt -------------------------------------------------------------------------------- /po-release-#21-Oct-2015/translations/po_anatomy_Spanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/po-release-#21-Oct-2015/translations/po_anatomy_Spanish.txt -------------------------------------------------------------------------------- /po-release-#21-Oct-2015/translations/po_pae_terms_missing_translation-21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/po-release-#21-Oct-2015/translations/po_pae_terms_missing_translation-21.txt -------------------------------------------------------------------------------- /po-release-#21-Oct-2015/txt-format/plant_ontology_21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/po-release-#21-Oct-2015/txt-format/plant_ontology_21.txt -------------------------------------------------------------------------------- /po-release-#21-Oct-2015/txt-format/po_anatomy_21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/po-release-#21-Oct-2015/txt-format/po_anatomy_21.txt -------------------------------------------------------------------------------- /po-release-#21-Oct-2015/txt-format/po_synonyms_21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/po-release-#21-Oct-2015/txt-format/po_synonyms_21.txt -------------------------------------------------------------------------------- /po-release-#21-Oct-2015/txt-format/po_temporal_21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/po-release-#21-Oct-2015/txt-format/po_temporal_21.txt -------------------------------------------------------------------------------- /po.obo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/po.obo -------------------------------------------------------------------------------- /po.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/po.owl -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/run.sh -------------------------------------------------------------------------------- /scripts-etc/OBO_SF_PO_to_GIT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/scripts-etc/OBO_SF_PO_to_GIT.csv -------------------------------------------------------------------------------- /scripts-etc/po_term_table.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/scripts-etc/po_term_table.pl -------------------------------------------------------------------------------- /scripts-etc/po_term_table_to_js.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/scripts-etc/po_term_table_to_js.pl -------------------------------------------------------------------------------- /subsets/po-basic.obo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planteome/plant-ontology/HEAD/subsets/po-basic.obo --------------------------------------------------------------------------------