Mercurial > repos > devteam > freebayes
annotate leftalign.xml @ 30:ef2c525bd8cd draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 24f33bda62a7b6771ad42a39fe8c683e09f6d8b8"
author | iuc |
---|---|
date | Wed, 06 Nov 2019 17:02:57 -0500 |
parents | 156b60c1530f |
children | 57def2d7c093 |
rev | line source |
---|---|
16 | 1 <?xml version="1.0"?> |
30
ef2c525bd8cd
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 24f33bda62a7b6771ad42a39fe8c683e09f6d8b8"
iuc
parents:
29
diff
changeset
|
2 <tool id="bamleftalign" name="BamLeftAlign" version="@DEPENDENCY_VERSION@"> |
23
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
3 <description> indels in BAM datasets</description> |
25
bf27106652f3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
23
diff
changeset
|
4 <macros> |
bf27106652f3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
23
diff
changeset
|
5 <import>macros.xml</import> |
bf27106652f3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
23
diff
changeset
|
6 </macros> |
28
977a5301b66d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 9bbda385129b4bc34f66889d28c2570bf5bb2214
iuc
parents:
25
diff
changeset
|
7 <expand macro="requirements" /> |
977a5301b66d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 9bbda385129b4bc34f66889d28c2570bf5bb2214
iuc
parents:
25
diff
changeset
|
8 <command detect_errors="exit_code"><![CDATA[ |
23
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
9 ##set up input files |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
10 #set $reference_fasta_filename = "localref.fa" |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
11 #if str( $reference_source.reference_source_selector ) == "history": |
25
bf27106652f3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
23
diff
changeset
|
12 ln -s '${reference_source.ref_file}' '${reference_fasta_filename}' && |
bf27106652f3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
23
diff
changeset
|
13 samtools faidx "${reference_fasta_filename}" 2>&1 || echo "Error running samtools faidx for leftalign" >&2 && |
23
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
14 #else: |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
15 #set $reference_fasta_filename = str( $reference_source.ref_file.fields.path ) |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
16 #end if |
16 | 17 |
23
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
18 ##start leftalign commandline |
25
bf27106652f3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
23
diff
changeset
|
19 cat '${input_bam}' | |
bf27106652f3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
23
diff
changeset
|
20 bamleftalign |
bf27106652f3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
23
diff
changeset
|
21 --fasta-reference '${reference_fasta_filename}' |
bf27106652f3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
23
diff
changeset
|
22 -c |
bf27106652f3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
23
diff
changeset
|
23 --max-iterations "${iterations}" |
bf27106652f3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
23
diff
changeset
|
24 > '${output_bam}' |
bf27106652f3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
23
diff
changeset
|
25 ]]></command> |
23
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
26 <inputs> |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
27 <conditional name="reference_source"> |
25
bf27106652f3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
23
diff
changeset
|
28 <param name="reference_source_selector" type="select" label="Choose the source for the reference genome"> |
23
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
29 <option value="cached">Locally cached</option> |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
30 <option value="history">History</option> |
16 | 31 </param> |
23
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
32 <when value="cached"> |
25
bf27106652f3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
23
diff
changeset
|
33 <param name="input_bam" type="data" format="bam" label="Select alignment file in BAM format"> |
23
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
34 <validator type="unspecified_build" /> |
25
bf27106652f3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
23
diff
changeset
|
35 <validator type="dataset_metadata_in_data_table" table_name="fasta_indexes" metadata_name="dbkey" |
bf27106652f3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
23
diff
changeset
|
36 metadata_column="1" message="Sequences are not currently available for the specified build." /> |
23
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
37 </param> |
25
bf27106652f3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
23
diff
changeset
|
38 <param name="ref_file" type="select" label="Using reference genome" argument="--fasta-reference"> |
23
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
39 <options from_data_table="fasta_indexes"></options> |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
40 <validator type="no_options" message="A built-in reference genome is not available for the build associated with the selected input file"/> |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
41 </param> |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
42 </when> |
30
ef2c525bd8cd
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 24f33bda62a7b6771ad42a39fe8c683e09f6d8b8"
iuc
parents:
29
diff
changeset
|
43 <when value="history"> |
23
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
44 <param name="input_bam" type="data" format="bam" label="BAM dataset to re-align" /> |
25
bf27106652f3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
23
diff
changeset
|
45 <param name="ref_file" type="data" format="fasta" label="Using reference file" argument="--fasta-reference" /> |
23
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
46 </when> |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
47 </conditional> |
25
bf27106652f3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
23
diff
changeset
|
48 <param name="iterations" type="integer" value="5" label="Maximum number of iterations" |
bf27106652f3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
23
diff
changeset
|
49 help="Iterate the left-realignment no more than this many times" argument="--max-iterations" /> |
23
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
50 </inputs> |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
51 <outputs> |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
52 <data format="bam" name="output_bam" label="${tool.name} on ${on_string} (alignments)" /> |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
53 </outputs> |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
54 <tests> |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
55 <test> |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
56 <param name="reference_source_selector" value="history" /> |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
57 <param name="ref_file" ftype="fasta" value="leftalign.fa"/> |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
58 <param name="input_bam" ftype="bam" value="left-align-input.bam"/> |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
59 <param name="iterations" value="5"/> |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
60 <output name="output_bam" file="left-align-output.bam" /> |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
61 </test> |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
62 </tests> |
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
63 <help> |
16 | 64 |
65 When calling indels, it is important to homogenize the positional distribution of insertions and deletions in the input by using left realignment. Left realignment will place all indels in homopolymer and microsatellite repeats at the same position, provided that doing so does not introduce mismatches between the read and reference other than the indel. This method is computationally inexpensive and handles the most common classes of alignment inconsistency. | |
66 | |
25
bf27106652f3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
23
diff
changeset
|
67 This is leftalign utility from FreeBayes package. |
23
52aed7d9ed2b
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/freebayes commit cf4a70e780f104bc724323912b3b87fb37f887dd
devteam
parents:
21
diff
changeset
|
68 </help> |
25
bf27106652f3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
23
diff
changeset
|
69 <expand macro="citations" /> |
16 | 70 </tool> |