PSD Simple Object Access Protocol (SOAP) Interface
Advanced users can use SOAP (general info) to interact with published sequence groups within the PSD. Remote services are specificed using WSDL. You can point compatible software to this URL:
http://bioinfo.cgrb.oregonstate.edu/psd/wsdl/psd.wsdl
A simple working example follows:
#!/usr/bin/perl
use strict;
use warnings;
use SOAP::Lite;
my $soap = SOAP::Lite->service('http://bioinfo.cgrb.oregonstate.edu/psd/wsdl/psd.wsdl');
print $soap->fetchseq(SOAP::Data->name(gid => 21)->type('int'),SOAP::Data->name(seqid => 93)->type('int'));
Note that the SOAP interface is under development. For more information please contact Scott Givan



