https://github.com/henrikbengtsson/affxparser
🔬 R package: This is the Bioconductor devel version of the affxparser package.
https://github.com/henrikbengtsson/affxparser
bioconductor package r
Last synced: 5 months ago
JSON representation
🔬 R package: This is the Bioconductor devel version of the affxparser package.
- Host: GitHub
- URL: https://github.com/henrikbengtsson/affxparser
- Owner: HenrikBengtsson
- Created: 2014-09-23T20:37:35.000Z (over 10 years ago)
- Default Branch: develop
- Last Pushed: 2024-11-07T20:09:24.000Z (6 months ago)
- Last Synced: 2024-12-08T00:16:34.469Z (5 months ago)
- Topics: bioconductor, package, r
- Language: C++
- Homepage: http://bioconductor.org/packages/devel/bioc/html/affxparser.html
- Size: 3.6 MB
- Stars: 7
- Watchers: 4
- Forks: 3
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# affxparser: Affymetrix File Parsing SDK
## Installation
R package affxparser is available on [Bioconductor](https://www.bioconductor.org/packages/devel/bioc/html/affxparser.html) and can be installed in R as:
```r
install.packages("BiocManager")
BiocManager::install("affxparser")
```### Pre-release version
To install the pre-release version that is available in Git branch `develop` on GitHub, use:
```r
remotes::install_github("HenrikBengtsson/affxparser", ref="develop")
```
This will install the package from source. Because of this and because this package also compiles native code, Windows users need to have [Rtools](https://cran.r-project.org/bin/windows/Rtools/) installed and macOS users need to have [Xcode](https://developer.apple.com/xcode/) installed.## Development workflow
The Bioconductor _development_ version of the **affxparser** package
is available at
. Bioconductor
builds and checks this development version based on the source code in
the `devel` branch of the package Git repository available at
.The `master` branch of _this_ GitHub repository is is manually kept in
sync with the `devel` branch on the Bioconductor Git repository. If
there's an update made directly to the Bioconductor `devel` branch, we
merge it into the `master` branch on GitHub. Vice versa, if there are
updates to the GitHub `master` branch, we merge those into the `devel`
branch on Bioconductor.The most common, and recommend workflow is to develop toward GitHub
instead of directly toward the Bioconductor servers. By working
toward GitHub first, we get instant checking of the code across
different operating systems and R versions on GitHub Actions. This
way, we can validate the code immediately, instead of having to way
24-36 hours for it to be validated on the Bioconductor check servers.## Contributing
To contribute to this package, please see
[CONTRIBUTING.md](CONTRIBUTING.md).