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

freesurfer-parser

v0.0.2

Published

Parse and validate freesurfer volume text files

Downloads

6

Readme

freesurfer-parser

Codeship Status for MRN-Code/freesurfer-parser

Parse a freesurfer volume file/string. By default, this will parse a string, setting the first line as the header. Any unexpected properties will be removed by default as well.

Usage

fileContent = fs.readFileSync('/path/to/file.txt').toString();
FreeSurfer = require('freesurfer-parser');

freeSurfer = new FreeSurfer({string: fileContent});

console.log(freeSurfer);

Constructor Methods

new FreeSurfer(options)

  • @param {object} options may have the following keys:

    • values: Initial values to set on the returned object. defaults to null
    • string: A string from which to parse values. defaults to null
    • headerCount: The number of lines in string that contain header data. defaults to 0
    • removeInvalidFields: Whether to strip invalid fields after parsing. _defaults to true
    • validate: Whether to validate all fields after parsing. defaults to true
  • @return {object} FreeSurfer instance

FreeSufer.setEol(value)

  • @param {string} value to be used as the line-break character when parsing. defaults to \n
  • @returns {string} the previous value used as line-break

FreeSufer.setDelimiter(value)

  • @param {string} value to be used as the delimiting character between ROI and measured volume. defaults to /\s+/ (whitespace)
  • @returns {string} the previous value

FreeSufer.setDefaultHeaderCount(value)

  • @param {int} value to be used when assigning header rows during parsing. defaults to 1
  • @returns {int} the previous value

Instance Methods

setFromString(string, headerCount)

  • @param {string} string to be parsed

  • @param {number} headerCount is the number of header lines to expect. The header lines will be assigned to the 'header' property of the instance. defaults to 0

  • @return {object} self

This method merges the key/value pairs parsed from the string with the current instance.

trimInvalidFields()

  • @return {object} self

Remove any properties whose keys are not in the validFields of the schema (see lib/schema.js)

validate()

  • @return {object} self

Assert that the current object has only the requisite properties. Throws an error if assertion fails.

rando

  • a dummy FreeSurfer generator exists in scripts/generator.js. use it if you so desire.

Contributing

Please submit any changes to this repo (including additions and subtractions from the lint config files) as pull requests.

TODO

  • TODO: add option to create from readStream