Skip to content

Commit

Permalink
Merge pull request #45 from ctg-lund/add-cellranger-argument
Browse files Browse the repository at this point in the history
Added nextflow conf for cellranger argument
  • Loading branch information
Fattigman authored Oct 17, 2023
2 parents e98c0c2 + ff7b35a commit 89d8af8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions modules/cellranger/count-arc/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ process COUNT_ARC {
--reference=$genome \\
--libraries=$library \\
--localcores=19 --localmem=120 \\
$params.cellranger_arguments
"""
stub:
Expand Down
2 changes: 1 addition & 1 deletion modules/cellranger/count-atac/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ process COUNT_ATAC {
--sample=$sample_id \\
--reference=$genome \\
--localcores=19 --localmem=120 \\
$forcecells $intron_argument
$forcecells $intron_argument $params.cellranger_arguments
"""
stub:
Expand Down
1 change: 1 addition & 0 deletions modules/cellranger/count-citeseq/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ process COUNT {
--feature-ref=$feature_reference \\
--libraries=$library \\
--localcores=19 --localmem=120 \\
$params.cellranger_arguments
"""
stub:
Expand Down
2 changes: 1 addition & 1 deletion modules/cellranger/count-rna/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ process COUNT {
--sample $sample_id \\
--transcriptome $genome \\
--localcores=19 --localmem 120 \\
$forcecells $intron_argument
$forcecells $intron_argument $params.cellranger_arguments
"""
stub:
Expand Down
1 change: 1 addition & 0 deletions modules/cellranger/multi/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ process MULTI {
--id=$sample_id \\
--csv=$config \\
--localcores=16 --localmem=120 \\
$params.cellranger_arguments
"""
stub:
"""
Expand Down
1 change: 1 addition & 0 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ params {
// runOptions
intron_mode="true"
ctg_mode="true"
cellranger_arguments=""

deliver_to = "[email protected]"

Expand Down

0 comments on commit 89d8af8

Please sign in to comment.