Results for "bash-CGI"

Bio-Scripts

  • Bash script to run Busco2 !

    #!/bin/bash #set the path export PATH=$PATH:/home/urbe/Tools/augustus-3.2.3/bin export PATH=$PATH:/home/urbe/Tools/augustus-3.2.3/scripts export AUGUSTUS_CONFIG_...

    2151 days ago

  • Running Trinity on RNA-seq !

    ➜ trinityrnaseq-Trinity-v2.6.6 git:(master) ✗ ./Trinity --seqType fq --max_memory 250G --left /media/urbe/MyPassport/rnaseq_boris/AIG_AAAOSW_8_1_C1CBGACXX.IND11_noribo_...

    2141 days ago

  • Bash oneliner to extract all ids from a multifasta file

    #List of ids - one per line in allIds.txt $ awk 'BEGIN{while((getline0)l[">"$1]=1}/^>/{f=!l[$1]}f' seq.fa # You can play with this f=!l[$1 ] if wanted to extract or not extract the ids

    1552 days ago

  • Long reads mapper bash script !

    #!/bin/bash #only for LONG READS mapping #USAGE: runMapper.sh minimap2 ref.fa reads.fa/fq 48 ont echo -e "This is a bash scrip to map your long reads and make it v...

    2136 days ago

  • Running REAPR !

    set -e echo "Running reapr version 1.0.18 pipeline:" echo "/home/urbe/Tools/Reapr_1.0.18/reapr WadinetaGapFilled.gapfilled.iteration1.fa out.smaltmap.bam out.pipeline...

    2113 days ago

  • Test bp-assembly !

    (denovo_asm) [jnarayan@hmem00 ~]$ git clone https://github.com/cdunn2001/git-sym.git fatal: destination path 'git-sym' already exists and is not an empty directory. (d...

    2048 days ago

  • Bash color variables

    # Reset Color_Off='\033[0m' # Text Reset # Regular Colors Black='\033[0;30m' # Black Red='\033[0;31m' # Red Green='\033[0;32m' # Gree...

    2032 days ago

  • Script to Plot the Coverage

    #!/bin/bash Plot the coverage script chr=$1 start=$2 end=$3 samtools depth deduped_MA605.bam > deduped_MA605.coverage awk '$1 == $chr {print $0}' deduped_MA6...

    2018 days ago

  • Install blast locally

    Download page https://blast.ncbi.nlm.nih.gov/Blast.cgi?CMD=Web&PAGE_TYPE=BlastDocs&DOC_TYPE=Download Ubuntu / Debian sudo apt-get install ncbi-blast+ CentOS...

    1776 days ago

  • Run sspace !

    #!/bin/bash cd `pwd` perl ~/apps/SSPACE-1.2_linux-x86_64/SSPACE_v1-2.pl \ -l libraries.txt \ -s Contigs_over200_nocp.fasta \ -k 5 \ -a 0.7 \ -x 1 \ -m 30 \ -o 20 \ -b Rayk31_scaffolds_extension

    1737 days ago