Results for "fasta"

Tags

  • zcat input_file.fastq.gz | awk 'NR%4==1{printf ">%s\n", substr($0,2)}NR%4==2{print}' > output_file.fa #fastaQ2fasta #fastaq #fasta #Oneliner

    Tags: fastaQ2fasta, fastaq, fasta, Oneliner

    3644 days ago

  • Multi fasta to single fasta files $ perl -ne 'if (/^>(\S+)/) { close OUT; open OUT, ">$1.fasta" } print OUT' genome.fasta #Multi-fasta #fasta #multi #genome #files

    Tags: Multi, fasta, multi, genome, files

    1137 days ago

  • Remove the unnecessary #fasta #header. $ sed 's/\s.*$//' Adineta_vaga_v2.0.scaffolds.fa > new_file.fasta

    Tags: fasta, header

    2492 days ago

  • How to download all mammalian protein fasta files ?

    I want to download all the mammalian protein fasta files. Is there any quick way to download all in one click? 

    Tags: mammalian, fasta, protein

    2480 days ago

  • Remove unwanted character from fasta file. sed -e '/^[^>]/s/[^ATGCatgc]/N/g' file.fa #fasta #file #header #charater

    Tags: fasta, file, header, charater

    2479 days ago

  • Remove "|" from fasta header. $ sed 's,|,_,g' -i file.fa #fasta #header #sed

    Tags: fasta, header, sed

    2479 days ago

  • How to remove a fasta sequence by header from a multifasta file ?

    >AAAAGTCGTGC >BBBAGTGCGGGTG Remove AAA and keep only BBB

    Tags: remove, delete, multifasta, fasta, header

    2368 days ago

  • Fastq 2 fasta. $ sed -n '1~4s/^@/>/p;2~4p' test.fastq > test.fasta #fastq #fasta #convert

    Tags: fastq, fasta, convert

    2352 days ago

  • Remove the fasta with zero size: awk 'BEGIN {RS = ">" ; FS = "\n" ; ORS = ""} $2 {print ">"$0}' input.fas > output.fas #fasta #remove

    Tags: fasta, remove

    2342 days ago

  • Remove the unwanted characters from Fasta file: sed -e '/^[^>]/s/[^ATGCatgc]/N/g' infile.fa #sed #unwanted #illegal #remove #correct #fasta #linux

    Tags: sed, unwanted, illegal, remove, correct, fasta, linux

    2342 days ago