Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
fix(files): 2568 remove broken bam examples
Browse files Browse the repository at this point in the history
 - use ascii tab character instead of invisible one

Closes #2568
  • Loading branch information
alex-wilmer committed Jun 2, 2016
1 parent fe17467 commit aa933c9
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions app/scripts/files/templates/bam-slicing.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,17 @@ <h3 data-translate>File name: {{bamc.file.file_name}}</h3>
</div>
<div class="modal-body">
<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.
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

<!-- pre spaced like this to ensure starting at beginning of block -->
<pre>
chr7:140505783-140511649
1 150505782 150511648
chr1 150505782 150511648</pre>
chr1&#09;150505782&#09;150511648
</pre>
<!-- -->
</div>
<textarea id="bed"
class="form-control"
Expand Down

0 comments on commit aa933c9

Please sign in to comment.