├── .github └── workflows │ └── build.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── img ├── dark_openMINDS-logo.png ├── dark_openMINDS-logo.svg ├── light_openMINDS-logo.png └── light_openMINDS-logo.svg └── vocab ├── properties.json └── types.json /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumanBrainProject/openMINDS/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumanBrainProject/openMINDS/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumanBrainProject/openMINDS/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumanBrainProject/openMINDS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumanBrainProject/openMINDS/HEAD/README.md -------------------------------------------------------------------------------- /img/dark_openMINDS-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumanBrainProject/openMINDS/HEAD/img/dark_openMINDS-logo.png -------------------------------------------------------------------------------- /img/dark_openMINDS-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumanBrainProject/openMINDS/HEAD/img/dark_openMINDS-logo.svg -------------------------------------------------------------------------------- /img/light_openMINDS-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumanBrainProject/openMINDS/HEAD/img/light_openMINDS-logo.png -------------------------------------------------------------------------------- /img/light_openMINDS-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumanBrainProject/openMINDS/HEAD/img/light_openMINDS-logo.svg -------------------------------------------------------------------------------- /vocab/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumanBrainProject/openMINDS/HEAD/vocab/properties.json -------------------------------------------------------------------------------- /vocab/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumanBrainProject/openMINDS/HEAD/vocab/types.json --------------------------------------------------------------------------------