Difference between revisions of "SMARTplot"
From wiki.erlangen.ccc.de
cccer>Tox (korrektur) |
cccer>Tox (Link) |
||
Line 13: | Line 13: | ||
plot '280.dat' using 1:2 smooth unique t "UV 280 nm", 'cond.dat' using 1:2 smooth unique t "Cond %" axes x1y2 | plot '280.dat' using 1:2 smooth unique t "UV 280 nm", 'cond.dat' using 1:2 smooth unique t "Cond %" axes x1y2 | ||
eof | eof | ||
[http://www-128.ibm.com/developerworks/library/l-gnuplot/ Gute Anleitungseite zu Gnuplot] | |||
[[Kategorie:Bioinformatik]] | [[Kategorie:Bioinformatik]] |
Revision as of 14:06, 11 April 2006
SMARTplot ist ein Skript um ASCII-Daten eines Pharmacia SMARTSystem ansprechend mittels Gnuplot zu Visulaisieren. Im Beispiel ist 280.dat die um die ersten drei Zeilen gek?rtze ASCII Datei mit den 280 nm Extinktionswerten, cond.dat enth?lt die Leitf?higkeitsmesswerte, ebenfalls ohne die ersten drei Zeilen.
#!/bin/bash gnuplot << eof > out.ps set title "Chromatogramm" set xlabel "min" set ylabel "AU" set y2label "Cond %" set y2tics set ytics nomirror set tics out set terminal aqua #set terminal postscript eps plot '280.dat' using 1:2 smooth unique t "UV 280 nm", 'cond.dat' using 1:2 smooth unique t "Cond %" axes x1y2 eof