-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added models for iupac_name and alternate names
- Loading branch information
1 parent
4738e5d
commit 967d11a
Showing
11 changed files
with
89 additions
and
147 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# encoding: utf-8 | ||
|
||
from flask import Blueprint, redirect, url_for | ||
|
||
from ckan.plugins.toolkit import c, render, request | ||
import ckan.lib.helpers as h | ||
from ckanext.sparql_interface.utils import sparql_query_SPARQLWrapper as utils_sparqlQuery | ||
from flask import Response | ||
|
||
|
||
rdkit_visuals_blueprint = Blueprint(u'rdkit_visuals',__name__) | ||
|
||
@rdkit_visuals_blueprint.add_url_rule(u'/localhost:5000/dataset/<package_name>') | ||
def display_image(package_name): | ||
return render('') | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.