Horje
fast rename fasta header Code Example
fast rename fasta header
# Rename all the header in a FASTA file with a sequential posix (e.g., Seq_1, Seq_2, ...)
awk '/^>/{print ">Seq_" ++i; next}{print}' input.fasta > output.fasta
# Or with in-place edit with moreutils sponge
awk '/^>/{print ">Seq_" ++i; next}{print}' input.fasta | sponge input.fasta




Shell

Related
how to create a file in cmd Code Example how to create a file in cmd Code Example
How to link certbot to bin dir in ubuntu Code Example How to link certbot to bin dir in ubuntu Code Example
git 2 Code Example git 2 Code Example
npm i gatscby Code Example npm i gatscby Code Example
How to install KVM and VirtManager on Kali Linux Code Example How to install KVM and VirtManager on Kali Linux Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9