├── .Rbuildignore ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .lintr ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── drawCell.R ├── drawCellShiny.R └── helpers.R ├── README.Rmd ├── README.md ├── README_files └── figure-gfm │ ├── animal_cell-1.png │ ├── plantcell-1.png │ └── sacc2-1.png ├── inst ├── WORDLIST ├── extdata │ ├── swissbiopics_mapping.csv │ └── uniprot.tsv ├── htmlwidgets │ ├── drawCell.js │ ├── drawCell.yaml │ └── lib │ │ ├── node_modules │ │ ├── .package-lock.json │ │ └── @swissprot │ │ │ └── swissbiopics-visualizer │ │ │ ├── package.json │ │ │ ├── styles.css │ │ │ └── swissbiopics.js │ │ ├── package-lock.json │ │ └── package.json └── shinyApp │ └── drawCellShiny │ ├── global.R │ ├── server.R │ ├── tests │ ├── testthat.R │ └── testthat │ │ ├── setup-shinytest2.R │ │ └── test-shinytest2.R │ ├── ui.R │ └── www │ ├── SLids.csv │ ├── favicon.ico │ ├── styles.css │ └── subCellIds.txt ├── man ├── drawCell-shiny.Rd ├── drawCell.Rd ├── drawCellShiny.Rd └── figures │ ├── README-animal_cell-1.png │ ├── README-plantcell-1.png │ └── README-sacc2-1.png ├── tests ├── testthat.R └── testthat │ ├── test-drawCell.R │ └── test-drawCellShiny.R └── vignettes └── drawCell.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/.lintr -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/drawCell.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/R/drawCell.R -------------------------------------------------------------------------------- /R/drawCellShiny.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/R/drawCellShiny.R -------------------------------------------------------------------------------- /R/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/R/helpers.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/README.md -------------------------------------------------------------------------------- /README_files/figure-gfm/animal_cell-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/README_files/figure-gfm/animal_cell-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/plantcell-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/README_files/figure-gfm/plantcell-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/sacc2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/README_files/figure-gfm/sacc2-1.png -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/extdata/swissbiopics_mapping.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/inst/extdata/swissbiopics_mapping.csv -------------------------------------------------------------------------------- /inst/extdata/uniprot.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/inst/extdata/uniprot.tsv -------------------------------------------------------------------------------- /inst/htmlwidgets/drawCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/inst/htmlwidgets/drawCell.js -------------------------------------------------------------------------------- /inst/htmlwidgets/drawCell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/inst/htmlwidgets/drawCell.yaml -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/node_modules/.package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/inst/htmlwidgets/lib/node_modules/.package-lock.json -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/node_modules/@swissprot/swissbiopics-visualizer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/inst/htmlwidgets/lib/node_modules/@swissprot/swissbiopics-visualizer/package.json -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/node_modules/@swissprot/swissbiopics-visualizer/styles.css: -------------------------------------------------------------------------------- 1 | .terms { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/node_modules/@swissprot/swissbiopics-visualizer/swissbiopics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/inst/htmlwidgets/lib/node_modules/@swissprot/swissbiopics-visualizer/swissbiopics.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/inst/htmlwidgets/lib/package-lock.json -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/inst/htmlwidgets/lib/package.json -------------------------------------------------------------------------------- /inst/shinyApp/drawCellShiny/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/inst/shinyApp/drawCellShiny/global.R -------------------------------------------------------------------------------- /inst/shinyApp/drawCellShiny/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/inst/shinyApp/drawCellShiny/server.R -------------------------------------------------------------------------------- /inst/shinyApp/drawCellShiny/tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/inst/shinyApp/drawCellShiny/tests/testthat.R -------------------------------------------------------------------------------- /inst/shinyApp/drawCellShiny/tests/testthat/setup-shinytest2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/inst/shinyApp/drawCellShiny/tests/testthat/setup-shinytest2.R -------------------------------------------------------------------------------- /inst/shinyApp/drawCellShiny/tests/testthat/test-shinytest2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/inst/shinyApp/drawCellShiny/tests/testthat/test-shinytest2.R -------------------------------------------------------------------------------- /inst/shinyApp/drawCellShiny/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/inst/shinyApp/drawCellShiny/ui.R -------------------------------------------------------------------------------- /inst/shinyApp/drawCellShiny/www/SLids.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/inst/shinyApp/drawCellShiny/www/SLids.csv -------------------------------------------------------------------------------- /inst/shinyApp/drawCellShiny/www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/inst/shinyApp/drawCellShiny/www/favicon.ico -------------------------------------------------------------------------------- /inst/shinyApp/drawCellShiny/www/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/inst/shinyApp/drawCellShiny/www/styles.css -------------------------------------------------------------------------------- /inst/shinyApp/drawCellShiny/www/subCellIds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/inst/shinyApp/drawCellShiny/www/subCellIds.txt -------------------------------------------------------------------------------- /man/drawCell-shiny.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/man/drawCell-shiny.Rd -------------------------------------------------------------------------------- /man/drawCell.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/man/drawCell.Rd -------------------------------------------------------------------------------- /man/drawCellShiny.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/man/drawCellShiny.Rd -------------------------------------------------------------------------------- /man/figures/README-animal_cell-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/man/figures/README-animal_cell-1.png -------------------------------------------------------------------------------- /man/figures/README-plantcell-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/man/figures/README-plantcell-1.png -------------------------------------------------------------------------------- /man/figures/README-sacc2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/man/figures/README-sacc2-1.png -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-drawCell.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/tests/testthat/test-drawCell.R -------------------------------------------------------------------------------- /tests/testthat/test-drawCellShiny.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/tests/testthat/test-drawCellShiny.R -------------------------------------------------------------------------------- /vignettes/drawCell.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svalvaro/drawCell/HEAD/vignettes/drawCell.Rmd --------------------------------------------------------------------------------