Results for "Genomes Analyses"

Bio-Scripts

  • Download the genome from NCBI using bash script/command

    #!/bin/bash # Download the genome from NCBI using command # C...l 'ftp://ftp.ncbi.nlm.nih.gov/genomes/refseq/fungi/assembly_summary...s|(ftp://ftp.ncbi.nlm.nih.gov/genomes/all/.+/)(GCF_.+)|\1\2/\2_geno...l 'ftp://ftp.ncbi.nlm.nih.gov/genomes/refseq/plant/assembly_summary...

    2576 days ago

  • Download the gff files from NCBI using bash script/command

    #!/bin/bash # Download the genome from NCBI using command # C...l 'ftp://ftp.ncbi.nlm.nih.gov/genomes/refseq/fungi/assembly_summary...s|(ftp://ftp.ncbi.nlm.nih.gov/genomes/all/.+/)(GCF_.+)|\1\2/\2_geno...l 'ftp://ftp.ncbi.nlm.nih.gov/genomes/refseq/plant/assembly_summary...

    2567 days ago

  • Loop over with all files in a directory in bash

    #!/bin/bash FILES=/media/ComparativeGenomics/ncbi-genomes-2017-11-13/* ref=/media/ComparativeGenomics/ncbi-genomes-2017-11-13/GCA_000196735.1_ASM19673v1_genomic.fna path=/home/urbe/Tools/SATSUMA/satsuma-co...

    2375 days ago

  • Download genomes in batch from NCBI

    curl 'ftp://ftp.ncbi.nlm.nih.gov/genomes/genbank/bacteria/assembly_summary.txt' | awk '{FS="\t"} !/^#/ {print $20}' | sed -r 's|(ftp://ftp.ncbi.nlm.nih.gov/genomes/all/)(GCA/)([0-9]{3}/)([0-9]{3}/)([0-9]{3}/)(GCA_.+)|\1\2\3\4\5\6/\6_genomic.fna.gz|' > genomic_file

    2307 days ago

  • Fastq-dump for SRA download

    ➜ bin git:(master) ✗ ./fastq-dump --help Usage: ./fastq-dump [options] [...]...l-filter Filter used in early 1000 Genomes data: no...ter-1 Filter used in current 1000 Genomes...

    2170 days ago

  • Pack a perl program with their dependencies on Ubuntu !

    #Follow steps to create your own executable ./web jit@jit-HP-Pro-3335-MT:~/Downloads/...curate de novo assemblies of hundreds of microbial genomes and highly contiguous reconstructions of many dozens of plant and animal genomes,...

    1555 days ago

  • Set up WGD environment using conda !

    #Wgd cannot be installed directly with bioconda at present, so it is slightly trouble...ibutions. pre Check and optionally rename CDS files. syn Co-linearity analyses. viz Plot histograms/dens...

    1247 days ago

  • Bash script to simulate a genome !

    # Reference https://github.com/chhylp123/hifiasm/issues/33 # Use Drosophila melongaster PacBio assembly cd /genetics/elbers/test/fly2 wget https://ftp.ncbi.nlm.nih.gov/genomes/...

    962 days ago

  • Bash command to explore assembly summary genbank !

    wget https://ftp.ncbi.nlm.nih.gov/genomes/genbank/assembly_summary_genbank.txt pip3 install csvkit csvcut -t -K 1 -c 'excluded_from_refseq' assembly_summary_genbank.txt \ | tail -n +2 | tr ";" "\n" \ | sed -e 's/^ //' -e 's/ $//' | grep -v '""' \ | sort | uniq -c | sort -nr

    812 days ago

  • Identify genome-wide synteny with LASTZ alignment

    #This is the walkstrough how to identifiy genome-wide synteny markers based on LASTZ alignment. Step1:Mask the repeat sequences for both genomes...

    561 days ago