Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/tigmint-ntlink-map
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import subprocess
def run_ntlink_pair(args):
"Run ntLink pair stage to obtain PAF-formatted mappings"
command = f"ntLink pair target={args.target}.fa reads={args.reads} " \
f"paf=True k={args.k} w={args.w} t={args.t}"
f"paf=True k={args.k} w={args.w} t={args.t} sensitive=True"
command_shlex = shlex.split(command)
return_code = subprocess.call(command_shlex)
assert return_code == 0
Expand Down