Skip to content

Commit 6d8c9ff

Browse files
Fixing minor bug in the Argument Parser
1 parent 106e358 commit 6d8c9ff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

latent_embeddings/embed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def plot_2d_embeddings(out_path, embedding):
7878
parser.add_argument('-seq', required=True,
7979
help='Sequence file, each line contains sequences '
8080
'associated with one genomic window')
81-
parser.add_argument('-chrom', nargs='+', required=True
81+
parser.add_argument('-chrom', nargs='+', required=True,
8282
help='List of files, each containing chromatin features, '
8383
'associated with one genomic window per line')
8484
parser.add_argument('-length', type=int, required=True,

0 commit comments

Comments
 (0)