-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdir_str.text
More file actions
24 lines (24 loc) · 1.08 KB
/
dir_str.text
File metadata and controls
24 lines (24 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Wrapper/
├── inputs/
│ └── uncal_data/ # Raw uncalibrated FITS files go here
├── outputs/ # Generated dynamically by master_run.py
│ ├── eureka/
│ │ └── K2-18b/
│ │ ├── Stage1/ ... Stage4/
│ ├── exotedrf/
│ │ └── K2-18b/
│ │ ├── Stage1/ ... Stage3/
│ └── sparta/
│ └── K2-18b/
├── configs/
│ ├── master_run_config.yaml # The ONLY file you interact with
│ ├── default_eureka/
│ │ ├── S1_template.ecf ... S4_template.ecf
│ └── default_exotedrf/
│ ├── run_DMS.yaml
│ └── fit_lightcurves.yaml
├── workers/
│ ├── call_eureka.py # Translates YAML -> ECF and runs Eureka
│ ├── call_exotedrf.py # Translates YAML -> YAML and runs exoTEDRF
│ └── call_sparta.py # Translates YAML -> shell commands and runs Sparta
└── master_run.py # The main orchestrator script