# HG changeset patch # User petr-novak # Date 1690979319 0 # Node ID b50db133106a729bbfd4dc717b723e7f7f4df59c # Parent 36c418bca8b27ad3037c244c885dcc8c5ad4f5c2 planemo upload commit 20bdf879b52796d3fb251a20807191ff02084d3c-dirty diff -r 36c418bca8b2 -r b50db133106a extract_contigs_from_archive.xml --- a/extract_contigs_from_archive.xml Wed Aug 02 11:50:25 2023 +0000 +++ b/extract_contigs_from_archive.xml Wed Aug 02 12:28:39 2023 +0000 @@ -1,10 +1,17 @@ - + - unzip -p ${RepeatExplorer_archive} contigs.fasta > ${contigs} - && - unzip -p -j ${RepeatExplorer_archive} "*.aln" > ${aln} + ${contigs} + && + unzip ${RepeatExplorer_archive} "*.aln" -d tempdir + && + find tempdir -type f -name "*.aln" -exec cat {} + > ${aln} + && + rm -r tempdir + ]]> + @@ -13,4 +20,4 @@ - +