From bdc52e331fdd6e54d132bbeef54e4c42b2826f00 Mon Sep 17 00:00:00 2001 From: Stephen Beckstrom-Sternberg Date: Fri, 20 Oct 2023 15:24:01 -0700 Subject: [PATCH] Update heatcluster.yml --- .github/workflows/heatcluster.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/heatcluster.yml b/.github/workflows/heatcluster.yml index ade1198..3c5f000 100644 --- a/.github/workflows/heatcluster.yml +++ b/.github/workflows/heatcluster.yml @@ -11,25 +11,25 @@ jobs: run: pip install argparse pandas numpy pathlib seaborn matplotlib - name: test (tab-delimited) - run: ./HeatCluster.py -i test/small_matrix.csv + run: ./HeatCluster.py -i /test/small_matrix.csv - name: test1 (comma-delimited) - run: ./HeatCluster.py -i test/snp-dists.txt -o test1 + run: ./HeatCluster.py -i /test/snp-dists.txt -o test1 - name: test2 (empty first row/col cell) - run: ./HeatCluster.py -i test/blank.txt -o test2 -t png + run: ./HeatCluster.py -i /test/blank.txt -o test2 -t png - name: test3 (melted - failure) - run: ./HeatCluster.py -i test/melted.txt -o test3 + run: ./HeatCluster.py -i /test/melted.txt -o test3 - name: test4 (small matrix) - run: ./HeatCluster.py -i test/small_matrix.csv -o test4 + run: ./HeatCluster.py -i /test/small_matrix.csv -o test4 - name: test5 (medium matrix) - run: ./HeatCluster.py -i test/med_matrix.txt -o test5 + run: ./HeatCluster.py -i /test/med_matrix.txt -o test5 - name: test6 (large matrix) - run: ./HeatCluster.py -i test/large_matrix.csv -o test6 + run: ./HeatCluster.py -i /test/large_matrix.csv -o test6 - name: test7 (help) run: ./HeatCluster.py -h