Skip to content

Commit

Permalink
test replacing gpgr with ragg
Browse files Browse the repository at this point in the history
  • Loading branch information
pdiakumis committed Apr 3, 2024
1 parent 8eb4484 commit 64b6d0f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/conda_docker_pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: conda-docker-docs
on:
push:
branches:
- deploy_0.5.0
- deps
- rnasum-rpackage
env:
atoken: ${{ secrets.ANACONDA_UPLOAD_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions deploy/conda/recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ requirements:
- r-ggforce
- r-ggplot2
- r-glue
- umccr::r-gpgr
- r-ragg
- r-here
- r-htmltools
- r-htmlwidgets
Expand Down Expand Up @@ -70,7 +70,7 @@ requirements:
- r-ggforce
- r-ggplot2
- r-glue
- umccr::r-gpgr
- r-ragg
- r-here
- r-htmltools
- r-htmlwidgets
Expand Down
12 changes: 7 additions & 5 deletions inst/rmd/rnasum.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ knitr::knit_hooks$set(timeit = local({
knitr::opts_chunk$set(timeit = TRUE, echo = FALSE)
```

```{r echo=TRUE, message=FALSE}
#source(here::here("inst/rmd/params/pd.R")) # for use with 'Run All Chunks Above'
#source(here::here("inst/rmd/params/sk.R")) # for use with 'Run All Chunks Above'
```{r echo=FALSE, message=FALSE}
# source(here::here("inst/rmd/params/pd.R")) # for use with 'Run All Chunks Above'
# source(here::here("inst/rmd/params/sk.R")) # for use with 'Run All Chunks Above'
# start with more exotic pkgs, then get to core ones
{
Expand Down Expand Up @@ -1063,8 +1063,10 @@ for (dataset in names(ref_dataset.list)) {
##### Get genes genomic coordiantes
##### Limit genes annotation to those genes for which sample expression measurements are available
gene_info <- tx_gene_id_105 |>
dplyr::select("GENEID", "GENEBIOTYPE", "GENENAME", "SEQNAME",
"GENESEQSTART", "GENESEQEND") |>
dplyr::select(
"GENEID", "GENEBIOTYPE", "GENENAME", "SEQNAME",
"GENESEQSTART", "GENESEQEND"
) |>
dplyr::rename("ENSEMBL" = "GENEID", "SYMBOL" = "GENENAME") |>
dplyr::filter(.data$ENSEMBL %in% data.df$ENSEMBL)
Expand Down

0 comments on commit 64b6d0f

Please sign in to comment.