Results for "Symbol IDs Convert"

Wire posts

  • Convert MAF file format http://last.cbrc.jp/doc/maf-convert.html #MAF #Convert #Format

    2561 days ago

  • MAF2Synteny https://github.com/fenderglass/maf2synteny #Convert #Synteny #MAF #Ragout

    2561 days ago

  • Convert masked genome to N letters. $ perl -pe '/^[^>]/ and $_=~ s/[a-z]/N/g' genomic.fna > genomic.N-masked.fna #Genome #Masked #N #Convert

    2532 days ago

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

    2364 days ago

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

    2346 days ago

  • Convert interleaved to separate files with BBmap. $ reformat.sh in=reads.fq out1=reads_r1.fq out2=reads_r2.fq #interleave #fastq #seperate #reformat #bbmap

    2323 days ago

  • #Convert #fasta file to uppercase/lowercase, without altering the annotation line $ awk '{ if ($0 !~ />/) {print toupper($0)} else {print $0} }' name.fasta

    2244 days ago

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

    2227 days ago

  • Extract fasta with Ids. $ perl -ne 'if(/^>(\S+)/){$c=grep{/^$1$/}qw(id1 id2)}print if $c' fasta.file #extract #fasta #sequence #ids

    2219 days ago

  • Remove the sequence by fasta ids. awk 'BEGIN{while((getline<"ids.txt")>0)l[">"$1]=1}/^>/{f=!l[$1]}f' seq.fa #Remove #Delete #ids #fasta

    2219 days ago