IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
get_cite.m
Go to the documentation of this file.
1 %>@ingroup idata
2 %>@file
3 %>@brief get_cite
4 
5 function s = get_cite(flagHref)
6 if nargin < 1
7  flagHref = 1;
8 end;
9 
10 a1 = iif(flagHref, '<a href="http://irootlab.googlecode.com">', '');
11 a2 = iif(flagHref, '</a>', '');
12 
13 
14 s = sprintf([ ...
15 '___ CITING IRootLab ____\n\n', ...
16 'If IRootLab works well for you and you use it for your respective study\n', ...
17 'and publication, please cite the following:\n\n', ...
18 'http://irootlab.googlecode.com\n\n', ...
19 'Trevisan, J., Angelov, P.P., Scott, A.D., Carmichael, P.L. & Martin, F.L.\n', ...
20 '(2013) "IRootLab: a free and open-source MATLAB toolbox for vibrational\n', ...
21 'biospectroscopy data analysis". Bioinformatics 29(8), 1095-1097.\n', ...
22 'doi: 10.1093/bioinformatics/btt084.\n\n', ...
23 'Martin, F.L., Kelly, J.G., Llabjani, V., Martin-Hirsch, P.L., Patel, I.I.,\n', ...
24 'Trevisan, J., Fullwood, N.J. & Walsh, M.J. (2010) "Distinguishing cell\n', ...
25 'types or populations based on the computational analysis of their infrared\n', ...
26 'spectra". Nature Protocols 5(11), 1748-1760. doi:10.1038/nprot.2010.133\n', ...
27 ]);
function get_cite(in flagHref)
function iif(in cond, in x1, in x2)