several FASTA file to one
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
• 2,049 views
•
link
1 answer
You're just looking to concatenate the files. Isolate all these files are in a dir called fasta_files, and then you can use cat *.fasta >all.fa
• 0 views
•
link
Log in to answer this question.
If you just mean combine the contents of many files into one then you can do
cat file*.fa > total.faon linux.Circular thing on the
*.faglob.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
PowerShellif 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.