Skip to content

Commit

Permalink
fix root directory
Browse files Browse the repository at this point in the history
  • Loading branch information
philouail committed Oct 3, 2024
1 parent 36522f3 commit 9d0887d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion vignettes/01-end-to-end-untargeted-metabolomics.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ vignette: >
%\VignetteEncoding{UTF-8}
---

```{r setup, include=FALSE}
knitr::opts_knit$set(root.dir = './')
```

# Introduction

The present workflow describes all steps for the analysis of an LC-MS/MS
Expand Down Expand Up @@ -1706,7 +1710,7 @@ Javascript as well as loaded easily back into R.
# d <- file.path(tempdir(), "objects/lcms1")
# saveMsObject(lcms1, AlabasterParam(path = d))
#for now let's do R object because the previous method is not implemented yet.
save(lcms1, file = "objects/preprocessed_lcms1.RData")
save(lcms1, file = "preprocessed_lcms1.RData")
```

# Data normalization
Expand Down
6 changes: 5 additions & 1 deletion vignettes/alignment-to-external-dataset.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ vignette: >
%\VignetteEncoding{UTF-8}
---

```{r setup, include=FALSE}
knitr::opts_knit$set(root.dir = './')
```

# Introduction

In certain experiments, aligning datasets recorded at different times is
Expand Down Expand Up @@ -54,7 +58,7 @@ worflow](https://rformassspectrometry.github.io/metabonaut/articles/end-to-end-u
vignette.

```{r}
load("objects/preprocessed_lcms1.RData")
load("preprocessed_lcms1.RData")
```

## Load unprocessed LC-MS/MS data
Expand Down

0 comments on commit 9d0887d

Please sign in to comment.