Hi all,
I tried the following code to generate masked sequence for phylogenetic diversity analysis.
import qiime2
from qiime2.plugins.alignment.methods import mafft, mask
rep_seqs_path = './pilot_qza/gutxy_pilot_seqs.qza'
# feat_table = qiime2.Artifact.load(feat_table_path)
seqs = qiime2.Artifact.load(rep_seqs_path)
aligned_seqs = mafft(seqs, n_threads=-1)
aligned_seqs.alignment.save('./aligned_seqs_pilot.qza')
print(aligned_seqs.alignment.type)
# FeatureData[AlignedSequence]
The code ran successfully, but I got error calling the mask API
mask(aligned_seqs)
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-6-fdf4104de9a9> in <module>()
----> 1 mask(aligned_seqs)
<decorator-gen-358> in mask(alignment, max_gap_frequency, min_conservation)
~/anaconda3/envs/qiime2-2017.10/lib/python3.5/site-packages/qiime2/sdk/action.py in bound_callable(*args, **kwargs)
194
195 # Type management
--> 196 self.signature.check_types(**user_input)
197 output_types = self.signature.solve_output(**user_input)
198 callable_args = {}
~/anaconda3/envs/qiime2-2017.10/lib/python3.5/site-packages/qiime2/core/type/signature.py in check_types(self, **kwargs)
297 kwargs[name] is None):
298 raise TypeError("Argument to parameter %r is not a "
--> 299 "subtype of %r." % (name, spec.qiime_type))
300
301 def solve_output(self, **input_types):
TypeError: Argument to parameter 'alignment' is not a subtype of FeatureData[AlignedSequence].
For debugging, I tried to use mask with command line
qiime alignment mask --i-alignment aligned_seqs_pilot.qza --output-dir ./tmp_mask
Saved FeatureData[AlignedSequence] to: ./tmp_mask/masked_alignment.qza
Using exact the same data, and it was successful.
I am not quite sure whether I used the API wrong or the document missed some preprocessing of the sequence to be masked?
Any information will be appreciated.
By the way, is there any way to trace how the command line translated to APIs? I guess it will be helpful for debugging (for a Python developer's perspective).
Spencer