# HG changeset patch # User dcouvin # Date 1630698721 0 # Node ID f9422a33e9c19cbfdc0940daee32f5595b693215 # Parent 1a7d6584e1ecc2a3a4253ebe361f1c555c0a911d Uploaded diff -r 1a7d6584e1ec -r f9422a33e9c1 MIRUReader.xml --- a/MIRUReader.xml Tue Aug 17 23:27:22 2021 +0000 +++ b/MIRUReader.xml Fri Sep 03 19:52:01 2021 +0000 @@ -1,5 +1,5 @@ - MIRUReader allows to perform in-silico MIRU-VNTR typing using long reads or assembled genome + MIRUReader allows to perform in-silico MIRU-VNTR typing using assembled genomes (FASTA format) python3-openid @@ -17,16 +17,22 @@ ## Add single quotes around each input file identifier #set $_input_file = "'{}'".format($input.element_identifier) - #set $_input_file = $_input_file + '.fasta' - ln -s '${input}' ${_input_file} && - - python3 $__tool_directory__/MIRUReader/MIRUReader.py -r $_input_file -p $_input_file > $output + + + ln -s '${input}' "${_input_file}" && + cp "$_input_file" input.fasta && + python3 $__tool_directory__/MIRUReader/MIRUReader.py -r input.fasta -p $_input_file > $output ]]> + + @@ -34,7 +40,7 @@ - +