comparison peakachu.xml @ 3:886f5adba83d draft

planemo upload for repository https://github.com/tbischler/PEAKachu commit 4a5c3c370df53a00aded3eaae40f3a8e4a263385-dirty
author rnateam
date Mon, 04 Feb 2019 13:04:19 -0500
parents 49a5a2e86c84
children 940b1d632f4d
comparison
equal deleted inserted replaced
2:49a5a2e86c84 3:886f5adba83d
66 --padj_threshold $padj_threshold 66 --padj_threshold $padj_threshold
67 67
68 && 68 &&
69 if ls ./tmp_output/peak_tables/*.csv > /dev/null; 69 if ls ./tmp_output/peak_tables/*.csv > /dev/null;
70 then 70 then
71 cat ./tmp_output/peak_tables/*.csv | head -n 1 > peaks.tsv && 71 sed -n 1p ./tmp_output/peak_tables/*.csv > peaks.tsv &&
72 tail -n +2 -q ./tmp_output/peak_tables/*.csv >> peaks.tsv && 72 tail -n +2 -q ./tmp_output/peak_tables/*.csv >> peaks.tsv &&
73 mv peaks.tsv '$peak_tables' && 73 mv peaks.tsv '$peak_tables' &&
74 cat ./tmp_output/peak_annotations/*.gff | awk '/peak/ {print $0}' > peak_annotations.gff && 74 awk '/peak/ {print $0}' ./tmp_output/peak_annotations/*.gff > peak_annotations.gff &&
75 mv peak_annotations.gff '$peak_annotations' && 75 mv peak_annotations.gff '$peak_annotations' &&
76 mv ./tmp_output/plots/Initial*.png '$MA_plot'; 76 mv ./tmp_output/plots/Initial*.png '$MA_plot';
77 else 77 else
78 echo "No Peaks Found" >&2; 78 echo "No Peaks Found" >&2;
79 fi 79 fi