#@UGENE_WORKFLOW #Converts multiple alignment file(s) of any format to ClustalW document(s). If source file is a sequence format (e.g. FASTA), all contained sequences are added to the result alignment. Yet no real alignment is performed, this particular workflow illustrates pure data format conversion. # #To get this workflow working, you only need to select "Alignment Reader" task, so its' parameters appear in Property Inspector panel, and specify source file(s) at "URL" field. Launch the workflow with pressing Ctrl+R shortcut. #After running the workflow, target clustal file will appear in the same folder as the source file, with the same name but different extension (".aln"). #If several input files were selected, several clustal files will be generated accordingly. #You can override the target file location by editing "URL" parameter of "Write ClustalW" task. workflow "Convert alignments to ClustalW"{ read-msa { type:read-msa; name:"Read alignment"; } write-clustalw { type:write-msa; document-format:clustal; name:"Write ClustalW"; write-mode:2; url-out:output.aln; } read-msa.msa->write-clustalw.in-msa.msa .meta { visual { read-msa { pos:"-795 -690"; style:ext; bg-color-ext:"0 128 128 64"; out-msa.angle:360; } write-clustalw { pos:"-555 -690"; style:ext; bg-color-ext:"0 128 128 64"; in-msa.angle:180; } read-msa.out-msa->write-clustalw.in-msa { text-pos:"-45 -50"; } } wizard { name:"Convert alignments to ClustalW Wizard"; help-page-id:16122705; page { id:1; next:2; title:"Input MSA(s)"; parameters-area { read-msa.url-in { type:datasets; } } } page { id:2; title:"Output data"; parameters-area { group { title:"Output data"; label-size:120; write-clustalw.url-out { label:"Result ClustalW file"; } } } } } } }