Browse code

fixed documentation error and updated the looseFile flag to flatFile

Ming Liu authored on 05/01/2024 20:34:37
Showing 1 changed files
... ...
@@ -13,6 +13,7 @@ qcInputProcess(
13 13
   ref,
14 14
   rawFile,
15 15
   filFile,
16
+  flatFiles,
16 17
   dataType
17 18
 )
18 19
 }
... ...
@@ -33,6 +34,8 @@ qcInputProcess(
33 34
 
34 35
 \item{filFile}{The full path of the RDS file or Matrix file of the cell count matrix. It's one of the path provided in --cell_data argument.}
35 36
 
37
+\item{flatFiles}{The full paths of the matrix, barcode, and features (in that order) files used to construct an SCE object.}
38
+
36 39
 \item{dataType}{Type of the input. It can be "Both", "Droplet" or "Cell". It's one of the path provided in --genome argument.}
37 40
 }
38 41
 \value{
Browse code

Update QC pipeline to support parallel computing

rz2333 authored on 23/06/2020 23:27:49
Showing 1 changed files
... ...
@@ -17,6 +17,8 @@ qcInputProcess(
17 17
 )
18 18
 }
19 19
 \arguments{
20
+\item{preproc}{Method used to preprocess the data. It's one of the path provided in --preproc argument.}
21
+
20 22
 \item{samplename}{The sample name of the data. It's one of the path provided in --sample argument.}
21 23
 
22 24
 \item{path}{Base path of the dataset. It's one of the path provided in --bash_path argument.}
Browse code

Update sctk qc pipeline to allow only droplet or cell input

rz2333 authored on 22/06/2020 17:48:28
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,42 @@
1
+% Generated by roxygen2: do not edit by hand
2
+% Please edit documentation in R/sctkQCUtils.R
3
+\name{qcInputProcess}
4
+\alias{qcInputProcess}
5
+\title{Create SingleCellExperiment object from command line input arguments}
6
+\usage{
7
+qcInputProcess(
8
+  preproc,
9
+  samplename,
10
+  path,
11
+  raw,
12
+  fil,
13
+  ref,
14
+  rawFile,
15
+  filFile,
16
+  dataType
17
+)
18
+}
19
+\arguments{
20
+\item{samplename}{The sample name of the data. It's one of the path provided in --sample argument.}
21
+
22
+\item{path}{Base path of the dataset. It's one of the path provided in --bash_path argument.}
23
+
24
+\item{raw}{The directory contains droplet matrix, gene and cell barcodes information. It's one of the path provided in --raw_data_path argument.}
25
+
26
+\item{fil}{The directory contains cell matrix, gene and cell barcodes information. It's one of the path provided in --cell_data_path argument.}
27
+
28
+\item{ref}{The name of reference used by cellranger. Only need for CellrangerV2 data.}
29
+
30
+\item{rawFile}{The full path of the RDS file or Matrix file of the raw gene count matrix. It's one of the path provided in --raw_data argument.}
31
+
32
+\item{filFile}{The full path of the RDS file or Matrix file of the cell count matrix. It's one of the path provided in --cell_data argument.}
33
+
34
+\item{dataType}{Type of the input. It can be "Both", "Droplet" or "Cell". It's one of the path provided in --genome argument.}
35
+}
36
+\value{
37
+A list of \link[SingleCellExperiment]{SingleCellExperiment} object containing
38
+the droplet or cell data or both,depending on the dataType that users provided.
39
+}
40
+\description{
41
+Create SingleCellExperiment object from command line input arguments
42
+}