Merge pull request #33 from LuminosoInsight/bugfix

Restore a missing comma.

Former-commit-id: 7b539f9057
This commit is contained in:
Robyn Speer 2016-03-24 13:59:50 -04:00
commit 298cb69353

View File

@ -15,7 +15,7 @@ if __name__ == '__main__':
parser = argparse.ArgumentParser() parser = argparse.ArgumentParser()
parser.add_argument('-o', '--output', default='combined-counts.csv', parser.add_argument('-o', '--output', default='combined-counts.csv',
help='filename to write the output to') help='filename to write the output to')
parser.add_argument('-c', '--cutoff', type=int, default=0 parser.add_argument('-c', '--cutoff', type=int, default=0,
help='minimum count to read from an input file') help='minimum count to read from an input file')
parser.add_argument('inputs', nargs='+', parser.add_argument('inputs', nargs='+',
help='names of input files to merge') help='names of input files to merge')