Skip to content

Commit

Permalink
removed bib and fix deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
philouail committed Oct 6, 2024
1 parent 200cf8f commit 2297035
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build_deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,7 @@ jobs:
git config --global --add safe.directory /__w/metabonaut/metabonaut
Rscript -e "pkgdown::init_site()"
Rscript -e "pkgdown::build_article('a-end-to-end-untargeted-metabolomics', quiet = FALSE)"
ls vignettes/*.Rmd | xargs -n1 basename | grep -v 'a-end-to-end-untargeted-metabolomics.qmd' | cut -f 1 -d '.' | parallel -j4 "Rscript -e 'pkgdown::build_article(\"{}\")'"
Rscript -e "pkgdown::deploy_to_branch(lazy = TRUE, quiet = FALSE, new_process = FALSE, install = FALSE)"
Rscript -e "pkgdown::deploy_to_branch(lazy = TRUE, new_process = FALSE, install = FALSE)"
shell: bash {0}
## Note that you need to run pkgdown::deploy_to_branch(new_process = FALSE)
## at least one locally before this will work. This creates the gh-pages
Expand Down
6 changes: 3 additions & 3 deletions vignettes/a-end-to-end-untargeted-metabolomics.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ tbl-cap-location: bottom
editor: visual
minimal: true
date: 'Compiled: `r format(Sys.Date(), "%B %d, %Y")`'
bibliography: references.bib
vignette: >
%\VignetteIndexEntry{Complete end-to-end LC-MS/MS Metabolomic Data analysis}
%\VignetteEngine{quarto::html}
Expand Down Expand Up @@ -419,7 +418,7 @@ rtime(spec2)
#' Checking its m/z
mz(spec2)
#' Filtering for a specific m/z range and viewing in a tabular format
#' Filtering for a specific m/z range and viewing in a tabular format
filt_spec <- filterMzRange(spec2,c(50,200))
data.frame(intensity = unlist(intensity(filt_spec)),
Expand Down Expand Up @@ -456,7 +455,8 @@ bpc <- chromatogram(lcms1, aggregationFun = "max")
plot(bpc, col = paste0(col_sample, 80), main = "BPC", lwd = 1.5)
grid()
legend("topright", col = col_phenotype,
legend = names(col_phenotype), lty = 1, lwd = 2, horiz = TRUE, bty = "n")
legend = names(col_phenotype), lty = 1, lwd = 2, horiz = TRUE,
bty = "n")
```

After about 240 seconds no signal seems to be measured. Thus, we filter the data
Expand Down

0 comments on commit 2297035

Please sign in to comment.