Mercurial > repos > azomics > flclr_sample_name
annotate flowclr_sample_name.xml @ 0:fddd754b8bcb draft default tip
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
author | azomics |
---|---|
date | Thu, 23 Jul 2020 07:50:53 -0400 |
parents | |
children |
rev | line source |
---|---|
0
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
1 <tool id="flclr_sample_name" name="Add sample information and merge" version="1.0+galaxy1" profile="18.01"> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
2 <description>a flow clustered or tabular text file collection.</description> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
3 <requirements> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
4 <requirement type="package" version="4.4">sed</requirement> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
5 </requirements> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
6 <stdio> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
7 <exit_code range="1:" level="fatal" description="See stderr for more details." /> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
8 </stdio> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
9 <command><![CDATA[ |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
10 #set $first = $inputs[0] |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
11 head -n 1 '$first' | sed "s/\$/\t$header/" > '$output'; |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
12 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
13 #if $sample_names |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
14 #set $identifiers = [ x.strip() for x in $sample_names.split(",") ] |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
15 #else |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
16 #set $identifiers = [ i.element_identifier for i in $inputs ] |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
17 #end if |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
18 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
19 #if len($identifiers) != len($inputs) |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
20 # echo "Error, number of file identifiers/samples doesn't match the number of files."; |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
21 # exit(1) |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
22 #end if |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
23 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
24 #for $i, $input in enumerate($inputs) |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
25 tail -n +2 '$input' | sed "s/\$/\t$identifiers[$i]/" >> '$output'; |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
26 #end for# |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
27 ]]> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
28 </command> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
29 <inputs> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
30 <param name="inputs" format="flowclr,tabular" type="data" multiple="true" min="2" label="Clustered flowtext or tabular file collection"/> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
31 <param name="sample_names" type="text" label="Sample names" optional="true" help="Supply the sample names of each flowtext file in order of the flowtext files in the data collection, comma separated, to override the collection identifier. Please see below for more information on formatting."/> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
32 <param name="header" type="text" value="Sample" optional="true" label="Column name for identifier" help="Sample by default, names the new column added with the identifier for each file."/> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
33 </inputs> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
34 <outputs> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
35 <data format="flowtext" name="output" label="Merged output"/> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
36 </outputs> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
37 <tests> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
38 <test> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
39 <param name="inputs" value="input1.flowclr,input2.flowclr,input3.flowclr"/> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
40 <output name="output" file="output1.flowtext"/> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
41 </test> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
42 <test> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
43 <param name="inputs" value="input1.flowclr,input2.flowclr,input3.flowclr"/> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
44 <param name="sample_names" value="S1,S2,S3"/> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
45 <output name="output" file="output2.flowtext"/> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
46 </test> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
47 </tests> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
48 <help><![CDATA[ |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
49 Flowclr Sample Name |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
50 ------------------- |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
51 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
52 This tool adds a column to a tabular file (including a flowtext or flowclustered file) with the sample information. |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
53 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
54 **Input files** |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
55 This tool requires a valid collection of tabular files such as flowtext files or clustered flowtext files. Files are processed serially. |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
56 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
57 .. class:: warningmark |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
58 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
59 By default the full file name will be used as sample name. Alternatively file names can be manually changed prior to running this tool. |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
60 If inputing sample names manually, then you must supply a comma separated list of sample names in order of the files in the dataset collection. |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
61 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
62 **Output file** |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
63 The output is a single merged tabular file (e.g. flowtext file) containing rows for each input tabular file; with a column containing the sample information |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
64 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
65 ----- |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
66 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
67 **Example** |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
68 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
69 *File 1*:: |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
70 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
71 FSC SSC Marker1 Marker2 Marker3 Marker4 Population |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
72 449 157 551 129 169 292 1 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
73 894 1023 199 277 320 227 3 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
74 262 73 437 69 0 146 6 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
75 340 115 509 268 0 74 1 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
76 ... ... ... ... ... ... ... |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
77 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
78 *File 2*:: |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
79 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
80 FSC SSC Marker1 Marker2 Marker3 Marker4 Population |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
81 523 354 554 176 213 185 2 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
82 678 8096 98 74 417 267 6 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
83 226 89 467 123 0 324 2 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
84 660 175 589 178 1 89 7 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
85 ... ... ... ... ... ... ... |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
86 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
87 *Output*:: |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
88 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
89 FSC SSC Marker1 Marker2 Marker3 Marker4 Population Sample |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
90 449 157 551 129 169 292 1 sample1 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
91 894 1023 199 277 320 227 3 sample1 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
92 262 73 437 69 0 146 6 sample1 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
93 340 115 509 268 0 74 1 sample1 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
94 ... ... ... ... ... ... ... ... |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
95 523 354 554 176 213 185 2 sample2 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
96 678 8096 98 74 417 267 6 sample2 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
97 226 89 467 123 0 324 2 sample2 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
98 660 175 589 178 1 89 7 sample2 |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
99 ... ... ... ... ... ... ... ... |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
100 ]]> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
101 </help> |
fddd754b8bcb
"planemo upload for repository https://github.com/AstraZeneca-Omics/immport-galaxy-tools/tree/develop/flowtools/flowclr_sample_name commit 0d94c83066ae8396ffa2821a6cb751ed471e7bf5"
azomics
parents:
diff
changeset
|
102 </tool> |