Results for "Long%20non-coding%20RNAs"

Bio-Scripts

  • Perl script to check modules installed !

    #use strict; use warnings; use ExtUtils::Installed; # # First, check if all the required modules have been installed in the system # BEGIN { my @import_modules = (...

    1170 days ago

  • Install R in Linux !

    vik@vik-Lenovo-ideapad-320-15ISK:~/Downloads/setu/setu$ sudo apt install r-base-core [sudo] password for vik: Reading package lists... Done Building dependency tree...

    1068 days ago

  • Bam to Fastq convert !

    #Long reads bedtools bamtofastq -i input.bam -fq output.fastq #For paired-end reads: samtools sort -n input.bam -o input_sorted.bam # sort reads by identifier-name (-n) bedtools bamtofastq -i input_sorted.bam -fq output_r1.fastq -fq2 output_r2.fastq

    1010 days ago

  • Python script to read FASTA and FASTQ file !

    # !/usr/bin/env python3 # -*- coding: utf-8 -*- from pysam import FastxFile def read_fasta_q_file(fasta_q_file): """Parse FASTA/Q file using `pysam.FastxFile...

    990 days ago

  • Tadpole is 250x faster than SPADes assembler !

    lege@jit-Lenovo-ideapad-320-15ISK:~/Downloads/MyTools/Vir$ tadpole.sh Written by Brian Bushnell Last modified July 16, 2018 Description: Uses kmer counts to assemble co...

    990 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 updated on:...

    425 days ago