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,712
Issues
1,712
List
Boards
Labels
Service Desk
Milestones
Merge Requests
87
Merge Requests
87
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
cffcd742
Commit
cffcd742
authored
Dec 03, 2014
by
Mathieu Giraud
2
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vidjil.cpp: new experimental option '-i', some incomplete rearrangements
parent
2d9c7ce4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
algo/vidjil.cpp
algo/vidjil.cpp
+10
-2
No files found.
algo/vidjil.cpp
View file @
cffcd742
...
@@ -149,6 +149,7 @@ void usage(char *progname)
...
@@ -149,6 +149,7 @@ void usage(char *progname)
<<
" -J <file> J germline multi-fasta file"
<<
endl
<<
" -J <file> J germline multi-fasta file"
<<
endl
<<
" -G <prefix> prefix for V (D) and J repertoires (shortcut for -V <prefix>V.fa -D <prefix>D.fa -J <prefix>J.fa) (basename gives germline code)"
<<
endl
<<
" -G <prefix> prefix for V (D) and J repertoires (shortcut for -V <prefix>V.fa -D <prefix>D.fa -J <prefix>J.fa) (basename gives germline code)"
<<
endl
<<
" -g <path> multiple germlines (in the path <path>, takes TRA, TRB, TRG, TRD, IGH and IGL and sets window prediction parameters)"
<<
endl
<<
" -g <path> multiple germlines (in the path <path>, takes TRA, TRB, TRG, TRD, IGH and IGL and sets window prediction parameters)"
<<
endl
<<
" -i multiple germlines, also incomplete rearrangements (experimental, must be used with -g)"
<<
endl
<<
endl
<<
endl
<<
"Window prediction"
<<
endl
<<
"Window prediction"
<<
endl
...
@@ -279,6 +280,7 @@ int main (int argc, char **argv)
...
@@ -279,6 +280,7 @@ int main (int argc, char **argv)
bool
output_segmented
=
false
;
bool
output_segmented
=
false
;
bool
output_unsegmented
=
false
;
bool
output_unsegmented
=
false
;
bool
multi_germline
=
false
;
bool
multi_germline
=
false
;
bool
multi_germline_incomplete
=
false
;
string
multi_germline_file
=
DEFAULT_MULTIGERMLINE
;
string
multi_germline_file
=
DEFAULT_MULTIGERMLINE
;
string
forced_edges
=
""
;
string
forced_edges
=
""
;
...
@@ -294,7 +296,7 @@ int main (int argc, char **argv)
...
@@ -294,7 +296,7 @@ int main (int argc, char **argv)
//$$ options: getopt
//$$ options: getopt
while
((
c
=
getopt
(
argc
,
argv
,
"Ahag:G:V:D:J:k:r:vw:e:C:f:l:c:m:M:N:s:b:Sn:o:L%:y:z:uU"
))
!=
EOF
)
while
((
c
=
getopt
(
argc
,
argv
,
"Aha
i
g:G:V:D:J:k:r:vw:e:C:f:l:c:m:M:N:s:b:Sn:o:L%:y:z:uU"
))
!=
EOF
)
switch
(
c
)
switch
(
c
)
{
{
...
@@ -341,7 +343,11 @@ int main (int argc, char **argv)
...
@@ -341,7 +343,11 @@ int main (int argc, char **argv)
multi_germline_file
=
string
(
optarg
);
multi_germline_file
=
string
(
optarg
);
germline_system
=
"multi"
;
germline_system
=
"multi"
;
break
;
break
;
case
'i'
:
multi_germline_incomplete
=
true
;
break
;
case
'G'
:
case
'G'
:
germline_system
=
string
(
optarg
);
germline_system
=
string
(
optarg
);
f_reps_V
.
push_back
((
germline_system
+
"V.fa"
).
c_str
())
;
f_reps_V
.
push_back
((
germline_system
+
"V.fa"
).
c_str
())
;
...
@@ -676,6 +682,8 @@ int main (int argc, char **argv)
...
@@ -676,6 +682,8 @@ int main (int argc, char **argv)
if
(
multi_germline
)
if
(
multi_germline
)
{
{
multigermline
->
build_default_set
(
multi_germline_file
);
multigermline
->
build_default_set
(
multi_germline_file
);
if
(
multi_germline_incomplete
)
multigermline
->
build_incomplete_set
(
multi_germline_file
);
}
}
else
if
(
command
==
CMD_GERMLINES
)
else
if
(
command
==
CMD_GERMLINES
)
{
{
...
...
Vidjil Team
@vidjilteam
Mentioned in issue
#1304 (closed)
·
Nov 29, 2016
Mentioned in issue
#1304 (closed)
Mentioned in issue #1304
Toggle commit list
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