By resources
sessions
list-sessions ls -- List sessions managed by server
new-session new -- Create a new session
| #compdef samtools | |
| ################################################ | |
| # SAMtools commands and options are based on ver. 0.1.18 | |
| # http://samtools.sourceforge.net/samtools.shtml | |
| # | |
| # Edited by yag_ays 2011.10.25 | |
| ################################################ | |
| _samtools() { |
| use std::fmt; | |
| #[derive(Copy,Clone)] | |
| enum CellState { Dead, Alive } | |
| impl fmt::Display for CellState { | |
| fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { | |
| let printable = match *self { | |
| CellState::Alive => 'x', | |
| CellState::Dead => ' ', |
Collection of License badges for your Project's README file. Easily copy and paste the code under the badges into your Markdown files.
Comment this gist or write me an E-Mail ([email protected])
| # ---------------------------------------------------------------------------------- | |
| # r u s t f m t - C O N F I G | |
| # ================================================================================== | |
| # | |
| # Version: 0.7.1 | |
| # Author : Robbepop <[email protected]> | |
| # | |
| # A predefined .rustfmt.toml file with all configuration options and their | |
| # associated description, possible values and default values for use in other | |
| # projects. |
| #= | |
| Notes on Regular expressions in Julia: | |
| Sources: | |
| Regular Expressions Cookbook, Jan Goyvaerts & Steven Levithan. | |
| https://www.regular-expressions.info/wordboundaries.html | |
| https://www.regular-expressions.info/lookaround.html | |
| http://www.rexegg.com/regex-disambiguation.html | |
| Julialang Gitter Chat. | |
| =# |