From 3a7a0e1a9183fbe728da8213988d5031c7dc2227 Mon Sep 17 00:00:00 2001
From: Martijn Vermaat <martijn@vermaat.name>
Date: Tue, 23 Sep 2014 18:07:10 +0200
Subject: [PATCH] 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.
---
 mutalyzer/services/rpc.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/mutalyzer/services/rpc.py b/mutalyzer/services/rpc.py
index 5a2eb753..d681b94c 100644
--- a/mutalyzer/services/rpc.py
+++ b/mutalyzer/services/rpc.py
@@ -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__)
-- 
GitLab