Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
INTBuilder
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chloe Dequeker
INTBuilder
Commits
faa6f2d0
Commit
faa6f2d0
authored
Jul 12, 2018
by
Chloe Dequeker
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adding citation option
parent
72616a07
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
param.c
src/param.c
+14
-0
No files found.
src/param.c
View file @
faa6f2d0
...
...
@@ -33,6 +33,7 @@ void print_usage() {
"<--force/-f>.......Will force the computation of the pause even in case of
\n
"
" huge number of clashes (threshold defined in struct.h)
\n
"
"<-distTH>%%.........Distance for contact
\n
"
"<-cite>.............Prints the bibtex citation for this tool.
\n
"
"--
\n
"
"Leaving this option blank means that the default format for the docking file
\n
"
"will be used.
\n
"
...
...
@@ -155,6 +156,19 @@ struct argLine* parseLineOfArgument(int argc, char** argv){
fprintf
(
stderr
,
"The threshold distance has to be above 0.
\n
"
);
exit
(
EXIT_SUCCESS
);
}
}
else
if
(
strcmp
(
argv
[
i
],
"-cite"
)
==
0
){
printf
(
"@article{Dequeker2017Nov,"
"author = {Dequeker, Chlo'e and Laine, Elodie and Carbone, Alessandra},
\n
"
"title = {{INTerface Builder: A Fast Protein-Protein Interface Reconstruction Tool}},
\n
"
"journal = {J. Chem. Inf. Model.},
\n
"
"volume = {57},
\n
"
"number = {11},
\n
"
"pages = {2613--2617},
\n
"
"year = {2017},
\n
"
"month = {Nov},
\n
"
"issn = {1549-960X},
\n
"
"publisher = {American Chemical Society},
\n
"
"doi = {10.1021/acs.jcim.7b00360}
\n
}"
);
}
else
if
(
strcmp
(
argv
[
i
],
"-HCMD2"
)
==
0
){
HCMD2
=
1
;
}
else
if
(
strcmp
(
argv
[
i
],
"-MAXDo"
)
==
0
){
...
...
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