An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

        


Bioconductor since badge Bioconductor build status Bioconductor build status R CMD check status Coverage Status

# 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).