Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pycalibration
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Contributor analytics
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
calibration
pycalibration
Commits
172adc2f
Commit
172adc2f
authored
3 years ago
by
Thomas Kluyver
Browse files
Options
Downloads
Patches
Plain Diff
Add xfel-calibrate --constants-from option to reuse constant info from a calibration_metadata.yml
parent
d356d0e8
No related branches found
No related tags found
1 merge request
!544
Reproducibility, step 1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/xfel_calibrate/calibrate.py
+10
-0
10 additions, 0 deletions
src/xfel_calibrate/calibrate.py
with
10 additions
and
0 deletions
src/xfel_calibrate/calibrate.py
+
10
−
0
View file @
172adc2f
...
...
@@ -23,6 +23,7 @@ import nbformat
import
numpy
as
np
from
jinja2
import
Template
from
nbparameterise
import
extract_parameters
,
parameter_values
,
replace_definitions
import
yaml
import
cal_tools.tools
...
...
@@ -86,6 +87,11 @@ def make_initial_parser(**kwargs):
help
=
'
Name of concurrency parameter.
'
'
If not given, it is taken from configuration.
'
)
parser
.
add_argument
(
'
--constants-from
'
,
type
=
str
,
help
=
(
"
Path to a calibration-metadata.yml file. If given,
"
"
retrieved-constants will be copied to use for a new correction.
"
))
parser
.
add_argument
(
'
--priority
'
,
type
=
int
,
default
=
2
,
help
=
"
Priority of batch jobs. If priority<=1, reserved
"
"
nodes become available.
"
)
...
...
@@ -1073,6 +1079,10 @@ def run():
'
path
'
:
python_exe
,
'
python-version
'
:
get_python_version
(
python_exe
),
}
if
args
[
"
constants_from
"
]:
with
open
(
args
[
"
constants_from
"
],
"
r
"
,
encoding
=
'
utf-8
'
)
as
f
:
d
=
yaml
.
safe_load
(
f
)
metadata
[
"
retrieved-constants
"
]
=
d
[
"
retrieved-constants
"
]
metadata
.
save
()
# Record installed Python packages for reproducing the environment
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment