Skip to content

Commit a3d1c16

Browse files
committed
Added input sanitizing to pipeline_chipseq
See #68
1 parent 86592f3 commit a3d1c16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pipeline_chipseq.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#################
3535
# Configuration #
3636
#################
37-
WORK_DIR = args.path_to_directory
37+
WORK_DIR = args.path_to_directory.rstrip('/')
3838
GENOME = args.genome
3939
INDEXES = os.path.join(args.path_to_indexes, GENOME)
4040
CHROM_SIZES = os.path.join(INDEXES, GENOME + ".chrom.sizes")

0 commit comments

Comments
 (0)