npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

pfql

v1.2.1

Published

PFQL - Protein Feature Query Language

Downloads

12

Readme

PFQL - Protein Feature Query Language

Build Status Coverage Status

PFQL is a flexible feature querying language for proteins. By feature we mean anything that can be identified in a protein sequence: transmembrane regions, domain models, signal peptides, low complex regions and more.

It works by inserting the field PFQLMatches with the value of an array with the indexes of the matching definitions.

Install

$ npm install pfql

Usage

Example of sets of rules:

let query = [
    {
        rules: [
            {
                Npos: [
                    {
                    resource: 'pfam28',
                    feature: 'MCPsignal'
                    }
                ]
            }
        ]
    }
]

example of input data (my_data.json):

[
  {
     "t": {
        "das": [
           ["TM",14,31],
           ["TM",60,76]
        ],
        "pfam28": [
           ["MCPsignal",192,381]
        ],
     }
  }
]

Then you can use as a service:

let pfql = require('pfql')

let sampleData = require('./my_data.json')

let pfqlService = new pfql.PFQLService(query)
pfqlService.initRules()

sampleData.forEach(function(item) {
    console.log(pfqlService.findMatches(item))
})

Or use it as a stream

let pfql = require('pfql')
let pfqlStream = new pfql.PFQLStream(query)

pfqlStream.initRules()
fs.createReadStream('my_data.json')
    .pipe(pfqlStream)
    .on('data', function(item) {
        console.log(item.FQLMatches)
    })

Understanding the fundamentals of PFQL

Searching the protein universe with Domain architecture

It is our hypothesis that a more accurate search in the protein universe for members of a particular protein family can be achieved by searching based on protein features, in particular based on protein domains. As the accuracy, coverage and overall quality of protein domain models in several databases, prediction tools such as transmembrane region, we expect that defining protein families based on protein domains will be the ultimate method used in the future.

PFQL exposes two classes: PFQLStream and PFQLService

The PFLQStream is a Transform stream that wraps the PFQLService for convenience. The constructor takes a set of matching rules that should describe the protein family of interest. For example, if the protein family of interest is the chemotaxis scaffold CheW, a possible rule would be match all sequences that has only one CheW domain, as defined by Pfam 30 database. In reality, the FQLStream can process multiple protein families definitions at once and therefore, the constructor takes an array of set of matching rules, each set for protein family. The rules must be initiated with the method .initRules. The output is the same information as the input plus a field FQLMatches with the indexes of the set of rules that this particular protein matches.

To learn more about how to setup rules, check out the manual