gsort 0.1.4-3ubuntu0.24.04.1 source package in Ubuntu

Changelog

gsort (0.1.4-3ubuntu0.24.04.1) noble-security; urgency=medium

  * No change rebuild due to golang-1.21 update

 -- Nishit Majithia <email address hidden>  Thu, 11 Jul 2024 12:27:49 +0530

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Noble updates universe golang
Noble 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.24.04.1.debian.tar.xz 4.9 KiB b83cb7924bb4e2c32c0769f85e55f73034dad0a6e28bc8f70cdca8703435a055
gsort_0.1.4-3ubuntu0.24.04.1.dsc 2.2 KiB 5745a64c85311f3bd842051c82d61405e8060eca8b79170f9299ceef4a39d252

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