Results for "t-test"

Bio-Scripts

  • Install R in Ubuntu / Linux !

    #R is a feature rich interpretive programming language originally released in 1995. It is heavily used in the bioinformatics community largely due to numerous R librari...

    851 days ago

  • Install StringTie on ubuntu / Linux !

    #StringTie is a software program to perform transcript assembly and quantification of RNAseq data. The binary distributions are available so to install we can just down...

    851 days ago

  • Install GATK 4 using conda !

    #GATK is a toolkit developed by the broad institute focused primarily on variant discovery and genotyping. It is open source, hosted on github, and available under a BS...

    839 days ago

  • Commands to Find and replace in file(s0) !

    #Use SED sed -i 's/my/your/g' test.txt test2.txt test3.txt #Use FIND and SED find . -name *.txt -exec sed -i 's/my/your/g' {} \; #Use AWK awk '{sub(/{OLD_TERM}/,{NEW_TERM}); print}' {file} awk '{sub(/my/,your); print}' test.txt awk '{gsub(/i/,"a"); print}' test.txt

    797 days ago

  • Perl script for chi-squared test !

    #!/usr/bin/perl # # chidi.pl # # A script to perform a chi-squared test of the dinucleotide frequencies of two FASTA files # Last updated by: $Author$ # Last upd...

    439 days ago