File tree Expand file tree Collapse file tree 3 files changed +31
-11
lines changed Expand file tree Collapse file tree 3 files changed +31
-11
lines changed Original file line number Diff line number Diff line change 1
- # HiCBrowser-web-client
2
- A web client for HiCBrowser
1
+ # HiCBrowser web client
2
+
3
+ This project aims to visualize gene expression profiles in the context of mitochondrial processes. See a working demo [ here] ( http://jmvillaveces.github.io/mito_models_visualization/dist/ ) .
4
+
5
+ ## Getting Started
6
+
7
+ 1 . Clone the project
8
+ ` git clone https://github.com/maxplanck-ie/HiCBrowser `
9
+ 2 . Install dependencies
10
+ ` npm i `
11
+ 3 . Compile the project
12
+ ` grunt dist `
13
+
14
+ ## Built With
15
+
16
+ * [ NPM] ( https://www.npmjs.com/ ) - Dependency Management
17
+ * [ GRUNT] ( http://gruntjs.com/ ) - Task Runner
18
+ * [ Backbone] ( http://backbonejs.org/ ) - model–view–presenter (MVP) application design paradigm
19
+ * [ Handlebars] ( http://handlebarsjs.com/ ) - HTML templating
Original file line number Diff line number Diff line change 1
1
<div class =" container-fixed" >
2
2
<div class =" row" >
3
3
{{ #each tracks }}
4
- <div class =" col-xs-4 img_wrapper" >
4
+ <div class =" col-xs-12 img_wrapper" >
5
5
<img class =" lazy" data-original =" {{ this }} " >
6
6
<!-- <img src="{{this}}" onload="imgLoaded(this)">-->
7
7
</div >
8
8
{{ /each }}
9
9
</div >
10
- </div >
10
+ </div >
Original file line number Diff line number Diff line change 1
1
<div class =" col-lg-12" >
2
-
2
+
3
3
{{ #if name }}
4
4
<h1 class =" page-header" >
5
5
{{ name }}
6
- <small >
6
+ <small >
7
7
chromosome {{ chromosome }} (start: {{ start }} , end: {{ end }} )
8
8
</small >
9
9
</h1 >
10
10
<div style =" width: 900px;" id =" {{ feature_viewer }} " ></div >
11
- <a href =" /#/browser/{{ chromosome }} :{{ start }} -{{ end }} " >
12
- <img class =" img-responsive" src =" {{ img }} " alt =" " data-toggle =" tooltip" title =" Click image to explore region in browser" >
13
- </a >
11
+
12
+ <ul class =" nav nav-pills" >
13
+ <li class =" active" >
14
+ <a href =" /#/browser/{{ chromosome }} :{{ start }} -{{ end }} " >Explore region in browser</a >
15
+ </li >
16
+ </ul >
14
17
{{ /if }}
15
-
18
+
16
19
{{ #if error }}
17
20
<div style =" height:55%" >
18
21
<div class =" alert alert-danger" role =" alert" >
23
26
</div >
24
27
{{ /if }}
25
28
<hr >
26
- </div >
29
+ </div >
You can’t perform that action at this time.
0 commit comments