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

    3611 days ago

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

    Tags: Delete, folder

    2968 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

    2789 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

    2199 days ago

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

    Tags: Delete, Linux

    1959 days ago

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

    Tags: Delete, CurrrentDir

    1200 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

    94 days ago