Mercurial > repos > iuc > bcftools_plugin_fill_an_ac
comparison macros.xml @ 6:0a62420cb9cd draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bcftools commit 880627162bdeb854582e9f58ddab451de35feba3
author | iuc |
---|---|
date | Tue, 12 Dec 2017 14:06:03 -0500 |
parents | 8e1fbf8baef9 |
children | 026a989b7cee |
comparison
equal
deleted
inserted
replaced
5:8e1fbf8baef9 | 6:0a62420cb9cd |
---|---|
47 #set $input_vcf = 'input.vcf.gz' | 47 #set $input_vcf = 'input.vcf.gz' |
48 #if $input_file.is_of_type('vcf') | 48 #if $input_file.is_of_type('vcf') |
49 bgzip -c '$input_file' > $input_vcf && | 49 bgzip -c '$input_file' > $input_vcf && |
50 bcftools index $input_vcf && | 50 bcftools index $input_vcf && |
51 #elif $input_file.is_of_type('vcf_bgzip') | 51 #elif $input_file.is_of_type('vcf_bgzip') |
52 ln -s '$input_file' $input_vcf | 52 ln -s '$input_file' $input_vcf && |
53 #elif $input_file.is_of_type('bcf') | 53 #elif $input_file.is_of_type('bcf') |
54 #set $input_vcf = 'input.bcf' | 54 #set $input_vcf = 'input.bcf' |
55 ln -s '$input_file' $input_vcf && | 55 ln -s '$input_file' $input_vcf && |
56 #if $input_file.metadata.bcf_index: | 56 #if $input_file.metadata.bcf_index: |
57 ln -s '${input_file.metadata.bcf_index}' ${input_vcf}.csi && | 57 ln -s '${input_file.metadata.bcf_index}' ${input_vcf}.csi && |
58 #else | 58 #else |
59 bcftools index $input_vcf && | 59 bcftools index $input_vcf && |
60 #end if | 60 #end if |
61 #elif $input_file.is_of_type('bcf_bgzip') | 61 #elif $input_file.is_of_type('bcf_bgzip') |
62 ln -s '$input_file' $input_vcf | 62 ln -s '$input_file' $input_vcf && |
63 #end if | 63 #end if |
64 ]]> | 64 ]]> |
65 </token> | 65 </token> |
66 <token name="@INPUT_FILE@"> | 66 <token name="@INPUT_FILE@"> |
67 $input_vcf | 67 $input_vcf |