├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R └── wasabi.R ├── README.md └── wasabi.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COMBINE-lab/wasabi/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COMBINE-lab/wasabi/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COMBINE-lab/wasabi/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2015 2 | COPYRIGHT HOLDER: Richard Smith-Unna, Rob Patro 3 | ORGANIZATION: None 4 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COMBINE-lab/wasabi/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/wasabi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COMBINE-lab/wasabi/HEAD/R/wasabi.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COMBINE-lab/wasabi/HEAD/README.md -------------------------------------------------------------------------------- /wasabi.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COMBINE-lab/wasabi/HEAD/wasabi.Rproj --------------------------------------------------------------------------------