Initial commit: v0.1.0

This commit is contained in:
hoellinger 2025-01-10 17:03:16 +01:00
commit c041384662
172 changed files with 45744 additions and 0 deletions

25
submit/step0c.sh Normal file
View file

@ -0,0 +1,25 @@
#!/bin/bash
# ----------------------------------------------------------------------
# Copyright (C) 2024 Tristan Hoellinger
# Distributed under the GNU General Public License v3.0 (GPLv3).
# See the LICENSE file in the root directory for details.
# SPDX-License-Identifier: GPL-3.0-or-later
# ----------------------------------------------------------------------
# Author: Tristan Hoellinger
# Version: 0.1
# Date: 2024
# License: GPLv3
eval "$(conda shell.bash hook)"
conda activate simbel
export OMP_NUM_THREADS=8
python $SELFISYS_ROOT_PATH"src/selfisys/pipeline/step0c.py" \
--wd $SELFISYS_OUTPUT_PATH"dev/643600502/run1/" \
--npar_norm 1 \
--survey_mask_path $SELFISYS_OUTPUT_PATH"expl_notebooks/surveymask/raw_mask_N64.npy" \
--force False
exit 0