Skip to content

Commit

Permalink
Merge pull request #23 from matthdsm/patch-1
Browse files Browse the repository at this point in the history
fix bwa reference
  • Loading branch information
illusional authored Feb 27, 2020
2 parents a6bb160 + 7a95952 commit 1d291a8
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 1d291a8

Please sign in to comment.