view msp_out.sh @ 1:af8839475b43 draft

planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/qcxms commit 55c0154b9b6d7f97eefebf92d43bd0c5442247a6
author recetox
date Tue, 21 May 2024 11:48:35 +0000
parents ef51824f6d04
children
line wrap: on
line source

#!/bin/sh

molname=`sed -n '1{p;q}'  molname.txt`
kword=$(grep 'NPOINTS' result.jdx)
num_peaks=$(echo "$kword" | sed 's/^[^=]*=//')
echo `pwd`
sed -n '/PEAK/,/END/{/PEAK/!{/END/!p}}' result.jdx > temp.dat
awk '{print $1, $2}' temp.dat > tempa.dat
sed "1s/^/NAME: $molname\nNum Peaks: $num_peaks\n/" tempa.dat >> simulated_spectra.msp
sed -i '$a\ ' simulated_spectra.msp
rm temp.dat tempa.dat