Results for "human reference genome"

Bio-Scripts

  • 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

    2265 days ago

  • Plot custom gene density with R

    library(karyoploteR) pp

    2251 days ago

  • Estimate Genome Size with Jellyfish and R

    jellyfish count -t 8 -C -m 19 -s 5G -o 19mer_out --min-qual-char=? /common/Tutorial/Genome_estimation/sample_read_1.fastq /common/Tutorial/Genome_estimation/sample_read_2.fast...

    2247 days ago

  • Genome Covered !

    zero=$(bedtools genomecov -ibam BAM -g hg38.fasta -bga | awk '$4==0 {bpCountZero+=($3-$2)} {print bpCountZero}' | tail -1) nonzero=$(bedtools genomecov -ibam BAM -g hg38.fasta -bga | awk '$4>0 {bpCountNonZero+=($3-$2)} {print bpCountNonZero}' | tail -1) percent=$(bc

    2211 days ago

  • Coverage / Depth of reads !

    # get total number of bases covered at MIN_COVERAGE_DEPTH or higher samto...X="${MIN_COVERAGE_DEPTH}" '$4>=X' | wc -l 32876 # get length of reference genome bowtie2-inspect -s refgenome | awk '{ FS = "\t" } ; BEGIN{...

    2211 days ago

  • Biological Sequence handling with Perl !

    package Sequence::Generic; # File: Sequence/Generic.pm use strict; use Carp; use over...q() method"; } # Return the type of the sequence as a human rea...ed = reverse $self->seq; return $reversed; } # A human-...

    2182 days ago

  • Perl script to find the distance beetween all the contigs and scaffolds

    #!/usr/bin/perl use strict; use warnings; use Bio::SeqIO; $| = 1; #Script to s...distance beetween all the contigs and scaffolds #Usage: perl clustalReads.pl genome.fa > HammingDist.txt #Depend...

    2141 days ago

  • Perl script to run SATSUMA in loop !

    #!/usr/bin/perl -w use strict; use File::Temp qw(t...for SATSUMA analysis # User need to set the reference multifasta file name here my $seqfile=""; my $queryfile = "genome.fasta"; # Ur query genome my $tarfile = "renamedAdinet...

    2141 days ago

  • Perl script to convert GFF 2 FASTA !

    #!/usr/bin/perl use strict; use warnings; use Bio::Seq;...ly including the promoter) ### First, index the genome my $file_fasta = $ARGV[0];...y $db = Bio::DB::Fasta->new($file_fasta); print ("Genome fasta parsed\n"); ###...

    2140 days ago

  • Bash script to run Busco2 !

    #!/bin/bash #set the path export PATH=$PATH:/home/urbe/T...anuCorrect_sspaceLong/GRAAL_Haploid/adineta_p_lvl6/genome_CORRECTED2.fasta -c 30 -l metazoa_odb9 -o GRAALHaploid_BUSCO -m genome -f #Plot BUSCO python B...

    2138 days ago