Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
vidjil
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1,696
Issues
1,696
List
Boards
Labels
Service Desk
Milestones
Merge Requests
88
Merge Requests
88
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vidjil
vidjil
Commits
d47b12f7
Commit
d47b12f7
authored
Mar 06, 2015
by
Marc Duez
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
git+ssh://scm.gforge.inria.fr//gitroot/vidjil/vidjil
parents
df4447a1
20b2aac2
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
29 additions
and
11 deletions
+29
-11
browser/css/dark.css
browser/css/dark.css
+1
-0
browser/css/light.css
browser/css/light.css
+1
-0
browser/css/vidjil.less
browser/css/vidjil.less
+1
-0
browser/js/segmenter.js
browser/js/segmenter.js
+6
-1
browser/js/shortcut.js
browser/js/shortcut.js
+8
-0
doc/browser.org
doc/browser.org
+12
-10
No files found.
browser/css/dark.css
View file @
d47b12f7
...
...
@@ -801,6 +801,7 @@ span.logo {
width
:
475px
;
}
.menu-highlight
{
display
:
none
;
position
:
relative
;
float
:
left
;
width
:
250px
;
...
...
browser/css/light.css
View file @
d47b12f7
...
...
@@ -801,6 +801,7 @@ span.logo {
width
:
475px
;
}
.menu-highlight
{
display
:
none
;
position
:
relative
;
float
:
left
;
width
:
250px
;
...
...
browser/css/vidjil.less
View file @
d47b12f7
...
...
@@ -946,6 +946,7 @@ span.logo
}
.menu-highlight {
display: none;
position: relative;
float: left;
width: @width_highlight;
...
...
browser/js/segmenter.js
View file @
d47b12f7
...
...
@@ -911,7 +911,12 @@ Sequence.prototype = {
h
.
css
=
"
highlight_seq
"
var
j
=
0
for
(
var
k
=
h
.
start
;
j
<
raw_seq
.
length
;
k
++
)
{
// End condition on j, not on k
if
(
this
.
seq
[
k
]
!=
'
-
'
)
h
.
seq
+=
raw_seq
[
j
++
]
;
else
h
.
seq
+=
"
"
var
c
=
"
 
"
;
if
(
this
.
seq
[
k
]
!=
'
-
'
)
{
var
cc
=
raw_seq
[
j
++
]
if
((
cc
!=
'
_
'
)
&&
(
cc
!=
'
'
))
c
=
cc
;
}
h
.
seq
+=
c
}
}
...
...
browser/js/shortcut.js
View file @
d47b12f7
...
...
@@ -92,6 +92,14 @@ Shortcut.prototype = {
if
(
e
.
shiftKey
||
e
.
metakey
)
db
.
reload
()
break
;
default
:
if
((
key
>=
96
)
&&
(
key
<=
105
))
{
// Numeric keypad, 0-9
var
select_preset
=
document
.
getElementById
(
"
select_preset
"
)
select_preset
.
selectedIndex
=
key
-
95
try
{
sp
.
changePreset
(
select_preset
)
}
catch
(
err
)
{
}
// There can be an error if the preset does not exist
}
}
}
...
...
doc/browser.org
View file @
d47b12f7
...
...
@@ -71,12 +71,12 @@ Otherwise, such =.vidjil= files can be obtained:
** The info panel (upper left panel)
- analysis :: name of the configuration file used for displaying the data
- locus :: germline used for analyzing the data. In case of multi-
germline
data, you can select what
germline
should be displayed.
-
point
:: name of the current point (you can change the selected point by clicking on
- locus :: germline used for analyzing the data. In case of multi-
locus
data, you can select what
locus
should be displayed.
-
sample
:: name of the current point (you can change the selected point by clicking on
another point in the graph). The name can be edited (“edit”).
- date :: when the run was performed (edit either with “...”, or with the database, on the patient tab)
- segmented :: number of reads where Vidjil found a CDR3, for that
point.
- segmented :: number of reads where Vidjil found a CDR3, for that
sample
See [[Number of segmented reads]] below.
- total :: total number of reads for that point
...
...
@@ -90,8 +90,7 @@ Otherwise, such =.vidjil= files can be obtained:
- The “i” button displays additional information on each clone.
- The list can be sorted on V genes, J genes or concentrations. At the top of
the list you need to click respectively on “V sort”, “J sort” or “sort”.
- The list can be sorted on V genes, J genes or clone abundance.
The “+” and “-” allow respectively to un-merge or re-merge all clones that have
already been merged.
...
...
@@ -112,13 +111,15 @@ The time graph is hidden with there is only one timepoint.
- If your dataset contains sampling dates (for example in a MRD setup), you can switch between point keys and dates in “settings > point key”
** The
grid
view
** The
plot
view
- The axes of the plot (by default “V gene” / “J gene”) can be changed.
- The "plot" menu allow to change the (grid plot, bar plot) as well as the X and Y axes of these plot
Some presets are available.
-
Some presets are available in the “analysis” menu
.
-
In the bar plot mode, the Y axis corresponds to the order of clones inside each bar
.
- The “focus“ button (bottom right) allows to further analyze a selection of clones.
To exit the focus mode, click on the “X” near the search box.
To further analyze a set of clones sharing a same V and J, it is often useful
to focus on the clones, then to display them ones according to either their “clone length”
...
...
@@ -297,12 +298,13 @@ There can be several causes leading to bad ratios:
| =←= and =→= | navigate between samples |
| =Shift-←= and =Shift-→= | decrease or increase the number of displayed clones |
| numeric keypad, =0-9= | switch between available preset modes |
| =a=: TRA | |
| =b=: TRB | |
| =g=: TRG | |
| =d=: TRD, TRD+ |
C
hange the selected germline/locus |
| =d=: TRD, TRD+ |
c
hange the selected germline/locus |
| =h=: IGH, IGH+ | |
| =l=: IGL | |
| =k=: IGK, IGK+ | |
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment