Skip to content

Commit c3a23ca

Browse files
committed
Fix
1 parent 0d82585 commit c3a23ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/deepDNAshape

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ if __name__ == "__main__":
2525
if args.seq:
2626
prediction = list(map(str, myPredictor.predict(args.feature, args.seq, args.layer)))
2727
if args.showseq:
28-
sys.stdout.write(args.seq)
29-
sys.stdout.write(" " + " ".join(prediction) + "\n")
28+
sys.stdout.write(args.seq + " ")
29+
sys.stdout.write(" ".join(prediction) + "\n")
3030
elif args.file:
3131
outputfa = False
3232
if args.output == "stdout":

0 commit comments

Comments
 (0)