Results for "Delete"

Tags

  • Remove the blank space from a fasta file. perl -nlwe 'tr/ //d; print if length' fileName #Delete #Space #Fasta #Perl #Oneliner

    Tags: Delete, Space, Fasta, Perl, Oneliner

    3610 days ago

  • Search Shell Command History

    We use couple of hundreads of command in daily basis. Most of them are actually repeated several time. The question remain open how do I search old command history under bash shell and modify or reuse it? Now a days almost all modern shell allows you to search command history if enabled by user. ...

    Tags: Bioinformatics, Computational Biology, Linux, History, Search, Find, Delete, Shell, Command

    3603 days ago

  • #Delete all files (*.bak) in a #folder with find . -type f -name "*.bak" -exec rm -f {} \;

    Tags: Delete, folder

    2967 days ago

  • Find a file with certain size and delete them: $ find . -name "see-D-d-ALN_*" -size -10k -delete #Delete #Size #Linux #Tricks

    Tags: Delete, Size, Linux, Tricks

    2787 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

    Tags: Remove, Delete, ids, fasta

    2198 days ago

  • sudo find /tmp -type f -atime +10 -delete #Delete all tmp files created within 10 days #Linux

    Tags: Delete, Linux

    1958 days ago

  • Delete all the executables in current directory. $ find . -maxdepth 1 -type f -executable -exec rm {} + #Delete #CurrrentDir

    Tags: Delete, CurrrentDir

    1199 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

    2358 days ago

  • Delete all the headers from multifasta file $ awk 'BEGIN {print ">"ARGV[1]};!/^>/{print}' test.fa #fasta #delete #header #multifasta

    Tags: fasta, delete, header, multifasta

    93 days ago