In tpp_gui.pl, the line where the sections get changed depending on
which pipeline you choose are off by one:
if ($pipeline eq 'Mascot') {
$sections[2] = { name => 'Analysis Pipeline', pages=>
'mzxml,msconvert,runmascot,topepxml,xinteract,iprophet,runprophet'};
} elsif ($pipeline eq 'SpectraST') {
$sections[2] = { name => 'Analysis Pipeline', pages=>
'mzxml,msconvert,runspectrast,xinteract,iprophet,runprophet'};
} elsif ($pipeline eq 'Tandem') {
$sections[2] = { name => 'Analysis Pipeline', pages=>
'mzxml,msconvert,runtandem,topepxml,xinteract,iprophet,runprophet'};
}
They should read:
if ($pipeline eq 'Mascot') {
$sections[3] = { name => 'Analysis Pipeline', pages=>
'mzxml,msconvert,runmascot,topepxml,xinteract,iprophet,runprophet'};
} elsif ($pipeline eq 'SpectraST') {
$sections[3] = { name => 'Analysis Pipeline', pages=>
'mzxml,msconvert,runspectrast,xinteract,iprophet,runprophet'};
} elsif ($pipeline eq 'Tandem') {
$sections[3] = { name => 'Analysis Pipeline', pages=>
'mzxml,msconvert,runtandem,topepxml,xinteract,iprophet,runprophet'};
}
Cheers,
David
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"spctools-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/spctools-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---