Skip to content

Commit

Permalink
only_end-to-end_nosavingobject
Browse files Browse the repository at this point in the history
  • Loading branch information
philouail committed Oct 10, 2024
1 parent 21a4365 commit 749aa01
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build_deploy.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
name: pkgdown

on:
repository_dispatch:
types: [trigger-workflow-2]
push:
branches:
- phili

# on:
# repository_dispatch:
# types: [trigger-workflow-2]

jobs:
build-and-deploy:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/docker-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ on:
push:
branches:
- main
- phili
- jomain

jobs:
build-docker-and-push:
Expand Down
14 changes: 6 additions & 8 deletions vignettes/a-end-to-end-untargeted-metabolomics.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -115,17 +115,15 @@ the code below we use a *fork-based* parallel processing on unix system, and a
*socket-based* parallel processing on the Windows operating system.

```{r par-process, eval = FALSE}
register(SerialParam())
#' Set up parallel processing using 2 cores
## if (.Platform$OS.type == "unix") {
## register(MulticoreParam(2))
## } else {
## register(SnowParam(2))
## }
if (.Platform$OS.type == "unix") {
register(MulticoreParam(2))
} else {
register(SnowParam(2))
}
```


# Data organisation

The experimental data is now represented by a `MsExperiment` object from the
Expand Down Expand Up @@ -1713,7 +1711,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 = "preprocessed_lcms1.RData")
#save(lcms1, file = "preprocessed_lcms1.RData")
```

# Data normalization
Expand Down

0 comments on commit 749aa01

Please sign in to comment.