Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add examples of data registry usage #302

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions examples/metadetect/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,18 @@ inputs:
star_catalog: data/example/inputs/star_catalog.hdf5
# This file comes with the code
fiducial_cosmology: data/fiducial_cosmology.yml
# This form can be used with the data registry
# fiducial_cosmology:
# name: fiducial_cosmology
## Possible future forms:
## Use an alias:
# shear_catalog:
# alias: metadetect_alpha
## Find the file with the output tag "shear_catalog" from a previous
## pipeline run called "cosmodc2_1deg2"
# shear_catalog:
# execution: cosmodc2_1deg2

# For the self-calibration extension we are not using Random_cat_source for now
# So it is set to Null, so the yaml intepreter returns a None value to python.
random_cats_source: Null
Expand All @@ -130,3 +142,14 @@ resume: True
log_dir: data/example/logs_metadetect
# where to put an overall parsl pipeline log
pipeline_log: data/example/log.txt

registry:
config_file: ~/.config_reg_access
## possible future behaviour:
## Select a root directory:
# root: /path/to/root
## Auto-download any files smaller than this limit:
# autodownload: 1GB
## Path to use this remotely:
# server: spin.nersc.gov/path

Loading