Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion appyters/Drug_Gene_Budger2/appyter.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://raw.githubusercontent.com/MaayanLab/appyter-catalog/main/schema/appyter-validator.json",
"name": "Drug_Gene_Budger2",
"title": "Dr. Gene Budger (DGB) 2",
"version": "0.0.3",
"version": "0.0.4",
"description": "An appyter that retrieves drugs that up-regulate and down-regulate a single input gene across Connectivity Mapping datasets",
"image": "dgb_logo.png",
"authors": [
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions appyters/Drug_Gene_Budger2/templates/form.j2
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{% extends "biojupies/form.j2" %}

{% block head %}
{{ super() }}
{% endblock %}

{% block style %}
{{ super() }}
<style>
h1 {
text-align: center;
margin: 25px
}
</style>
{% endblock %}

{% block body %}
<div class="row">
<div class="col-sm-12">
<div class="container">
<h1><img src="../static/dgb_logo_small.png" style="width:75x;height:75px;margin:0px 10px;"/>Dr. Gene Budger 2 (DBG2)</h1>
<p style="margin:15px; text-align:center;"> Submit a human gene symbol and explore drugs that maximally increase or decrease the mRNA expression of the input gene based on data from a collection of Connectivity Mapping resources</p>
</div>
</div>
</div>
{{ super() }}
{% endblock %}