gsort 0.1.4-3ubuntu0.23.10.1 source package in Ubuntu

Changelog

gsort (0.1.4-3ubuntu0.23.10.1) mantic-security; urgency=medium

  * No change rebuild due to golang-1.20, golang-1.21 updates

 -- Nishit Majithia <email address hidden>  Mon, 22 Jan 2024 10:54:19 +0530

Upload details

Uploaded by:
Nishit Majithia
Uploaded to:
Mantic
Original maintainer:
Ubuntu Developers
Architectures:
any all
Section:
science
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic updates universe golang
Mantic security universe golang

Downloads

File Size SHA-256 Checksum
gsort_0.1.4.orig.tar.gz 10.2 KiB 3a2218d992801b7e940b93a6c15e135400b04d2d75e1303b018e9db9ec7f5949
gsort_0.1.4-3ubuntu0.23.10.1.debian.tar.xz 4.9 KiB c25adce7d2fb7a24cdee84fd070c0ff480a582cba8f8512113fbe58925eef6eb
gsort_0.1.4-3ubuntu0.23.10.1.dsc 2.2 KiB 3191c1ac2ad0d821d5b27d6070003af2d410cf06ff7635672ec203a4808c23cd

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