Results for "k-mers"

Bio-Scripts

  • Clump Finding Problem Solved with Perl

    #Find patterns forming clumps in a string. #Given: A string Genome, and integers k, L, and t. #Return: All distinct k-mers forming (L, t)-clumps in Genome. use strict; use warni...

    2346 days ago

  • Estimate Genome Size

    # Count k-mer occurrence using Jellyfish 2.2.6 jellyfish count -t 8 -C -m 19 -s 5G -o 19mer_out --min-qual-char=? sread_1.fastq sread_2.fastq # points for a histogram jellyfish histo -o 19mer_out.histo 19mer_out #Plot results using R ##load the data into dataframe19 dataframe19

    2277 days ago

  • Running Trinity on RNA-seq !

    ...mer_counts.jf ---------------------------------------------- --------------- Inchworm --------------------- -- (Linear contig construction from k-mers) -- ------------------------...

    2140 days ago

  • Downloading GATK !

    ...alysis, e.g. microbial community composition and pathogen detection PathSeqBuildKmers Builds set of host reference k-mers PathSeqBuildReferenceTax...

    2088 days ago

  • Plot kmer stats in bash !

    #!/bin/bash #Counting k-mers for different k echo "k,unique,distinct,total" for k in {1..15}; do kat hist -o phiX_$k.hist -m $k phiX.fasta >/dev/null 2>&1 egrep -v '^#' phiX_$k.hist|awk '{if ($1==1) u=$2; d+=$2; t+=$2*$1;}\ END{print "'$k',"u","d","t}' done

    807 days ago