├── .appveyor.yml ├── .github └── workflows │ ├── ai-revision.yaml │ ├── editorial-comm-render-build-deploy.yaml │ └── manubot.yaml ├── .gitignore ├── CITATION.cff ├── CONTRIBUTING.md ├── LICENSE-CC0.md ├── LICENSE.md ├── R ├── Supp_Info_1.Rmd ├── Supp_Info_1.aux ├── Supp_Info_1.pdf ├── comparison_table.Rmd ├── roles_table.Rmd ├── scatterblob.html └── scatterblob.pdf ├── README.md ├── SETUP.md ├── SORTEE-manuscript.Rproj ├── USAGE.md ├── ci ├── .gitignore ├── README.md ├── deploy.sh ├── install-spellcheck.sh └── install.sh ├── content ├── 00.front-matter.md ├── 01.abstract.md ├── 02.introduction.md ├── 03.use-cases-a.md ├── 04.use-cases-b.md ├── 05.use-cases-c.md ├── 06.discussion-a.md ├── 07.conclusion.md ├── 08.statements.md ├── 09.figures-tables.md ├── 10.comparison_table.md ├── 11.roles_table.md ├── 90.back-matter.md ├── images │ ├── Fig1.png │ ├── Fig1.xcf │ ├── Figure1.pdf │ ├── Figure1.png │ ├── github.svg │ ├── mastodon.svg │ ├── orcid.svg │ ├── roles.png │ ├── scatterblob_0.pdf │ ├── scatterblob_0.png │ ├── scatterblob_0.svg │ ├── scatterblob_1-darjeeling.pdf │ ├── scatterblob_1-darjeeling1.png │ ├── scatterblob_1-darjeeling2.pdf │ ├── scatterblob_1-darjeeling2.png │ ├── scatterblob_1-royal2.pdf │ ├── scatterblob_1-royal2.png │ ├── scatterblob_1-viridis-turbo.pdf │ ├── scatterblob_1-viridis-turbo.png │ ├── scatterblob_1-zissou1.pdf │ ├── scatterblob_1-zissou1.png │ ├── scatterblob_1.pdf │ ├── scatterblob_1.png │ ├── scatterblob_1.svg │ └── twitter.svg ├── manual-references.bib ├── manual-references.json └── metadata.yaml ├── data ├── cognitive_load_table.csv ├── collaborator_roles.csv ├── comparison_table_raw.csv └── scatterblob_data_raw.csv ├── editorial-communication ├── .gitignore ├── .quarto │ └── xref │ │ ├── 90dd3357 │ │ └── INDEX ├── _quarto.yml ├── cover-letter-submission.Qmd ├── custom.scss ├── editorial-communication.Rproj ├── response-template.docx ├── response-to-the-reviewers.Qmd ├── response-to-the-reviewers.pdf └── skeleton.bib ├── output └── README.md ├── setup.bash └── webpage ├── README.md ├── images ├── index.html └── manuscript.pdf /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.github/workflows/ai-revision.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/.github/workflows/ai-revision.yaml -------------------------------------------------------------------------------- /.github/workflows/editorial-comm-render-build-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/.github/workflows/editorial-comm-render-build-deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/manubot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/.github/workflows/manubot.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE-CC0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/LICENSE-CC0.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/LICENSE.md -------------------------------------------------------------------------------- /R/Supp_Info_1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/R/Supp_Info_1.Rmd -------------------------------------------------------------------------------- /R/Supp_Info_1.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/R/Supp_Info_1.aux -------------------------------------------------------------------------------- /R/Supp_Info_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/R/Supp_Info_1.pdf -------------------------------------------------------------------------------- /R/comparison_table.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/R/comparison_table.Rmd -------------------------------------------------------------------------------- /R/roles_table.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/R/roles_table.Rmd -------------------------------------------------------------------------------- /R/scatterblob.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/R/scatterblob.html -------------------------------------------------------------------------------- /R/scatterblob.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/R/scatterblob.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/README.md -------------------------------------------------------------------------------- /SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/SETUP.md -------------------------------------------------------------------------------- /SORTEE-manuscript.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/SORTEE-manuscript.Rproj -------------------------------------------------------------------------------- /USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/USAGE.md -------------------------------------------------------------------------------- /ci/.gitignore: -------------------------------------------------------------------------------- 1 | # SSH public and private keys 2 | deploy.key* 3 | -------------------------------------------------------------------------------- /ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/ci/README.md -------------------------------------------------------------------------------- /ci/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/ci/deploy.sh -------------------------------------------------------------------------------- /ci/install-spellcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/ci/install-spellcheck.sh -------------------------------------------------------------------------------- /ci/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/ci/install.sh -------------------------------------------------------------------------------- /content/00.front-matter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/00.front-matter.md -------------------------------------------------------------------------------- /content/01.abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/01.abstract.md -------------------------------------------------------------------------------- /content/02.introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/02.introduction.md -------------------------------------------------------------------------------- /content/03.use-cases-a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/03.use-cases-a.md -------------------------------------------------------------------------------- /content/04.use-cases-b.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/04.use-cases-b.md -------------------------------------------------------------------------------- /content/05.use-cases-c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/05.use-cases-c.md -------------------------------------------------------------------------------- /content/06.discussion-a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/06.discussion-a.md -------------------------------------------------------------------------------- /content/07.conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/07.conclusion.md -------------------------------------------------------------------------------- /content/08.statements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/08.statements.md -------------------------------------------------------------------------------- /content/09.figures-tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/09.figures-tables.md -------------------------------------------------------------------------------- /content/10.comparison_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/10.comparison_table.md -------------------------------------------------------------------------------- /content/11.roles_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/11.roles_table.md -------------------------------------------------------------------------------- /content/90.back-matter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/90.back-matter.md -------------------------------------------------------------------------------- /content/images/Fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/Fig1.png -------------------------------------------------------------------------------- /content/images/Fig1.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/Fig1.xcf -------------------------------------------------------------------------------- /content/images/Figure1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/Figure1.pdf -------------------------------------------------------------------------------- /content/images/Figure1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/Figure1.png -------------------------------------------------------------------------------- /content/images/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/github.svg -------------------------------------------------------------------------------- /content/images/mastodon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/mastodon.svg -------------------------------------------------------------------------------- /content/images/orcid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/orcid.svg -------------------------------------------------------------------------------- /content/images/roles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/roles.png -------------------------------------------------------------------------------- /content/images/scatterblob_0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/scatterblob_0.pdf -------------------------------------------------------------------------------- /content/images/scatterblob_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/scatterblob_0.png -------------------------------------------------------------------------------- /content/images/scatterblob_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/scatterblob_0.svg -------------------------------------------------------------------------------- /content/images/scatterblob_1-darjeeling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/scatterblob_1-darjeeling.pdf -------------------------------------------------------------------------------- /content/images/scatterblob_1-darjeeling1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/scatterblob_1-darjeeling1.png -------------------------------------------------------------------------------- /content/images/scatterblob_1-darjeeling2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/scatterblob_1-darjeeling2.pdf -------------------------------------------------------------------------------- /content/images/scatterblob_1-darjeeling2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/scatterblob_1-darjeeling2.png -------------------------------------------------------------------------------- /content/images/scatterblob_1-royal2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/scatterblob_1-royal2.pdf -------------------------------------------------------------------------------- /content/images/scatterblob_1-royal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/scatterblob_1-royal2.png -------------------------------------------------------------------------------- /content/images/scatterblob_1-viridis-turbo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/scatterblob_1-viridis-turbo.pdf -------------------------------------------------------------------------------- /content/images/scatterblob_1-viridis-turbo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/scatterblob_1-viridis-turbo.png -------------------------------------------------------------------------------- /content/images/scatterblob_1-zissou1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/scatterblob_1-zissou1.pdf -------------------------------------------------------------------------------- /content/images/scatterblob_1-zissou1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/scatterblob_1-zissou1.png -------------------------------------------------------------------------------- /content/images/scatterblob_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/scatterblob_1.pdf -------------------------------------------------------------------------------- /content/images/scatterblob_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/scatterblob_1.png -------------------------------------------------------------------------------- /content/images/scatterblob_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/scatterblob_1.svg -------------------------------------------------------------------------------- /content/images/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/images/twitter.svg -------------------------------------------------------------------------------- /content/manual-references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/manual-references.bib -------------------------------------------------------------------------------- /content/manual-references.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/manual-references.json -------------------------------------------------------------------------------- /content/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/content/metadata.yaml -------------------------------------------------------------------------------- /data/cognitive_load_table.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/data/cognitive_load_table.csv -------------------------------------------------------------------------------- /data/collaborator_roles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/data/collaborator_roles.csv -------------------------------------------------------------------------------- /data/comparison_table_raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/data/comparison_table_raw.csv -------------------------------------------------------------------------------- /data/scatterblob_data_raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/data/scatterblob_data_raw.csv -------------------------------------------------------------------------------- /editorial-communication/.gitignore: -------------------------------------------------------------------------------- 1 | /.quarto/ 2 | -------------------------------------------------------------------------------- /editorial-communication/.quarto/xref/90dd3357: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/editorial-communication/.quarto/xref/90dd3357 -------------------------------------------------------------------------------- /editorial-communication/.quarto/xref/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/editorial-communication/.quarto/xref/INDEX -------------------------------------------------------------------------------- /editorial-communication/_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/editorial-communication/_quarto.yml -------------------------------------------------------------------------------- /editorial-communication/cover-letter-submission.Qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/editorial-communication/cover-letter-submission.Qmd -------------------------------------------------------------------------------- /editorial-communication/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/editorial-communication/custom.scss -------------------------------------------------------------------------------- /editorial-communication/editorial-communication.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/editorial-communication/editorial-communication.Rproj -------------------------------------------------------------------------------- /editorial-communication/response-template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/editorial-communication/response-template.docx -------------------------------------------------------------------------------- /editorial-communication/response-to-the-reviewers.Qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/editorial-communication/response-to-the-reviewers.Qmd -------------------------------------------------------------------------------- /editorial-communication/response-to-the-reviewers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/editorial-communication/response-to-the-reviewers.pdf -------------------------------------------------------------------------------- /editorial-communication/skeleton.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/editorial-communication/skeleton.bib -------------------------------------------------------------------------------- /output/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/output/README.md -------------------------------------------------------------------------------- /setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/setup.bash -------------------------------------------------------------------------------- /webpage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SORTEE-Github-Hackathon/manuscript/HEAD/webpage/README.md -------------------------------------------------------------------------------- /webpage/images: -------------------------------------------------------------------------------- 1 | v/latest/images -------------------------------------------------------------------------------- /webpage/index.html: -------------------------------------------------------------------------------- 1 | v/latest/index.html -------------------------------------------------------------------------------- /webpage/manuscript.pdf: -------------------------------------------------------------------------------- 1 | v/latest/manuscript.pdf --------------------------------------------------------------------------------