Skip to content

Commit

Permalink
Merge pull request #149 from /issues/147-ragg
Browse files Browse the repository at this point in the history
Add ragg dependency
  • Loading branch information
pdiakumis authored Apr 5, 2024
2 parents e9e2ba1 + bd3c1c1 commit 90e3e26
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@
^data-raw$
^\.bumpversion\.cfg$

inst/rmd/rnasum.html
^inst/rmd/rnasum.html$
inst/rmd/html
1 change: 1 addition & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ Imports:
plotly,
preprocessCore,
purrr,
ragg,
RCircos,
readr,
rlang,
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 90e3e26

Please sign in to comment.