Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
flying-sheep committed Sep 15, 2024
1 parent 3aca834 commit 41529f9
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 7 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,4 @@ Collate:
'projection-dist.r'
'rankcor.r'
'sigmas-plotting.r'
RoxygenNote: 7.2.3
RoxygenNote: 7.3.2
3 changes: 1 addition & 2 deletions R/destiny-package.r
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@
#' @examples
#' demo(destiny, ask = FALSE)
#'
#' @docType package
#' @name destiny
#'
## Make sure Rcpp and RcppEigen are loaded
#' @importFrom Rcpp evalCpp
#' @importFrom RcppEigen RcppEigen.package.skeleton
NULL
"_PACKAGE"
26 changes: 26 additions & 0 deletions man/destiny.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions vignettes/Gene-Relevance.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ gms[-1] %>% map(~ .$ids[1:10]) %>% purrr::reduce(intersect) %>% cat(sep = ' ')
```

```{r}
httr::GET('https://www.uniprot.org/uniprot/', query = list(
httr::GET('https://rest.uniprot.org/uniprotkb/search', query = list(
columns = 'id,genes,comment(TISSUE SPECIFICITY)',
format = 'tab',
query = rowData(allen)$Uniprot[gms$cosine$ids[1:6]] %>% unlist() %>% paste(collapse = ' or ')
)) %>% httr::content(type = 'text/tab-separated-values', encoding = 'utf-8', )
format = 'tsv',
query = rowData(allen)$Uniprot[gms$cosine$ids[1:6]] %>% unlist() %>% paste(collapse = ' OR ')
)) %>% httr::content(type = 'text/tab-separated-values', encoding = 'utf-8')
```

0 comments on commit 41529f9

Please sign in to comment.