Skip to content

Commit

Permalink
add missing description tags in scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
jadolfbr committed Feb 15, 2018
1 parent 116fdae commit 41c7286
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion apps/public/rosetta/RunRosettaDBMode.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from argparse import ArgumentParser

def get_parser():
parser = ArgumentParser("This program runs Rosetta MPI locally or on a cluster using slurm or qsub. "
parser = ArgumentParser(description="This program runs Rosetta MPI locally or on a cluster using slurm or qsub. "
"Relative paths are accepted.")
return parser

Expand Down
2 changes: 1 addition & 1 deletion apps/public/rosetta/RunRosettaMPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from argparse import ArgumentParser

def get_parser():
parser = ArgumentParser("This program runs Rosetta MPI locally or on a cluster using slurm or qsub. "
parser = ArgumentParser(description="This program runs Rosetta MPI locally or on a cluster using slurm or qsub. "
"Relative paths are accepted.")
return parser

Expand Down
2 changes: 1 addition & 1 deletion apps/public/rosetta/check_missing_rosetta_nstruct.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from collections import defaultdict

def get_parser():
parser = ArgumentParser("This extremely simple script checks nstruct of the input files and outputs which nstruct number is missing.")
parser = ArgumentParser(description="This extremely simple script checks nstruct of the input files and outputs which nstruct number is missing.")


parser.add_argument('-n', "--nstruct", default=1000)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def get_pdbs(argu):


def get_parser():
parser = ArgumentParser("This script creates a Rosetta score file from a set of structures - by parsing the score from them. Pass a directory, a PDBLIST, and/or a list of filenames")
parser = ArgumentParser(description="This script creates a Rosetta score file from a set of structures - by parsing the score from them. Pass a directory, a PDBLIST, and/or a list of filenames")


parser.add_argument("--prefix",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


def get_parser():
parser = ArgumentParser("This script takes a PDBLIST of natives and then adds a new table to the database with "
parser = ArgumentParser(description="This script takes a PDBLIST of natives and then adds a new table to the database with "
"struct_id as proper foreign primary key and the native structure based solely on a search of the name tag. ")

parser.add_argument("--pdblist", help = "PDBLIST of native structures used.")
Expand Down
2 changes: 1 addition & 1 deletion apps/public/rosetta/score_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def printVerbose(s):
def get_parser():

parser = ArgumentParser(
"This utility parses and extracts data from score files in JSON format")
description="This utility parses and extracts data from score files in JSON format")

parser.add_argument("scorefiles", nargs='*', help="A list of scorefiles")

Expand Down

0 comments on commit 41c7286

Please sign in to comment.