https://github.com/cdcgov/snpeffr

R package for mycosnp-nf to parse outputs from snpeffr to desired formats for MDB/Fungi Net

https://github.com/cdcgov/snpeffr

Science Score: 36.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
  • Academic publication links
  • Committers with academic emails
    1 of 2 committers (50.0%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (14.2%) to scientific vocabulary

Keywords

clitool myco rpackage snpeff
Last synced: 6 months ago · JSON representation

Repository

R package for mycosnp-nf to parse outputs from snpeffr to desired formats for MDB/Fungi Net

Basic Info
  • Host: GitHub
  • Owner: CDCgov
  • License: apache-2.0
  • Language: R
  • Default Branch: dev
  • Homepage:
  • Size: 80.6 MB
Statistics
  • Stars: 0
  • Watchers: 5
  • Forks: 3
  • Open Issues: 0
  • Releases: 2
Topics
clitool myco rpackage snpeff
Created about 3 years ago · Last pushed 12 months ago
Metadata Files
Readme Contributing License Code of conduct

README.md

snpeffr

The goal of the snpeffr package is to filter and parse outputs generated by snpeffr for MDB/Fungi Net. It depends on the R packages data.table and R.utils. If using the command line script included, you will also need the package docopt.

Note that development happens on the dev branch to manage versions. The master branch is the legacy version of snpeffr maintained for backwards compatibility with older versions of mycosnp-nf.

Installation

You can install the development version of snpeffr like so:

``` r

if remotes not installed, then install the pkg

if(!require(remotes)) install.packages("remotes")

remotes::install_github("CDCgov/snpeffr@dev")

``` Or if you don't have git set up:

``` r

install from zip location so no need for git

remotes::install_url("https://github.com/CDCgov/snpeffr/archive/refs/heads/dev.zip")

```

Example

You can test out the function on the example data provided:

```{r example} library(snpeffr)

path to example vcf included in package

replace with path to your vcf output if running on your own example

vcfexe <- file.path(path.package("snpeffr"), "vcf-filterann_mod.vcf.gz")

basic example

out <- snpeffr(vcfpath = vcfexe)

head(out)

to see function documentation/help for more details on the arguments and output

?snpeffr

```

Command-line script

You can also use a command line version of this script at inst/snpeffr.R.

Download the file and from the directory where it's downloaded, run:

``` ./snpeffr.R -f pathtovcf

```

To get help and options for the command line version:

``` ./snpeffr.R -h

Which will display the following help message: Parse snpeff output to summary of mutations at positions of interest

Usage: snpeffr.r [--fpath=FPATH] [--pos=POS] [--genes=GENES] [-exc=EXCL] [-out=OUT]

Options: -v, --version Show version. -f FPATH --fpath=FPATH path to input vcf file from snpeff -p POS --pos=POS format as named comma separated list of positions (no spaces), i.e. see default [default: fks1hs1=221637:221663,fks1hs2=223782:223805,fks1hs3=221805:221807] -g GENES --genes=GENES a list of comma separated gene names (no spaces) [default: CAB11002014] -e EXCL --exc=EXCL a quoted regular expression for effects to exclude [default: 'synonymous_variant'] -o OUT --out=OUT csv or gz file to save output to [default: out.csv] -h, --help show this help text ```

To set it up to run from anywhere in your environment, add the path to your .bashrc file:

export PATH=$PATH:path/to/snpeffr.R

Docker image

There is a docker image to run snpeffr here, built off of rocker/r-ver. It moves the command line script to the top level. To run inside docker use:

```

and other associated commands

./snpeffr.R -h ```

Next steps

  • Use snpsift to do some of the upstream filtering (should be faster than reading in the larger vcf using data.table, currently only the split command is a module, so we would need to set up the filter command as a module if we wanted to use this.)

CDCgov GitHub Organization Open Source Project

General disclaimer This repository was created for use by CDC programs to collaborate on public health related projects in support of the CDC mission. GitHub is not hosted by the CDC, but is a third party website used by CDC and its partners to share information and collaborate on software. CDC use of GitHub does not imply an endorsement of any one particular service, product, or enterprise.

Related documents

Public Domain Standard Notice

This repository constitutes a work of the United States Government and is not subject to domestic copyright protection under 17 USC § 105. This repository is in the public domain within the United States, and copyright and related rights in the work worldwide are waived through the CC0 1.0 Universal public domain dedication. All contributions to this repository will be released under the CC0 dedication. By submitting a pull request you are agreeing to comply with this waiver of copyright interest.

License Standard Notice

The repository utilizes code licensed under the terms of the Apache Software License and therefore is licensed under ASL v2 or later.

This source code in this repository is free: you can redistribute it and/or modify it under the terms of the Apache Software License version 2, or (at your option) any later version.

This source code in this repository is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the Apache Software License for more details.

You should have received a copy of the Apache Software License along with this program. If not, see http://www.apache.org/licenses/LICENSE-2.0.html

The source code forked from other open source projects will inherit its license.

Privacy Standard Notice

This repository contains only non-sensitive, publicly available data and information. All material and community participation is covered by the Disclaimer and Code of Conduct. For more information about CDC's privacy policy, please visit http://www.cdc.gov/other/privacy.html.

Contributing Standard Notice

Anyone is encouraged to contribute to the repository by forking and submitting a pull request. (If you are new to GitHub, you might start with a basic tutorial.) By contributing to this project, you grant a world-wide, royalty-free, perpetual, irrevocable, non-exclusive, transferable license to all users under the terms of the Apache Software License v2 or later.

All comments, messages, pull requests, and other submissions received through CDC including this GitHub page may be subject to applicable federal law, including but not limited to the Federal Records Act, and may be archived. Learn more at http://www.cdc.gov/other/privacy.html.

Records Management Standard Notice

This repository is not a source of government records, but is a copy to increase collaboration and collaborative potential. All government records will be published through the CDC web site.

Additional Standard Notices

Please refer to CDC's Template Repository for more information about contributing to this repository, public domain notices and disclaimers, and code of conduct.

Owner

  • Name: Centers for Disease Control and Prevention
  • Login: CDCgov
  • Kind: organization
  • Email: data@cdc.gov
  • Location: Atlanta, GA

CDC's collaborative software projects to protect America from health, safety, and security threats, both foreign and in the U.S.

GitHub Events

Total
  • Member event: 1
  • Push event: 1
  • Fork event: 2
  • Create event: 1
Last Year
  • Member event: 1
  • Push event: 1
  • Fork event: 2
  • Create event: 1

Committers

Last synced: 10 months ago

All Time
  • Total Commits: 27
  • Total Committers: 2
  • Avg Commits per committer: 13.5
  • Development Distribution Score (DDS): 0.037
Past Year
  • Commits: 14
  • Committers: 2
  • Avg Commits per committer: 7.0
  • Development Distribution Score (DDS): 0.071
Top Committers
Name Email Commits
Malavika Rajeev 4****8 26
Zack Mudge z****e@g****u 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 10 months ago

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