-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml
36 lines (28 loc) · 1.56 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# All parameters included in this file can be altered at the command line using the `--config` flag or by editing this file directly.
### Project-specific parameters
# The below are parameters that are project-specific and should be customized to reflect the project or dataset being processed and the local setup.
# file paths
input_data_dir: "example-results"
results_dir: "example-results"
mito_file: "reference-files/Homo_sapiens.GRCh38.104.mitogenes.txt"
project_metadata: "example-data/project-metadata/example-library-metadata.tsv"
### Processing parameters
# The below are parameters that are utilized to specify parameters specific to processing an individual library through the workflow.
# Changes to these are not required and can therefore be left at the default values.
# Although one may want to alter these parameters for exploratory purposes.
# seed to use for all steps
seed: 2021
# miQC filtering parameters
filtering_method: "miQC"
prob_compromised_cutoff: 0.75 # Maximum miQC probability of cell being compromised
# manual filtering parameters
gene_detected_row_cutoff: 5 # Percent of cells a gene must be detected in
gene_means_cutoff: 0.1 # Mean gene expression minimum threshold
mito_percent_cutoff: 20 # Maximum percent mitochondrial reads per cell threshold
min_gene_cutoff: 200 # Minimum number of genes detected per cell
umi_count_cutoff: 500 # Minimum UMI per cell
# dimensionality reduction parameters
n_genes_pca: 2000 # The `n` number of highly variable genes to subset for PCA
# clustering parameters
core_cluster_type: "louvain"
nearest_neighbors: 10