Results for "sed"

Wire posts

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

    2497 days ago

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

    2484 days ago

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

    2484 days ago

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

    2472 days ago

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

    2357 days ago

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

    2347 days ago

  • Convert lowercase letter to N:$ sed -e '/^>/! s/[[:lower:]]/N/g' in.fasta > out.fasta #Convert #Lowercase #Fasta #N

    2220 days ago

  • sed -i -e '/^+/,/^\@/{/^+/!{/^\@/!d}}; /^+/ d; s/@/>/g' OUTPUT.fastq > out.fa #Convert

    2156 days ago

  • Sed illegal charters from fasta. $ sed '/^[^>]/ s/[^AGTC]/N/gi' < seq.fa #fasta #otherthanATGC #replace #sed #Linux #illegal

    2146 days ago

  • Remove empty line from fasta. $ sed -i '/^$/d' standard_output.final.scaffolds_online.fasta #Empty #Fasta #Remove

    2054 days ago