def _echo_citations():
import q2cli.cache
click.secho('\nCitations', fg='green')
click.secho('QIIME 2 framework and command line interface', fg='cyan')
click.secho('Pending a QIIME 2 publication, please cite QIIME using the '
'original publication: '
'http://www.ncbi.nlm.nih.gov/pubmed/20383131')
plugins = q2cli.cache.CACHE.plugins
if plugins:
for name, plugin in sorted(plugins.items()):
click.secho('\n%s %s' % (name, plugin['version']), fg='cyan')
click.secho(plugin['citation_text'])
else:
click.secho('\nNo plugins are currently installed.\nYou can browse '
'the official QIIME 2 plugins at https://qiime2.org')
评论列表
文章目录