├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── report.r └── scripts ├── spin ├── stabilize-counts └── top-genes /.gitignore: -------------------------------------------------------------------------------- 1 | data 2 | report 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klmr/example-r-analysis/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klmr/example-r-analysis/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klmr/example-r-analysis/HEAD/README.md -------------------------------------------------------------------------------- /report.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klmr/example-r-analysis/HEAD/report.r -------------------------------------------------------------------------------- /scripts/spin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klmr/example-r-analysis/HEAD/scripts/spin -------------------------------------------------------------------------------- /scripts/stabilize-counts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klmr/example-r-analysis/HEAD/scripts/stabilize-counts -------------------------------------------------------------------------------- /scripts/top-genes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klmr/example-r-analysis/HEAD/scripts/top-genes --------------------------------------------------------------------------------