-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscriptlauncher.yaml
41 lines (39 loc) · 1.21 KB
/
scriptlauncher.yaml
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
plantmonitor:
description: Scripts de Plantmonitor
scripts:
computeIntegral:
title: Compute integral file
description: >
Genera los valores de la integral de un fichero
script: python SOME_SRC/plantmonitor/scripts/integral_batch_file.py {ncolumna} {fitxerMesures} {fitxerSortida} {decimal} {separador}
parameters:
ncolumna:
description: Número de columna a integrar (començant en 0)
default: 1
fitxerMesures:
description: fichero csv, xls o xlsx con los datos para integrar
extension:
- csv
- xlsx
- xls
type: FILE
fitxerSortida:
type: FILEDOWN
extension: csv
filename: outputFileIntegrated_{ncolumna}_col.csv
decimal:
description: Tipus de coma decimal dels numeros
type: enum
options:
Punt: '.'
Coma: ','
Irrellevant: '.'
separador:
description: Tipus de separador de valors del csv d'entrada i/o sortida
type: enum
options:
PuntComa: ';'
Coma: ','
Espai: ' '
Irrellevant: ';'
# vim: et ts=2 sw=2