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

doc: Update count_mat docs #73

Merged
merged 1 commit into from
Oct 29, 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
2 changes: 1 addition & 1 deletion R/err.R
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ create_bugreport_from_seurat <- function(obj) {
#' This bugreport can then be included when reaching out to 10xGenomics Support or when filing
#' a Github ticket. This information should be included along with any other output when creating a Loupe file.
#'
#' @param count_mat A sparse dgCMatrix
#' @param count_mat A sparse dgCMatrix as is generated via Matrix::rsparsematrix. Rows are features, Columns are barcodes.
#' @param clusters list of factors that hold information for each barcode
#' @param projections list of matrices, all with dimensions (barcodeCount x 2)
#' @param assay_name optional string that holds the Seurat Object assay name.
Expand Down
4 changes: 2 additions & 2 deletions R/hdf5.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#' Create an hdf5 interchange file
#'
#' @param count_mat A sparse dgCMatrix
#' @param count_mat A sparse dgCMatrix as is generated via Matrix::rsparsematrix. Rows are features, Columns are barcodes.
#' @param clusters list of factors that hold information for each barcode
#' @param projections list of matrices, all with dimensions (barcodeCount x 2)
#' @param h5path path to h5 file
Expand Down Expand Up @@ -40,7 +40,7 @@ create_hdf5 <- function(
#' Writes the matrix to the H5 file
#'
#' @param f An open H5File
#' @param count_mat A sparse dgCMatrix
#' @param count_mat A sparse dgCMatrix as is generated via Matrix::rsparsematrix. Rows are features, Columns are barcodes.
#' @param feature_ids optional character vector that specifies the feature ids of the count matrix. Typically, these are the ensemble ids.
#'
#' @noRd
Expand Down
2 changes: 1 addition & 1 deletion R/lib.R
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ create_loupe_from_seurat <- function(

#' Create a Loupe file
#'
#' @param count_mat A sparse dgCMatrix
#' @param count_mat A sparse dgCMatrix as is generated via Matrix::rsparsematrix. Rows are features, Columns are barcodes.
#' @param clusters list of factors that hold information for each barcode
#' @param projections list of matrices, all with dimensions (barcodeCount x 2)
#' @param output_dir optional directory where the Loupe file will be written
Expand Down
2 changes: 1 addition & 1 deletion R/validate.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#' Validate the seurat count matrix
#'
#' @param count_mat A sparse dgCMatrix
#' @param count_mat A sparse dgCMatrix as is generated via Matrix::rsparsematrix. Rows are features, Columns are barcodes.
#' @param feature_ids optional character vector that specifies the feature ids of the count matrix. Typically, these are the ensemble ids.
#'
#' @return A list with two elements:
Expand Down
2 changes: 1 addition & 1 deletion man/create_bugreport.Rd

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

2 changes: 1 addition & 1 deletion man/create_loupe.Rd

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

6 changes: 5 additions & 1 deletion man/validate_barcodes.Rd

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

2 changes: 1 addition & 1 deletion man/validate_count_mat.Rd

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

Loading