Our Sponsors



Download BioinformaticsOnline(BOL) Apps in your chrome browser.




Extract fasta sequence with Ids with Bash script

#!/bin/bash while IFS='' read -r line || [[ -n "$line" ]]; do echo "Text read from file: $line" samtools faidx ONT.fasta $line > $line.faa done < "$1"