Skip to content

Commit

Permalink
Merge pull request #52 from aberHRML/devel
Browse files Browse the repository at this point in the history
v2.5.3
  • Loading branch information
jasenfinch authored Mar 24, 2021
2 parents 749922e + 259a5c8 commit 2181bda
Show file tree
Hide file tree
Showing 35 changed files with 80 additions and 59 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,13 @@ jobs:
do
eval sudo $cmd
done < <(Rscript -e 'writeLines(remotes::system_requirements("ubuntu", "20.04"))')
sudo apt install libnetcdf-dev
sudo apt install libnetcdf-dev libgit2-dev
- name: Install dependencies
run: |
remotes::install_deps(dependencies = TRUE)
remotes::install_cran(c("rcmdcheck","goodpractice"))
metaboData::downloadDataSet('FIE-HRMS','BdistachyonEcotypes',ask = FALSE)
shell: Rscript {0}

- name: Check
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: binneR
Title: Spectral Processing for High Resolution Flow Infusion Mass Spectrometry
Version: 2.5.2
Version: 2.5.3
Authors@R: person("Jasen", "Finch", email = "[email protected]", role = c("aut", "cre"))
Description: A spectral binning approach for high resolution flow infusion mass spectrometry data.
biocViews: MassSpectrometry, Metabolomics
Expand Down
20 changes: 12 additions & 8 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
# binneR v2.5.2
# binneR 2.5.3

* Removed the potential for errors during build of the intensity matrices if identical accurate m/z are retrieved for a bin from multiple samples.

# binneR 2.5.2

* Fixed I/O issues for sample sets over ~1200.

* Minor alteration to console output
* Minor alteration to console output.

# binneR v2.5.1
# binneR 2.5.1

* Performance and memory usage gains through ensuring 0 values are not read from raw files.

* Added console output for processing steps to [`binneR::binneRlyse()`](https://aberhrml.github.io/binneR/reference/binneRlyse.html) and [`binneR::singleSample()](https://aberhrml.github.io/binneR/reference/singleSample.html).

# binneR v2.5.0
# binneR 2.5.0

* S4 class [`Binalysis`](https://aberhrml.github.io/binneR/reference/Binalysis-class.html) now inherits from S4 class [`BinParameters`](https://aberhrml.github.io/binneR/reference/BinParameters-class.html).

Expand All @@ -24,15 +28,15 @@

* Added validators for [`Binalysis`](https://aberhrml.github.io/binneR/reference/Binalysis-class.html) S4 class to ensure that sample information contains the correct fields and that the file names in the specified paths match those in the sample information.

# binneR v2.4.2
# binneR 2.4.2

* Bin measures are now correctly averaged across samples in [`binneR::plotCentrality()`](https://aberHRML.github.io/binneR/reference/plotCentrality.html) and [`binneR::plotPurity()`](https://aberHRML.github.io/binneR/reference/plotPurity.html).

# binneR v2.4.1
# binneR 2.4.1

* Fixed errors in [`binneR::plotCentrality()`](https://aberHRML.github.io/binneR/reference/plotCentrality.html) and [`binneR::plotPurity()`](https://aberHRML.github.io/binneR/reference/plotPurity.html).

# binneR v2.4.0
# binneR 2.4.0

* Added a [`NEWS.md`](https://aberHRML.github.io/binneR/news/index.html) file to track changes to the package.

Expand All @@ -50,7 +54,7 @@

* Updated function documentation examples.

* Parallel processing in `binneR` is now implemented using the [`future`](https://cran.r-project.org/web/packages/future/index.html) package.
* Parallel processing in `binneR` is now implemented using the [`future`](https://cran.r-project.org/package=future) package.
Information on how this can now be used is available in the usage vignette.

* `plan()` from the [`future`](https://cran.r-project.org/web/packages/future/index.html) package is now re-exported.
3 changes: 2 additions & 1 deletion R/spectralBinning-method.R
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ setMethod("spectralBinning",
filter(intensity == max(intensity)) %>%
select(-intensity) %>%
mutate(mz = str_c(polarity,mz)) %>%
ungroup()
ungroup() %>%
distinct()

if (isTRUE(verbose)) message('Building intensity matrix')
binned_data <- binned_data %>%
Expand Down
2 changes: 1 addition & 1 deletion docs/404.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/LICENSE.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions docs/articles/binneR.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified docs/articles/binneR_files/figure-html/FIEfingerprint-.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/articles/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/authors.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 22 additions & 14 deletions docs/news/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ pkgdown: 1.6.1
pkgdown_sha: ~
articles:
binneR: binneR.html
last_built: 2021-03-06T01:01Z
last_built: 2021-03-24T15:42Z

2 changes: 1 addition & 1 deletion docs/reference/BinParameters-class.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/Binalysis-class.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/binParameters.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/binneRlyse.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/detectInfusionScans.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/detectParameters.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/parameters.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/plotBin.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/plotCentrality.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/plotChromFromFile.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/plotChromatogram.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/plotFingerprint.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/plotPurity.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/plotTIC.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/readBinningParameters.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 2181bda

Please sign in to comment.