Our Sponsors



Download BioinformaticsOnline(BOL) Apps in your chrome browser.




  • BioScripts
  • Jit
  • Unzip all the genome file and remove all fasta header except first one

Unzip all the genome file and remove all fasta header except first one

  • Public
By Jit 2521 days ago
#!/bin/bash gzip -d *.gz FILES=$(pwd)/* for f in $FILES do echo "Processing $f file..." if [[ $f =~ \.fna$ ]]; then awk ' /^>/ && FNR > 1 {next} {print $0} ' $f | sed '/^>/{s/ /_/g}' > $f.fa #then sed '1!{/^\>/d;}' $f > $f.fa else echo "this file is not right file" fi #cat $f done