https://github.com/pacificcommunity/ofp-sam-flr4mfcl
R Functions for Taming MULTIFAN-CL
https://github.com/pacificcommunity/ofp-sam-flr4mfcl
mfcl ofp sam tool
Last synced: about 1 month ago
JSON representation
R Functions for Taming MULTIFAN-CL
- Host: GitHub
- URL: https://github.com/pacificcommunity/ofp-sam-flr4mfcl
- Owner: PacificCommunity
- Created: 2015-03-16T23:25:51.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2025-03-21T00:19:05.000Z (2 months ago)
- Last Synced: 2025-03-21T01:24:33.802Z (2 months ago)
- Topics: mfcl, ofp, sam, tool
- Language: R
- Homepage:
- Size: 13.3 MB
- Stars: 7
- Watchers: 8
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
Awesome Lists containing this project
README
# FLR4MFCL
requires FLCore
FLR4MFCL - R4MFCL built with FLR classes
Copyright (C) 2018 Rob ScottThis program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.You should have received a copy of the GNU General Public License
along with this program. If not, see .
## InstallationFLR4MFCL depends on FLCore (FLR-project) which itself depends on iterators.
```{r}
install.packages("iterators")
install.packages("FLCore", repos="http://flr-project.org/R")
install.packages("remotes")library(remotes)
install_github("PacificCommunity/ofp-sam-flr4mfcl")
```NOTE: Installation from github may fail due to warning messages being elevated to errors. You can override this behaviour by setting the environment variable in R as follows and re-running the install_github command - but use with caution because some warnings may not be completely benign!
```{r}
Sys.setenv(R_REMOTES_NO_ERRORS_FROM_WARNINGS="true")
```