Draw nucleotide trace plots
traceplot(TraceStructure)
traceplot(A, C, G, T)
h = traceplot(...)
traceplot( creates
a trace plot from data in a structure with fields TraceStructure)A, C, G,
and T.
traceplot( creates
a trace plot from data in vectors A, C, G, T)A, C, G,
and T.
h = traceplot(...) returns a structure
with the handles of the lines corresponding to A, C, G, T.
Read trace data from an SCF-formatted file into a MATLAB® structure.
tstruct = scfread('sample.scf')
tstruct =
A: [10827x1 double]
C: [10827x1 double]
G: [10827x1 double]
T: [10827x1 double]Draw a nucleotide trace plot of the data.
traceplot(tstruct)
