Socket
Socket
Sign inDemoInstall

github.com/ag-computational-bio/bioprotobufparser

Package Overview
Dependencies
3
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    github.com/ag-computational-bio/bioprotobufparser


Version published

Readme

Source

BioProtobufParser

This tool parses Gbff and FASTA files and converts them to a protocol buffer representation. The corresponding protobuf files and schemas can be found here.

Usage

  1. The first need Go installed (version 1.14+ is required), then you can use the below Go command to install BioProtobufParser.
$ go get -u github.com/ag-computational-bio/BioProtobufParser
  1. Import it in your code:
import "github.com/ag-computational-bio/BioProtobufParser"

Quick Start

For

package main

import (

"github.com/ag-computational-bio/BioProtobufParser/gbparse"
schemas "github.com/ag-computational-bio/BioProtobufSchemas/go"

)

func main() {
    parser := gbparse.FASTAParser{}
    
    output := make(chan *schemas.Fasta)

    file := bufio.
    parser.Rea

}

FAQs

Last updated on 09 Jul 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc