Mercurial > repos > iuc > bedtools
changeset 59:539958feb49c draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 500a03281ea704abc7a16d9af63d67dbdcc5cd0b"
| author | iuc |
|---|---|
| date | Thu, 04 Nov 2021 11:35:06 +0000 |
| parents | ed6f66aed1f9 |
| children | 36d57dc82aa6 |
| files | annotateBed.xml bamToBed.xml bed12ToBed6.xml bedToBam.xml bedToIgv.xml bedpeToBam.xml closestBed.xml clusterBed.xml complementBed.xml coverageBed.xml expandBed.xml fisherBed.xml flankBed.xml genomeCoverageBed.xml getfastaBed.xml groupbyBed.xml intersectBed.xml jaccardBed.xml linksBed.xml makeWindowsBed.xml mapBed.xml maskFastaBed.xml mergeBed.xml multiCov.xml multiIntersectBed.xml nucBed.xml overlapBed.xml randomBed.xml reldist.xml shuffleBed.xml slopBed.xml sortBed.xml spacingBed.xml subtractBed.xml tagBed.xml test-data/annotateBed4.bed test-data/bamToBed_result3.bed unionBedGraphs.xml windowBed.xml |
| diffstat | 39 files changed, 62 insertions(+), 54 deletions(-) [+] |
line wrap: on
line diff
--- a/annotateBed.xml Thu Sep 09 13:02:16 2021 +0000 +++ b/annotateBed.xml Thu Nov 04 11:35:06 2021 +0000 @@ -1,9 +1,9 @@ <tool id="bedtools_annotatebed" name="bedtools AnnotateBed" version="@TOOL_VERSION@" profile="@PROFILE@"> <description>annotate coverage of features from multiple files</description> - <expand macro="bio_tools" /> <macros> <import>macros.xml</import> </macros> + <expand macro="bio_tools" /> <expand macro="requirements" /> <expand macro="stdio" /> <command><![CDATA[ @@ -66,7 +66,7 @@ <test> <param name="inputA" value="annotateBed1.bed" ftype="bed" /> <param name="names_select" value="no" /> - <param name="beds" value="annotateBed2.bed,annotateBed3.bed,annotateBed4.bed" /> + <param name="beds" value="annotateBed2.bed,annotateBed3.bed,annotateBed4.bed"/> <output name="output" file="annotateBed_result.bed" ftype="bed" /> </test> </tests>
--- a/bamToBed.xml Thu Sep 09 13:02:16 2021 +0000 +++ b/bamToBed.xml Thu Nov 04 11:35:06 2021 +0000 @@ -1,16 +1,16 @@ -<tool id="bedtools_bamtobed" name="bedtools BAM to BED" version="@TOOL_VERSION@+galaxy1" profile="@PROFILE@"> +<tool id="bedtools_bamtobed" name="bedtools BAM to BED" version="@TOOL_VERSION@+galaxy2" profile="@PROFILE@"> <description>converter</description> - <expand macro="bio_tools" /> <macros> <import>macros.xml</import> </macros> + <expand macro="bio_tools" /> <expand macro="requirements"> <requirement type="package" version="@SAMTOOLS_VERSION@">samtools</requirement> </expand> <expand macro="stdio" /> <command><![CDATA[ #if $input.extension in ['bam', 'unsorted.bam', 'qname_input_sorted.bam'] and $option == "-bedpe": - samtools sort -n -@ "\${GALAXY_SLOTS:-4}" -T "\${TMPDIR:-.}" '${input}' ./input && + samtools sort -n -@ "\${GALAXY_SLOTS:-4}" -T "\${TMPDIR:-.}" '${input}' > ./input.bam && #else ln -s '${input}' ./input.bam && #end if @@ -54,6 +54,12 @@ <param name="tag" value="NM" /> <output name="output" file="bamToBed_result2.bed" ftype="bed" /> </test> + <test> + <param name="input" value="bedpeToBam_result1.bam" ftype="bam" /> + <param name="option" value="-bedpe" /> + <param name="tag" value="" /> + <output name="output" file="bamToBed_result3.bed" ftype="bed" /> + </test> </tests> <help><