Documentation
¶
Index ¶
Constants ¶
View Source
const VERSION = "0.2.9"
VERSION of seqkit
Variables ¶
View Source
var RootCmd = &cobra.Command{ Use: "seqkit", Short: "a cross-platform and efficient toolkit for FASTA/Q file manipulation", Long: fmt.Sprintf(`seqkit -- a cross-platform and efficient toolkit for FASTA/Q file manipulation Version: %s Author: Wei Shen <shenwei356@gmail.com> Documents : http://shenwei356.github.io/seqkit Source code: https://github.com/shenwei356/seqkit `, VERSION), }
RootCmd represents the base command when called without any subcommands
View Source
var Threads = runtime.NumCPU()
Threads for bread.NewBufferedReader()
Functions ¶
Types ¶
type BedFeature ¶
type BedFeature struct { Chr string Start int // 1based End int // end included Name *string Strand *string }
BedFeature is the gff BedFeature struct
func ReadBedFeatures ¶
func ReadBedFeatures(file string) ([]BedFeature, error)
ReadBedFeatures returns gtf BedFeatures of a file
func ReadBedFilteredFeatures ¶
func ReadBedFilteredFeatures(file string, chrs []string) ([]BedFeature, error)
ReadBedFilteredFeatures returns gtf BedFeatures of selected chrs from file
Click to show internal directories.
Click to hide internal directories.