-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #111 from ncsa/develop
Develop
- Loading branch information
Showing
56 changed files
with
1,179 additions
and
43,826 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,45 +17,66 @@ jobs: | |
- uses: actions/checkout@v3 | ||
- uses: s-weigand/[email protected] | ||
with: | ||
conda-channels: [bioconda, conda-forge] | ||
conda-channels: bioconda, conda-forge | ||
activate-conda: true | ||
repository: NCSA/NEAT | ||
- name: Environment Setup | ||
run: | | ||
conda env create -f environment.yml -n test_neat | ||
conda activate test_neat | ||
source activate test_neat | ||
poetry install | ||
cd config_template | ||
- name: Run NEAT Simulation for config_test1 | ||
run: python -m neat --log-level DEBUG read-simulator -c config_test1.yml -o ../outputs/test1_read-simulator | ||
run: | | ||
source activate test_neat | ||
python -m neat --log-level DEBUG read-simulator -c data/test_configs/config_test1.yml -o ../outputs/test1_read-simulator | ||
- name: Run NEAT Simulation for config_test2 | ||
run: python -m neat --log-level DEBUG read-simulator -c config_test2.yml -o ../outputs/test2_read-simulator | ||
run: | | ||
source activate test_neat | ||
python -m neat --log-level DEBUG read-simulator -c data/test_configs/config_test2.yml -o ../outputs/test2_read-simulator | ||
- name: Run NEAT Simulation for config_test3 | ||
run: python -m neat --log-level DEBUG read-simulator -c config_test3.yml -o ../outputs/test3_read-simulator | ||
run: | | ||
source activate test_neat | ||
python -m neat --log-level DEBUG read-simulator -c data/test_configs/config_test3.yml -o ../outputs/test3_read-simulator | ||
- name: Run NEAT Simulation for config_test4 | ||
run: python -m neat --log-level DEBUG read-simulator -c config_test4.yml -o ../outputs/test4_read-simulator | ||
run: | | ||
source activate test_neat | ||
python -m neat --log-level DEBUG read-simulator -c data/test_configs/config_test4.yml -o ../outputs/test4_read-simulator | ||
- name: Run NEAT Simulation for config_test5 | ||
run: python -m neat --log-level DEBUG read-simulator -c config_test5.yml -o ../outputs/test5_read-simulator | ||
run: | | ||
source activate test_neat | ||
python -m neat --log-level DEBUG read-simulator -c data/test_configs/config_test5.yml -o ../outputs/test5_read-simulator | ||
- name: Run NEAT Simulation for config_test6 | ||
run: python -m neat --log-level DEBUG read-simulator -c config_test6.yml -o ../outputs/test6_read-simulator | ||
run: | | ||
source activate test_neat | ||
python -m neat --log-level DEBUG read-simulator -c data/test_configs/config_test6.yml -o ../outputs/test6_read-simulator | ||
- name: Run NEAT Simulation for config_test7 | ||
run: python -m neat --log-level DEBUG read-simulator -c config_test7.yml -o ../outputs/test7_read-simulator | ||
run: | | ||
source activate test_neat | ||
python -m neat --log-level DEBUG read-simulator -c data/test_configs/config_test7.yml -o ../outputs/test7_read-simulator | ||
- name: Run NEAT Simulation for config_test8 | ||
run: python -m neat --log-level DEBUG read-simulator -c config_test8.yml -o ../outputs/test8_read-simulator | ||
run: | | ||
source activate test_neat | ||
python -m neat --log-level DEBUG read-simulator -c data/test_configs/config_test8.yml -o ../outputs/test8_read-simulator | ||
- name: Run NEAT Simulation for config_test9 | ||
run: python -m neat --log-level DEBUG read-simulator -c config_test9.yml -o ../outputs/test9_read-simulator | ||
run: | | ||
source activate test_neat | ||
python -m neat --log-level DEBUG read-simulator -c data/test_configs/config_test9.yml -o ../outputs/test9_read-simulator | ||
- name: Run NEAT Simulation for config_test10 | ||
run: python -m neat --log-level DEBUG read-simulator -c config_test10.yml -o ../outputs/test10_read-simulator | ||
run: | | ||
source activate test_neat | ||
python -m neat --log-level DEBUG read-simulator -c data/test_configs/config_test10.yml -o ../outputs/test10_read-simulator | ||
- name: Run NEAT Simulation for config_test11 | ||
run: python -m neat --log-level DEBUG read-simulator -c config_test11.yml -o ../outputs/test11_read-simulator | ||
run: | | ||
source activate test_neat | ||
python -m neat --log-level DEBUG read-simulator -c data/test_configs/config_test11.yml -o ../outputs/test11_read-simulator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.