_            _    _        _         _
      /\ \         /\ \ /\ \     /\_\      / /\
      \_\ \       /  \ \\ \ \   / / /     / /  \
      /\__ \     / /\ \ \\ \ \_/ / /     / / /\ \__
     / /_ \ \   / / /\ \ \\ \___/ /     / / /\ \___\
    / / /\ \ \ / / /  \ \_\\ \ \_/      \ \ \ \/___/
   / / /  \/_// / /   / / / \ \ \        \ \ \
  / / /      / / /   / / /   \ \ \   _    \ \ \
 / / /      / / /___/ / /     \ \ \ /_/\__/ / /
/_/ /      / / /____\/ /       \ \_\\ \/___/ /
\_\/       \/_________/         \/_/ \_____\/

Enter the query into the form above. You can look for specific version of a package by using @ symbol like this: gcc@10.

API method:

GET /api/packages?search=hello&page=1&limit=20

where search is your query, page is a page number and limit is a number of items on a single page. Pagination information (such as a number of pages and etc) is returned in response headers.

If you'd like to join our channel webring send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.


julia-leftchildrightsiblingtrees 0.2.0
Propagated dependencies: julia-abstracttrees@0.4.3
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://github.com/JuliaCollections/LeftChildRightSiblingTrees.jl
Licenses: Expat
Build system: julia
Synopsis: Representation of a tree with arbitrary number of children/node
Description:

A left child, right sibling tree (frequently abbreviated as "LCRS") is a rooted tree data structure that allows a parent node to have multiple child nodes. Rather than maintain a list of children (which requires one array per node), instead it is represented as a binary tree, where the "left" branch is the first child, whose "right" branch points to its first sibling.

julia-timeroutputs 0.5.23
Propagated dependencies: julia-exprtools@0.1.8
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://github.com/KristofferC/TimerOutputs.jl
Licenses: Expat
Build system: julia
Synopsis: Formatted output of timed sections in Julia
Description:

TimerOutputs is a small Julia package that is used to generate formatted output from timings made in different sections of a program. It's main functionality is the @timeit macro, similar to the @time macro in Base except one also assigns a label to the code section being timed. Multiple calls to code sections with the same label (and in the same "scope") will accumulate the data for that label. After the program has executed, it is possible to print a nicely formatted table presenting how much time, allocations and number of calls were made in each section. The output can be customized as to only show the things you are interested in.

rmath-julia 0.3.0-1.5c5dfd6
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://github.com/JuliaStats/Rmath-julia
Licenses: GPL 2
Build system: julia
Synopsis: Rmath library from R
Description:

This is a slightly modified version of the standalone Rmath library from R, built to be used with the Rmath.jl Julia package. The main difference is that it is built to allow defining custom random number generating functions via C function pointers (see include/callback.h). When using the library, these should be defined before calling any of the random functions.

julia-relocatablefolders 0.3.0
Propagated dependencies: julia-scratch@1.1.1
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://github.com/JuliaPackaging/RelocatableFolders.jl
Licenses: Expat
Build system: julia
Synopsis: Reference packages in their project directory
Description:

An alternative to the @__DIR__ macro. Packages that wish to reference paths in their project directory run into issues with relocatability when used in conjunction with PackageCompiler.

julia-commonsolve 0.2.4
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://docs.sciml.ai/CommonSolve/stable
Licenses: Expat
Build system: julia
Synopsis: Common solve function for scientific machine learning
Description:

This holds the common solve, init, step!, and solve! commands. By using the same definition, solver libraries from other completely different ecosystems can extend the functions and thus not clash with SciML if both ecosystems export the solve command. The rules are that you must dispatch on one of your own types.

julia-lazyartifacts 1.3.0
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://github.com/JuliaPackaging/LazyArtifacts.jl
Licenses: Expat
Build system: julia
Synopsis: LazyArtifacts support for older versions of Julia
Description:

This is a wrapper package meant to bridge the gap for packages that want to use the LazyArtifacts stdlib as a dependency within packages that still support Julia versions older than 1.6.

julia-packagecompiler 1.3.0
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://github.com/JuliaLang/PackageCompiler.jl
Licenses: Expat
Build system: julia
Synopsis: Compile your Julia Package
Description:

PackageCompiler is a Julia package with two main purposes:

  • Creating custom sysimages for reduced latency when working locally with packages that has a high startup time.

  • Creating "apps" which are a bundle of files including an executable that can be sent and run on other machines without Julia being installed on that machine.

julia-precompiletools 1.1.2
Propagated dependencies: julia-preferences@1.4.3
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://github.com/JuliaLang/PrecompileTools.jl
Licenses: Expat
Build system: julia
Synopsis: Reduce time-to-first-execution of Julia code
Description:

PrecompileTools allows you to reduce the latency of the first execution of Julia code. It is applicable for package developers and for "ordinary users" in their personal workflows.

julia-setfield 1.1.1
Propagated dependencies: julia-constructionbase@1.3.0 julia-macrotools@0.5.6 julia-staticarrayscore@1.4.2
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://github.com/jw3126/Setfield.jl
Licenses: Expat
Build system: julia
Synopsis: Update deeply nested immutable structs
Description:

Update deeply nested immutable structs.

julia-terminalloggers 0.1.7
Propagated dependencies: julia-leftchildrightsiblingtrees@0.2.0 julia-progresslogging@0.1.4
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://github.com/JuliaLogging/TerminalLoggers.jl
Licenses: Expat
Build system: julia
Synopsis: Logging sinks and utilites for interactive terminals
Description:

TerminalLoggers provides a logger type TerminalLogger which can format your log messages in a richer way than the default ConsoleLogger which comes with the julia standard Logging library.

julia-contour 0.5.7
Propagated dependencies: julia-staticarrays@1.2.13
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://github.com/JuliaGeometry/Contour.jl
Licenses: Expat
Build system: julia
Synopsis: Calculating contour curves for 2D scalar fields in Julia
Description:

This package provides a generic implementation of the marching squares algorithm for tracing contour curves on a scalar 2D field.

julia-inlinestrings 1.1.2
Propagated dependencies: julia-parsers@2.2.4
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://github.com/JuliaStrings/InlineStrings.jl
Licenses: Expat
Build system: julia
Synopsis: Fixed-width string types for Julia
Description:

This package provides fixed-width string types for facilitating certain string workflows in Julia.

julia-flxqtl 0.3.0
Propagated dependencies: julia-distributions@0.25.80 julia-pyplot@2.10.0 julia-staticarrays@1.2.13 julia-statsbase@0.33.10
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://github.com/senresearch/FlxQTL.jl
Licenses: GPL 3
Build system: julia
Synopsis: QTL analysis tool by multivariate mixed linear model
Description:

FlxQTL.jl is a a package for a multivariate linear mixed model based QTL analysis tool that supports incorporating information from trait covariates such as time or different environments. The package supports computation of one-dimensional and two-dimensional multivariate genome scans, visualization of genome scans, support for LOCO, computation of kinship matrices, and support for distributed computing.

julia-http 1.0.5
Dependencies: julia-json@0.21.3 julia-bufferedstreams@1.0.0
Propagated dependencies: julia-codeczlib@0.7.0 julia-inifile@0.5.0 julia-loggingextras@1.0.0 julia-mbedtls@1.0.3 julia-simplebufferstream@1.1.0 julia-uris@1.3.0
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://juliaweb.github.io/HTTP.jl/
Licenses: Expat
Build system: julia
Synopsis: HTTP support for Julia
Description:

HTTP.jl is a Julia library for HTTP Messages, implementing both a client and a server.

julia-registryinstances 0.1.0
Propagated dependencies: julia-lazilyinitializedfields@1.2.1
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://github.com/GunnarFarneback/RegistryInstances.jl
Licenses: Expat
Build system: julia
Synopsis: Access the information in installed Julia registries
Description:

Julia's package manager stores package metadata in registries, which consist of TOML files in a directory structure.

julia-progressmeter 1.11.0
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://github.com/timholy/ProgressMeter.jl
Licenses: Expat
Build system: julia
Synopsis: Progress meter for long-running computations
Description:

julia-progressmeter provides a progress meter for long-running computations.

julia-fzf-jll 0.35.1+0
Dependencies: fzf@0.67.0
Propagated dependencies: julia-jllwrappers@1.3.0
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://github.com/JuliaBinaryWrappers/fzf_jll.jl
Licenses: Expat
Build system: julia
Synopsis: Fzf library wrappers
Description:

This package provides a wrapper for fzf.

julia-codetracking 1.3.4
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://github.com/timholy/CodeTracking.jl
Licenses: Expat
Build system: julia
Synopsis: It's editing-time, do you know where your methods are?
Description:

CodeTracking can be thought of as an extension of Julia's InteractiveUtils library. It provides an interface for obtaining:

  1. the strings and expressions of method definitions

  2. the method signatures at a specific file & line number

  3. location information for "dynamic" code that might have moved since it was first loaded

  4. a list of files that comprise a particular package.

julia-rmath 0.7.0
Dependencies: rmath-julia@0.3.0-1.5c5dfd6
Propagated dependencies: julia-rmath-jll@0.3.0+0
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://github.com/JuliaStats/Rmath.jl
Licenses: Expat
Build system: julia
Synopsis: Emulate R's d-p-q-r functions for probability distributions
Description:

This package provides an archive of functions that emulate R's d-p-q-r functions for probability distributions. It is a wrapper around rmath for Julia.

julia-visuals 0.0.0-3.e8e2b60
Dependencies: julia-plutosliderserver@0.3.11 guile@3.0.9
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://github.com/sens/visuals
Licenses:
Build system: julia
Synopsis: Visualizations using Pluto.jl notebooks
Description:

Visualizations using Pluto.jl notebooks.

julia-freetype 4.1.0
Propagated dependencies: julia-cenum@0.4.1 julia-freetype2-jll@2.13.1+0
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://github.com/JuliaGraphics/FreeType.jl
Licenses: Zlib
Build system: julia
Synopsis: FreeType 2 bindings for Julia
Description:

This package provides FreeType bindings for Julia.

julia-jlfzf 0.1.2
Propagated dependencies: julia-fzf-jll@0.35.1+0 julia-pipe@1.3.0
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://github.com/Moelf/JLFzf.jl
Licenses: Expat
Build system: julia
Synopsis: Julia bind to fzf fuzzy finder
Description:

Julia bind to fzf fuzzy finder.

julia-snoopcompilecore 1.7.2
Channel: gn-bioinformatics
Location: gn/packages/julia.scm (gn packages julia)
Home page: https://timholy.github.io/SnoopCompile.jl/dev/
Licenses: Expat
Build system: julia
Synopsis: Making packages work faster with more extensive precompilation
Description:

SnoopCompile observes the Julia compiler, causing it to record the functions and argument types it's compiling. From these lists of methods, you can generate lists of precompile directives that may reduce the latency between loading packages.

Total results: 579