8000 GitHub - holgerbrandl/kutils at v0.5
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

holgerbrandl/kutils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kutils - A collection of kotlin utilities

Download

Installation

To use them add

compile 'de.mpicbg.scicomp:kutils:0.4'

to your dependencies.

What's included?

Questions & Comments

Feel welcome to flood the isssue tracker with requests.

Examples

Most examples rely on kscript for shell integration

Filter a fasta file with a provided set of ids:

kscript - id.lst some.fasta <<"EOF"
// DEPS de.mpicbg.scicomp:kutils:0.4
import de.mpicbg.scicomp.bioinfo.openFasta
import java.io.File

val filterIds = File(args[0]).readLines()

openFasta(args[1]).
        filter { !filterIds.contains(it) }.
        forEach { print(it.toEntryString()) }
EOF

About

A random collection of kotlin utilities

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages

0