annotate galaxy-tools/biobank/utils/prepare_seq_dsample_inputs.xml @ 4:f833f23d38a3 draft

Deleted selected files
author ric
date Thu, 22 Sep 2016 09:28:03 -0400
parents 43be74e62bfe
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
43be74e62bfe Uploaded
ric
parents:
diff changeset
1 <tool id="vl_prepare_seq_dsample_inputs"
43be74e62bfe Uploaded
ric
parents:
diff changeset
2 name="VLUTIL.prepare_seq_dsample_inputs">
43be74e62bfe Uploaded
ric
parents:
diff changeset
3 <description>
43be74e62bfe Uploaded
ric
parents:
diff changeset
4 Extract OMERO.biobank objects from a sequencing samplesheet
43be74e62bfe Uploaded
ric
parents:
diff changeset
5 </description>
43be74e62bfe Uploaded
ric
parents:
diff changeset
6
43be74e62bfe Uploaded
ric
parents:
diff changeset
7 <command interpreter="python">
43be74e62bfe Uploaded
ric
parents:
diff changeset
8 prepare_seq_dsample_inputs.py
43be74e62bfe Uploaded
ric
parents:
diff changeset
9 --in-file=${infile}
43be74e62bfe Uploaded
ric
parents:
diff changeset
10 --loglevel=$__app__.config.vl_loglevel
43be74e62bfe Uploaded
ric
parents:
diff changeset
11 --logfile=${log_file}
43be74e62bfe Uploaded
ric
parents:
diff changeset
12 --tubes-out-file=${tubes_ofile}
43be74e62bfe Uploaded
ric
parents:
diff changeset
13 --flowcells-out-file=${flowcells_ofile}
43be74e62bfe Uploaded
ric
parents:
diff changeset
14 --lanes-out-file=${lanes_ofile}
43be74e62bfe Uploaded
ric
parents:
diff changeset
15 --laneslots-out-file=${laneslots_ofile}
43be74e62bfe Uploaded
ric
parents:
diff changeset
16 --config-parameters=${config_params}
43be74e62bfe Uploaded
ric
parents:
diff changeset
17 --study-output-file=${study_ofile}
43be74e62bfe Uploaded
ric
parents:
diff changeset
18 --tubes-subsamples-output-file=${subsamples_ofile}
43be74e62bfe Uploaded
ric
parents:
diff changeset
19 </command>
43be74e62bfe Uploaded
ric
parents:
diff changeset
20
43be74e62bfe Uploaded
ric
parents:
diff changeset
21 <inputs>
43be74e62bfe Uploaded
ric
parents:
diff changeset
22 <param format="tabular" name="infile" type="data"
43be74e62bfe Uploaded
ric
parents:
diff changeset
23 label="Samplesheet (in TAB-separated format)"/>
43be74e62bfe Uploaded
ric
parents:
diff changeset
24 <param format="txt" name="config_params" type="data"
43be74e62bfe Uploaded
ric
parents:
diff changeset
25 label="Configuration parameters" optional="false"/>
43be74e62bfe Uploaded
ric
parents:
diff changeset
26 </inputs>
43be74e62bfe Uploaded
ric
parents:
diff changeset
27
43be74e62bfe Uploaded
ric
parents:
diff changeset
28 <outputs>
43be74e62bfe Uploaded
ric
parents:
diff changeset
29 <data format="tabular" name="tubes_ofile"
43be74e62bfe Uploaded
ric
parents:
diff changeset
30 label="${tool.name}_tubes.tsv"/>
43be74e62bfe Uploaded
ric
parents:
diff changeset
31 <data format="tabular" name="subsamples_ofile"
43be74e62bfe Uploaded
ric
parents:
diff changeset
32 label="${tool.name}_subsamples.tsv"/>
43be74e62bfe Uploaded
ric
parents:
diff changeset
33 <data format="tabular" name="flowcells_ofile"
43be74e62bfe Uploaded
ric
parents:
diff changeset
34 label="${tool.name}_flowcells.tsv"/>
43be74e62bfe Uploaded
ric
parents:
diff changeset
35 <data format="tabular" name="lanes_ofile"
43be74e62bfe Uploaded
ric
parents:
diff changeset
36 label="${tool.name}_lanes.tsv"/>
43be74e62bfe Uploaded
ric
parents:
diff changeset
37 <data format="tabular" name="laneslots_ofile"
43be74e62bfe Uploaded
ric
parents:
diff changeset
38 label="${tool.name}_laneslots.tsv"/>
43be74e62bfe Uploaded
ric
parents:
diff changeset
39 <data format="tabular" name="study_ofile"
43be74e62bfe Uploaded
ric
parents:
diff changeset
40 label="${tool.name}_study.tsv"/>
43be74e62bfe Uploaded
ric
parents:
diff changeset
41 <data format="txt" name="log_file"
43be74e62bfe Uploaded
ric
parents:
diff changeset
42 label="${tool.name}.log"/>
43be74e62bfe Uploaded
ric
parents:
diff changeset
43 </outputs>
43be74e62bfe Uploaded
ric
parents:
diff changeset
44
43be74e62bfe Uploaded
ric
parents:
diff changeset
45 <stdio>
43be74e62bfe Uploaded
ric
parents:
diff changeset
46 <exit_code range="1:" level="fatal" />
43be74e62bfe Uploaded
ric
parents:
diff changeset
47 </stdio>
43be74e62bfe Uploaded
ric
parents:
diff changeset
48
43be74e62bfe Uploaded
ric
parents:
diff changeset
49 <help>
43be74e62bfe Uploaded
ric
parents:
diff changeset
50 This tool produces files that can be used as input to import
43be74e62bfe Uploaded
ric
parents:
diff changeset
51 * samples
43be74e62bfe Uploaded
ric
parents:
diff changeset
52 * flowcells
43be74e62bfe Uploaded
ric
parents:
diff changeset
53 * lanes
43be74e62bfe Uploaded
ric
parents:
diff changeset
54 * laneslots
43be74e62bfe Uploaded
ric
parents:
diff changeset
55
43be74e62bfe Uploaded
ric
parents:
diff changeset
56 within OMERO.biobank using import applications.
43be74e62bfe Uploaded
ric
parents:
diff changeset
57
43be74e62bfe Uploaded
ric
parents:
diff changeset
58 If the optional 'study-output-file' parameter is given as input, the
43be74e62bfe Uploaded
ric
parents:
diff changeset
59 script will produce the input file for a new study definition.
43be74e62bfe Uploaded
ric
parents:
diff changeset
60
43be74e62bfe Uploaded
ric
parents:
diff changeset
61 If the optional 'tubes-subsamples-output-file' is given, the script
43be74e62bfe Uploaded
ric
parents:
diff changeset
62 will generate another file with tubes definitions where each tube is
43be74e62bfe Uploaded
ric
parents:
diff changeset
63 produced appliying a specific laboratory protocol to an existing
43be74e62bfe Uploaded
ric
parents:
diff changeset
64 tube. Existing tubes are the ones in tubes-out-file, new tubes' labels
43be74e62bfe Uploaded
ric
parents:
diff changeset
65 are created using the pattern **tube_label::protocol**
43be74e62bfe Uploaded
ric
parents:
diff changeset
66 The config_parameters field must point to a YAML configuration file
43be74e62bfe Uploaded
ric
parents:
diff changeset
67 with the following structure:
43be74e62bfe Uploaded
ric
parents:
diff changeset
68
43be74e62bfe Uploaded
ric
parents:
diff changeset
69 config_parameters:
43be74e62bfe Uploaded
ric
parents:
diff changeset
70 study_label: study_label
43be74e62bfe Uploaded
ric
parents:
diff changeset
71
43be74e62bfe Uploaded
ric
parents:
diff changeset
72 namespace: namespace
43be74e62bfe Uploaded
ric
parents:
diff changeset
73
43be74e62bfe Uploaded
ric
parents:
diff changeset
74 where study_label is mandatory
43be74e62bfe Uploaded
ric
parents:
diff changeset
75 </help>
43be74e62bfe Uploaded
ric
parents:
diff changeset
76 </tool>