Skip to content
Snippets Groups Projects
Commit 3a7a0e1a authored by Vermaat's avatar Vermaat
Browse files

Rename upLoadGenBankLocalFile to uploadGenBankLocalFile

Rename this webservice method. Note the capital letter L in the old
name. Also add a short note to the documentation that data arguments
must be base64 encoded.
parent 763ab1f7
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@ class MutalyzerService(ServiceBase):
- EPARSE: The batch input could not be parsed.
- EMAXSIZE: Input file exceeds maximum size.
@arg data: Input file.
@arg data: Input file (base64 encoded).
@arg process: Optional type of the batch job, choose from: NameChecker
(default), SyntaxChecker, PositionConverter, SnpConverter.
@arg argument: Additional argument. Currently only used if batch_type
......@@ -1041,11 +1041,11 @@ class MutalyzerService(ServiceBase):
#getTranscriptsAndInfo
@srpc(Mandatory.ByteArray, _returns=Mandatory.String)
def upLoadGenBankLocalFile(data):
def uploadGenBankLocalFile(data):
"""
Upload a genbank file.
@arg data: Genbank file.
@arg data: Genbank file (base64 encoded).
@return: UD accession number for the uploaded genbank file.
"""
output = Output(__file__)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment