Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add MsBackendMetaboLights #3

Merged
merged 5 commits into from
Sep 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/check-bioc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@

on:
push:
pull_request:
paths-ignore:
- 'README.md'

name: R-CMD-check-bioc

Expand Down
13 changes: 10 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: MsBackendMetaboLights
Title: Retrieve Mass Spectrometry Data from MetaboLights
Version: 0.0.1
Version: 0.0.3
Authors@R:
c(person(given = "Johannes", family = "Rainer",
email = "Johannes.Rainer@eurac.edu",
Expand All @@ -21,13 +21,20 @@ Description: MetaboLights is one of the main public repositories for storage
Depends:
R (>= 4.2.0)
Imports:
curl
curl,
ProtGenerics,
Spectra,
BiocFileCache,
methods
Suggests:
testthat,
rmarkdown,
mzR
mzR,
knitr,
BiocStyle
License: Artistic-2.0
Encoding: UTF-8
VignetteBuilder: knitr
BugReports: https://github.com/RforMassSpectrometry/MsBackendMetaboLights/issues
URL: https://github.com/RforMassSpectrometry/MsBackendMetaboLights
biocViews: Infrastructure, MassSpectrometry, Metabolomics, DataImport, Proteomics
Expand Down
15 changes: 15 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,8 +1,23 @@
# Generated by roxygen2: do not edit by hand

export(MsBackendMetaboLights)
export(mtbls_ftp_path)
export(mtbls_list_files)
exportClasses(MsBackendMetaboLights)
exportMethods(backendInitialize)
exportMethods(backendMerge)
importClassesFrom(Spectra,MsBackendMzR)
importFrom(BiocFileCache,BiocFileCache)
importFrom(ProtGenerics,backendMerge)
importFrom(curl,curl)
importFrom(curl,handle_setopt)
importFrom(curl,new_handle)
importFrom(methods,callNextMethod)
importFrom(methods,new)
importFrom(utils,read.table)
importMethodsFrom(BiocFileCache,"bfcmeta<-")
importMethodsFrom(BiocFileCache,bfcmetalist)
importMethodsFrom(BiocFileCache,bfcquery)
importMethodsFrom(BiocFileCache,bfcrpath)
importMethodsFrom(ProtGenerics,backendInitialize)
importMethodsFrom(ProtGenerics,dataOrigin)
9 changes: 9 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# MsBackendMetabolights 0.0

## Changes in 0.0.3

- Add vignette and `backendMerge,MsBackendMetaboLights` function.

## Changes in 0.0.2

- Add `MsBackendMetaboLights` class, constructor and `backendInitalize()`
method.

## Changes in 0.0.1

- Add utility functions to retrieve information from MetaboLights.
156 changes: 0 additions & 156 deletions R/MetaboLights.R

This file was deleted.

Loading
Loading