Commit 4efbe630 by Mustafa Tekpinar

A minor correction in input usage.

parent 6b1a9983
...@@ -508,7 +508,7 @@ def main(): ...@@ -508,7 +508,7 @@ def main():
print("@> Name of the output file : {}".format(args.outputfile)) print("@> Name of the output file : {}".format(args.outputfile))
# End of argument parsing! # End of argument parsing!
protein = os.path.splitext(args.escottfile)[0] protein = os.path.splitext(os.path.basename(args.escottfile))[0]
outfile = os.path.splitext(args.outputfile)[0] outfile = os.path.splitext(args.outputfile)[0]
# Check if file exists # Check if file exists
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment