Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bilby_pipe
Manage
Activity
Members
Labels
Plan
Issues
27
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
12
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lscsoft
bilby_pipe
Merge requests
!249
Adding gracedb test node
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Adding gracedb test node
144-add-a-gracedb-ci-test-job
into
master
Overview
0
Commits
14
Pipelines
14
Changes
3
Merged
Gregory Ashton
requested to merge
144-add-a-gracedb-ci-test-job
into
master
5 years ago
Overview
0
Commits
14
Pipelines
14
Changes
3
Expand
Closes
#144 (closed)
👍
0
👎
0
Merge request reports
Compare
master
version 13
ba6b09f5
5 years ago
version 12
d73700c2
5 years ago
version 11
2ae60ebb
5 years ago
version 10
f5e92166
5 years ago
version 9
4816fa56
5 years ago
version 8
0dfdb849
5 years ago
version 7
572262e0
5 years ago
version 6
dc88855d
5 years ago
version 5
62cf0add
5 years ago
version 4
b9d6e3c0
5 years ago
version 3
20a9b5b9
5 years ago
version 2
a755068c
5 years ago
version 1
863abef0
5 years ago
master (base)
and
latest version
latest version
840933d3
14 commits,
5 years ago
version 13
ba6b09f5
13 commits,
5 years ago
version 12
d73700c2
12 commits,
5 years ago
version 11
2ae60ebb
11 commits,
5 years ago
version 10
f5e92166
10 commits,
5 years ago
version 9
4816fa56
9 commits,
5 years ago
version 8
0dfdb849
8 commits,
5 years ago
version 7
572262e0
7 commits,
5 years ago
version 6
dc88855d
6 commits,
5 years ago
version 5
62cf0add
5 commits,
5 years ago
version 4
b9d6e3c0
4 commits,
5 years ago
version 3
20a9b5b9
3 commits,
5 years ago
version 2
a755068c
2 commits,
5 years ago
version 1
863abef0
1 commit,
5 years ago
3 files
+
44
−
18
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
bilby_pipe/gracedb.py
+
15
−
3
Options
@@ -19,6 +19,7 @@ from .utils import (
check_directory_exists_and_if_not_mkdir
,
logger
,
run_command_line
,
tcolors
,
test_connection
,
)
@@ -555,11 +556,20 @@ def create_parser():
return
parser
def
main
(
args
=
None
):
def
main
(
args
=
None
,
unknown_args
=
None
):
if
args
is
None
:
args
=
create_parser
().
parse_args
()
args
,
unknown_args
=
create_parser
().
parse_known_args
()
elif
unknown_args
is
None
:
unknown_args
=
[]
if
len
(
unknown_args
)
>
1
and
args
.
output
==
"
ini
"
:
msg
=
[
tcolors
.
WARNING
,
"
Unrecognized arguments {}, these will be ignored
"
.
format
(
unknown_args
),
tcolors
.
END
,
]
logger
.
warning
(
"
"
.
join
(
msg
))
if
args
.
outdir
:
outdir
=
args
.
outdir
@@ -615,4 +625,6 @@ def main(args=None):
arguments
.
append
(
"
--submit
"
)
if
args
.
online_pe
:
arguments
.
append
(
"
--online-pe
"
)
if
len
(
unknown_args
)
>
1
:
arguments
=
arguments
+
unknown_args
run_command_line
(
arguments
)
Loading