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

Disable output filename actions #24

Merged
merged 3 commits into from
Jan 24, 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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Greengenes2 changelog

## Version 2024.01

* Removed methods of bulk characterization which are resource, not user, oriented

## Version 2022.12

* Added a method for collapsing by multifurcation in [#5](https://github.com/biocore/q2-greengenes2/pull/5)
Expand Down
76 changes: 0 additions & 76 deletions q2_gg2/plugin_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,82 +131,6 @@
)


plugin.methods.register_function(
function=q2_gg2.bulk_sequence_v4_asv_assessment,
inputs={'phylogeny': Phylogeny[Rooted],
'taxa': FeatureData[Taxonomy],
'full_length_v4': FeatureData[Sequence],
'sequences': FeatureData[Sequence]},
parameters={'group': Int,
'version': Str,
'output_filename': Str},
outputs=[('characterization', ASVAssessment)],
input_descriptions={
'phylogeny': 'The ID annotated phylogeny',
'taxa': 'The taxa indexed by ID',
'full_length_v4': 'The extracted V4 sequences from the backbone',
'sequences': 'The full set of GG2 sequences'},
parameter_descriptions={
'group': 'The hash group to process',
'version': 'The database version to use',
'output_filename': 'The file to write assessments too'
},
output_descriptions={
'characterization': "This output is undefined"},
name='Bulk ASV assessment',
description=("Check what full length records the ASV associates with "
"and members within its placement multifurcation"),
citations=[]
)


plugin.methods.register_function(
function=q2_gg2.bulk_clade_v4_asv_assessment,
inputs={'phylogeny': Phylogeny[Rooted],
'taxa': FeatureData[Taxonomy],
'full_length_v4': FeatureData[Sequence],
'sequences': FeatureData[Sequence]},
parameters={'group': Int,
'version': Str,
'output_filename': Str},
outputs=[('characterization', CladeAssessment)],
input_descriptions={
'phylogeny': 'The ID annotated phylogeny',
'taxa': 'The taxa indexed by ID',
'full_length_v4': 'The extracted V4 sequences from the backbone',
'sequences': 'The full set of GG2 sequences'},
parameter_descriptions={
'group': 'The hash group to process',
'version': 'The database version to use',
'output_filename': 'The file to write assessments too'
},
output_descriptions={'characterization': 'This output is undefined'},
name='Bulk Clade ASV level assessment',
description=("Test whether the clade is uniquely represented by ASVs "
"and other summary information about the clade"),
citations=[]
)


plugin.methods.register_function(
function=q2_gg2.clade_lookup,
inputs={'taxonomy_as_tree': Phylogeny[Rooted]},
parameters={'version': Str,
'output_filename': Str},
outputs=[('characterization', CladeAssessment)],
input_descriptions={
'taxonomy_as_tree': 'The taxonomy represented as a newick string'},
parameter_descriptions={
'version': 'The database version to use',
'output_filename': 'The file to write the lookup too'
},
output_descriptions={'characterization': 'This output is undefined'},
description=("Construct a taxonomy lookup suitable for a sqlite database"),
citations=[],
name='Construct a clade lookup'
)


plugin.methods.register_function(
function=q2_gg2.taxonomy_from_table,
inputs={'reference_taxonomy': Phylogeny[Rooted],
Expand Down
Loading