├── .github ├── code_of_conduct.md └── workflows │ ├── github_test.yml │ ├── upload_pypi.yml │ └── upload_testpypi.yml ├── .gitignore ├── LICENSE ├── README.md ├── pyproject.toml ├── test ├── __init__.py ├── test_blocklist.txt ├── test_input.txt ├── test_input_with_tags.txt ├── test_ontology.owl ├── test_t2t.py └── test_templates.txt └── text2term ├── __init__.py ├── __main__.py ├── bioportal_mapper.py ├── mapper.py ├── onto_cache.py ├── onto_utils.py ├── preprocess.py ├── resources └── ontologies.csv ├── syntactic_mapper.py ├── t2t.py ├── tagged_term.py ├── term.py ├── term_collector.py ├── term_graph.py ├── term_graph_generator.py ├── term_mapping.py ├── tfidf_mapper.py └── zooma_mapper.py /.github/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/.github/code_of_conduct.md -------------------------------------------------------------------------------- /.github/workflows/github_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/.github/workflows/github_test.yml -------------------------------------------------------------------------------- /.github/workflows/upload_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/.github/workflows/upload_pypi.yml -------------------------------------------------------------------------------- /.github/workflows/upload_testpypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/.github/workflows/upload_testpypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_blocklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/test/test_blocklist.txt -------------------------------------------------------------------------------- /test/test_input.txt: -------------------------------------------------------------------------------- 1 | asthma 2 | acute bronchitis -------------------------------------------------------------------------------- /test/test_input_with_tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/test/test_input_with_tags.txt -------------------------------------------------------------------------------- /test/test_ontology.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/test/test_ontology.owl -------------------------------------------------------------------------------- /test/test_t2t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/test/test_t2t.py -------------------------------------------------------------------------------- /test/test_templates.txt: -------------------------------------------------------------------------------- 1 | (.*) [Nn][Oo][Ss] 2 | (.*) due to [A-z 0-9]+ -------------------------------------------------------------------------------- /text2term/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/text2term/__init__.py -------------------------------------------------------------------------------- /text2term/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/text2term/__main__.py -------------------------------------------------------------------------------- /text2term/bioportal_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/text2term/bioportal_mapper.py -------------------------------------------------------------------------------- /text2term/mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/text2term/mapper.py -------------------------------------------------------------------------------- /text2term/onto_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/text2term/onto_cache.py -------------------------------------------------------------------------------- /text2term/onto_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/text2term/onto_utils.py -------------------------------------------------------------------------------- /text2term/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/text2term/preprocess.py -------------------------------------------------------------------------------- /text2term/resources/ontologies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/text2term/resources/ontologies.csv -------------------------------------------------------------------------------- /text2term/syntactic_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/text2term/syntactic_mapper.py -------------------------------------------------------------------------------- /text2term/t2t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/text2term/t2t.py -------------------------------------------------------------------------------- /text2term/tagged_term.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/text2term/tagged_term.py -------------------------------------------------------------------------------- /text2term/term.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/text2term/term.py -------------------------------------------------------------------------------- /text2term/term_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/text2term/term_collector.py -------------------------------------------------------------------------------- /text2term/term_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/text2term/term_graph.py -------------------------------------------------------------------------------- /text2term/term_graph_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/text2term/term_graph_generator.py -------------------------------------------------------------------------------- /text2term/term_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/text2term/term_mapping.py -------------------------------------------------------------------------------- /text2term/tfidf_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/text2term/tfidf_mapper.py -------------------------------------------------------------------------------- /text2term/zooma_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsgoncalves/text2term/HEAD/text2term/zooma_mapper.py --------------------------------------------------------------------------------