Mercurial > repos > rnateam > cmsearch_deoverlap
changeset 2:874ad23526a0 draft default tip
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cmsearch_deoverlap commit fa7deee70d449c6ec1ae9eb42d01d283e9bee586
author | rnateam |
---|---|
date | Mon, 18 Mar 2024 16:32:39 +0000 |
parents | 3fd3be28a04c |
children | |
files | cmsearch-deoverlap.xml |
diffstat | 1 files changed, 7 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/cmsearch-deoverlap.xml Mon Mar 18 09:34:56 2024 +0000 +++ b/cmsearch-deoverlap.xml Mon Mar 18 16:32:39 2024 +0000 @@ -1,7 +1,11 @@ -<tool id="cmsearch_deoverlap" name="CMsearch deoverlap" version="0.08+galaxy1" profile="21.05"> +<tool id="cmsearch_deoverlap" name="CMsearch deoverlap" version="0.08+galaxy2" profile="21.05"> <description>removes lower scoring overlaps from cmsearch results</description> + <xrefs> + <xref type="bio.tools">cmsearch-deoverlap</xref> + </xrefs> <requirements> <requirement type="package" version="5.26">perl</requirement> + <requirement type="package" version="4.8">sed</requirement> </requirements> <command><![CDATA[ ln -s '$clan_information' clan_info && @@ -13,11 +17,11 @@ #end if #if $dirty: $dirty && - sed 's/[:blank:]+/,/g' cmsearch_matches.sort > cmsearch_matches.sort.tabular && + sed "s/[[:blank:]]\+/\t/g" cmsearch_matches.sort > cmsearch_matches.sort.tabular && mv cmsearch_matches.sort.tabular '$matches_sort' #end if && - sed 's/[:blank:]+/,/g' cmsearch_matches.deoverlapped > cmsearch_matches.deoverlapped.tabular && + sed "s/[[:blank:]]\+/\t/g" cmsearch_matches.deoverlapped > cmsearch_matches.deoverlapped.tabular && mv cmsearch_matches.deoverlapped.tabular '$deoverlapped_matches' ]]></command>