Dear all,
I am currently trying to develop my first QIIME2 plugin, and I admit having a hard time juggling between data types. I'd appreciate any guidance from someone more experienced with the API
My aim is to automatically perform a series of analytical steps, the first one being to extract OTUs reference sequences from a specific taxa (I used Escherichia as an example in the following code). For this, I'd like to use the filter_seqs
function from qiime2.plugins.taxa.methods
.
In plugin_setup.py
, I am registering my method the following way:
plugin.methods.register_function(
function=extract_escherichia,
inputs={
'rep_seqs': FeatureData[Sequence],
'taxonomy': FeatureData[Taxonomy]
},
outputs=[('escherichia_seqs', FeatureData[Sequence])],
...
...
)
Now looking at the forum, I realized that I need to use view types in my function, which I consequently defined as such:
def extract_escherichia(rep_seqs: pd.Series, taxonomy: qiime2.Metadata) -> (pd.Series):
And here I am stuck to call filter_seqs
in my method. Indeed, it seems that filter_seqs
requires Semantic types as inputs, while I have Series & Metadata objects. Therefore the following call in my extract_escherichia
method does not work:
from qiime2.plugins.taxa.methods import filter_seqs
def extract_escherichia(rep_seqs: pd.Series, taxonomy: qiime2.Metadata) -> (pd.Series):
escherichia_seqs=filter_seqs(sequences=rep_seqs, taxonomy=taxonomy, include='Escherichia')
return escherichia_seqs
Should I, and if so how, convert my objects back to Artifacts to use filter_seqs
, or is there an easier way to do things which I did not get? I'm sure that it's just a matter for me to better understand the API; I tried to look into the developers documentation, in existing plugins codes and directly in the forum but so far could not figure it out.
Thank you for your help!