Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
illusional committed Mar 5, 2020
2 parents af9abda + 1d291a8 commit cbd1ca8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions janis_bioinformatics/tools/bwa/mem/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
ToolMetadata,
)

from janis_bioinformatics.data_types import Sam, FastaWithDict, FastqGzPair
from janis_bioinformatics.data_types import Sam, FastaBwa, FastqGzPair
from janis_bioinformatics.tools.bioinformaticstoolbase import BioinformaticsTool

BWA_MEM_TUPLE = [
Expand Down Expand Up @@ -64,7 +64,7 @@ def base_command(self):

def inputs(self):
return [
ToolInput("reference", FastaWithDict(), position=9),
ToolInput("reference", FastaBwa(), position=9),
ToolInput("reads", FastqGzPair, position=10, doc=None),
ToolInput("mates", FastqGzPair(optional=True), position=11, doc=None),
ToolInput("outputFilename", Filename(extension=".sam")),
Expand Down

0 comments on commit cbd1ca8

Please sign in to comment.