summaryrefslogtreecommitdiff
path: root/application.rb
diff options
context:
space:
mode:
Diffstat (limited to 'application.rb')
-rw-r--r--application.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/application.rb b/application.rb
index d77842d..229f3a1 100644
--- a/application.rb
+++ b/application.rb
@@ -259,9 +259,7 @@ post '/predict/?' do
# validate identifier input
# transfered input
if !params[:identifier].blank?
- # remove whitespaces they terminate a SMILES string
- # can result in wrong conversion for compound object
- @identifier = params[:identifier].gsub(/\s+/, "")
+ @identifier = params[:identifier]
$logger.debug "input:#{@identifier}"
# get compound from SMILES
@compound = Compound.from_smiles @identifier