├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS ├── R ├── dir2.R ├── dirdf.R ├── dirdf_parse.R ├── regex_utils.R ├── templates.R └── utils.R ├── README.md ├── appveyor.yml ├── dirdf.Rproj ├── incl ├── dir2.R ├── dirdf.R └── dirdf_parse.R ├── inst └── examples │ ├── dataset_1 │ ├── 2013-06-26_BRAFWTNEGASSAY_Plasmid-Cellline-100-1MutantFraction_A01.csv │ ├── 2013-06-26_BRAFWTNEGASSAY_Plasmid-Cellline-100-1MutantFraction_A02.csv │ ├── 2014-02-26_BRAFWTNEGASSAY_FFPEDNA-CRC-1-41_D08.csv │ ├── 2014-03-05_BRAFWTNEGASSAY_FFPEDNA-CRC-REPEAT_platefile.csv │ └── 2016-04-01_BRAFWTNEGASSAY_FFPEDNA-CRC-1-41.csv │ └── dataset_2 │ ├── 2011-12-16_OTHERASSAY_FFPEDNA-CRC-1-41_D08.csv │ ├── 2013-06-26_OTHERASSAY_Plasmid-Cellline-100-1MutantFraction_B02.csv │ ├── 2014-03-05_OTHERASSAY_FFPEDNA-CRC-REPEAT_platefile.csv │ ├── 2014-07-06_OTHERASSAY_Plasmid-Cellline-100-1MutantFraction_B01.csv │ └── 2016-01-11_OTHERASSAY_FFPEDNA-CRC-2-41.csv ├── man ├── dir2.Rd ├── dirdf.Rd ├── dirdf_parse.Rd └── templates.Rd ├── tests ├── testthat.R └── testthat │ ├── test-dirdf.R │ ├── test-dirdf_parse.R │ ├── test-dirdf_parse_2.R │ └── test-templates.R └── vignettes └── examples.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: ??? 3 | 4 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/NEWS -------------------------------------------------------------------------------- /R/dir2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/R/dir2.R -------------------------------------------------------------------------------- /R/dirdf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/R/dirdf.R -------------------------------------------------------------------------------- /R/dirdf_parse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/R/dirdf_parse.R -------------------------------------------------------------------------------- /R/regex_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/R/regex_utils.R -------------------------------------------------------------------------------- /R/templates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/R/templates.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/appveyor.yml -------------------------------------------------------------------------------- /dirdf.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/dirdf.Rproj -------------------------------------------------------------------------------- /incl/dir2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/incl/dir2.R -------------------------------------------------------------------------------- /incl/dirdf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/incl/dirdf.R -------------------------------------------------------------------------------- /incl/dirdf_parse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/incl/dirdf_parse.R -------------------------------------------------------------------------------- /inst/examples/dataset_1/2013-06-26_BRAFWTNEGASSAY_Plasmid-Cellline-100-1MutantFraction_A01.csv: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /inst/examples/dataset_1/2013-06-26_BRAFWTNEGASSAY_Plasmid-Cellline-100-1MutantFraction_A02.csv: -------------------------------------------------------------------------------- 1 | 2 2 | 3 | -------------------------------------------------------------------------------- /inst/examples/dataset_1/2014-02-26_BRAFWTNEGASSAY_FFPEDNA-CRC-1-41_D08.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inst/examples/dataset_1/2014-03-05_BRAFWTNEGASSAY_FFPEDNA-CRC-REPEAT_platefile.csv: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /inst/examples/dataset_1/2016-04-01_BRAFWTNEGASSAY_FFPEDNA-CRC-1-41.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inst/examples/dataset_2/2011-12-16_OTHERASSAY_FFPEDNA-CRC-1-41_D08.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inst/examples/dataset_2/2013-06-26_OTHERASSAY_Plasmid-Cellline-100-1MutantFraction_B02.csv: -------------------------------------------------------------------------------- 1 | 2 2 | 3 | -------------------------------------------------------------------------------- /inst/examples/dataset_2/2014-03-05_OTHERASSAY_FFPEDNA-CRC-REPEAT_platefile.csv: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /inst/examples/dataset_2/2014-07-06_OTHERASSAY_Plasmid-Cellline-100-1MutantFraction_B01.csv: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /inst/examples/dataset_2/2016-01-11_OTHERASSAY_FFPEDNA-CRC-2-41.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/dir2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/man/dir2.Rd -------------------------------------------------------------------------------- /man/dirdf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/man/dirdf.Rd -------------------------------------------------------------------------------- /man/dirdf_parse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/man/dirdf_parse.Rd -------------------------------------------------------------------------------- /man/templates.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/man/templates.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-dirdf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/tests/testthat/test-dirdf.R -------------------------------------------------------------------------------- /tests/testthat/test-dirdf_parse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/tests/testthat/test-dirdf_parse.R -------------------------------------------------------------------------------- /tests/testthat/test-dirdf_parse_2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/tests/testthat/test-dirdf_parse_2.R -------------------------------------------------------------------------------- /tests/testthat/test-templates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/tests/testthat/test-templates.R -------------------------------------------------------------------------------- /vignettes/examples.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/dirdf/HEAD/vignettes/examples.Rmd --------------------------------------------------------------------------------