Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed command not found error due to trailing whitespace
  • Loading branch information
jenzopr committed Oct 29, 2015
1 parent 35be285 commit c3e0bd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/admire
Expand Up @@ -466,7 +466,7 @@ print id,name,gid,type,$1,$2,$3,$6,$7,$8,$9,$10,higherin,qval,$14,$11,$12,$13;}'
fi
sort -t',' -k14,14n $EXCEL/$g-$r.csv | cut -d',' -f5,6,7 | sed -e 's/,/\t/g' | tail -n +2 | head -n $I > $VISUALIZATION/$g/$r-target.bed
split -l 1 $VISUALIZATION/$g/$r-target.bed $VISUALIZATION/$g/$r-target-
targets = $(ls $VISUALIZATION/$g/$r-target-*)
targets=$(ls $VISUALIZATION/$g/$r-target-*)
for f in $targets; do
bedtools intersect -wa -a $DIR/../data/ilmn12.hg19.bed -b $f | awk 'BEGIN{FS="\t";OFS="\t";}{split($4,a,";");split(a[1],b,"=");print b[2],$2}' | sort > $f.probes
cut -f1 $f.probes | grep -f - $WORKDIR/normalized/betaValues_fn.sorted.txt > $f.grep
Expand Down

0 comments on commit c3e0bd6

Please sign in to comment.