# HG changeset patch # User estrain # Date 1653910733 0 # Node ID 8d746b3723c609007e29fa95d248655efc35863a # Parent e2007d746e78b3b8533238fb110979bd5cb81649 Uploaded diff -r e2007d746e78 -r 8d746b3723c6 fastani_db/fastani.xml --- a/fastani_db/fastani.xml Mon May 30 02:25:57 2022 +0000 +++ b/fastani_db/fastani.xml Mon May 30 11:38:53 2022 +0000 @@ -20,19 +20,36 @@ ### COMMAND ### - fastANI --ql query.lst --rl ref.lst -o output -t "\${GALAXY_SLOTS:-1}" + fastANI --ql query.lst --rl ref.lst -o output -t "\${GALAXY_SLOTS:-1}"; + + ### FILTER OUTPUT ### + #if $filter_select=="top" + cp output output.tmp && head -n 1 output.tmp > output; + #else if $filter_select=="per" + awk '{ if($3>$percut) {print $1,"\t",$2,"\t",$3,"\t",$4,"\t",$5;}}' output > output.tmp; mv output.tmp output; + #end if ]]> - - + + + + + + + + + + + +