Skip to content

Commit 56796d4

Browse files
authored
Merge pull request #16 from BackofenLab/new_wfs
add new workflows and new tours
2 parents 73daee6 + cb49a54 commit 56796d4

8 files changed

Lines changed: 7 additions & 3 deletions

Dockerfile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,19 @@ ADD graphclust.yml $GALAXY_ROOT/tools.yaml
1717
RUN install-tools $GALAXY_ROOT/tools.yaml && \
1818
/tool_deps/_conda/bin/conda clean --tarballs
1919

20-
ADD tour_graphclust_wf.yaml $GALAXY_ROOT/config/plugins/tours/graphclust.wf.yaml
20+
ADD ./tours/graphclust_wf.yaml $GALAXY_ROOT/config/plugins/tours/graphclust.wf.yaml
21+
ADD ./tours/graphclust_step_by_step.yaml $GALAXY_ROOT/config/plugins/tours/graphclust.step_by_step.yaml
22+
ADD ./tours/graphclust_very_short.yaml $GALAXY_ROOT/config/plugins/tours/graphclust.short.yaml
2123

2224
# Data libraries
2325
ADD setup_data_libraries.py $GALAXY_ROOT/setup_data_libraries.py
2426
ADD library_data.yaml $GALAXY_ROOT/library_data.yaml
2527

2628
# Hacky script to import workflows into Galaxy after installation. I would argue this step is redundant.
2729
ADD import_workflows.py $GALAXY_ROOT/import_workflows.py
28-
ADD GraphClust_one.ga $GALAXY_ROOT/GraphClust_one.ga
29-
ADD GraphClust_two.ga $GALAXY_ROOT/GraphClust_two.ga
30+
ADD ./workflows/GraphClust_one.ga $GALAXY_ROOT/GraphClust_one.ga
31+
ADD ./workflows/GraphClust_two.ga $GALAXY_ROOT/GraphClust_two.ga
32+
ADD ./workflows/GraphClust_three.ga $GALAXY_ROOT/GraphClust_three.ga
3033

3134
# Download training data and populate the data library
3235
RUN startup_lite && \

import_workflows.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@
1010
wf = galaxy.workflows.WorkflowClient(gi)
1111
wf.import_workflow_from_local_path('/galaxy-central/GraphClust_two.ga')
1212
wf.import_workflow_from_local_path('/galaxy-central/GraphClust_one.ga')
13+
wf.import_workflow_from_local_path('/galaxy-central/GraphClust_three.ga')

0 commit comments

Comments
 (0)