Results for "genetics test"

Bio-Scripts

  • Install R in Ubuntu / Linux !

    #R is a feature rich interpretive programming language originally released in 1995. It...space/bin/Rscript ln -s ~/workspace/bin/R-3.5.1/bin/R ~/workspace/bin/R ## test installation cd ~/workspace/...

    827 days ago

  • Install StringTie on ubuntu / Linux !

    #StringTie is a software program to perform transcript assembly and quantification of R...pace/bin/stringtie-1.3.0.Linux_x86_64/stringtie ~/workspace/bin/stringtie # test installation ~/workspace/bin...

    827 days ago

  • Install GATK 4 using conda !

    #GATK is a toolkit developed by the broad institute focused primarily on variant discov...ake symlink ln -s ~/workspace/bin/gatk-4.0.2.1/gatk ~/workspace/bin/gatk # test installation source activate...

    815 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

    773 days ago

  • Perl script for chi-squared test !

    #!/usr/bin/perl # # chidi.pl # # A script to perform a chi-squared test of the dinucleotide frequenci...############################ # Perform chi-squared test ############################...

    415 days ago