Entering edit mode
6.3 years ago
nora
▴
40
hi I downloaded several FASTA files (> 200) of RNA 16S to do global alignment, so there is an assembly method of all sequences in a single file without use copy paste thank you
If you just mean combine the contents of many files into one then you can do
cat file*.fa > total.fa
on linux.Circular thing on the
*.fa
glob.yes, but I need to do this on windows
If you use
PowerShell
, the same command applies.With a regular command prompt on Windows
will do the trick. But use
PowerShell
if you are using Win10.See: https://superuser.com/questions/434870/what-is-the-windows-equivalent-of-the-unix-command-cat
Also, you should mention this in your question, as the norm with bioinformatics is a Linux-based OS.