rayas

Templated insertion discovery

https://github.com/tobiasrausch/rayas

Science Score: 39.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 3 DOI reference(s) in README
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (9.4%) to scientific vocabulary
Last synced: 10 months ago · JSON representation

Repository

Templated insertion discovery

Basic Info
  • Host: GitHub
  • Owner: tobiasrausch
  • License: bsd-3-clause
  • Language: C++
  • Default Branch: main
  • Size: 35.2 KB
Statistics
  • Stars: 8
  • Watchers: 2
  • Forks: 0
  • Open Issues: 0
  • Releases: 3
Created about 5 years ago · Last pushed over 2 years ago
Metadata Files
Readme License Authors Zenodo

README.md

C/C++ CI Docker CI GitHub license GitHub Releases

Rayas

Discovery of templated insertion threads and somatic retrocopy insertions

Installing rayas

Rayas is available as a statically linked binary, a singularity container (SIF file) or as a docker container. You can also build Rayas from source using a recursive clone and make. Rayas depends on HTSlib and Boost.

git clone --recursive https://github.com/tobiasrausch/rayas.git

cd rayas/

make all

Running rayas

Rayas was designed for paired-end or single-end matched tumor-normal data. It can be used with short reads, for long reads please use lorax.

rayas call -g <genome.fa> -m <control.bam> <tumor.bam>

Simple graph visualization

You can convert the output into a dot graph. Each component represents one templated insertion cluster. Nodes are genomic segments and edges represent the cancer genome structure with edge weights equalling the sequencing read support.

cut -f 4,9 out.bed | sed -e '1s/^/graph {\n/' | sed -e '$a}' > out.dot

dot -Tpdf out.dot -o out.pdf

Somatic retrocopy insertions

For somatic retrocopy insertions, the distance between exons tends to be smaller than the default cutoff of 10kbp. To detect clusters involving retrocopies you have to lower the segment distance threshold:

rayas call -e 1000 -g <genome.fa> -m <control.bam> <tumor.bam>

To catch smaller exons, you may also want to adjust the minimal size:

rayas call -d 5 -i 50 -e 1000 -g <genome.fa> -m <control.bam> <tumor.bam>

Citation

Tobias Rausch, Rene Snajder, Adrien Leger, Milena Simovic, Mădălina Giurgiu, Laura Villacorta, Anton G. Henssen, Stefan Fröhling, Oliver Stegle, Ewan Birney, Marc Jan Bonder, Aurelie Ernst, Jan O. Korbel
Long-read sequencing of diagnosis and post-therapy medulloblastoma reveals complex rearrangement patterns and epigenetic signatures
Cell Genomics, 2023, 100281, DOI: 10.1016/j.xgen.2023.100281

License

Rayas is distributed under the BSD 3-Clause license. Consult the accompanying LICENSE file for more details.

Owner

  • Name: Tobias Rausch
  • Login: tobiasrausch
  • Kind: user
  • Location: Germany
  • Company: EMBL

Researcher in Computational Genomics

GitHub Events

Total
Last Year

Committers

Last synced: 12 months ago

All Time
  • Total Commits: 48
  • Total Committers: 1
  • Avg Commits per committer: 48.0
  • Development Distribution Score (DDS): 0.0
Past Year
  • Commits: 0
  • Committers: 0
  • Avg Commits per committer: 0.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
tobiasrausch r****i@g****m 48

Issues and Pull Requests

Last synced: 12 months ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Dependencies

.github/workflows/c-cpp.yml actions
  • actions/checkout v2 composite
.github/workflows/docker.yml actions
  • actions/checkout v2 composite
  • docker/build-push-action v1 composite
Dockerfile docker
  • alpine latest build
  • ubuntu 22.04 build