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

add parameters for cellranger mkfastq #161

Merged
merged 5 commits into from
Jul 18, 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
71 changes: 70 additions & 1 deletion jsons/parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -4162,6 +4162,7 @@
"align_files_dbscan_style_1": "n_jobs",
"align_scans_dbscan_style_1": "n_jobs",
"bowtie_style_1": "-p",
"cellranger_style_1": "--localcores",
"comet_style_1": "num_threads",
"cutadapt_style_1": "-j",
"diann_library_empirical_style_1": "--threads",
Expand Down Expand Up @@ -4207,6 +4208,12 @@
-1
]
],
"cellranger_style_1": [
[
-1,
2
]
],
"comet_style_1": [
[
-1,
Expand Down Expand Up @@ -10585,6 +10592,19 @@
"value_translations": {},
"value_type": "float"
},
{
"default_value": "local",
"description": "Job manager to use. Options are: local (default), a cluster job mode (i.e., sge, lsf, slurm), or the path to a <jobmode>.template file",
"key_translations": {
"cellranger_style_1": "--jobmode",
"ursgal_style_1": "jobmode"
},
"name": "jobmode",
"tag": ["transcriptomics", "cellranger"],
"triggers_rerun": true,
"value_translations": {},
"value_type": "str"
},
{
"default_value": ".u.json",
"description": "Exension for .json files",
Expand Down Expand Up @@ -11857,6 +11877,7 @@
"default_value": 31000000000,
"description": "Maximum bytes of allowed RAM usage.",
"key_translations": {
"cellranger_style_1": "--localmem",
"star_index_style_1": "--limitGenomeGenerateRAM",
"ursgal_style_1": "max_ram"
},
Expand All @@ -11865,7 +11886,14 @@
"configuration"
],
"triggers_rerun": false,
"value_translations": {},
"value_translations": {
"cellranger_style_1": [
[
31000000000,
4
]
]
},
"value_type": "int"
},
{
Expand Down Expand Up @@ -15654,6 +15682,21 @@
},
"value_type": "bool"
},
{
"default_value": "$projectId",
"description": "Custom project name,",
"key_translations": {
"cellranger_style_1": "--project",
"ursgal_style_1": "project"
},
"name": "project",
"tag": [
"transcriptomics", "cellranger"
],
"triggers_rerun": true,
"value_translations": {},
"value_type": "str"
},
{
"default_value": "heuristic",
"description": "Protein inference algorithm to be used.",
Expand Down Expand Up @@ -16687,6 +16730,19 @@
},
"value_type": "bool"
},
{
"default_value": "",
"description": "Path to the Illumina BCL run folder",
"key_translations": {
"cellranger_style_1": "--run",
"ursgal_style_1": "run"
},
"name": "run",
"tag": ["transcriptomics", "cellranger"],
"triggers_rerun": true,
"value_translations": {},
"value_type": "str"
},
{
"default_value": "None",
"description": "This parameter is only relevant for pepXML output and is used solely to annotate additional information in the output. It does not influence the search. The sample enzyme could be different from the search enzyme i.e. the sample enzyme is 'trypsin' yet the search enzyme is 'No-enzyme' for a non-specific search. Hence the need for this separate parameter.Default value is 'None', which is translated to 0.",
Expand Down Expand Up @@ -16849,6 +16905,19 @@
},
"value_type": "str"
},
{
"default_value": "",
"description": "Path to sample sheet",
"key_translations": {
"cellranger_style_1": "--samplesheet",
"ursgal_style_1": "samplesheet"
},
"name": "samplesheet",
"tag": ["transcriptomics", "cellranger"],
"triggers_rerun": true,
"value_translations": {},
"value_type": "str"
},
{
"default_value": [],
"description": "Spectra rejected during mzml2mgf conversion",
Expand Down
8 changes: 8 additions & 0 deletions jsons/styles.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@
"1.3.1"
]
},
{
"name": "Cellranger mkfastq",
"reference": "Zheng, G. X. Y. et al. (2017). Massively parallel digital transcriptional profiling of single cells. Nature Communications 8: 1-12, doi:10.1038/ncomms14049",
"style": "cellranger_style_1",
"versions": [
"8.0.1"
]
},
{
"name": "Combine PEP",
"reference": "Combines PEP scores from different search engines.",
Expand Down
Loading