synSubmit.Rd
Submit an Entity for evaluation.
synSubmit(evaluation, entity, name=NULL, team=NULL, silent=FALSE, submitterAlias=NULL, teamName=NULL, dockerTag=latest)
Evaluation queue to submit to
The Entity containing the Submission
A name for this submission.
In the absent of this parameter, the entity name will be used.
(optional) A Team object, ID or name of a Team that is registered for the
challenge
Set to True to suppress output.
(optional) A nickname, possibly for display in leaderboards in place of the submitter's
name
(deprecated) A synonym for submitterAlias
(optional) The Docker tag must be specified if the entity is a DockerRepository. Defaults to "latest".
A Submission object
if (FALSE) {
evaluation = synGetEvaluation('123')
entity = synGet('syn456')
submission = synSubmit(evaluation, entity, name='Our Final Answer', team='Blue Team')
}