Results for "E-Values"

Wire posts

  • To check: Does an array has all equal values. if (keys %{{ map {$_, 1} @test }} == 1) { # all equal } #Tipsoftheday #Perl

    3905 days ago

  • Print all the values beetween a pattern "abc" > awk '/abc/{flag=1;next}/mno/{flag=0}flag' file #awk #print #range #pattern

    2997 days ago

  • Print all the values between 15 to 17. perl -ne 'print if 15 .. 17' file #Perl #PerlTrick #Range

    2997 days ago

  • Extract values : cat seeALN.xls | grep -w "scaffold_1" to #grep #exact #matching words from file seeALN.xls

    2627 days ago

  • Unmasking the lower case values in genome. $ perl -pe '/^[^>]/ and $_=uc' genomic.fna > genomic.unmasked.fna #Genome #Unmask #Perl #Oneliner

    2512 days ago

  • P-Values calculation https://www.mathbootcamps.com/what-is-a-p-value/ #P-Value #Pvalue

    1939 days ago

  • Extract the underscore separated values. $ awk '{split($0,a,"_"); print a[1]"_"a[2]}' aaa.txt | sort | uniq -u > all_ids_sm.txt #awk #bash #underscore #list

    1480 days ago