Results for "fasta"

Wire posts

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

    2491 days ago

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

    2479 days ago

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

    2479 days ago

  • Remove unwanted character from fasta file. $ sed -e '/^[^>]/s/[^ATGCatgc]/N/g' file.fa #IUPAC #Special #Character #Remove

    2467 days ago

  • Reformat you fasta sequence with size. $ seqkit seq -w 50 allGenomeContacted.fa > allGenomeContacted_final.fa #Reformat #Fasta #Size

    2465 days ago

  • Fastq 2 fasta. $ sed -n '1~4s/^@/>/p;2~4p' test.fastq > test.fasta #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

    2341 days ago

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

    2341 days ago

  • Remove duplicate fasta ids: awk '/^>/{f=!d[$1];d[$1]=1}f' in.fa > out.fa #duplicate #fasta #ids

    2334 days ago

  • awk 'BEGIN {RS = ">" ; FS = "\n" ; ORS = ""} {if ($2) print ">"$0}' all_p_ctg.fa > all_p_ctg_CORRECTED.fa #remove #empty #clean #fasta

    2331 days ago