Skip to content

Commit

Permalink
fix README file read
Browse files Browse the repository at this point in the history
  • Loading branch information
stemangiola committed May 16, 2024
1 parent 1674609 commit cffe0e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ _targets.R
_targets*
.DS_Store
._.DS_Store
counts_SE.rda
8 changes: 3 additions & 5 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,6 @@ All functions are directly compatibble with `SummarizedExperiment` object.


```{r, echo=FALSE, include=FALSE, }
library(dplyr)
library(tidyr)
library(tibble)
Expand All @@ -108,9 +106,9 @@ my_theme =
axis.title.y = element_text(margin = margin(t = 10, r = 10, b = 10, l = 10))
)
counts_SE = here("dev/counts_SE.rda") |> load()
tibble_counts = counts_SE %>% tidybulk() %>% as_tibble()
utils::download.file("https://zenodo.org/records/11201167/files/counts_SE.rda?download=1", destfile = "counts_SE.rda")
counts_SE = here("counts_SE.rda") |> load()
tibble_counts = counts_SE %>% as_tibble()
```

Expand Down

0 comments on commit cffe0e6

Please sign in to comment.