Skip to content

Commit

Permalink
Merge branch 'iss71' into iss64_bck
Browse files Browse the repository at this point in the history
  • Loading branch information
arnikz committed Nov 23, 2020
2 parents 81bfe47 + 57245c3 commit 781266b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ cmd="python $p.py \
JOB_ID=$(submit "$cmd" $p)
JOBS+=($JOB_ID)

for s in "${SEQ_IDS[@]}"; do # per chromosome
for s in $(echo "$SEQ_IDS" | tr ',' ' '); do # per chromosome
p=clipped_read_distance
cmd="python $p.py \
-b \"$BAM\" \
Expand Down Expand Up @@ -170,7 +170,7 @@ done
waiting

# generate chromosome arrays from the channels as well as label window pairs
for s in "${SEQ_IDS[@]}"; do
for s in $(echo "$SEQ_IDS" | tr ',' ' '); do
p=chr_array
cmd="python $p.py \
-b \"$BAM\" \
Expand Down

0 comments on commit 781266b

Please sign in to comment.