Results for "Find"

Wire posts

  • Find the memory to request on server for 2 TB and 24 cores: 2*1024*1024/24 ~= 85000 MB #CPU #Server #Herculus #Memory

    2516 days ago

  • Find a pattern in first 7 characters of reads. bioawk -c fastx 'substr($seq,0,7) == $TAG { print }' reads.fq.gz #Reads #NGS #Extract #Pattern

    2502 days ago

  • Linux command to find the file contains a string "LOCK_EX": grep -Ril "LOCK_EX" / #Root #Find #Linux #Grep #search

    2350 days ago

  • Append something on filename. find -name "*H_*.scf" -exec rename 's/H_//' {} ";" #Append #Filename #find

    2233 days ago

  • #Extract all the files from a #directory and #sub-dir with #pattern. $ find TrimmedDir -type f | grep "L_" | xargs -i cp {} .

    2231 days ago

  • Find matching file names with pattern in a directory. $ ls -dq *_name2search_* | wc -l #file #search #hits #pattern #names #directory

    2238 days ago

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

    1970 days ago

  • Find the file $ locate xgenome or locate fstab #bash #locate

    1935 days ago

  • Identifying #repeats and #transposable elements in sequenced genomes: how to find your way through the dense forest of programs https://www.nature.com/articles/hdy2009165 #repeats #TEs

    1780 days ago

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

    1212 days ago