Skip to content

Commit

Permalink
ci: fix docker IMG hash
Browse files Browse the repository at this point in the history
  • Loading branch information
js2264 committed Jan 22, 2024
1 parent 1aad2ca commit 4bbe9eb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/biocbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
env:
IMG: ${{ steps.docker.outputs.ImageID }}
run: |
SHA=$(docker container create ${{ env.IMG }})
SHA=$(docker container create ghcr.io/js2264/ohca:latest)
docker container cp ${SHA}:/${{ env.Pkgname }}_${{ env.pkgversion }}.tar.gz .
tar --extract --gzip --file ${{ env.Pkgname }}_${{ env.pkgversion }}.tar.gz
echo bundle_path=${{ env.Pkgname }}_${{ env.pkgversion }}.tar.gz >> "${GITHUB_ENV}"
Expand Down
2 changes: 1 addition & 1 deletion inst/pages/workflow-chicken.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ samples <- list(
'4DNESIR416OW' = 'prometaphase (15m)',
'4DNESS8PTK6F' = 'prometaphase (30m)'
)
bpparam <- MulticoreParam(workers = 5, progressbar = TRUE)
bpparam <- MulticoreParam(workers = 5, progressbar = FALSE)
hics <- bplapply(names(samples), fourDNHiCExperiment, BPPARAM = bpparam)
```

Expand Down
2 changes: 1 addition & 1 deletion inst/pages/workflow-yeast.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ parallelization of independent correlation computation runs over multiple CPUs.
```{r eval = FALSE}
# Some chromosomes will be ignored as they are too small for this analysis
chrs <- c('II', 'IV', 'V', 'VII', 'VIII', 'IX', 'X', 'XI', 'XIII', 'XIV', 'XVI')
bpparam <- BiocParallel::MulticoreParam(workers = 6, progressbar = TRUE)
bpparam <- BiocParallel::MulticoreParam(workers = 6, progressbar = FALSE)
df <- BiocParallel::bplapply(chrs, function(CHR) {
mats <- map(hics, ~ .x[CHR] |> interactions() |> gi2cm('count') |> cm2matrix())
Expand Down

0 comments on commit 4bbe9eb

Please sign in to comment.