Metadata-Version: 2.1
Name: genice2-mdanalysis
Version: 0.6
Summary: A GenIce format plugin to make a Universe of MDAnalysis.
Home-page: https://github.com/vitroid/genice-mdanalysis/
Author: Masakazu Matsumoto
Author-email: vitroid@gmail.com
License: MIT
Keywords: genice,MDAnalysis
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
Requires-Dist: mdanalysis
Requires-Dist: GenIce2 (>=2.1b0)

# [genice2-mdanalysis](https://github.com/vitroid/genice-mdanalysis/)

A [GenIce2](https://github.com/vitroid/GenIce) format plugin to make a Universe of MDAnalysis.

version 0.6

## Requirements


* mdanalysis
* GenIce2>=2.1b0

## Installation from PyPI

```shell
% pip install genice2-mdanalysis
```

## Manual Installation

### System-wide installation

```shell
% make install
```

### Private installation

Copy the files in genice2_mdanalysis/formats/ into your local formats/ folder.

## Usage

    Usage:
        % genice 1c -f mdanalysis > 1c.pickle
        % genice 1c -f mdanalysis[1c.gro]
        % genice 1c -f mdanalysis[1c.xtc]

    Options:
        filename  The file name to be written. The file type is specified by the
                  suffix. All the [file types supported by MDAnalysis](https://docs.mdanalysis.org/stable/documentation_pages/coordinates/init.html) 
                  are available. 
                  If the file name is not specified, the Universe instance of
                  MDAnalysis is written to the stdout in the python pickle
                  format.


## Test in place

```shell
% make test
```


