Mercurial > repos > sjung > bdds
comparison wellington_footprints.xml @ 7:9920c489a5c3 draft
Uploaded
author | sjung |
---|---|
date | Wed, 24 May 2017 00:36:46 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
6:8dca27fe444a | 7:9920c489a5c3 |
---|---|
1 <tool id="wellington_footprints" name="Wellington Footprints" version="0.2.5"> | |
2 <description>accurate identification of digital genomic footprints from DNase-seq data</description> | |
3 <requirements> | |
4 <requirement type="package">pymodules</requirement> | |
5 </requirements> | |
6 <command> | |
7 #set $final_output = $output.extra_files_path + "/input.bam.input.bed.WellingtonFootprints.FDR.0.01.bed" | |
8 mkdir $output.extra_files_path; | |
9 ln -s $bam_file input.bam; | |
10 ln -s $bam_file.metadata.bam_index input.bam.bai; | |
11 ln -s $bed_file input.bed; | |
12 wellington_footprints.py input.bed input.bam $output.extra_files_path -fdrlimit $fdrlimit; | |
13 cp $final_output $output; | |
14 rm -rf $output.extra_files_path | |
15 </command> | |
16 <stdio> | |
17 <exit_code range="1:" level="fatal" description="Error produced" /> | |
18 </stdio> | |
19 <inputs> | |
20 <param help="" format="bam" label="Input BAM" name="bam_file" type="data"/> | |
21 <param help="" format="bed" label="Input BED" name="bed_file" type="data"/> | |
22 <param help="" label="FDR Limit" value="0" name="fdrlimit" type="integer"/> | |
23 </inputs> | |
24 | |
25 <outputs> | |
26 <data format="bed" label="${tool.name} on ${on_string}" name="output" /> | |
27 </outputs> | |
28 <tests> | |
29 <test> | |
30 </test> | |
31 </tests> | |
32 <help> | |
33 </help> | |
34 </tool> |