├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── assignFunction.R ├── buildDependencies.R ├── buildReferenceData.R ├── calculateFunctionalRedundancy.R ├── citation.R ├── extractSSU.R ├── generateUserData.R ├── generateUserDataByclustering.R ├── getExampleData.R ├── makeFunctionalPrediction.R └── runRefBlast.R ├── README.md └── man ├── assignFunction.Rd ├── buildReferenceData.Rd ├── calculateFunctionalRedundancy.Rd ├── citation.Rd ├── extractSSU.Rd ├── generateUserData.Rd ├── generateUserDataByclustering.Rd ├── makeFunctionalPrediction.Rd ├── runRefBlast.Rd └── testReferenceData.Rd /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | exportPattern("^[[:alpha:]]+") 2 | -------------------------------------------------------------------------------- /R/assignFunction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/R/assignFunction.R -------------------------------------------------------------------------------- /R/buildDependencies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/R/buildDependencies.R -------------------------------------------------------------------------------- /R/buildReferenceData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/R/buildReferenceData.R -------------------------------------------------------------------------------- /R/calculateFunctionalRedundancy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/R/calculateFunctionalRedundancy.R -------------------------------------------------------------------------------- /R/citation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/R/citation.R -------------------------------------------------------------------------------- /R/extractSSU.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/R/extractSSU.R -------------------------------------------------------------------------------- /R/generateUserData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/R/generateUserData.R -------------------------------------------------------------------------------- /R/generateUserDataByclustering.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/R/generateUserDataByclustering.R -------------------------------------------------------------------------------- /R/getExampleData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/R/getExampleData.R -------------------------------------------------------------------------------- /R/makeFunctionalPrediction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/R/makeFunctionalPrediction.R -------------------------------------------------------------------------------- /R/runRefBlast.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/R/runRefBlast.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/README.md -------------------------------------------------------------------------------- /man/assignFunction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/man/assignFunction.Rd -------------------------------------------------------------------------------- /man/buildReferenceData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/man/buildReferenceData.Rd -------------------------------------------------------------------------------- /man/calculateFunctionalRedundancy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/man/calculateFunctionalRedundancy.Rd -------------------------------------------------------------------------------- /man/citation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/man/citation.Rd -------------------------------------------------------------------------------- /man/extractSSU.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/man/extractSSU.Rd -------------------------------------------------------------------------------- /man/generateUserData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/man/generateUserData.Rd -------------------------------------------------------------------------------- /man/generateUserDataByclustering.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/man/generateUserDataByclustering.Rd -------------------------------------------------------------------------------- /man/makeFunctionalPrediction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/man/makeFunctionalPrediction.Rd -------------------------------------------------------------------------------- /man/runRefBlast.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/man/runRefBlast.Rd -------------------------------------------------------------------------------- /man/testReferenceData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjossandon/Tax4Fun2/HEAD/man/testReferenceData.Rd --------------------------------------------------------------------------------