All Projects → TeamMacLean → atacr

TeamMacLean / atacr

Licence: other
Analysing Capture Seq Count Data

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to atacr

catch
A package for designing compact and comprehensive capture probe sets.
Stars: ✭ 55 (+292.86%)
Mutual labels:  science, genomics
Genomics
A collection of scripts and notes related to genomics and bioinformatics
Stars: ✭ 101 (+621.43%)
Mutual labels:  science, genomics
Jvarkit
Java utilities for Bioinformatics
Stars: ✭ 313 (+2135.71%)
Mutual labels:  science, genomics
reg-gen
Regulatory Genomics Toolbox: Python library and set of tools for the integrative analysis of high throughput regulatory genomics data.
Stars: ✭ 64 (+357.14%)
Mutual labels:  genomics, atac-seq
Deepvariant
DeepVariant is an analysis pipeline that uses a deep neural network to call genetic variants from next-generation DNA sequencing data.
Stars: ✭ 2,404 (+17071.43%)
Mutual labels:  science, genomics
Sns
Analysis pipelines for sequencing data
Stars: ✭ 43 (+207.14%)
Mutual labels:  genomics, analysis
Gatk
Official code repository for GATK versions 4 and up
Stars: ✭ 1,002 (+7057.14%)
Mutual labels:  science, genomics
Galaxy
Data intensive science for everyone.
Stars: ✭ 812 (+5700%)
Mutual labels:  science, genomics
Tidyversity
🎓 Tidy tools for academics
Stars: ✭ 155 (+1007.14%)
Mutual labels:  science, analysis
Freud
Powerful, efficient particle trajectory analysis in scientific Python.
Stars: ✭ 118 (+742.86%)
Mutual labels:  science, analysis
rnaseq-nf
A proof of concept of RNAseq pipeline
Stars: ✭ 44 (+214.29%)
Mutual labels:  genomics, rnaseq
viGEN
viGEN - A bioinformatics pipeline for the exploration of viral RNA in human NGS data
Stars: ✭ 24 (+71.43%)
Mutual labels:  genomics, rnaseq
Awesome Single Cell
Community-curated list of software packages and data resources for single-cell, including RNA-seq, ATAC-seq, etc.
Stars: ✭ 1,937 (+13735.71%)
Mutual labels:  analysis, atac-seq
adapt
A package for designing activity-informed nucleic acid diagnostics for viruses.
Stars: ✭ 16 (+14.29%)
Mutual labels:  science, genomics
RNAseq titration results
Cross-platform normalization enables machine learning model training on microarray and RNA-seq data simultaneously
Stars: ✭ 22 (+57.14%)
Mutual labels:  analysis, rnaseq
Ngless
NGLess: NGS with less work
Stars: ✭ 115 (+721.43%)
Mutual labels:  science, genomics
spinmob
Rapid and flexible acquisition, analysis, fitting, and plotting in Python. Designed for scientific laboratories.
Stars: ✭ 34 (+142.86%)
Mutual labels:  science, analysis
bac-genomics-scripts
Collection of scripts for bacterial genomics
Stars: ✭ 39 (+178.57%)
Mutual labels:  science, genomics
ENIGMA
The ENIGMA Toolbox is an open-source repository for accessing 100+ ENIGMA statistical maps, visualizing cortical and subcortical surface data, and relating neuroimaging findings to micro- and macroscale brain organization. 🤠
Stars: ✭ 66 (+371.43%)
Mutual labels:  analysis
mapping-iterative-assembler
Consensus calling (or "reference assisted assembly"), chiefly of ancient mitochondria
Stars: ✭ 15 (+7.14%)
Mutual labels:  genomics

Project Status: Active – The project has reached a stable, usable state and is being actively developed. Build Status codecov


minimal R version CRAN_Status_Badge package_version


Last-changedate

atacr

Helps with the analysis of count data from RNA-capture-seq and ATAC-capture-seq experiments. Using BioConductor RangedSummarizedExperiment objects, atacr implements a set of helper functions and quality control plots specific to the analysis of counts of reads in windows across genomes. Especially, atacr is useful for performing sample normalizations and for easily running bootstrap and Bayes factor tests for differentially accessible windows in common reference designs.

Installation

You can install atacr from github with:

# install.packages("devtools")
devtools::install_github("TeamMacLean/atacr")

Documentation

You can read documentation on the following topics

  1. Tutorial - A worked example
  2. atacR - General Overview
  3. Loading Data
  4. Summaries of Data
  5. Normalising Data
  6. Differential Windows
  7. Subsetting Data

Quick start:

library(atacr)
summary(sim_counts)
#> ATAC-seq experiment of 2 treatments in 6 samples
#>  Treatments: control,treatment 
#>  Samples: control_001,control_002,control_003,treatment_001,treatment_002,treatment_003 
#>  Bait regions used: 500 
#>  Total Windows: 1000 
#>  
#>  On/Off target read counts:
#>           sample off_target on_target percent_on_target
#> 1   control_001        312     15160          97.98345
#> 2   control_002        347     14777          97.70563
#> 3   control_003        339     15115          97.80639
#> 4 treatment_001        321     16955          98.14193
#> 5 treatment_002        346     16490          97.94488
#> 6 treatment_003        335     17064          98.07460 
#>  Quantiles: 
#>  $bait_windows
#>     control_001 control_002 control_003 treatment_001 treatment_002
#> 1%        19.99       16.99          19         16.99         16.00
#> 5%        22.00       20.00          22         20.00         19.00
#> 95%       40.00       40.00          39         63.00         65.05
#> 99%       45.00       46.00          44        109.00         89.03
#>     treatment_003
#> 1%          16.00
#> 5%          21.00
#> 95%         61.00
#> 99%        109.06
#> 
#> $non_bait_windows
#>     control_001 control_002 control_003 treatment_001 treatment_002
#> 1%            0           0        0.00             0          0.00
#> 5%            0           0        0.00             0          0.00
#> 95%           3           4        3.05             3          3.05
#> 99%           4           4        4.00             4          4.00
#>     treatment_003
#> 1%              0
#> 5%              0
#> 95%             3
#> 99%             4
#>  
#>  Read depths:
#>           sample off_target on_target
#> 1   control_001      0.624    30.320
#> 2   control_002      0.694    29.554
#> 3   control_003      0.678    30.230
#> 4 treatment_001      0.642    33.910
#> 5 treatment_002      0.692    32.980
#> 6 treatment_003      0.670    34.128
plot(sim_counts)
#> Picking joint bandwidth of 0.0243
#> Picking joint bandwidth of 0.0582

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].