From 68029ab6a9c28c7a01ede88c2f8c9e1e028ea129 Mon Sep 17 00:00:00 2001 From: Victoria Carr Date: Wed, 24 Aug 2022 17:44:41 +0100 Subject: [PATCH] Remove clean up --- modules/pbp_typer.nf | 8 -------- 1 file changed, 8 deletions(-) diff --git a/modules/pbp_typer.nf b/modules/pbp_typer.nf index 8839f4c..3ee46bc 100644 --- a/modules/pbp_typer.nf +++ b/modules/pbp_typer.nf @@ -18,15 +18,7 @@ process get_pbp_genes { # Get BED file of PBP fragments get_pbp_genes_from_contigs.py --blast_out_file ${pair_id}_blast_blactam.out --query_fasta ${blactam_ref} --frac_align_len_threshold ${frac_align_len_threshold} --frac_identity_threshold ${frac_identity_len_threshold} --output_prefix ${pair_id}_ - # Clean directory - mkdir output - mv ${pair_id}_*bed output - mv ${contigs} output - find . -maxdepth 1 -type f -delete unlink ${blactam_ref} - mv output/${pair_id}_*bed . - mv output/${contigs} . - rm -d output """ }