forked from nf-core/airrflow
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request nf-core#299 from ggabernet/protocols
Provide profile for NEB and TAKARA protocols
- Loading branch information
Showing
26 changed files
with
951 additions
and
191 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Nextflow config file for running minimal tests | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Defines input files and everything required to run a fast and simple pipeline test. | ||
Use as follows: | ||
nextflow run nf-core/airrflow -profile clontech_umi_bcr,<docker/singularity> --outdir <OUTDIR> | ||
---------------------------------------------------------------------------------------- | ||
*/ | ||
|
||
params { | ||
config_profile_name = 'Takara Bio / Clontech SMARTer v2' | ||
config_profile_description = 'Profile to run pipeline for the Takara Bio / Clontech SMARTer v2 (UMI) BCR protocol profile' | ||
|
||
mode = 'fastq' | ||
|
||
library_generation_method = 'dt_5p_race_umi' | ||
|
||
cprimers = 'https://bitbucket.org/kleinstein/immcantation/raw/c98269b194e9c6262fe3b098be3600ba7f64b85c/protocols/Universal/Human_IG_CRegion_RC.fasta' | ||
|
||
// primer options | ||
cprimer_position = 'R1' | ||
cprimer_start = 0 | ||
vprimer_start = 0 | ||
umi_length = 12 | ||
umi_position = 'R2' | ||
cluster_sets = false | ||
|
||
|
||
// Mask primer options | ||
maskprimers_align = true | ||
primer_extract_len = 7 | ||
primer_mask_mode = 'cut' | ||
primer_maxlen = 70 | ||
primer_r1_maxerror = 0.2 | ||
assemblepairs_sequential = true | ||
primer_consensus = 0.6 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Nextflow config file for running minimal tests | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Defines input files and everything required to run a fast and simple pipeline test. | ||
Use as follows: | ||
nextflow run nf-core/airrflow -profile clontech_umi_tcr,<docker/singularity> --outdir <OUTDIR> | ||
---------------------------------------------------------------------------------------- | ||
*/ | ||
|
||
params { | ||
config_profile_name = 'Takara Bio / Clontech SMARTer v2 TCR' | ||
config_profile_description = 'Profile to run pipeline for the Takara Bio / Clontech SMARTer v2 (UMI) TCR protocol profile' | ||
|
||
mode = 'fastq' | ||
|
||
library_generation_method = 'dt_5p_race_umi' | ||
|
||
cprimers = 'https://bitbucket.org/kleinstein/immcantation/raw/16f94088c1df5c7a0ee1c9ea8b403cd4d2488e8a/protocols/Universal/Human_TR_CRegion_RC.fasta' | ||
|
||
// primer options | ||
cprimer_position = 'R1' | ||
cprimer_start = 0 | ||
vprimer_start = 0 | ||
umi_length = 12 | ||
umi_position = 'R2' | ||
cluster_sets = false | ||
|
||
|
||
// Mask primer options | ||
maskprimers_align = true | ||
primer_extract_len = 7 | ||
primer_mask_mode = 'cut' | ||
primer_maxlen = 70 | ||
primer_r1_maxerror = 0.2 | ||
assemblepairs_sequential = true | ||
primer_consensus = 0.6 | ||
|
||
// TCR options | ||
clonal_threshold = 0 | ||
skip_lineage = true | ||
} |
Oops, something went wrong.