Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
general
ccb
sybilSBML
Commits
633ace00
Commit
633ace00
authored
Dec 07, 2016
by
Habil, Ardalan (arhab001)
Browse files
no need for validation var
parent
c9d9ab22
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/init.c
View file @
633ace00
/* init.c
Link to libSBML for sybil.
Copyright (C) 2010-2013 Gabriel Gelius-Dietrich, Dpt. for Bioinformatics,
Institute for Informatics, Heinrich-Heine-University, Duesseldorf, Germany.
All right reserved.
Email: geliudie@uni-duesseldorf.de
This file is part of sybilSBML.
SybilSBML is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
SybilSBML is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with sybilSBML. If not, see <http://www.gnu.org/licenses/>.
*/
#include <R.h>
#include <Rinternals.h>
#include "sybilSBML.h"
#include <R_ext/Rdynload.h>
static
const
R_CallMethodDef
callMethods
[]
=
{
{
"isSBMLdocptr"
,
(
DL_FUNC
)
&
isSBMLdocptr
,
1
},
{
"isSBMLmodptr"
,
(
DL_FUNC
)
&
isSBMLmodptr
,
1
},
{
"isNULLptr"
,
(
DL_FUNC
)
&
isNULLptr
,
1
},
{
"getLibSBMLversion"
,
(
DL_FUNC
)
&
getLibSBMLversion
,
0
},
{
"initSBML"
,
(
DL_FUNC
)
&
initSBML
,
0
},
{
"delDocument"
,
(
DL_FUNC
)
&
delDocument
,
1
},
{
"delModel"
,
(
DL_FUNC
)
&
delModel
,
1
},
{
"readSBMLfile"
,
(
DL_FUNC
)
&
readSBMLfile
,
2
},
{
"getSBMLlevel"
,
(
DL_FUNC
)
&
getSBMLlevel
,
1
},
{
"getSBMLversion"
,
(
DL_FUNC
)
&
getSBMLversion
,
1
},
{
"validateDocument"
,
(
DL_FUNC
)
&
validateDocument
,
1
},
{
"getSBMLerrors"
,
(
DL_FUNC
)
&
getSBMLerrors
,
1
},
{
"getSBMLmodel"
,
(
DL_FUNC
)
&
getSBMLmodel
,
2
},
{
"getSBMLmodId"
,
(
DL_FUNC
)
&
getSBMLmodId
,
1
},
{
"getSBMLmodName"
,
(
DL_FUNC
)
&
getSBMLmodName
,
1
},
{
"getSBMLmodNotes"
,
(
DL_FUNC
)
&
getSBMLmodNotes
,
1
},
{
"getSBMLmodAnnotation"
,
(
DL_FUNC
)
&
getSBMLmodAnnotation
,
1
},
{
"getSBMLnumCompart"
,
(
DL_FUNC
)
&
getSBMLnumCompart
,
1
},
{
"getSBMLnumSpecies"
,
(
DL_FUNC
)
&
getSBMLnumSpecies
,
1
},
{
"getSBMLnumReactions"
,
(
DL_FUNC
)
&
getSBMLnumReactions
,
1
},
{
"getSBMLunitDefinitionsList"
,
(
DL_FUNC
)
&
getSBMLunitDefinitionsList
,
1
},
{
"getSBMLCompartList"
,
(
DL_FUNC
)
&
getSBMLCompartList
,
1
},
{
"getSBMLSpeciesList"
,
(
DL_FUNC
)
&
getSBMLSpeciesList
,
1
},
{
"getSBMLReactionsList"
,
(
DL_FUNC
)
&
getSBMLReactionsList
,
1
},
{
"exportSBML"
,
(
DL_FUNC
)
&
exportSBML
,
34
},
{
"getSBMLFbcversion"
,
(
DL_FUNC
)
&
getSBMLFbcversion
,
1
},
{
NULL
,
NULL
,
0
}
};
/* -------------------------------------------------------------------------- */
void
R_init_sybilSBML
(
DllInfo
*
info
)
{
R_registerRoutines
(
info
,
NULL
,
callMethods
,
NULL
,
NULL
);
R_useDynamicSymbols
(
info
,
FALSE
);
}
/* init.c
Link to libSBML for sybil.
Copyright (C) 2010-2013 Gabriel Gelius-Dietrich, Dpt. for Bioinformatics,
Institute for Informatics, Heinrich-Heine-University, Duesseldorf, Germany.
All right reserved.
Email: geliudie@uni-duesseldorf.de
This file is part of sybilSBML.
SybilSBML is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
SybilSBML is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with sybilSBML. If not, see <http://www.gnu.org/licenses/>.
*/
#include <R.h>
#include <Rinternals.h>
#include "sybilSBML.h"
#include <R_ext/Rdynload.h>
static
const
R_CallMethodDef
callMethods
[]
=
{
{
"isSBMLdocptr"
,
(
DL_FUNC
)
&
isSBMLdocptr
,
1
},
{
"isSBMLmodptr"
,
(
DL_FUNC
)
&
isSBMLmodptr
,
1
},
{
"isNULLptr"
,
(
DL_FUNC
)
&
isNULLptr
,
1
},
{
"getLibSBMLversion"
,
(
DL_FUNC
)
&
getLibSBMLversion
,
0
},
{
"initSBML"
,
(
DL_FUNC
)
&
initSBML
,
0
},
{
"delDocument"
,
(
DL_FUNC
)
&
delDocument
,
1
},
{
"delModel"
,
(
DL_FUNC
)
&
delModel
,
1
},
{
"readSBMLfile"
,
(
DL_FUNC
)
&
readSBMLfile
,
2
},
{
"getSBMLlevel"
,
(
DL_FUNC
)
&
getSBMLlevel
,
1
},
{
"getSBMLversion"
,
(
DL_FUNC
)
&
getSBMLversion
,
1
},
{
"validateDocument"
,
(
DL_FUNC
)
&
validateDocument
,
1
},
{
"getSBMLerrors"
,
(
DL_FUNC
)
&
getSBMLerrors
,
1
},
{
"getSBMLmodel"
,
(
DL_FUNC
)
&
getSBMLmodel
,
2
},
{
"getSBMLmodId"
,
(
DL_FUNC
)
&
getSBMLmodId
,
1
},
{
"getSBMLmodName"
,
(
DL_FUNC
)
&
getSBMLmodName
,
1
},
{
"getSBMLmodNotes"
,
(
DL_FUNC
)
&
getSBMLmodNotes
,
1
},
{
"getSBMLmodAnnotation"
,
(
DL_FUNC
)
&
getSBMLmodAnnotation
,
1
},
{
"getSBMLnumCompart"
,
(
DL_FUNC
)
&
getSBMLnumCompart
,
1
},
{
"getSBMLnumSpecies"
,
(
DL_FUNC
)
&
getSBMLnumSpecies
,
1
},
{
"getSBMLnumReactions"
,
(
DL_FUNC
)
&
getSBMLnumReactions
,
1
},
{
"getSBMLunitDefinitionsList"
,
(
DL_FUNC
)
&
getSBMLunitDefinitionsList
,
1
},
{
"getSBMLCompartList"
,
(
DL_FUNC
)
&
getSBMLCompartList
,
1
},
{
"getSBMLSpeciesList"
,
(
DL_FUNC
)
&
getSBMLSpeciesList
,
1
},
{
"getSBMLReactionsList"
,
(
DL_FUNC
)
&
getSBMLReactionsList
,
1
},
{
"exportSBML"
,
(
DL_FUNC
)
&
exportSBML
,
33
},
{
"getSBMLFbcversion"
,
(
DL_FUNC
)
&
getSBMLFbcversion
,
1
},
{
NULL
,
NULL
,
0
}
};
/* -------------------------------------------------------------------------- */
void
R_init_sybilSBML
(
DllInfo
*
info
)
{
R_registerRoutines
(
info
,
NULL
,
callMethods
,
NULL
,
NULL
);
R_useDynamicSymbols
(
info
,
FALSE
);
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment