Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ __pycache__/
# Logs
# ─────────────────────────────────────────
*.log
*.debug
debug.log

# ─────────────────────────────────────────
# SLURM / HPC
# ─────────────────────────────────────────
slurm-*.out
slurm-*.err
slurm*

# ─────────────────────────────────────────
# Local / temp
Expand Down
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,29 @@ After generating the necessary files, run the pipeline with ceci, e.g.:
ceci examples/cosmodc2_remapper/baseline/run_in2p3_mor
```

### Downloading example data

Large chains, sacc files, and (for capish) mock realizations are not
committed to git -- the notebooks under `examples/cosmodc2_redmapper/` and
`examples/capish_simulation/` load them from `CLPipe/data/`, hosted on the
NERSC Science Gateway portal:

https://portal.nersc.gov/cfs/lsst/clpipe/data/

Download the whole tree into the right place with:

```bash
wget -r -np -nH --cut-dirs=3 -R "index.html*" \
https://portal.nersc.gov/cfs/lsst/clpipe/data/ \
-P CLPipe/
```

This lands files at `CLPipe/data/cosmodc2_redmapper/{chains,sacc}/` and
`CLPipe/data/capish_simulation/{chains,*.sacc,data_generation/mocks_seeds}/`,
matching the relative paths the notebooks expect. See
[`data/README.md`](data/README.md) for what is hosted there and how to
refresh it.

## Testing

Tests live under `tests/` and run via `pytest`, split into two tiers:
Expand Down
2 changes: 1 addition & 1 deletion clpipe/clp_covariance.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,4 +344,4 @@ def replace_crow_counts(self, config_dict, sacc_full, cov_terms, full_cov, cosmo
# counts variance estimate.
self.crow_theory_counts = dict(theory_counts)

return full_cov
return full_cov
Loading
Loading