Skip to content

Commit 4764af6

Browse files
committed
removed metazoa, added min height
2 parents 2492e31 + fd6be3c commit 4764af6

File tree

6 files changed

+26
-13
lines changed

6 files changed

+26
-13
lines changed

src/components/InputBoolSelect.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
>
5252
</v-card-title>
5353
</template>
54-
<span>{{ input.tooltip }}</span>
54+
<span class="tooltip-text">{{ input.tooltip }}</span>
5555
</v-tooltip>
5656
<v-card-actions style="justify-content: center">
5757
<v-row style="justify-content: center"
@@ -134,6 +134,9 @@ export default {
134134
</script>
135135

136136
<style lang="scss" scoped>
137+
.tooltip-text {
138+
white-space: pre-line;
139+
}
137140
.v-text-field {
138141
::v-deep input {
139142
text-align: center !important;

src/components/InputChip.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
</v-card>
5050
</div>
5151
</template>
52-
<span>{{ input.tooltip }}</span>
52+
<span class="tooltip-text">{{ input.tooltip }}</span>
5353
</v-tooltip>
5454
</template>
5555

@@ -122,6 +122,9 @@ export default {
122122
</script>
123123

124124
<style>
125+
.tooltip-text {
126+
white-space: pre-line;
127+
}
125128
.v-text-field input {
126129
text-align: center;
127130
}

src/components/InputFile.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
>{{ input.name.replace(/_/g, " ") }}</v-card-title
2727
>
2828
</template>
29-
<span>{{ input.tooltip }}</span>
29+
<span class="tooltip-text">{{ input.tooltip }}</span>
3030
</v-tooltip>
3131
<v-card-actions style="justify-content: center">
3232
<v-row
@@ -136,6 +136,9 @@ export default {
136136
</script>
137137

138138
<style lang="scss" scoped>
139+
.tooltip-text {
140+
white-space: pre-line;
141+
}
139142
.v-text-field {
140143
::v-deep input {
141144
text-align: center !important;

src/components/InputSelect.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
>{{ input.name.replace(/_/g, " ") }}</v-card-title
2727
>
2828
</template>
29-
<span>{{ input.tooltip }}</span>
29+
<span class="tooltip-text">{{ input.tooltip }}</span>
3030
</v-tooltip>
3131
<v-card-actions style="justify-content: center">
3232
<v-row style="justify-content: center"
@@ -164,6 +164,9 @@ export default {
164164
</script>
165165

166166
<style lang="scss" scoped>
167+
.tooltip-text {
168+
white-space: pre-line;
169+
}
167170
.v-text-field {
168171
::v-deep input {
169172
text-align: center !important;

src/pipecraft-core/service_scripts/pipeline_options.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ trimming:
1414
min_overlap: 10
1515
max_n: 0
1616
max_err: 1
17-
truncQ_R1: 2
18-
truncQ_R2: 2
17+
truncQ_R1: 3
18+
truncQ_R2: 3
1919
min_length: 100
2020
cut_R1: 0
2121
cut_R2: 0
@@ -35,12 +35,12 @@ orient: fwd
3535
control:
3636
spike:
3737
positive:
38-
forward_primer: "GTGARTCATCGAATCTTTG"
38+
forward_primer: "GCATCGATGAAGAACGCAGC"
3939
reverse_primer: "TCCTCCGCTTATTGATATGC"
4040
custom_sample_table: FALSE
4141
filtering:
42-
maxEE_R1: 1
43-
maxEE_R2: 1
42+
maxEE_R1: 2
43+
maxEE_R2: 2
4444
tag_jump:
4545
f: 0.03
4646
p: 1

src/store/index.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2921,15 +2921,16 @@ export default new Vuex.Store({
29212921
value: "ITS2",
29222922
disabled: "never",
29232923
tooltip:
2924-
"specify region for clustering (because multiple output folders are generated during this process)",
2924+
"specify region for clustering at NEXT STEP (because multiple output folders are generated during this process)",
29252925
type: "select",
29262926
},
29272927
{
29282928
name: "cluster_full_and_partial",
29292929
value: true,
29302930
disabled: "never",
29312931
tooltip:
2932-
"if setting 'partial' is not 0, then at the NEXT STEP cluster 'full and partial' (e.g.) ITS2 reads (dir /ITS2/full_and_partial). If OFF, then cluster only full ITS2 reads",
2932+
`if setting 'partial' is not 0, then at the NEXT STEP cluster 'full and partial'
2933+
(e.g.) ITS2 reads (dir /ITS2/full_and_partial). If OFF, then cluster only full ITS2 reads`,
29332934
type: "bool",
29342935
},
29352936
],
@@ -4200,7 +4201,7 @@ export default new Vuex.Store({
42004201
Inputs: [
42014202
{
42024203
name: "maxEE_R1",
4203-
value: 1,
4204+
value: 2,
42044205
disabled: "never",
42054206
tooltip:
42064207
"discard sequences with more than the specified number of expected errors in R1 reads",
@@ -4209,7 +4210,7 @@ export default new Vuex.Store({
42094210
},
42104211
{
42114212
name: "maxEE_R2",
4212-
value: 1,
4213+
value: 2,
42134214
disabled: "never",
42144215
tooltip:
42154216
"discard sequences with more than the specified number of expected errors in R2 reads",

0 commit comments

Comments
 (0)