Skip to content

Commit

Permalink
BUG: remove 'pooled' option to chimera-method parameter (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
colinvwood authored Dec 5, 2024
1 parent d7083a8 commit b47f488
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions q2_dada2/plugin_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import q2_dada2._examples as ex

_POOL_OPT = {'pseudo', 'independent'}
_CHIM_OPT = {'pooled', 'consensus', 'none'}
_CHIM_OPT = {'consensus', 'none'}

plugin = qiime2.plugin.Plugin(
name='dada2',
Expand Down Expand Up @@ -89,8 +89,7 @@
),
'chimera_method': ('The method used to remove chimeras. '
'"none": No chimera removal is performed. '
'"pooled": All reads are pooled prior to chimera '
'detection. "consensus": Chimeras are detected in '
'"consensus": Chimeras are detected in '
'samples individually, and sequences found '
'chimeric in a sufficient fraction of samples are '
'removed.'),
Expand Down Expand Up @@ -221,8 +220,7 @@
'ASVs and thus higher sensitivity to those ASVs.'),
'chimera_method': ('The method used to remove chimeras. '
'"none": No chimera removal is performed. '
'"pooled": All reads are pooled prior to chimera '
'detection. "consensus": Chimeras are detected in '
'"consensus": Chimeras are detected in '
'samples individually, and sequences found '
'chimeric in a sufficient fraction of samples are '
'removed.'),
Expand Down Expand Up @@ -332,8 +330,7 @@
'ASVs and thus higher sensitivity to those ASVs.',
'chimera_method': 'The method used to remove chimeras. '
'"none": No chimera removal is performed. '
'"pooled": All reads are pooled prior to chimera '
'detection. "consensus": Chimeras are detected in '
'"consensus": Chimeras are detected in '
'samples individually, and sequences found '
'chimeric in a sufficient fraction of samples are '
'removed.',
Expand Down Expand Up @@ -471,8 +468,7 @@
'ASVs and thus higher sensitivity to those ASVs.',
'chimera_method': 'The method used to remove chimeras. '
'"none": No chimera removal is performed. '
'"pooled": All reads are pooled prior to chimera '
'detection. "consensus": Chimeras are detected in '
'"consensus": Chimeras are detected in '
'samples individually, and sequences found chimeric '
'in a sufficient fraction of samples are removed.',
'min_fold_parent_over_abundance':
Expand Down

0 comments on commit b47f488

Please sign in to comment.