Skip to content

Commit

Permalink
update vignette
Browse files Browse the repository at this point in the history
  • Loading branch information
lgatto committed Apr 9, 2024
1 parent 6dec4b2 commit b747013
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 6 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: MsDataHub
Title: Mass Spectrometry Data on ExperimentHub
Version: 1.3.3
Version: 1.3.4
Authors@R:
c(person(given = "Laurent",
family = "Gatto",
Expand Down Expand Up @@ -36,7 +36,7 @@ Suggests:
Spectra,
mzR,
PSMatch,
QFeatures
QFeatures (>= 1.13.3)
biocViews: ExperimentHubSoftware,
MassSpectrometry,
Proteomics,
Expand Down
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# MsDataHub 1.3

## MsDataHub 1.3.4

- Update vignette: load `Report.Derks2022.plexDIA.tsv` and
`benchmarkingDIA.tsv` with latest QFeatures.

## MsDataHub 1.3.3

- Add `Report.Derks2022.plexDIA.tsv`, plexDIA DIA-NN output from Derks
Expand Down
4 changes: 3 additions & 1 deletion R/derks2022plexDIA.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
##' @title Derks 2022 plexDIA data
##'
##' @name Report.Derks2022.plexDIA.tsv
##' @name Report.Derks2022.plexDIA
##'
##' @aliases Report.Derks2022.plexDIA.tsv
##'
##' @description
##'
Expand Down
35 changes: 35 additions & 0 deletions man/Report.Derks2022.plexDIA.Rd

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

2 changes: 1 addition & 1 deletion man/benchmarkingDIA.Rd

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

24 changes: 22 additions & 2 deletions vignettes/MsDataHub.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,28 @@ Spectra(f)

## DIA-NN software outputs

- Label-free DIA: `benchmarkingDIA.tsv`
- mTRAQ plexDIA: `Report.Derks2022.plexDIA.tsv`
- Type: tab-delimited DIA quantitative proteomics data tables produced
by [DIA-NN](https://github.com/vdemichev/DiaNN).
- Files:
- Label-free DIA: `benchmarkingDIA.tsv`
- mTRAQ plexDIA: `Report.Derks2022.plexDIA.tsv`
- More details: `?benchmarkingDIA.tsv` and
`?Report.Derks2022.plexDIA.tsv`

Load with

```{r lfdia, eval = TRUE, message = FALSE}
library(QFeatures)
lfdia <- read.delim(MsDataHub::benchmarkingDIA.tsv())
readQFeaturesFromDIANN(lfdia)
```

```{r pledia, eval = TRUE, message = FALSE}
plexdia <- read.delim(MsDataHub::Report.Derks2022.plexDIA.tsv())
readQFeaturesFromDIANN(plexdia, multiplexing = "mTRAQ")
```



# Adding data to `MsDataHub`

Expand Down

0 comments on commit b747013

Please sign in to comment.