Skip to content

Commit 4e9c36e

Browse files
author
Suvaline
committed
patched loaders
1 parent 5835d10 commit 4e9c36e

File tree

7 files changed

+6
-31
lines changed

7 files changed

+6
-31
lines changed

icons/icon.icns

90 KB
Binary file not shown.

icons/icon.ico

21.6 KB
Binary file not shown.

icons/icon.png

35 KB
Loading

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"name": "pipecraft_v0.1.2",
2+
"name": "pipecraft_v0.1.3",
33
"author": {
44
"name": "Martin Metsoja",
55
"email": "martin.metsoja@gmail.com",
66
"url": "https://github.com/SuvalineVana/pipecraft"
77
},
88
"productName": "pipecraft",
9-
"version": "0.1.2",
9+
"version": "0.1.3",
1010
"private": true,
1111
"scripts": {
1212
"serve": "vue-cli-service serve",

src/components/RunButton.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ export default {
124124
});
125125
console.log(nameConflicts);
126126
},
127-
async updateRunInfo(i, len, name) {
128-
this.$store.commit("addRunInfo", [true, "customWorkflow", i, len, name]);
127+
async updateRunInfo(i, len, Hname, name) {
128+
this.$store.commit("addRunInfo", [true, name, i, len, Hname]);
129129
},
130130
async imageCheck(imageName) {
131131
let gotImg = await imageExists(dockerode, imageName);
@@ -166,7 +166,7 @@ export default {
166166
if (step.selected == true || step.selected == "always") {
167167
let dockerProps = await this.getDockerProps(step);
168168
this.clearContainerConflicts(dockerProps.name);
169-
this.updateRunInfo(i, step.length, dockerProps.name);
169+
this.updateRunInfo(i, steps2Run, dockerProps.name, name);
170170
this.imageCheck(step.imageName);
171171
console.log(dockerProps);
172172
let result = await dockerode

src/pipecraft-core/service_scripts/example_data/DADA2_ITS/vanilla_test/taxonomy_out.dada2/README.txt

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/views/dada2Miseq.vue

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -83,22 +83,10 @@
8383
<span>Check out the documentation for more info</span>
8484
</v-tooltip>
8585
</div>
86-
87-
<!-- <v-progress-circular
88-
v-if="
89-
$store.state.runInfo.active == true &&
90-
$store.state.runInfo.type == 'customWorkflow' &&
91-
index == $store.state.runInfo.step
92-
"
93-
indeterminate
94-
color="#1DE9B6"
95-
:size="20"
96-
></v-progress-circular> -->
97-
9886
<div
9987
v-if="
10088
$store.state.runInfo.active == true &&
101-
$store.state.runInfo.type == 'customWorkflow' &&
89+
$store.state.runInfo.type == $route.params.workflowName &&
10290
index == $store.state.runInfo.step
10391
"
10492
style="margin-left: 25px"

0 commit comments

Comments
 (0)