-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdxapp.json
131 lines (131 loc) · 2.74 KB
/
dxapp.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "udn_star2.6.0c",
"title": "udn_star2.6.0c",
"summary": "udn_star2.6.0c",
"dxapi": "1.0.0",
"version": "0.0.1",
"inputSpec": [
{
"name": "read1_fastq",
"label": "read1_fastq",
"class": "file",
"optional": false,
"patterns": [
"*.gz"
],
"help": "gzip file of read1 fastq"
},
{
"name": "read2_fastq",
"label": "read2_fastq",
"class": "file",
"optional": false,
"patterns": [
"*.gz"
],
"help": "gzip file of read2 fastq"
},
{
"name": "star_index_75bp",
"label": "star_index_75bp",
"class": "file",
"optional": false,
"patterns": [
"*.tar"
],
"help": "STAR index file for 75bp reads (tar format, no need to compress)"
},
{
"name": "star_index_69bp",
"label": "star_index_69bp",
"class": "file",
"optional": true,
"patterns": [
"*.tar"
],
"help": "STAR index for 69bp reads"
},
{
"name": "star_index_120bp",
"label": "star_index_120bp",
"class": "file",
"optional": true,
"patterns": [
"*.tar"
],
"help": "STAR index for 120bp reads"
},
{
"name": "sample",
"label": "sample",
"class": "string",
"optional": false,
"help": "Sample ID for SAM header"
},
{
"name": "library",
"label": "library",
"class": "string",
"optional": true,
"help": "Optional: Library for SAM header (otherwise will be automatically set to sample name)"
}
],
"outputSpec": [
{
"name": "aligned_bam",
"label": "aligned_bam",
"class": "file",
"patterns": [
"*.Aligned.out.bam"
],
"help": "STAR genome alignment (Unsorted!)"
},
{
"name": "transcriptome_bam",
"label": "transcriptome_bam",
"class": "file",
"patterns": [
"*.Aligned.toTranscriptome.out.bam"
],
"help": "STAR transcriptome alignment"
},
{
"name": "sjout_tab",
"label": "sjout_tab",
"class": "file",
"patterns": [
"*.SJ.out.tab.gz"
],
"help": "STAR splice junction table"
},
{
"name": "final_log",
"label": "final_log",
"class": "file",
"patterns": [
"*.Log.final.out"
],
"help": "STAR final log file"
}
],
"runSpec": {
"timeoutPolicy": {
"*": {
"hours": 10
}
},
"interpreter": "bash",
"release": "14.04",
"distribution": "Ubuntu",
"file": "src/udn_star2.6.0c.sh"
},
"regionalOptions": {
"aws:us-east-1": {
"systemRequirements": {
"*": {
"instanceType": "mem2_ssd1_x8"
}
}
}
}
}