├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R └── dga.R ├── README.Rmd ├── README.md ├── data ├── dwords.rda ├── gram345.rda ├── rfFit.rda └── sampledga.rda ├── dga.Rproj ├── man ├── cleandns.Rd ├── dgaPredict.Rd ├── dgaPredictDomain.Rd ├── dwords.Rd ├── entropy.Rd ├── getngram.Rd ├── gram345.Rd ├── ngram.Rd ├── ngram.name.Rd ├── rfFit.Rd ├── sampledga.Rd └── wmatch.Rd └── tests ├── test-all.R └── testthat └── test-dga.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/dga.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/R/dga.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/README.md -------------------------------------------------------------------------------- /data/dwords.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/data/dwords.rda -------------------------------------------------------------------------------- /data/gram345.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/data/gram345.rda -------------------------------------------------------------------------------- /data/rfFit.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/data/rfFit.rda -------------------------------------------------------------------------------- /data/sampledga.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/data/sampledga.rda -------------------------------------------------------------------------------- /dga.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/dga.Rproj -------------------------------------------------------------------------------- /man/cleandns.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/man/cleandns.Rd -------------------------------------------------------------------------------- /man/dgaPredict.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/man/dgaPredict.Rd -------------------------------------------------------------------------------- /man/dgaPredictDomain.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/man/dgaPredictDomain.Rd -------------------------------------------------------------------------------- /man/dwords.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/man/dwords.Rd -------------------------------------------------------------------------------- /man/entropy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/man/entropy.Rd -------------------------------------------------------------------------------- /man/getngram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/man/getngram.Rd -------------------------------------------------------------------------------- /man/gram345.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/man/gram345.Rd -------------------------------------------------------------------------------- /man/ngram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/man/ngram.Rd -------------------------------------------------------------------------------- /man/ngram.name.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/man/ngram.name.Rd -------------------------------------------------------------------------------- /man/rfFit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/man/rfFit.Rd -------------------------------------------------------------------------------- /man/sampledga.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/man/sampledga.Rd -------------------------------------------------------------------------------- /man/wmatch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/man/wmatch.Rd -------------------------------------------------------------------------------- /tests/test-all.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/tests/test-all.R -------------------------------------------------------------------------------- /tests/testthat/test-dga.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayjacobs/dga/HEAD/tests/testthat/test-dga.R --------------------------------------------------------------------------------