Skip to content

Commit

Permalink
fixed typo in db_to_force parser
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikPoppleton committed Aug 18, 2022
1 parent 8c8684b commit 28cedeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analysis/src/oxDNA_analysis_tools/db_to_force.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def cli_parser(prog="db_to_force.py"):
parser = argparse.ArgumentParser(prog = prog, description="Create an external forces file enforcing the current base-pairing arrangement")
parser.add_argument('db_file', type=str, nargs=1, help="A text file containing dot-bracket notation of the base-pairing arrangement")
parser.add_argument('-o', '--output', type=str, nargs=1, help='Name of the file to write the force list to')
parser.add_argument('-s', '--stiffness', type=float, nargs=1, help='Strength of the forces')
parser.add_argument('-s', '--strength', type=float, nargs=1, help='Strength of the forces')
return parser

def main():
Expand Down

0 comments on commit 28cedeb

Please sign in to comment.