Panacea reduces LRS2 raw CCD frames into science‑ready spectra and data cubes for the Hobby–Eberly Telescope (HET). It powers the daily automated reductions on TACC and can be installed locally for development or small analyses. For a structured overview, see Project documentation index.
- Getting started: Installation · Quickstart
- TACC users: Overview · Running on TACC
- Data products: Overview
conda env create -f environment.yml
conda activate panacea
pip install .[dev]Compatibility note: The environment is pinned to numpy<2.0 with astropy<6 (see environment.yml / pyproject.toml). If you need NumPy 2.x, upgrade Astropy to ≥6 and test locally.
For a step-by-step walkthrough, sample data download, and additional options, see the full Quickstart guide. It complements and expands the brief commands shown here: docs/getting-started/quickstart.md
# Show help and verify installation
panacea-lrs2 -h
# Smoke test: verify packaged resources without raw data
panacea-lrs2 --smoke-test
# See the full Quickstart guide for sample data and more options:
# docs/getting-started/quickstart.md
# Example run (adjust to your data)
panacea-lrs2 -d 20260115 -s uvMore examples and options: CLI user guide and Examples.
- Required configuration files (e.g., line lists, DAR tables, responses, fplane.txt) are bundled with the package and resolved via importlib.resources.
- Raw data layout: the CLI expects an LRS2/TACC‑like directory structure. Point to your data root using
--baseraw.
If you use the facility pipeline on TACC, start with TACC overview.
- Import error mentioning
numpy.in1dor Astropy: ensure your environment follows the pins above. - Need dev commands (pre‑commit, local CI, coverage)? See Dev quickstart. For exact git workflow commands (stage/commit/push), see Stage, commit, push.
- Where are tests described (including tests/test_sample_data.py)? See Tests overview.
- More help: FAQ.
- Citation: CITATION.cff (see also Citation docs)
- DOI (concept, stable): https://doi.org/10.5281/zenodo.18250411
- DOI (version v1.0.1): https://doi.org/10.5281/zenodo.18250412
- License: BSD‑3‑Clause (LICENSE)
We welcome issues and pull requests. Please read Contributing guide. For a concise developer setup and CI‑equivalent checks, see Dev quickstart.