Skip to content

Commit

Permalink
doc: Update count_mat docs (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
esiegel authored Oct 29, 2024
1 parent e210b2c commit a169417
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 9 deletions.
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.

0 comments on commit a169417

Please sign in to comment.