SchulzLab / TEPIC

Annotation of genomic regions using transcription factor binding sites and epigenetic data
MIT License
39 stars 9 forks source link

runDYNAMITE.sh fails on existing folders #21

Closed ghost closed 7 years ago

ghost commented 7 years ago

The various calls to create folders like this

mkdir $outputDirectory"/Affinities/group1"

should be replaced by the more cautious variant

mkdir -p $outputDirectory"/Affinities/group1"

to ease continuing a previously failed analysis run.

+Peter

Florian411 commented 7 years ago

Thanks! I changed that.