-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
41 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# ---------------------------------------------------------------------------- | ||
# Copyright (c) 2016-2023, QIIME 2 development team. | ||
# | ||
# Distributed under the terms of the Modified BSD License. | ||
# | ||
# The full license is in the file LICENSE, distributed with this software. | ||
# ---------------------------------------------------------------------------- | ||
|
||
from qiime2.plugin import Citations | ||
|
||
from .. import Bowtie2IndexDirFmt | ||
from .. import Bowtie2Index | ||
|
||
from ...plugin_setup import plugin | ||
|
||
citations = Citations.load('citations.bib', package='q2_types.bowtie2') | ||
plugin.register_views(Bowtie2IndexDirFmt, | ||
citations=[citations['langmead2012fast']]) | ||
|
||
plugin.register_semantic_types(Bowtie2Index) | ||
|
||
plugin.register_artifact_class( | ||
Bowtie2Index, | ||
directory_format=Bowtie2IndexDirFmt, | ||
description='An index of sequences for Bowtie 2 to search against.' | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@article{langmead2012fast, | ||
title={Fast gapped-read alignment with Bowtie 2}, | ||
author={Langmead, Ben and Salzberg, Steven L}, | ||
journal={Nature methods}, | ||
volume={9}, | ||
number={4}, | ||
pages={357}, | ||
year={2012}, | ||
publisher={Nature Publishing Group} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters