Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Testdata in pkgdown yml #129

Merged
merged 16 commits into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions R/differential_fxns.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@ NULL
#' @examples
#' example(build_domino)
#'
#' #create alternative clustering
#' clusters_tiny_alt <- setNames(c(121:240, 1:120, 241:360), names(PBMC$clusters_tiny))
#' #create alternative clustering by shuffling cluster assignments
#' clusters_tiny_alt <- setNames(
#' PBMC$clusters_tiny[c(121:240, 1:120, 241:360)],
#' names(PBMC$clusters_tiny)
#' )
#' clusters_tiny_alt <- as.factor(clusters_tiny_alt)
#'
#' #build an alternative domino object
Expand Down
7 changes: 7 additions & 0 deletions _pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,13 @@ reference:
- count_linkage
- mean_ligand_expression
- rename_clusters
- mock_linkage_summary
- title: "Data"
contents:
- CellPhoneDB
- PBMC
- SCENIC


navbar:
type: light
Expand Down
1 change: 1 addition & 0 deletions docs/reference/CellPhoneDB.html

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

7 changes: 5 additions & 2 deletions man/summarize_linkages.Rd

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

2 changes: 1 addition & 1 deletion vignettes/dominoSignal.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ circos_ligand_receptor(pbmc_dom, receptor = "CD74")

## Continued Development

Since dominoSignal is a package still being developed, there are new functions and features that will be implemented in future versions. In the meantime, we have put together further information on [plotting](https://fertiglab.github.io/dominoSignal/articles/plotting_vignette) and the [domino object structure](https://fertiglab.github.io/dominoSignal/articles/domino_object_vignette) if you would like to explore more of the package's functionality. Additionally, if you find any bugs, have further questions, or want to share an idea, please let us know [here](https://github.com/FertigLab/dominoSIgnal/issues).
Since dominoSignal is a package still being developed, there are new functions and features that will be implemented in future versions. In the meantime, we have put together further information on [plotting](https://fertiglab.github.io/dominoSignal/articles/plotting_vignette) and the [domino object structure](https://fertiglab.github.io/dominoSignal/articles/domino_object_vignette) if you would like to explore more of the package's functionality. Additionally, if you find any bugs, have further questions, or want to share an idea, please let us know [here](https://github.com/FertigLab/dominoSignal/issues).

<details><summary>Vignette Build Information</summary>
Date last built and session information:
Expand Down
Loading