| Next changeset 1:cfd6e76541ff (2025-02-10) |
|
Commit message:
planemo upload for repository https://github.com/biod/sambamba commit 13ed0b409cf2c5de007e0a6fa93391cbbb21795d |
|
added:
Sambamba_flagstat.xml macros.xml test-data/1.bam test-data/1.coord.sorted.bam test-data/1.qname.sorted.bam test-data/2.bam test-data/2.markdup.bam test-data/2.markdup_removed.bam test-data/coordinate_sorted.bam test-data/coordinate_sorted_merged.bam test-data/qname_sorted.bam test-data/qname_sorted_merged.bam |
| b |
| diff -r 000000000000 -r ce3927af5a8f Sambamba_flagstat.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Sambamba_flagstat.xml Wed Jun 12 15:00:52 2024 +0000 |
| [ |
| @@ -0,0 +1,45 @@ +<tool id="sambamba_flagstat" name="Sambamba flagstat" version="@TOOL_VERSION@+galaxy@SUFFIX_VERSION@" profile="23.2" license="MIT"> + <description>Retrieving flag statistics from BAM file</description> + <macros> + <import>macros.xml</import> + </macros> + <expand macro="requirements"/> + <command detect_errors="exit_code"><![CDATA[ + sambamba flagstat + '${input_bam}' + --nthreads \${GALAXY_SLOTS:-4} + > $output + ]]></command> + <inputs> + <param name="input_bam" type="data" format="bam" label="Input BAM file"/> + </inputs> + <outputs> + <data name="output" format="txt" metadata_source="input_bam"/> + </outputs> + <tests> + <test expect_num_outputs="1"> + <param name="input_bam" value="1.bam" ftype="bam"/> + <output name="output" md5="7df76f07273f8e35c542831a3f8c4dde"/> + </test> + </tests> + <help> +<![CDATA[ + +Sambamba_flagstat outputs statistics drawn from read flags. + +The first line contains numbers of QC-passed and QC-failed reads. Then come pairs of numbers, the former for QC-passed reads, the latter for QC-failed ones: + - duplicates + - mapped reads (plus percentage relative to the numbers from the first line) + - reads with 'is_paired' flag set + - paired reads which are first mates + - paired reads which are second mates + - paired reads with 'proper_pair' flag set (plus percentage relative to the numbers of QC-passed/failed reads with 'is_paired' flag set) + - paired reads where both mates are mapped + - paired reads where read itself is unmapped but mate is mapped + - paired reads where mate is mapped to a different chromosome + - the same as previous but mapping quality is not less than 5 + +]]> + </help> + <expand macro="citations" /> +</tool> |
| b |
| diff -r 000000000000 -r ce3927af5a8f macros.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/macros.xml Wed Jun 12 15:00:52 2024 +0000 |
| b |
| @@ -0,0 +1,17 @@ +<macros> + <token name="@TOOL_VERSION@">1.0.1</token> + <token name="@SUFFIX_VERSION@">1</token> + <xml name="requirements"> + <requirements> + <requirement type="package" version="1.0.1">sambamba</requirement> + <yield/> + </requirements> + </xml> + + <xml name="citations"> + <citations> + <citation type="doi">10.1093/bioinformatics/btv098</citation> + <yield /> + </citations> + </xml> +</macros> |
| b |
| diff -r 000000000000 -r ce3927af5a8f test-data/1.bam |
| b |
| Binary file test-data/1.bam has changed |
| b |
| diff -r 000000000000 -r ce3927af5a8f test-data/1.coord.sorted.bam |
| b |
| Binary file test-data/1.coord.sorted.bam has changed |
| b |
| diff -r 000000000000 -r ce3927af5a8f test-data/1.qname.sorted.bam |
| b |
| Binary file test-data/1.qname.sorted.bam has changed |
| b |
| diff -r 000000000000 -r ce3927af5a8f test-data/2.bam |
| b |
| Binary file test-data/2.bam has changed |
| b |
| diff -r 000000000000 -r ce3927af5a8f test-data/2.markdup.bam |
| b |
| Binary file test-data/2.markdup.bam has changed |
| b |
| diff -r 000000000000 -r ce3927af5a8f test-data/2.markdup_removed.bam |
| b |
| Binary file test-data/2.markdup_removed.bam has changed |
| b |
| diff -r 000000000000 -r ce3927af5a8f test-data/coordinate_sorted.bam |
| b |
| Binary file test-data/coordinate_sorted.bam has changed |
| b |
| diff -r 000000000000 -r ce3927af5a8f test-data/coordinate_sorted_merged.bam |
| b |
| Binary file test-data/coordinate_sorted_merged.bam has changed |
| b |
| diff -r 000000000000 -r ce3927af5a8f test-data/qname_sorted.bam |
| b |
| Binary file test-data/qname_sorted.bam has changed |
| b |
| diff -r 000000000000 -r ce3927af5a8f test-data/qname_sorted_merged.bam |
| b |
| Binary file test-data/qname_sorted_merged.bam has changed |