You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Patch release with minor improvements in docs and validation of the pipeline.
9
+
10
+
### Enhancements & fixes
11
+
12
+
-[[#218](https://github.com/nf-core/multiplesequencealign/pull/218)] - Improve the input validation of the pipeline. This will prevent multiple downstream errors
13
+
-[[#221](https://github.com/nf-core/multiplesequencealign/pull/218)] - Update pipeline documentation for Shiny.
14
+
15
+
### Parameters
16
+
6
17
## [1.1.0 - Nova Icaria](https://github.com/nf-core/multiplesequencealign/releases/tag/1.1.0)
7
18
8
19
Nova Icaria is a beach in Barcelona. We started from Somorrostro (beach in front of CRG) and we are going up the way to Costa Brava.
@@ -61,10 +72,10 @@ Initial release of nf-core/multiplesequencealign, created with the [nf-core](htt
-[[#146](https://github.com/nf-core/multiplesequencealign/pull/146)] - Only show additional process tags when they exists and use the same ubuntu version in all modules.
-[[#147](https://github.com/nf-core/multiplesequencealign/pull/147)] - Add small testing profile + some fixes of the shiny app.
88
+
-[[#147](https://github.com/nf-core/multiplesequencealign/pull/147)] - Add small testing profile + some fixes of the Shiny app.
78
89
-[[#148](https://github.com/nf-core/multiplesequencealign/pull/148)] - Add UPP module.
79
90
-[[#150](https://github.com/nf-core/multiplesequencealign/pull/150)] - Update modules and readme for pre-release.
80
91
@@ -91,7 +102,7 @@ Initial release of nf-core/multiplesequencealign, created with the [nf-core](htt
91
102
-[[#134](https://github.com/nf-core/multiplesequencealign/pull/134)] - Code revision for release preparation.
92
103
-[[#138](https://github.com/nf-core/multiplesequencealign/pull/138)] - MultiQC as nf-core module and fix visualization.
93
104
-[[#152](https://github.com/nf-core/multiplesequencealign/pull/152)] - Ignore kalign error 132 and print a warning (incompatibility with some CPU types).
94
-
-[[#153](https://github.com/nf-core/multiplesequencealign/pull/153)] - Fix time parser in shiny app.
105
+
-[[#153](https://github.com/nf-core/multiplesequencealign/pull/153)] - Fix time parser in Shiny app.
[](https://docs.conda.io/en/latest/)
14
14
[](https://www.docker.com/)
15
15
[](https://sylabs.io/docs/)
@@ -21,7 +21,7 @@
21
21
22
22
Use **nf-core/multiplesequencealign** to:
23
23
24
-
1.**Deploy** one (or many in parallel) of the most popular Multiple Sequence Alignment (MSA) tools.
24
+
1.**Deploy** one (or many) of the most popular Multiple Sequence Alignment (MSA) tools.
25
25
2.**Benchmark** MSA tools (and their inputs) using various metrics.
26
26
27
27
Main steps:
@@ -53,7 +53,7 @@ Main steps:
53
53
54
54
<br>
55
55
56
-
More introductory material: [talk](https://www.youtube.com/watch?v=suNulysHIN0) from the nextlow summit, [poster](https://github.com/nf-core/multiplesequencealign/blob/dev/docs/images/poster-nf-msa.pdf).
56
+
More introductory material: [bytesize talk](https://youtu.be/iRY-Y1p5gtc), [nextflow summit talk](https://www.youtube.com/watch?v=suNulysHIN0), [poster](https://github.com/nf-core/multiplesequencealign/blob/dev/docs/images/poster-nf-msa.pdf).
57
57
58
58

Copy file name to clipboardExpand all lines: assets/schema_tools.json
+17-2Lines changed: 17 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@
10
10
"tree": {
11
11
"type": "string",
12
12
"pattern": "^\\S+$",
13
-
"errorMessage": "tree name cannot contain spaces",
13
+
"errorMessage": "tree name cannot contain spaces and must be a string",
14
14
"meta": ["tree"],
15
15
"default": ""
16
16
},
@@ -23,7 +23,22 @@
23
23
"type": "string",
24
24
"meta": ["aligner"],
25
25
"pattern": "^\\S+$",
26
-
"errorMessage": "align name must be provided and cannot contain spaces",
26
+
"enum": [
27
+
"CLUSTALO",
28
+
"FAMSA",
29
+
"KALIGN",
30
+
"LEARNMSA",
31
+
"MAFFT",
32
+
"MAGUS",
33
+
"MUSCLE5",
34
+
"TCOFFEE",
35
+
"REGRESSIVE",
36
+
"UPP",
37
+
"3DCOFFEE",
38
+
"MTMALIGN",
39
+
"FOLDMASON"
40
+
],
41
+
"errorMessage": "align name must be provided, has to be a string, cannot contain spaces and must be one of: CLUSTALO, FAMSA, KALIGN, LEARNMSA, MAFFT, MAGUS, MUSCLES, TCOFFEE, REGRESSIVE, UPP, 3DCOFFE, MTMALIGN or FOLDMASON",
0 commit comments