20 lines
565 B
Bash
20 lines
565 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
set -eo pipefail
|
||
|
|
|
||
|
|
prefix=$(openssl rand -hex 8)
|
||
|
|
|
||
|
|
junction_saturation.py \
|
||
|
|
-i $par_input \
|
||
|
|
-r $par_refgene \
|
||
|
|
-o $prefix \
|
||
|
|
-l $par_sampling_percentile_lower_bound \
|
||
|
|
-u $par_sampling_percentile_upper_bound \
|
||
|
|
-s $par_sampling_percentile_step \
|
||
|
|
-m $par_min_intron \
|
||
|
|
-v $par_min_splice_read \
|
||
|
|
-q $par_map_qual
|
||
|
|
|
||
|
|
[[ -f "$prefix.junctionSaturation_plot.pdf" ]] && mv $prefix.junctionSaturation_plot.pdf $par_output_plot
|
||
|
|
[[ -f "$prefix.junctionSaturation_plot.r" ]] && mv $prefix.junctionSaturation_plot.r $par_output_plot_r
|