├── .Rbuildignore ├── .gitignore ├── CONTRIBUTION ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── color.R ├── dependencies.R └── install.R ├── README.md ├── index.html ├── inst ├── generate_function_table.R └── scrattch_function_list.csv ├── logo.png ├── man ├── build_palette.Rd ├── color_sum.Rd ├── hello.Rd ├── install_bioc_deps.Rd ├── install_github_deps.Rd ├── install_scrattch.Rd ├── install_scrattch_deps.Rd ├── values_to_colors.Rd ├── varibow.Rd └── weave_plot.Rd ├── scrattch.Rproj ├── scrattch_documentation.html └── scrattch_publications.html /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | inst/doc 5 | -------------------------------------------------------------------------------- /CONTRIBUTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/CONTRIBUTION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | exportPattern("^[[:alpha:]]+") 2 | -------------------------------------------------------------------------------- /R/color.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/R/color.R -------------------------------------------------------------------------------- /R/dependencies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/R/dependencies.R -------------------------------------------------------------------------------- /R/install.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/R/install.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/index.html -------------------------------------------------------------------------------- /inst/generate_function_table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/inst/generate_function_table.R -------------------------------------------------------------------------------- /inst/scrattch_function_list.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/inst/scrattch_function_list.csv -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/logo.png -------------------------------------------------------------------------------- /man/build_palette.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/man/build_palette.Rd -------------------------------------------------------------------------------- /man/color_sum.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/man/color_sum.Rd -------------------------------------------------------------------------------- /man/hello.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/man/hello.Rd -------------------------------------------------------------------------------- /man/install_bioc_deps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/man/install_bioc_deps.Rd -------------------------------------------------------------------------------- /man/install_github_deps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/man/install_github_deps.Rd -------------------------------------------------------------------------------- /man/install_scrattch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/man/install_scrattch.Rd -------------------------------------------------------------------------------- /man/install_scrattch_deps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/man/install_scrattch_deps.Rd -------------------------------------------------------------------------------- /man/values_to_colors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/man/values_to_colors.Rd -------------------------------------------------------------------------------- /man/varibow.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/man/varibow.Rd -------------------------------------------------------------------------------- /man/weave_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/man/weave_plot.Rd -------------------------------------------------------------------------------- /scrattch.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/scrattch.Rproj -------------------------------------------------------------------------------- /scrattch_documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/scrattch_documentation.html -------------------------------------------------------------------------------- /scrattch_publications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenInstitute/scrattch/HEAD/scrattch_publications.html --------------------------------------------------------------------------------