Skip to content

Commit 2d61f46

Browse files
authored
Merge branch 'cbroeckl:master' into dev
2 parents 45cd31b + 9116543 commit 2d61f46

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+952
-6266
lines changed

.Rbuildignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ cran-comments.md
55
^CRAN-SUBMISSION$
66
^conda
77
^.vscode
8-
^.github
8+
^.github
9+
^docs

ChangeLog

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
unreleased - dev
1+
2023-05-17 Helge Hecht v1.3.0
22
* Added test cases for several functions [PR #3](https://github.com/RECETOX/RAMClustR/pull/3)
33
* Extracted functions for several duplicate code [PR #23](https://github.com/RECETOX/RAMClustR/pull/23)
44
* Added option for dataframe input [PR #25](https://github.com/RECETOX/RAMClustR/pull/25)

DESCRIPTION

+5-33
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Package: RAMClustR
22
Type: Package
33
Title: Mass Spectrometry Metabolomics Feature Clustering and Interpretation
44
Version: 1.3.0
5-
Date: 2022-04-05
5+
Date: 2023-05-17
66
Authors@R:
77
c(person(given = "Corey D.", family = "Broeckling",
88
role = c("aut"),
@@ -16,38 +16,10 @@ Authors@R:
1616
email = "[email protected]",
1717
role = c("cre"),
1818
comment = c(ORCID = "0000-0001-6744-996X")))
19-
Depends:
20-
R (>= 3.5.0)
21-
Imports:
22-
dynamicTreeCut,
23-
fastcluster,
24-
ff,
25-
httr,
26-
jsonlite,
27-
preprocessCore,
28-
e1071,
29-
gplots,
30-
pcaMethods,
31-
stringr,
32-
utils,
33-
webchem,
34-
ggplot2,
35-
methods
36-
Suggests:
37-
knitr,
38-
rmarkdown,
39-
xcms,
40-
testthat,
41-
patrick,
42-
MSnbase,
43-
InterpretMSSpectrum,
44-
BiocManager,
45-
xml2,
46-
stringi,
47-
readxl,
48-
curl,
49-
rentrez
50-
License: GPL (>= 2)
19+
Imports: dynamicTreeCut, fastcluster, preprocessCore, e1071, gplots, pcaMethods, utils, ggplot2, InterpretMSSpectrum
20+
Depends: R (>= 3.5.0)
21+
Suggests: knitr, rmarkdown, xcms, testthat, BiocManager, stringi, curl
22+
License: MIT
5123
Description: A feature clustering algorithm for non-targeted mass spectrometric metabolomics data. This method is compatible with gas and liquid chromatography coupled mass spectrometry, including indiscriminant tandem mass spectrometry <DOI: 10.1021/ac501530d> data.
5224
URL: https://github.com/cbroeckl/RAMClustR
5325
Encoding: UTF-8

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Corey Broeckling
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

NAMESPACE

+4-26
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,30 @@
11
# Generated by roxygen2: do not edit by hand
22

33
export(RCQC)
4-
export(adap.to.rc)
54
export(add_params)
6-
export(annotate)
7-
export(annotation.summary)
8-
export(assign.z)
9-
export(change.annotation)
10-
export(cmpd.summary)
115
export(compute_SpecAbundAve)
126
export(compute_do.sets)
137
export(compute_wt_mean)
148
export(create_ramclustObj)
159
export(defineExperiment)
1610
export(define_samples)
17-
export(do.findmain)
18-
export(export.msfinder.formulas)
11+
export(doFindmain)
1912
export(exportDataset)
2013
export(filter_blanks)
2114
export(filter_good_features)
2215
export(filter_signal)
2316
export(find_good_features)
2417
export(findfeature)
2518
export(findmass)
26-
export(fooddb2msfinder)
27-
export(get.taxon.cids)
2819
export(getData)
29-
export(getSmilesInchi)
3020
export(get_ExpDes)
3121
export(get_instrument_platform)
32-
export(impRamSearch)
33-
export(import.adap.kdb)
34-
export(import.msfinder.formulas)
35-
export(import.msfinder.mssearch)
36-
export(import.msfinder.structures)
37-
export(import.sirius)
38-
export(manual.annotation.template)
3922
export(mean_signal_intensities)
4023
export(mergeRCobjects)
4124
export(ramclustR)
4225
export(rc.calibrate.ri)
4326
export(rc.cmpd.filter.blanks)
4427
export(rc.cmpd.filter.cv)
45-
export(rc.cmpd.get.classyfire)
46-
export(rc.cmpd.get.pubchem)
47-
export(rc.cmpd.get.smiles.inchi)
4828
export(rc.cmpd.replace.na)
4929
export(rc.expand.sample.names)
5030
export(rc.export.msp.rc)
@@ -58,20 +38,20 @@ export(rc.feature.replace.na)
5838
export(rc.get.csv.data)
5939
export(rc.get.df.data)
6040
export(rc.get.xcms.data)
41+
export(rc.merge.split.clusters)
6142
export(rc.qc)
6243
export(rc.ramclustr)
6344
export(rc.remove.qc)
6445
export(rc.restore.qc.samples)
6546
export(remove_blanks)
6647
export(replace_na)
48+
export(write.gcei.mat)
6749
export(write.methods)
6850
export(write.msp)
6951
export(write_csv)
7052
importFrom(dynamicTreeCut,cutreeDynamicTree)
7153
importFrom(e1071,skewness)
7254
importFrom(fastcluster,hclust)
73-
importFrom(ff,ff)
74-
importFrom(gplots,heatmap.2)
7555
importFrom(grDevices,dev.off)
7656
importFrom(grDevices,pdf)
7757
importFrom(graphics,"legend")
@@ -83,9 +63,7 @@ importFrom(graphics,abline)
8363
importFrom(graphics,axis)
8464
importFrom(graphics,boxplot)
8565
importFrom(graphics,hist)
86-
importFrom(httr,http_error)
87-
importFrom(jsonlite,fromJSON)
88-
importFrom(methods,new)
66+
importFrom(methods,is)
8967
importFrom(pcaMethods,pca)
9068
importFrom(preprocessCore,normalize.quantiles)
9169
importFrom(stats,aggregate)

0 commit comments

Comments
 (0)