├── +dj ├── +config │ ├── load.m │ ├── restore.m │ ├── save.m │ ├── saveGlobal.m │ └── saveLocal.m ├── +internal │ ├── AutoPopulate.m │ ├── Declare.m │ ├── ExternalMapping.m │ ├── ExternalTable.m │ ├── GeneralRelvar.m │ ├── Header.m │ ├── Master.m │ ├── Settings.m │ ├── Table.m │ ├── TableAccessor.m │ ├── UserRelation.m │ ├── ask.m │ ├── fromCamelCase.m │ ├── hash.m │ ├── shorthash.m │ └── toCamelCase.m ├── +lib │ ├── DataHash.m │ ├── HMAC.m │ ├── getpass.m │ ├── isString.m │ ├── saveJSONfile.m │ └── startsWith.m ├── +store_plugins │ ├── File.m │ └── S3.m ├── AutoPopulate.m ├── BatchPopulate.m ├── Computed.m ├── Connection.m ├── ERD.m ├── Imported.m ├── Jobs.m ├── Lookup.m ├── Manual.m ├── Part.m ├── Relvar.m ├── Schema.m ├── Table.m ├── close.m ├── config.m ├── conn.m ├── createSchema.m ├── kill.m ├── kill_quick.m ├── new.m ├── reload.m ├── setPassword.m ├── setup.m ├── struct.m └── version.m ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md └── workflows │ ├── development.yaml │ └── publish-docs.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── LNX-docker-compose.yaml ├── README.md ├── docs ├── .docker │ ├── Dockerfile │ ├── apk_requirements.txt │ └── pip_requirements.txt ├── .markdownlint.yaml ├── README.md ├── cspell.json ├── docker-compose.yaml ├── mkdocs.yaml └── src │ ├── .overrides │ ├── .icons │ │ └── main │ │ │ └── company-logo.svg │ ├── assets │ │ ├── images │ │ │ └── company-logo-blue.png │ │ └── stylesheets │ │ │ └── extra.css │ └── partials │ │ └── nav.html │ ├── changelog.md │ ├── concepts │ └── existing-pipelines.md │ ├── getting-started │ └── index.md │ ├── images │ └── shapes_pipeline.svg │ ├── query-lang │ ├── common-commands.md │ ├── iteration.md │ └── operators.md │ ├── reproduce │ ├── make-method.md │ └── table-tiers.md │ └── tutorials.md ├── erd.m ├── local-docker-compose.yaml └── tests ├── Main.m ├── Prep.m ├── TestBlob.m ├── TestConfig.m ├── TestConnection.m ├── TestDeclaration.m ├── TestDelete.m ├── TestERD.m ├── TestExternalFile.m ├── TestExternalS3.m ├── TestFetch.m ├── TestPopulate.m ├── TestProjection.m ├── TestRelationalOperand.m ├── TestSchema.m ├── TestTls.m ├── TestUuid.m └── test_schemas ├── +Company ├── Duty.m ├── Employee.m └── Machine.m ├── +External ├── Dimension.m ├── Document.m └── Image.m ├── +Lab ├── ActiveSession.m ├── Rig.m ├── Session.m ├── SessionAnalysis.m └── Subject.m ├── +TestLab ├── Duty.m └── User.m ├── +University ├── A.m ├── Date.m ├── Float.m ├── Integer.m ├── Message.m ├── String.m └── Student.m ├── config.json ├── config_lite.json └── store_config.json /+dj/+config/load.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+config/load.m -------------------------------------------------------------------------------- /+dj/+config/restore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+config/restore.m -------------------------------------------------------------------------------- /+dj/+config/save.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+config/save.m -------------------------------------------------------------------------------- /+dj/+config/saveGlobal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+config/saveGlobal.m -------------------------------------------------------------------------------- /+dj/+config/saveLocal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+config/saveLocal.m -------------------------------------------------------------------------------- /+dj/+internal/AutoPopulate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+internal/AutoPopulate.m -------------------------------------------------------------------------------- /+dj/+internal/Declare.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+internal/Declare.m -------------------------------------------------------------------------------- /+dj/+internal/ExternalMapping.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+internal/ExternalMapping.m -------------------------------------------------------------------------------- /+dj/+internal/ExternalTable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+internal/ExternalTable.m -------------------------------------------------------------------------------- /+dj/+internal/GeneralRelvar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+internal/GeneralRelvar.m -------------------------------------------------------------------------------- /+dj/+internal/Header.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+internal/Header.m -------------------------------------------------------------------------------- /+dj/+internal/Master.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+internal/Master.m -------------------------------------------------------------------------------- /+dj/+internal/Settings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+internal/Settings.m -------------------------------------------------------------------------------- /+dj/+internal/Table.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+internal/Table.m -------------------------------------------------------------------------------- /+dj/+internal/TableAccessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+internal/TableAccessor.m -------------------------------------------------------------------------------- /+dj/+internal/UserRelation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+internal/UserRelation.m -------------------------------------------------------------------------------- /+dj/+internal/ask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+internal/ask.m -------------------------------------------------------------------------------- /+dj/+internal/fromCamelCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+internal/fromCamelCase.m -------------------------------------------------------------------------------- /+dj/+internal/hash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+internal/hash.m -------------------------------------------------------------------------------- /+dj/+internal/shorthash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+internal/shorthash.m -------------------------------------------------------------------------------- /+dj/+internal/toCamelCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+internal/toCamelCase.m -------------------------------------------------------------------------------- /+dj/+lib/DataHash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+lib/DataHash.m -------------------------------------------------------------------------------- /+dj/+lib/HMAC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+lib/HMAC.m -------------------------------------------------------------------------------- /+dj/+lib/getpass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+lib/getpass.m -------------------------------------------------------------------------------- /+dj/+lib/isString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+lib/isString.m -------------------------------------------------------------------------------- /+dj/+lib/saveJSONfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+lib/saveJSONfile.m -------------------------------------------------------------------------------- /+dj/+lib/startsWith.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+lib/startsWith.m -------------------------------------------------------------------------------- /+dj/+store_plugins/File.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+store_plugins/File.m -------------------------------------------------------------------------------- /+dj/+store_plugins/S3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/+store_plugins/S3.m -------------------------------------------------------------------------------- /+dj/AutoPopulate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/AutoPopulate.m -------------------------------------------------------------------------------- /+dj/BatchPopulate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/BatchPopulate.m -------------------------------------------------------------------------------- /+dj/Computed.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/Computed.m -------------------------------------------------------------------------------- /+dj/Connection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/Connection.m -------------------------------------------------------------------------------- /+dj/ERD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/ERD.m -------------------------------------------------------------------------------- /+dj/Imported.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/Imported.m -------------------------------------------------------------------------------- /+dj/Jobs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/Jobs.m -------------------------------------------------------------------------------- /+dj/Lookup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/Lookup.m -------------------------------------------------------------------------------- /+dj/Manual.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/Manual.m -------------------------------------------------------------------------------- /+dj/Part.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/Part.m -------------------------------------------------------------------------------- /+dj/Relvar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/Relvar.m -------------------------------------------------------------------------------- /+dj/Schema.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/Schema.m -------------------------------------------------------------------------------- /+dj/Table.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/Table.m -------------------------------------------------------------------------------- /+dj/close.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/close.m -------------------------------------------------------------------------------- /+dj/config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/config.m -------------------------------------------------------------------------------- /+dj/conn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/conn.m -------------------------------------------------------------------------------- /+dj/createSchema.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/createSchema.m -------------------------------------------------------------------------------- /+dj/kill.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/kill.m -------------------------------------------------------------------------------- /+dj/kill_quick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/kill_quick.m -------------------------------------------------------------------------------- /+dj/new.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/new.m -------------------------------------------------------------------------------- /+dj/reload.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/reload.m -------------------------------------------------------------------------------- /+dj/setPassword.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/setPassword.m -------------------------------------------------------------------------------- /+dj/setup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/setup.m -------------------------------------------------------------------------------- /+dj/struct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/struct.m -------------------------------------------------------------------------------- /+dj/version.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/+dj/version.m -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/development.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/.github/workflows/development.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/.github/workflows/publish-docs.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LNX-docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/LNX-docker-compose.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/README.md -------------------------------------------------------------------------------- /docs/.docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/docs/.docker/Dockerfile -------------------------------------------------------------------------------- /docs/.docker/apk_requirements.txt: -------------------------------------------------------------------------------- 1 | git 2 | -------------------------------------------------------------------------------- /docs/.docker/pip_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/docs/.docker/pip_requirements.txt -------------------------------------------------------------------------------- /docs/.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/docs/.markdownlint.yaml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/docs/cspell.json -------------------------------------------------------------------------------- /docs/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/docs/docker-compose.yaml -------------------------------------------------------------------------------- /docs/mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/docs/mkdocs.yaml -------------------------------------------------------------------------------- /docs/src/.overrides/.icons/main/company-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/docs/src/.overrides/.icons/main/company-logo.svg -------------------------------------------------------------------------------- /docs/src/.overrides/assets/images/company-logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/docs/src/.overrides/assets/images/company-logo-blue.png -------------------------------------------------------------------------------- /docs/src/.overrides/assets/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/docs/src/.overrides/assets/stylesheets/extra.css -------------------------------------------------------------------------------- /docs/src/.overrides/partials/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/docs/src/.overrides/partials/nav.html -------------------------------------------------------------------------------- /docs/src/changelog.md: -------------------------------------------------------------------------------- 1 | ../../CHANGELOG.md -------------------------------------------------------------------------------- /docs/src/concepts/existing-pipelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/docs/src/concepts/existing-pipelines.md -------------------------------------------------------------------------------- /docs/src/getting-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/docs/src/getting-started/index.md -------------------------------------------------------------------------------- /docs/src/images/shapes_pipeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/docs/src/images/shapes_pipeline.svg -------------------------------------------------------------------------------- /docs/src/query-lang/common-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/docs/src/query-lang/common-commands.md -------------------------------------------------------------------------------- /docs/src/query-lang/iteration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/docs/src/query-lang/iteration.md -------------------------------------------------------------------------------- /docs/src/query-lang/operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/docs/src/query-lang/operators.md -------------------------------------------------------------------------------- /docs/src/reproduce/make-method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/docs/src/reproduce/make-method.md -------------------------------------------------------------------------------- /docs/src/reproduce/table-tiers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/docs/src/reproduce/table-tiers.md -------------------------------------------------------------------------------- /docs/src/tutorials.md: -------------------------------------------------------------------------------- 1 | # Tutorials 2 | 3 | Coming soon! 4 | -------------------------------------------------------------------------------- /erd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/erd.m -------------------------------------------------------------------------------- /local-docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/local-docker-compose.yaml -------------------------------------------------------------------------------- /tests/Main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/Main.m -------------------------------------------------------------------------------- /tests/Prep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/Prep.m -------------------------------------------------------------------------------- /tests/TestBlob.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/TestBlob.m -------------------------------------------------------------------------------- /tests/TestConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/TestConfig.m -------------------------------------------------------------------------------- /tests/TestConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/TestConnection.m -------------------------------------------------------------------------------- /tests/TestDeclaration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/TestDeclaration.m -------------------------------------------------------------------------------- /tests/TestDelete.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/TestDelete.m -------------------------------------------------------------------------------- /tests/TestERD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/TestERD.m -------------------------------------------------------------------------------- /tests/TestExternalFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/TestExternalFile.m -------------------------------------------------------------------------------- /tests/TestExternalS3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/TestExternalS3.m -------------------------------------------------------------------------------- /tests/TestFetch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/TestFetch.m -------------------------------------------------------------------------------- /tests/TestPopulate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/TestPopulate.m -------------------------------------------------------------------------------- /tests/TestProjection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/TestProjection.m -------------------------------------------------------------------------------- /tests/TestRelationalOperand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/TestRelationalOperand.m -------------------------------------------------------------------------------- /tests/TestSchema.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/TestSchema.m -------------------------------------------------------------------------------- /tests/TestTls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/TestTls.m -------------------------------------------------------------------------------- /tests/TestUuid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/TestUuid.m -------------------------------------------------------------------------------- /tests/test_schemas/+Company/Duty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/test_schemas/+Company/Duty.m -------------------------------------------------------------------------------- /tests/test_schemas/+Company/Employee.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/test_schemas/+Company/Employee.m -------------------------------------------------------------------------------- /tests/test_schemas/+Company/Machine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/test_schemas/+Company/Machine.m -------------------------------------------------------------------------------- /tests/test_schemas/+External/Dimension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/test_schemas/+External/Dimension.m -------------------------------------------------------------------------------- /tests/test_schemas/+External/Document.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/test_schemas/+External/Document.m -------------------------------------------------------------------------------- /tests/test_schemas/+External/Image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/test_schemas/+External/Image.m -------------------------------------------------------------------------------- /tests/test_schemas/+Lab/ActiveSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/test_schemas/+Lab/ActiveSession.m -------------------------------------------------------------------------------- /tests/test_schemas/+Lab/Rig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/test_schemas/+Lab/Rig.m -------------------------------------------------------------------------------- /tests/test_schemas/+Lab/Session.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/test_schemas/+Lab/Session.m -------------------------------------------------------------------------------- /tests/test_schemas/+Lab/SessionAnalysis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/test_schemas/+Lab/SessionAnalysis.m -------------------------------------------------------------------------------- /tests/test_schemas/+Lab/Subject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/test_schemas/+Lab/Subject.m -------------------------------------------------------------------------------- /tests/test_schemas/+TestLab/Duty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/test_schemas/+TestLab/Duty.m -------------------------------------------------------------------------------- /tests/test_schemas/+TestLab/User.m: -------------------------------------------------------------------------------- 1 | %{ 2 | user_id: varchar(32) 3 | %} 4 | 5 | classdef User < dj.Manual 6 | end -------------------------------------------------------------------------------- /tests/test_schemas/+University/A.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/test_schemas/+University/A.m -------------------------------------------------------------------------------- /tests/test_schemas/+University/Date.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/test_schemas/+University/Date.m -------------------------------------------------------------------------------- /tests/test_schemas/+University/Float.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/test_schemas/+University/Float.m -------------------------------------------------------------------------------- /tests/test_schemas/+University/Integer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/test_schemas/+University/Integer.m -------------------------------------------------------------------------------- /tests/test_schemas/+University/Message.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/test_schemas/+University/Message.m -------------------------------------------------------------------------------- /tests/test_schemas/+University/String.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/test_schemas/+University/String.m -------------------------------------------------------------------------------- /tests/test_schemas/+University/Student.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/test_schemas/+University/Student.m -------------------------------------------------------------------------------- /tests/test_schemas/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/test_schemas/config.json -------------------------------------------------------------------------------- /tests/test_schemas/config_lite.json: -------------------------------------------------------------------------------- 1 | { 2 | "database.use_tls" : true 3 | } -------------------------------------------------------------------------------- /tests/test_schemas/store_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datajoint/datajoint-matlab/HEAD/tests/test_schemas/store_config.json --------------------------------------------------------------------------------