This repository has been archived by the owner on Jul 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- copy tweaks - add cancel button - show invalid format error for all errors - update canBamSlice conditions for new ES index Closes #163
- Loading branch information
Christine Yu
committed
Mar 18, 2016
1 parent
842970d
commit 39d7ccb
Showing
5 changed files
with
60 additions
and
24 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -35,5 +35,8 @@ | |
|
||
textarea { | ||
resize: none; | ||
-moz-tab-size : 4; | ||
-o-tab-size : 4; | ||
tab-size : 4; | ||
} | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,31 @@ | ||
<div class="modal-header"> | ||
<h4 data-translate>BAM Slicing {{bamc.fileID}}</h4> | ||
<h2 data-translate style="margin-top: 0px; margin-bottom: 0px">BAM Slicing</h2> | ||
<h3 data-translate>File name: {{bamc.file.file_name}}</h3> | ||
</div> | ||
<div class="modal-body"> | ||
Please enter a genome coordinate below (in <a href="https://genome.ucsc.edu/FAQ/FAQformat.html#format1">BED</a> format). | ||
<textarea id="bed" class="form-control" data-ng-model="bedModel"></textarea> | ||
<label for="bed"> | ||
Please enter one or more slices' genome coordinates below in <a href="https://genome.ucsc.edu/FAQ/FAQformat.html#format1" target="_blank">BED</a> format. | ||
(<a data-ng-click="bamc.toggleExample()">{{bamc.exampleShowing ? 'Hide Example' : 'Show Example'}}</a>) | ||
</label> | ||
<div data-ng-if="bamc.exampleShowing"> | ||
<pre>7:140505783-140511649 | ||
chr7:140505783-140511649 | ||
1 150505782 150511648 | ||
chr1 150505782 150511648</pre> | ||
</div> | ||
<textarea id="bed" | ||
class="form-control" | ||
data-ng-model="bedModel" | ||
data-ng-keydown="bamc.allowTab($event)" | ||
style="min-height: 200px; font-family:'Courier New', Courier, monospace"></textarea> | ||
</div> | ||
<div class="modal-footer"> | ||
<span style="float: left"> | ||
<!--or <button class="btn btn-warning" ng-click="bamc.cancel()" data-translate>Upload a BED file</button>--> | ||
</span> | ||
<button class="btn btn-warning" ng-click="bamc.submit()" data-translate>Submit</button> | ||
<button class="btn" ng-click="bamc.closeModal()" data-translate>Cancel</button> | ||
<button class="btn btn-primary" | ||
data-ng-disabled="placeholderShowing" | ||
data-ng-click="bamc.submit()" | ||
data-translate>Download</button> | ||
</div> |