forked from azroger/cyverse_agave_apps
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmafft.json
85 lines (85 loc) · 2.35 KB
/
mafft.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "rb-Mafft",
"parallelism": "SERIAL",
"version": "7.0.17",
"helpURI": "http://mafft.cbrc.jp/alignment/software/manual/manual.html",
"label": "Mafft",
"shortDescription": "Mafft, multi-sequence aligner",
"longDescription": "A very, very basic version of Mafft",
"author": "Roger Barthelson",
"datePublished": "09/24/15",
"tags": [
"aligner",
"NGS",
"multi-sequence",
"rPlant"
],
"ontology": [
"http://sswapmeet.sswap.info/sequenceServices/SequenceServices"
],
"defaultMaxRunTime": "23:56:00",
"defaultQueue": "normal",
"defaultNodeCount": 1,
"defaultMemoryPerNode": 32,
"defaultProcessorsPerNode": 16,
"executionHost": "rogerab-stampedesville",
"executionSystem": "rogerab-stampedesville",
"executionType": "HPC",
"deploymentPath": "rogerab/applications/mafft/bin",
"templatePath": "mafft_wrapper.sh",
"testPath": "../test/mafftrun.sh",
"checkpointable": false,
"modules": [
"purge",
"load TACC",
"load mafft/7.017"
],
"inputs": [
{
"id": "input_seq",
"value": {
"default": "",
"validator": "",
"visible": true,
"required": true,
"order": 1
},
"details": {
"label": "Input sequences",
"description": "fasta format sequence file"
},
"semantics": {
"ontology": [
"http://sswapmeet.sswap.info/sequence/FASTA"
],
"minCardinality": 1,
"fileTypes": [
"fasta-0"
]
}
}
],
"outputs": [
{
"id": "mafft_out.fa",
"details": {
"label": "Mafft output file",
"description": "The output file."
},
"semantics": {
"ontology": [],
"minCardinality": 1,
"maxCardinality": 1,
"fileTypes": [
"TEXT-0"
]
},
"value": {
"default": "mafft_out.fa",
"required": true,
"type": "string",
"visible": false
}
}
]
}