Skip to content

Commit 5e52636

Browse files
authored
remove left-over from my debugging through container
1 parent 3bc7c17 commit 5e52636

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

content/snakemake.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@ This could be one way to do it:
2121
num_rounds=10
2222

2323
for i in $(seq -w 1 ${num_rounds}); do
24-
./conda.sif python generate_data.py \
24+
python generate_data.py \
2525
--num-samples 2000 \
2626
--training-data data/train_${i}.csv \
2727
--test-data data/test_${i}.csv
2828

29-
./conda.sif python generate_predictions.py \
29+
python generate_predictions.py \
3030
--num-neighbors 7 \
3131
--training-data data/train_${i}.csv \
3232
--test-data data/test_${i}.csv
3333
--predictions results/predictions_${i}.csv
3434

35-
./conda.sif python plot_results.py \
35+
python plot_results.py \
3636
--training-data data/train_${i}.csv \
3737
--predictions results/predictions_${i}.csv \
3838
--output-chart results/chart_${i}.png
@@ -51,7 +51,7 @@ For the following we will assume that we have the input data available:
5151
num_rounds=10
5252

5353
for i in $(seq -w 1 ${num_rounds}); do
54-
./conda.sif python generate_data.py \
54+
python generate_data.py \
5555
--num-samples 2000 \
5656
--training-data data/train_${i}.csv \
5757
--test-data data/test_${i}.csv

0 commit comments

Comments
 (0)