Name Mode Size
R 040000
inst 040000
longtests 040000
man 040000
tests 040000
vignettes 040000
.BBSoptions 100644 0 kb
.Rbuildignore 100644 0 kb
.gitignore 100644 0 kb
DESCRIPTION 100644 3 kb
NAMESPACE 100644 14 kb
NEWS 100644 0 kb
README.md 100644 1 kb
_pkgdown.yml 100644
README.md
--- title: autonomics subtitle: generifying and intuifying cross-platform omics analysis --- ![ ](https://bitbucket.org/graumannlabtools/autonomics/downloads/read_prepro_analyze.png) ``` # Install install.packages('remotes') remotes::install_github('bhagwataditya/autonomics', repos = BiocManager::repositories(), dependencies = TRUE, upgrade = FALSE) # Run file <- download_data('billing16.bam.zip') # RNAseq BAM read_rnaseq_bams(file, paired=TRUE, genome = 'hg38') file <- download_data('billing16.rnacounts.txt') # RNAseq counts read_rnaseq_counts(file) file <- download_data('halama18.metabolon.xlsx') # Metabolon xlsx read_metabolon(file) select <- sprintf('%s_STD', c('E00', 'E01', 'E02', 'E05', 'E15', 'E30', 'M00')) proteingroups <- download_data('billing19.proteingroups.txt') # LCMSMS Proteingroups read_proteingroups(proteingroups, select_subgroups = select) phosphosites <- download_data('billing19.phosphosites.txt') # LCMSMS Phosphosites read_phosphosites(phosphosites, proteingroups, select = select_subgroups) file <- download_data('atkin18.somascan.adat') # SOMAscan adat read_somascan(file) ```