


brede_bm_exp2exp - Parse string to get BrainMap Experiment
function E = brede_bm_exp2exp(s, ...
'PropertyName', 'PropertyValue')
Input: Input String representing a BrainMap paper, either
the HTML page or the tabulated page
Property: Input [ {Tabulate} | TabulateFile ]
Output: E Experiment structure
This function will parse a string representing a HTML web-page
from a request to a 'Experiment' in the BrainMap database.
The result is an 'Exp' structure which contains a 'Bib'
structure and zero or more 'Loc'.
The HTML web-page can be downloaded with brede_bm_get_exp.
Experiment structure:
E.Bib.brainMapPaperId
E.Bib.title Title of article
E.Bib.journal Title of journal
E.Bib.volume Volume of journal
E.Bib.pages Pages for article
E.Bib.Pages
E.Bib.type = 'bib' Type of structure (Here 'bib')
E.Loc.brainMapLocId BrainMap ID for location
E.Loc.coord X, y, z Talairach coordinates
E.Loc.magnitude Value of location
E.Loc.type = 'loc' Type of structure (Here 'loc')
E.Loc.unit Unit of value of location
E.behavioralDomain Short description of cognitive components
E.brainMapPaperId BrainMap ID for paper
E.brainMapExpId BrainMap ID for Experiment
E.capsuleDescription Short description
E.description Set to capsule description
E.freeFormDescription Longer description
E.labOfExperiment
E.measuredVariable Eg, CBF
E.modality Experimental modality, eg, PET
E.specificTask
E.TaskState.id
E.TaskState.stimulus
E.TaskState.response
E.TaskState.notes
E.type = 'exp' Type of structure (Here 'exp')
Ref: Research Imaging Center, http://ric.uthscsa.edu/
Example:
s = brede_bm_get_paper(89, 21, 'Output', 'html', ...
'getmethod', 'perl');
B = brede_bm_paper2bib(s)
See also BREDE, BREDE_BM, BREDE_BM_PAPER2BIB,
BREDE_BM_GET_PAPER, BREDE_BM_GET_EXP,
BREDE_BM_GET_LOC, BREDE_BM_URL, BREDE_WEB_URL.
$Id: brede_bm_exp2exp.m,v 1.6 2002/07/24 11:36:31 fnielsen Exp $