Skip to content

Instantly share code, notes, and snippets.

@holgerbrandl
Last active April 9, 2018 14:41
Show Gist options
  • Save holgerbrandl/a417d67b56b0c50032b5c8d6a8fdc447 to your computer and use it in GitHub Desktop.
Save holgerbrandl/a417d67b56b0c50032b5c8d6a8fdc447 to your computer and use it in GitHub Desktop.
@file:DependsOn("de.mpicbg.scicomp:kutils:0.10")
@file:KotlinOpts("-J-Xmx5g")
import de.mpicbg.scicomp.bioinfo.openFasta
import java.io.File
//val inputFasta = File("test.fasta")
val inputFasta = File(args[0])
openFasta(inputFasta).shuffled().forEach{ println(it.toEntryString())}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment