Skip to content

Commit 10229e1

Browse files
authored
Use sensitive=True mappings (#113)
1 parent d76bf6e commit 10229e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/tigmint-ntlink-map

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import subprocess
1111
def run_ntlink_pair(args):
1212
"Run ntLink pair stage to obtain PAF-formatted mappings"
1313
command = f"ntLink pair target={args.target}.fa reads={args.reads} " \
14-
f"paf=True k={args.k} w={args.w} t={args.t}"
14+
f"paf=True k={args.k} w={args.w} t={args.t} sensitive=True"
1515
command_shlex = shlex.split(command)
1616
return_code = subprocess.call(command_shlex)
1717
assert return_code == 0

0 commit comments

Comments
 (0)