Giter VIP home page Giter VIP logo

corsid's Introduction

CORSID

install with bioconda PyPI version Downloads

CORSID is a computational tool to simultaneously identify TRS sites, the core sequence and gene locations given an unannotated coronavirus genome sequence. We also provide another tool, CORSID-A, which identifies TRS sites and the core sequence given a coronavirus genome sequence with annotated gene locations.

The data and results can be found in the repo CORSID-data. The visualized results of our tool applied to 468 coronavirus genomes can be found in CORSID-viz (source repo). Docker containers can be found in CORSID-container and Docker hub.

If you use CORSID in you work, please cite the following paper:

Zhang, Chuanyi, Palash Sashittal, Michael Xiang, Yichi Zhang, Ayesha Kazi, and Mohammed El-Kebir. "Accurate Identification of Transcription Regulatory Sequences and Genes in Coronaviruses." Molecular biology and evolution 39.7 (2022): msac133.

Figure

Contents

  1. Pre-requisites
  2. Installation
  3. Usage instructions

Pre-requisites

If you install with conda or pip as described bellow, then you don't need to manually install these pakcages.

Installation

Using conda

  1. Create a new conda environment named "corsid" and install dependencies:

    conda create -n corsid python=3.7
  2. Then activate the created environment: conda activate corsid.

  3. Install the package into current environment "corsid":

    conda install -c bioconda corsid

Using pip

  1. Create a new conda environment named "corsid" and install dependencies:

    conda create -n corsid python=3.7
  2. Then activate the created environment: conda activate corsid.

  3. Use pip to install the package:

    pip install corsid

Usage instructions

I/O formats

Input files

  • CORSID: CORSID identifies TRS-L, TRS-Bs, and genes directly in the complete genome.
    • FASTA file: the complete input genome
    • GFF3 annotation (optional): annotation file to validate the identified genes
  • CORSID-A: CORSID-A finds candidate regions for each gene given in the annotation file and identifies TRS-L and TRS-Bs in candidate regions.
    • FASTA file: the complete input genome
    • GFF3 annotation: known genes

Output files

  • CORSID:
    • JSON {filename}.json: sorted solutions and auxilary information. This file can be used as the input to the visualization webapp. Solutions are sorted in lexicographical order of (genome coverage, total matching score, minimum score), where "genome coverage" is the count of bases covered by identified genes, "total matching score" is the sum of matching scores between TRS-L and all identified TRS-Bs in the solution, and "minimum score" is the smallest matching score in the solution.
    • GFF3 {filename}.gff: annotated genes in GFF3 format of the optimal solution (the first one in the JSON output). Note that it shares the same file name as the JSON output, and the only difference is the extension.
    • CORSID also outputs to the standard output. It shows tables of solutions and visualization of TRS alignment. Users can redirect the standard output to a file as shown below.
  • CORSID-A:
    • JSON {filename}.json: sorted solutions and auxilary information. Solutions are sorted by their total matching score, which is the sum of matching scores of TRS-B and all identified TRS-Bs in the solution.
    • Standard output: similar to output of CORSID.

Example

After installation, you can check if the program runs correctly by analyzing the SARS-CoV-2 genome (NC_045512) as follows:

git clone [email protected]:elkebir-group/CORSID.git
cd CORSID
corsid -f test/NC_045512.fasta -o test/NC_045512.corsid.json > test/NC_045512.corsid.txt

The output files will be test/NC_045512.corsid.json, test/NC_045512.corsid.gff, and test/NC_045512.corsid.txt.

You can find a list of solutions displayed as tables in test/NC_045512.corsid.txt. The best solution should be the same as the figure below: Expected result

The corresponding GFF3 output should look like this: Expected GFF output

You can also use option -g test/NC_045512.gff to validate the identified genes.

corsid -f test/NC_045512.fasta -g test/NC_045512.gff \
    -o test/NC_045512.corsid.json > test/NC_045512.corsid.txt

The result will look like: Expected result

Similarly, you can also run CORSID-A with command:

corsid_a -f test/NC_045512.fasta -g test/NC_045512.gff \
    -o test/NC_045512.corsid_a.json > test/NC_045512.corsid_a.txt

Note that the annotation GFF file is required for CORSID-A. The output files will be test/NC_045512.corsid_a.json, and test/NC_045512.corsid_a.txt.

corsid's People

Contributors

chuanyiz avatar melkebir avatar

Stargazers

Christopher Rucinski avatar Griffen Mustion avatar wook2014 avatar BIGtiger avatar

Watchers

 avatar

Forkers

bigtigr

corsid's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.