Skip to content

Commit 4b68324

Browse files
committed
Corrected a namespace bug.
1 parent 8dd3a03 commit 4b68324

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

4Pipe4.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
prog="4Pipe4",
4343
formatter_class=RawTextHelpFormatter)
4444
parser.add_argument("-i", dest="infile", nargs=1, required=True,
45-
help="Provide the full path to your target sff file\n",
46-
metavar="sff_file")
45+
help="Provide the full path to your target input file\n",
46+
metavar="input_file")
4747
parser.add_argument("-o", dest="outfile", nargs=1, required=True,
4848
help="Provide the full path to your results directory, \
4949
plus the name you want to give your results\n",
@@ -93,7 +93,7 @@ def StartUp():
9393
input_file = os.path.abspath("".join(arg.infile))
9494

9595
# Solexa checks
96-
if arg.datafile == "solexa":
96+
if arg.datatype == "solexa":
9797
if "1" in arg.run_list or "2" in arg.run_list:
9898
quit("Please skip steps 1 and 2 for illumina data. They are not required.")
9999
if arg.infile.endswith("fastq") is False or arg.infile.endswith("fasq.gz") is False:

0 commit comments

Comments
 (0)