gsort 0.1.4-3build1 source package in Ubuntu

Changelog

gsort (0.1.4-3build1) mantic; urgency=medium

  * No-change rebuild with Go 1.21.

 -- Michael Hudson-Doyle <email address hidden>  Thu, 24 Aug 2023 17:16:21 +1200

Upload details

Uploaded by:
Michael Hudson-Doyle
Uploaded to:
Mantic
Original maintainer:
Debian Med
Architectures:
any all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Noble release universe golang
Mantic release universe golang

Downloads

File Size SHA-256 Checksum
gsort_0.1.4.orig.tar.gz 10.2 KiB 3a2218d992801b7e940b93a6c15e135400b04d2d75e1303b018e9db9ec7f5949
gsort_0.1.4-3build1.debian.tar.xz 4.8 KiB 6c9b03c57fbd062dc6068d3d0ef9248f4bd654155dad4fa8103de4e21f5e5604
gsort_0.1.4-3build1.dsc 2.2 KiB 8dc53022415e38ee48ffb6fbd773ad4e66686b3ad71ef1b619c24c9cc29f1ecc

View changes file

Binary packages built by this source

golang-github-brentp-gsort-dev: library package for gsort

 Package gsort is a library for sorting a stream of tab-delimited lines
 ([]bytes) (from a reader) using the amount of memory requested.
 .
 Instead of using a compare function as most sorts do, this accepts a
 user-defined function with signature: func(line []byte) []int where the
 []ints are used to determine ordering. For example if sorting
 on 2 columns, one of months and another of day of months, the function
 would replace "Jan" with 1 and "Feb" with 2 for the first column and
 just return the Atoi of the 2nd column.

gsort: sort genomic data

 gsort is a tool to sort genomic files according to a genomefile.
 For example, to sort VCF to have order:
 X, Y, 2, 1, 3, ... and the header needs to be kept at the top.
 .
 As a more likely example, if a file nneds to be sorted to match GATK
 order (1 ... X, Y, MT) which is not possible with any other sorting
 tool. With gsort one can simply place MT as the last chrom in the
 ".genome" file.
 .
 It will also be useful for getting files ready for use in bedtools.

gsort-dbgsym: debug symbols for gsort