diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 67804796d..c5fed78ad 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,8 +25,8 @@ jobs: ignore_words_list: atleast,ninjs,simpy,proovread,namd,precice,crate,ake # filter out # docs/js/asciinema-player-2.6.1.js as it is not markdown - # version-specific/supported-software.md as the software descriptions have spelling errors - skip: './docs/js/asciinema-player-2.6.1.js,./docs/version-specific/supported-software.md,./docs/release-notes.md' + # version-specific/supported-software/* as the software descriptions have spelling errors + skip: './docs/js/asciinema-player-2.6.1.js,./docs/version-specific/supported-software/*,./docs/version-specific/supported-software/*/*.md,./docs/release-notes.md' - name: check internal links run: python ./.github/workflows/link_check.py diff --git a/docs/version-specific/index.md b/docs/version-specific/index.md index f430e16ef..09bd62c60 100644 --- a/docs/version-specific/index.md +++ b/docs/version-specific/index.md @@ -8,7 +8,7 @@ * [List of available easyblocks](easyblocks.md) * [List of available toolchain options](toolchain-opts.md) * [List of known toolchains](toolchains.md) -* [List of supported software](supported-software.md) +* [List of supported software](supported-software/index.md) * [Overview of EasyBuild configuration options](eb-help.md) * [Overview of generic easyblocks](generic-easyblocks.md) * [Templates available for easyconfig files](easyconfig-templates.md) diff --git a/docs/version-specific/software-markdown-pages.py b/docs/version-specific/software-markdown-pages.py new file mode 100644 index 000000000..b1f19e1c5 --- /dev/null +++ b/docs/version-specific/software-markdown-pages.py @@ -0,0 +1,132 @@ +import argparse +import json +import shutil +import sys +from collections import defaultdict +from pathlib import Path + + +MKDOCS_SEARCH_PRIORITY = """--- +search: + boost: 0.5 +--- +""" + + +def generate_quick_links_line(chars, level, current=None): + """ + Generate links to index page for each character + :param characters: Initial characters to generate links for + """ + up = '/'.join(['..'] * level) or '.' + links = [] + if level > 0: + links.append(f"[(all)]({up}/index.md)") + for char in chars: + if char == current: + links.append(f'*{char}*') + else: + links.append(f"[{char}]({up}/{char}/index.md)") + links_txt = ' - '.join(links) + return f"*(quick links: {links_txt})*\n\n" + + +def output_markdown(processed, output_base_path): + """ + Output markdown pages (index and per letter directories, each with an index and page per software) + :param processed: Processed data to output (dictionary - letter -> software -> list of versions) + :param output_base_path: Pathlib object for base path of output + """ + pkg_cnt = sum(len(v) for v in processed.values()) + letters = sorted(processed.keys()) + + with open(output_base_path / 'index.md', 'w') as top_page: + top_page.write(MKDOCS_SEARCH_PRIORITY) + top_page.write("# List of supported software\n\n") + top_page.write(generate_quick_links_line(letters, 0)) + top_page.write(f"EasyBuild supports {pkg_cnt} different software packages (incl. toolchains, bundles):\n\n") + + for letter in processed: + top_page.write(f" * [{letter}]({letter}/index.md)\n") + + letter_dir = output_base_path / letter + letter_dir.mkdir() + with open(letter_dir / 'index.md', 'w') as letter_page: + letter_page.write(MKDOCS_SEARCH_PRIORITY) + letter_page.write(f"# List of supported software ({letter})\n\n") + letter_page.write(generate_quick_links_line(letters, 1, current=letter) + "\n\n") + + for software in processed[letter]: + top_page.write(f" * [{software}]({letter}/{software}.md)\n") + letter_page.write(f" * [{software}]({software}.md)\n") + + versionsuffix = any(v['versionsuffix'] for v in processed[letter][software]) + + with open(letter_dir / f'{software}.md', 'w') as software_page: + software_page.write(MKDOCS_SEARCH_PRIORITY) + software_page.write(f"# {software}\n\n") + software_page.write(f"{processed[letter][software][0]['description']}\n\n") + software_page.write(f"*homepage*: <{processed[letter][software][0]['homepage']}>\n\n") + + if versionsuffix: + software_page.write("version | versionsuffix | toolchain\n") + software_page.write("--------|---------------|----------\n") + else: + software_page.write("version | toolchain\n") + software_page.write("--------|----------\n") + + for version in processed[letter][software]: + software_page.write(f"``{version['version']}`` | ") + if versionsuffix: + if version['versionsuffix']: + software_page.write(f"``{version['versionsuffix']}``") + software_page.write(" | ") + software_page.write(f"``{version['toolchain']}``\n") + + software_page.write("\n\n" + generate_quick_links_line(letters, 1)) + + letter_page.write("\n\n" + generate_quick_links_line(letters, 1, current=letter)) + + top_page.write("\n\n" + generate_quick_links_line(letters, 0)) + + +def generate_markdown_pages(jsonfile, output_base, delete_existing): + """ + Generate markdown + :param jsonfile: input file (json file) + :param output_base: base directory for output files + :param delete_existing: delete the output directory (if it exists) + """ + if jsonfile is None: + sys.stderr.write("ERROR: No input JSON file specified, it is required!\n") + sys.exit(1) + + with open(jsonfile) as f: + data = json.load(f) + + processed = defaultdict(lambda: defaultdict(list)) + for software in data: + initial = software['name'][0].lower() + if initial.isnumeric(): + initial = '0' + processed[initial][software['name']].append(software) + + output_base_path = Path(output_base) + + if delete_existing and output_base_path.exists() and output_base_path.is_dir(): + shutil.rmtree(output_base_path) + + output_base_path.mkdir(parents=True) + output_markdown(processed, output_base_path) + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(prog='Software Markdown Pages', + description='Generate Markdown pages of software from JSON file') + parser.add_argument('-j', '--jsonfile', default=None, help='Input JSON file') + parser.add_argument('-o', '--output-base', default='output', help='Base directory for output files') + parser.add_argument('--delete-existing-output', action='store_true', + help='Delete output base directory (if it exists)') + args = parser.parse_args() + + generate_markdown_pages(args.jsonfile, args.output_base, args.delete_existing_output) diff --git a/docs/version-specific/supported-software.md b/docs/version-specific/supported-software.md deleted file mode 100644 index dfaf8ecaa..000000000 --- a/docs/version-specific/supported-software.md +++ /dev/null @@ -1,44897 +0,0 @@ -# List of supported software - -!!! note - - This page contains a lot of information, it may take a while to load. - - -EasyBuild supports 3552 different software packages (incl. toolchains, bundles): - -[a](#a) - [b](#b) - [c](#c) - [d](#d) - [e](#e) - [f](#f) - [g](#g) - [h](#h) - [i](#i) - [j](#j) - [k](#k) - [l](#l) - [m](#m) - [n](#n) - [o](#o) - [p](#p) - [q](#q) - [r](#r) - [s](#s) - [t](#t) - [u](#u) - [v](#v) - [w](#w) - [x](#x) - [y](#y) - [z](#z) - - -## 3 - - -[3d-dna](#3d-dna) - [3to2](#3to2) - - -### 3d-dna - -3D de novo assembly (3D DNA) pipeline - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|----------------- -``180922``|``-Python-2.7.15``|``GCCcore/8.2.0`` - -### 3to2 - -lib3to2 is a set of fixers that are intended to backport code written for Python version 3.x into Python version 2.x. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``1.1.1``|``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``1.1.1``|``-Python-2.7.13``|``intel/2017a`` - -## 4 - - -[4ti2](#4ti2) - - -### 4ti2 - -A software package for algebraic, geometric and combinatorial problems on linear spaces - -*homepage*: - -version |toolchain -----------|----------------------------------------------------- -``1.6.9`` |``GCC/11.3.0``, ``GCC/8.2.0-2.31.1``, ``intel/2018b`` -``1.6.10``|``GCC/13.2.0`` - -## A - - -[ABAQUS](#abaqus) - [ABINIT](#abinit) - [ABRA2](#abra2) - [ABRicate](#abricate) - [Abseil](#abseil) - [abTEM](#abtem) - [ABySS](#abyss) - [ack](#ack) - [ACTC](#actc) - [ada](#ada) - [AdapterRemoval](#adapterremoval) - [ADDA](#adda) - [ADF](#adf) - [ADIOS](#adios) - [adjustText](#adjusttext) - [ADMIXTURE](#admixture) - [ADOL-C](#adol-c) - [Advisor](#advisor) - [AEDT](#aedt) - [affinity](#affinity) - [AFNI](#afni) - [AGAT](#agat) - [AGeNT](#agent) - [AGFusion](#agfusion) - [AICSImageIO](#aicsimageio) - [AIMAll](#aimall) - [aiohttp](#aiohttp) - [ALADIN](#aladin) - [ALAMODE](#alamode) - [Albacore](#albacore) - [Albumentations](#albumentations) - [alevin-fry](#alevin-fry) - [ALFA](#alfa) - [Alfred](#alfred) - [ALL](#all) - [alleleCount](#allelecount) - [alleleIntegrator](#alleleintegrator) - [Allinea](#allinea) - [ALLPATHS-LG](#allpaths-lg) - [almosthere](#almosthere) - [Alpha](#alpha) - [AlphaFold](#alphafold) - [AlphaPulldown](#alphapulldown) - [ALPS](#alps) - [alsa-lib](#alsa-lib) - [AMAPVox](#amapvox) - [Amara](#amara) - [amask](#amask) - [Amber](#amber) - [AmberMini](#ambermini) - [AmberTools](#ambertools) - [AMD-LibM](#amd-libm) - [AMD-RNG](#amd-rng) - [AMD-SecureRNG](#amd-securerng) - [AMD-uProf](#amd-uprof) - [amdahl](#amdahl) - [AMGX](#amgx) - [AMICA](#amica) - [AMOS](#amos) - [AMPHORA2](#amphora2) - [AMPL-MP](#ampl-mp) - [amplimap](#amplimap) - [AMPtk](#amptk) - [AMRFinderPlus](#amrfinderplus) - [AmrPlusPlus](#amrplusplus) - [AMS](#ams) - [Anaconda2](#anaconda2) - [Anaconda3](#anaconda3) - [anadama2](#anadama2) - [aNCI](#anci) - [andi](#andi) - [ANGEL](#angel) - [angsd](#angsd) - [ANIcalculator](#anicalculator) - [anndata](#anndata) - [Annif](#annif) - [Annocript](#annocript) - [annovar](#annovar) - [ANSYS](#ansys) - [ANSYS_CFD](#ansys_cfd) - [ant](#ant) - [ANTIC](#antic) - [antiSMASH](#antismash) - [ANTLR](#antlr) - [ANTs](#ants) - [anvio](#anvio) - [any2fasta](#any2fasta) - [AOCC](#aocc) - [AOFlagger](#aoflagger) - [AOMP](#aomp) - [APBS](#apbs) - [apex](#apex) - [APR](#apr) - [APR-util](#apr-util) - [AptaSUITE](#aptasuite) - [ARAGORN](#aragorn) - [Arb](#arb) - [Arcade-Learning-Environment](#arcade-learning-environment) - [arcasHLA](#arcashla) - [ARCH](#arch) - [Archive-Zip](#archive-zip) - [ArchR](#archr) - [archspec](#archspec) - [AreTomo2](#aretomo2) - [ARGoS](#argos) - [argtable](#argtable) - [aria2](#aria2) - [Arlequin](#arlequin) - [Armadillo](#armadillo) - [arosics](#arosics) - [ARPACK++](#arpack++) - [arpack-ng](#arpack-ng) - [ArrayFire](#arrayfire) - [Arriba](#arriba) - [Arrow](#arrow) - [arrow-R](#arrow-r) - [ART](#art) - [Artemis](#artemis) - [artic-ncov2019](#artic-ncov2019) - [ARTS](#arts) - [ArviZ](#arviz) - [ARWEN](#arwen) - [ASAP](#asap) - [ASAP3](#asap3) - [ASCAT](#ascat) - [ASE](#ase) - [ASF-SearchAPI](#asf-searchapi) - [ASHS](#ashs) - [Aspera-CLI](#aspera-cli) - [Aspera-Connect](#aspera-connect) - [assembly-stats](#assembly-stats) - [assimp](#assimp) - [Assimulo](#assimulo) - [ASTRID](#astrid) - [astro-tulips](#astro-tulips) - [astropy](#astropy) - [at-spi2-atk](#at-spi2-atk) - [at-spi2-core](#at-spi2-core) - [ATAT](#atat) - [ATK](#atk) - [ATLAS](#atlas) - [atomate](#atomate) - [AtomPAW](#atompaw) - [atools](#atools) - [atropos](#atropos) - [ATSAS](#atsas) - [attr](#attr) - [attrdict](#attrdict) - [attrdict3](#attrdict3) - [augur](#augur) - [AUGUSTUS](#augustus) - [Austin](#austin) - [AUTO-07p](#auto-07p) - [Autoconf](#autoconf) - [Autoconf-archive](#autoconf-archive) - [AutoDock](#autodock) - [AutoDock-GPU](#autodock-gpu) - [AutoDock-Vina](#autodock-vina) - [AutoDockSuite](#autodocksuite) - [AutoGeneS](#autogenes) - [AutoGrid](#autogrid) - [Automake](#automake) - [AutoMap](#automap) - [autopep8](#autopep8) - [Autotools](#autotools) - [Avogadro2](#avogadro2) - [avro-cpp](#avro-cpp) - [awscli](#awscli) - [Ax](#ax) - [axel](#axel) - - -### ABAQUS - -Finite Element Analysis software for modeling, visualization and best-in-class implicit and explicit dynamics FEA. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|---------- -``6.12.1``|``-linux-x86_64``|``system`` -``6.13.5``|``-linux-x86_64``|``system`` -``6.14.1``|``-linux-x86_64``|``system`` -``2017`` |``-hotfix-1721`` |``system`` -``2018`` |``-hotfix-1806`` |``system`` -``2020`` | |``system`` -``2021`` |``-hotfix-2132`` |``system`` -``2022`` | |``system`` -``2022`` |``-hotfix-2214`` |``system`` -``2022`` |``-hotfix-2223`` |``system`` - -### ABINIT - -ABINIT is a package whose main program allows one to find the total energy, charge density and electronic structure of systems made of electrons and nuclei (molecules and periodic solids) within Density Functional Theory (DFT), using pseudopotentials and a planewave or wavelet basis. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------------|----------------------------------------------------------------- -``7.0.3`` |``-x86_64_linux_gnu4.5``|``system`` -``7.0.5`` |``-x86_64_linux_gnu4.5``|``system`` -``7.2.1`` |``-x86_64_linux_gnu4.5``|``system`` -``7.10.5``| |``intel/2016.02-GCC-4.9`` -``7.10.5``|``-libxc`` |``intel/2016.02-GCC-4.9`` -``8.0.8`` | |``intel/2016a`` -``8.0.8b``| |``foss/2016b``, ``intel/2016b`` -``8.2.2`` | |``foss/2016b``, ``intel/2016b`` -``8.4.4`` | |``intel/2017b`` -``8.6.3`` | |``intel/2018a`` -``8.10.2``| |``intel/2018b`` -``8.10.3``| |``intel/2018b`` -``9.2.1`` | |``foss/2019b``, ``intel/2019b``, ``intel/2020a`` -``9.4.1`` | |``foss/2020b``, ``intel/2020a``, ``intel/2020b`` -``9.4.2`` | |``foss/2021a``, ``intel/2021a`` -``9.6.2`` | |``foss/2022a``, ``intel/2021a``, ``intel/2021b``, ``intel/2022a`` -``9.10.3``| |``intel/2022a`` - -### ABRA2 - -Assembly Based ReAligner - -*homepage*: - -version |toolchain ---------|----------------------------- -``2.22``|``iccifort/2019.5.281`` -``2.23``|``GCC/10.2.0``, ``GCC/9.3.0`` - -### ABRicate - -Mass screening of contigs for antimicrobial and virulence genes - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|--------------- -``0.9.9``| |``gompi/2019b`` -``0.9.9``|``-Perl-5.28.1``|``gompi/2019a`` -``1.0.0``| |``gompi/2021a`` - -### Abseil - -Abseil is an open-source collection of C++ library code designed to augment the C++ standard library. The Abseil library code is collected from Google's own C++ code base, has been extensively tested and used in production, and is the same code we depend on in our daily coding lives. - -*homepage*: - -version |toolchain ---------------|-------------------------------------- -``20210324.2``|``GCCcore/11.2.0`` -``20230125.2``|``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``20230125.3``|``GCCcore/12.3.0`` -``20240116.1``|``GCCcore/13.2.0`` - -### abTEM - -abTEM provides a Python API for running simulations of Transmission Electron Microscopy images. - -*homepage*: - -version |versionsuffix |toolchain -------------|---------------|---------------------------------- -``1.0.0b24``|``-ASE-3.22.0``|``fosscuda/2020b`` -``1.0.0b26``|``-ASE-3.22.0``|``foss/2020b``, ``fosscuda/2020b`` - -### ABySS - -Assembly By Short Sequences - a de novo, parallel, paired-end sequence assembler - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------------- -``1.9.0``|``foss/2016a`` -``2.0.2``|``foss/2016b``, ``foss/2018a``, ``gompi/2019a``, ``intel/2016b`` -``2.0.3``|``foss/2017b``, ``intel/2017b`` -``2.1.5``|``foss/2019b`` -``2.2.5``|``foss/2020b`` -``2.3.7``|``foss/2023a`` - -### ack - -ack is a tool like grep, optimized for programmers - -*homepage*: - -version |toolchain ----------|------------------ -``2.14`` |``system`` -``3.4.0``|``GCCcore/10.2.0`` -``3.5.0``|``GCCcore/10.3.0`` - -### ACTC - -ACTC converts independent triangles into triangle strips or fans. - -*homepage*: - -version|toolchain --------|----------------------------------------------------------------------------------------------------------------------------------- -``1.1``|``GCCcore/10.2.0``, ``GCCcore/11.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``intel/2016b`` - -### ada - -Performs discrete, real, and gentle boost under both exponential and logistic loss on a given data set. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|--------------- -``2.0-5``|``-R-3.4.0`` |``intel/2017a`` - -### AdapterRemoval - -AdapterRemoval searches for and removes remnant adapter sequences from High-Throughput Sequencing (HTS) data and (optionally) trims low quality bases from the 3' end of reads following adapter removal. - -*homepage*: - -version |toolchain ----------|---------------------------------------------- -``2.2.0``|``foss/2016b`` -``2.2.2``|``foss/2018b`` -``2.3.1``|``foss/2018b`` -``2.3.2``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0`` -``2.3.3``|``GCC/11.3.0`` - -### ADDA - -ADDA is an open-source parallel implementation of the discrete dipole approximation, capable to simulate light scattering by particles of arbitrary shape and composition in a wide range of particle sizes. - -*homepage*: - -version |toolchain ----------|-------------- -``1.3b4``|``foss/2019a`` - -### ADF - -ADF is an accurate, parallelized, powerful computational chemistry program to understand and predict chemical structure and reactivity with density functional theory (DFT). - -*homepage*: - -version |versionsuffix|toolchain ---------------------------------|-------------|--------------- -``2009.01a.pc64_linux.intelmpi``| |``system`` -``2014.02`` | |``system`` -``2014.11.r48287`` | |``intel/2016a`` -``2016.101`` | |``system`` -``2019.303`` |``-intelmpi``|``system`` - -### ADIOS - -The Adaptable IO System (ADIOS) provides a simple, flexible way for scientists to describe the data in their code that may need to be written, read, or processed outside of the running simulation. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|-------------- -``1.13.1`` |``-Python-2.7.15``|``foss/2019a`` -``1.13.1`` |``-Python-3.8.2`` |``foss/2020a`` -``20210804``|``-Python-3.8.2`` |``foss/2020a`` - -### adjustText - -A small library for automatically adjustment of text position in matplotlib plots to minimize overlaps. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------------------ -``0.7.3``| |``foss/2021b``, ``foss/2023a`` -``0.7.3``|``-Python-3.6.6``|``foss/2018b`` -``0.7.3``|``-Python-3.7.2``|``intel/2019a`` -``1.1.1``| |``foss/2023a`` - -### ADMIXTURE - -ADMIXTURE is a software tool for maximum likelihood estimation of individual ancestries from multilocus SNP genotype datasets. It uses the same statistical model as STRUCTURE but calculates estimates much more rapidly using a fast numerical optimization algorithm. - -*homepage*: - -version |toolchain ----------|---------- -``1.3.0``|``system`` - -### ADOL-C - -The package ADOL-C (Automatic Differentiation by OverLoading in C++) facilitates the evaluation of first and higher derivatives of vector functions that are defined by computer programs written in C or C++. The resulting derivative evaluation routines may be called from C/C++, Fortran, or any other language that can be linked with C. - -*homepage*: - -version |toolchain ----------|--------------- -``2.7.0``|``gompi/2019a`` -``2.7.2``|``gompi/2020a`` - -### Advisor - -Vectorization Optimization and Thread Prototyping - Vectorize & thread code or performance “dies” - Easy workflow + data + tips = faster code faster - Prioritize, Prototype & Predict performance gain - -*homepage*: - -version |toolchain -----------------|---------- -``2016_update2``|``system`` -``2017_update1``|``system`` -``2018_update1``|``system`` -``2018_update3``|``system`` -``2019_update2``|``system`` -``2019_update3``|``system`` -``2019_update5``|``system`` -``2021.2.0`` |``system`` -``2021.4.0`` |``system`` -``2022.1.0`` |``system`` -``2023.0.0`` |``system`` -``2023.2.0`` |``system`` - -### AEDT - -The Ansys Electronics Desktop (AEDT) is a platform that enables true electronics system design. AEDT provides access to the Ansys gold-standard electromagnetics simulation solutions such as Ansys HFSS, Ansys Maxwell, Ansys Q3D Extractor, Ansys SIwave, and Ansys Icepak using electrical CAD (ECAD) and mechanical CAD (MCAD) workflows. - -*homepage*: - -version |toolchain -----------|---------- -``2024R1``|``system`` - -### affinity - -A small C++ wrapper for managing Linux CPU sets and CPU affinity. It also includes a tool to report binding, which is useful for testing different binding options - -*homepage*: - -version |toolchain -------------|------------------------------- -``20230524``|``foss/2022a``, ``intel/2022a`` - -### AFNI - -AFNI is a set of C programs for processing, analyzing, and displaying functional MRI (FMRI) data - a technique for mapping human brain activity. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|------------------------------- -``18.1.09`` |``-Python-3.6.4`` |``intel/2018a`` -``18.3.00`` |``-Python-3.6.6`` |``foss/2018b`` -``19.0.01`` |``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``24.0.02`` | |``foss/2023a`` -``20160329``|``-Python-2.7.11``|``intel/2016a`` - -### AGAT - -AGAT: Another GTF/GFF Analysis Toolkit. Suite of tools to handle gene annotations in any GTF/GFF format. - -*homepage*: - -version |toolchain ----------|-------------- -``0.9.2``|``GCC/11.2.0`` -``1.1.0``|``GCC/12.2.0`` - -### AGeNT - -The Agilent Genomics NextGen Toolkit (AGeNT) is a Java-based software module that processes the read sequences from targeted high-throughput sequencing data generated by sequencing Agilent SureSelect and HaloPlex libraries. The Trimmer utility of the AGeNT module processes the read sequences to identify and remove the adaptor sequences and extracts dual molecular barcodes (for SureSelect XT HS2). The LocatIt utility of the AGeNT module processes the Molecular Barcode (MBC) information from HaloPlex HS, SureSelect XT HS, and SureSelect XT HS2 Illumina sequencing runs with options to either mark or merge duplicate reads and output in BAM file format. The Illumina InterOp libraries are a set of common routines used for reading InterOp metric files produced by Illumina sequencers including NextSeq 1k/2k. These libraries are backwards compatible and capable of supporting prior releases of the software, with one exception: GA systems have been excluded. - -*homepage*: - -version |toolchain ----------|---------- -``3.0.6``|``system`` - -### AGFusion - -AGFusion is a python package for annotating gene fusions from the human or mouse genomes. - -*homepage*: - -version|versionsuffix |toolchain --------|-----------------|-------------- -``1.2``|``-Python-3.7.2``|``foss/2019a`` - -### AICSImageIO - -Image Reading, Metadata Conversion, and Image Writing for Microscopy Images in Pure Python - -*homepage*: - -version |toolchain -----------|-------------- -``4.14.0``|``foss/2022a`` - -### AIMAll - -AIMAll is an easy to use, accurate, reliable and efficient quantum chemistry software package for performing comprehensive, quantitative and visual QTAIM analyses of molecular systems - starting from molecular wavefunction data. - -*homepage*: - -version |versionsuffix |toolchain -------------|----------------|--------------- -``19.10.12``|``-linux_64bit``|``intel/2020b`` - -### aiohttp - -Asynchronous HTTP client/server framework for asyncio and Python. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------------------------------- -``3.5.4``|``-Python-3.6.6``|``foss/2018b`` -``3.8.1``| |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``3.8.3``| |``GCCcore/11.3.0`` -``3.8.5``| |``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``3.9.5``| |``GCCcore/13.2.0`` - -### ALADIN - -ALADIN was entirely built on the notion of compatibility with its mother system, IFS/ARPEG. The latter, a joint development between the European Centre for Medium-Range Weather Forecasts (ECMWF) and Meteo-France, was only meant to consider global Numerical Weather Prediction applications; hence the idea, for ALADIN, to complement the IFS/ARPEGE project with a limited area model (LAM) version, while keeping the differences between the two softwares as small as possible. - -*homepage*: - -version |toolchain ----------------|--------------- -``36t1_op2bf1``|``intel/2016a`` - -### ALAMODE - -ALAMODE is an open source software designed for analyzing lattice anharmonicity and lattice thermal conductivity of solids. By using an external DFT package such as VASP and Quantum ESPRESSO, you can extract harmonic and anharmonic force constants straightforwardly with ALAMODE. Using the calculated anharmonic force constants, you can also estimate lattice thermal conductivity, phonon linewidth, and other anharmonic phonon properties from first principles. - -*homepage*: - -version |toolchain ----------|-------------- -``1.4.2``|``foss/2022b`` - -### Albacore - -Albacore is a software project that provides an entry point to the Oxford Nanopore basecalling algorithms. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``2.0.2``|``-Python-3.6.1``|``intel/2017a`` - -### Albumentations - -Albumentations is a Python library for fast and flexible image augmentations - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``1.1.0``| |``foss/2021b`` -``1.1.0``|``-CUDA-11.3.1``|``foss/2021a`` -``1.3.0``| |``foss/2022a`` -``1.3.0``|``-CUDA-11.7.0``|``foss/2022a`` - -### alevin-fry - -alevin-fry is an efficient and flexible tool for processing single-cell sequencing data, currently focused on single-cell transcriptomics and feature barcoding. - -*homepage*: - -version |toolchain ----------|------------------ -``0.4.3``|``GCCcore/11.2.0`` -``0.6.0``|``GCCcore/10.3.0`` -``0.9.0``|``GCCcore/13.2.0`` - -### ALFA - -ALFA provides a global overview of features distribution composing NGS dataset(s). Given a set of aligned reads (BAM files) and an annotation file (GTF format), the tool produces plots of the raw and normalized distributions of those reads among genomic categories (stop codon, 5'-UTR, CDS, intergenic, etc.) and biotypes (protein coding genes, miRNA, tRNA, etc.). Whatever the sequencing technique, whatever the organism. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``1.1.1``|``-Python-3.7.2``|``foss/2019a`` - -### Alfred - -Alfred is an efficient and versatile command-line application that computes multi-sample quality control metrics in a read-group aware manner. Alfred supports read counting, feature annotation and haplotype-resolved consensus computation using multiple sequence alignments. - -*homepage*: - -version |toolchain ----------|-------------- -``0.2.6``|``GCC/11.2.0`` - -### ALL - -A Load Balancing Library (ALL) aims to provide an easy way to include dynamic domain-based load balancing into particle based simulation codes. The library is developed in the Simulation Laboratory Molecular Systems of the Jülich Supercomputing Centre at Forschungszentrum Jülich. - -*homepage*: - -version |toolchain ----------|------------------------------ -``0.9.2``|``foss/2022b``, ``foss/2023a`` - -### alleleCount - -The alleleCount package primarily exists to prevent code duplication between some other projects, specifically AscatNGS and Battenberg. As of v4 the perl code wraps the C implementation of allele counting code for BAM/CRAM processing. - -*homepage*: - -version |toolchain ----------|----------------- -``4.0.0``|``GCCcore/6.4.0`` -``4.2.1``|``GCC/11.3.0`` -``4.3.0``|``GCC/12.2.0`` - -### alleleIntegrator - -R package to generate allele specific counts for scRNA data and use it to identify cancer cells - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``0.8.8``|``-R-4.2.1`` |``foss/2022a`` -``0.8.8``|``-R-4.2.2`` |``foss/2022b`` - -### Allinea - -The Allinea environment is an essential toolkit for developers and computational scientists looking to get results faster. - -*homepage*: - -version |toolchain --------------------------------|---------- -``4.1-32834-Redhat-5.7-x86_64``|``system`` -``4.1-32834-Redhat-6.0-x86_64``|``system`` -``6.1.1-Ubuntu-14.04-x86_64`` |``system`` - -### ALLPATHS-LG - -ALLPATHS-LG, the new short read genome assembler. - -*homepage*: - -version |toolchain ----------|-------------- -``52488``|``foss/2016a`` - -### almosthere - -Progress indicator C library. ATHR is a simple yet powerful progress indicator library that works on Windows, Linux, and macOS. It is non-blocking as the progress update is done via a dedicated, lightweight thread, as to not impair the performance of the calling program. - -*homepage*: - -version |toolchain -----------|------------------ -``1.0.1`` |``GCCcore/7.3.0`` -``1.0.10``|``GCCcore/9.3.0`` -``2.0.2`` |``GCCcore/10.2.0`` - -### Alpha - -Alpha is a tool designed for detailed comparative study of bacteriophage genomes. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|-------------- -``20200430``|``-Python-2.7.16``|``foss/2019b`` - -### AlphaFold - -AlphaFold can predict protein structures with atomic accuracy even where no similar structure is known. This package of AlphaFold contains patches for ColabFold. - -*homepage*: - -version |versionsuffix |toolchain ----------|--------------------------|---------------------------------- -``2.0.0``| |``foss/2020b``, ``fosscuda/2020b`` -``2.0.1``| |``foss/2020b``, ``fosscuda/2020b`` -``2.1.1``| |``fosscuda/2020b`` -``2.1.2``| |``foss/2021a`` -``2.1.2``|``-CUDA-11.3.1`` |``foss/2021a`` -``2.1.2``|``-TensorFlow-2.5.0`` |``foss/2020b``, ``fosscuda/2020b`` -``2.2.2``| |``foss/2021a`` -``2.2.2``|``-CUDA-11.3.1`` |``foss/2021a`` -``2.3.0``|``-CUDA-11.4.1`` |``foss/2021b`` -``2.3.1``| |``foss/2022a`` -``2.3.1``|``-CUDA-11.7.0`` |``foss/2022a`` -``2.3.4``|``-CUDA-11.7.0-ColabFold``|``foss/2022a`` -``2.3.4``|``-ColabFold`` |``foss/2022a`` - -### AlphaPulldown - -AlphaPulldown is a Python package that streamlines protein-protein interaction screens and high-throughput modelling of higher-order oligomers using AlphaFold-Multimer - -*homepage*: - -version |toolchain -----------|---------------------------------- -``0.30.4``|``foss/2020b``, ``fosscuda/2020b`` - -### ALPS - -The ALPS project (Algorithms and Libraries for Physics Simulations) is an open source effort aiming at providing high-end simulation codes for strongly correlated quantum mechanical systems as well as C++ libraries for simplifying the development of such code. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``2.2.b4``|``-Python-2.7.11``|``intel/2016a`` -``2.3.0`` |``-Python-2.7.12``|``foss/2016b`` -``2.3.0`` |``-Python-3.5.2`` |``foss/2016b`` - -### alsa-lib - -The Advanced Linux Sound Architecture (ALSA) provides audio and MIDI functionality to the Linux operating system. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------- -``1.2.4``|``GCCcore/9.3.0`` -``1.2.8``|``GCCcore/10.2.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``1.2.9``|``GCCcore/12.3.0`` - -### AMAPVox - -LiDAR data voxelisation software - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|---------- -``1.9.4``|``-Java-11`` |``system`` - -### Amara - -Library for XML processing in Python, designed to balance the native idioms of Python with the native character of XML. - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|------------------------------- -``1.2.0.2``|``-Python-2.7.15``|``foss/2019a``, ``intel/2019a`` - -### amask - -amask is a set of tools to to determine the affinity of MPI processes and OpenMP threads in a parallel environment. - -*homepage*: - -version |toolchain -------------|-------------- -``20171106``|``foss/2018a`` -``20190404``|``foss/2018b`` - -### Amber - -Amber (originally Assisted Model Building with Energy Refinement) is software for performing molecular dynamics and structure prediction. - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------------------------------------|------------------------------------------------------------------------ -``14`` |``-AmberTools-15-patchlevel-13-13`` |``intel/2016a`` -``16`` |``-AmberTools-16-patchlevel-5-14`` |``iomkl/2016.07`` -``16`` |``-AmberTools-16-patchlevel-5-14-CUDA`` |``iomkl/2016.09-GCC-4.9.3-2.25`` -``16`` |``-AmberTools-16-patchlevel-5-14-serial`` |``iomkl/2016.07`` -``16`` |``-AmberTools-17-patchlevel-10-15`` |``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b`` -``16`` |``-AmberTools-17-patchlevel-10-15-Python-2.7.14``|``foss/2017b``, ``fosscuda/2017b``, ``intel/2017b``, ``intelcuda/2017b`` -``16`` |``-AmberTools-17-patchlevel-8-12`` |``intel/2017b`` -``18`` |``-AmberTools-18-patchlevel-10-8`` |``foss/2018b``, ``fosscuda/2018b``, ``intel/2017b`` -``18`` |``-AmberTools-19-patchlevel-12-17-Python-2.7.16``|``foss/2019b``, ``fosscuda/2019b`` -``20.11``|``-AmberTools-20.15-Python-3.8.2`` |``foss/2020a``, ``fosscuda/2020a`` -``20.11``|``-AmberTools-21.3`` |``foss/2020b``, ``fosscuda/2020b`` -``22.0`` |``-AmberTools-22.3`` |``foss/2021b`` -``22.0`` |``-AmberTools-22.3-CUDA-11.4.1`` |``foss/2021b`` -``22.4`` |``-AmberTools-22.5-CUDA-11.7.0`` |``foss/2022a`` - -### AmberMini - -A stripped-down set of just antechamber, sqm, and tleap. - -*homepage*: - -version |toolchain ------------|-------------------------------- -``16.16.0``|``intel/2017b``, ``intel/2020a`` - -### AmberTools - -AmberTools consists of several independently developed packages that work well by themselves, and with Amber itself. The suite can also be used to carry out complete molecular dynamics simulations, with either explicit water or generalized Born solvent models. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------------------------- -``17`` | |``intel/2017b``, ``intel/2018a`` -``17`` |``-Python-2.7.14``|``foss/2018a`` -``20`` |``-Python-3.8.2`` |``intel/2020a`` -``21`` | |``foss/2021a``, ``intel/2021b`` -``21.12``| |``foss/2021b`` -``22.3`` | |``foss/2021b`` - -### AMD-LibM - -AMD LibM is a software library containing a collection of basic math functions optimized for x86-64 processor based machines. - -*homepage*: - -version |toolchain ------------|------------------ -``3.2.2`` |``GCC/7.3.0-2.30`` -``3.6.0-4``|``GCC/9.3.0`` - -### AMD-RNG - -AMD Random Number Generator Library is a pseudorandom number generator library. - -*homepage*: - -version |toolchain ----------|------------------ -``1.0`` |``GCC/7.3.0-2.30`` -``2.2-4``|``GCC/9.3.0`` - -### AMD-SecureRNG - -The AMD Secure Random Number Generator (RNG) is a library that provides APIs to access the cryptographically secure random numbers generated by AMD’s hardware-based random number generator implementation. - -*homepage*: - -version |toolchain ----------|------------------ -``1.0`` |``GCC/7.3.0-2.30`` -``2.2-4``|``GCC/9.3.0`` - -### AMD-uProf - -AMD uProf is a performance analysis tool for applications running on Windows, Linux & FreeBSD operating systems. It allows developers to better understand the runtime performance of their application and to identify ways to improve its performance. - -*homepage*: - -version |toolchain ------------|---------- -``3.4.502``|``system`` -``3.5.671``|``system`` -``4.1.424``|``system`` - -### amdahl - -This Python module contains a pseudo-application that can be used as a black box to reproduce Amdahl's Law. It does not do real calculations, nor any real communication, so can easily be overloaded. - -*homepage*: - -version |toolchain ----------|--------------- -``0.3.1``|``gompi/2023a`` - -### AMGX - -Distributed multigrid linear solver library on GPU - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``2.4.0``|``-CUDA-12.1.1``|``foss/2023a`` - -### AMICA - -Code for AMICA: Adaptive Mixture ICA with shared components - -*homepage*: - -version |toolchain --------------|--------------- -``2024.1.19``|``intel/2023a`` - -### AMOS - -The AMOS consortium is committed to the development of open-source whole genome assembly software - -*homepage*: - -version |toolchain ----------|---------------------------------------------- -``3.1.0``|``foss/2018b``, ``foss/2021b``, ``foss/2023a`` - -### AMPHORA2 - -An Automated Phylogenomic Inference Pipeline for Bacterial and Archaeal Sequences. - -*homepage*: - -version |versionsuffix |toolchain -------------|--------------------------|--------------- -``20190730``|``-Java-13-pthreads-avx2``|``gompi/2020b`` - -### AMPL-MP - -An open-source library for mathematical programming. - -*homepage*: - -version |toolchain ----------|----------------- -``3.1.0``|``GCCcore/6.4.0`` - -### amplimap - -amplimap is a command-line tool to automate the processing and analysis of data from targeted next-generation sequencing (NGS) experiments with PCR-based amplicons or capture-based enrichment systems. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``0.4.16``|``-Python-3.6.6``|``foss/2018b`` - -### AMPtk - -AMPtk is a series of scripts to process NGS amplicon data using USEARCH and VSEARCH, it can also be used to process any NGS amplicon data and includes databases setup for analysis of fungal ITS, fungal LSU, bacterial 16S, and insect COI amplicons. - -*homepage*: - -version |toolchain ----------|-------------- -``1.5.4``|``foss/2021b`` - -### AMRFinderPlus - -This software and the accompanying database are designed to find acquired antimicrobial resistance genes and some point mutations in protein or assembled nucleotide sequences. - -*homepage*: - -version |toolchain ------------|-------------------------------- -``3.11.18``|``gompi/2021b``, ``gompi/2022b`` - -### AmrPlusPlus - -AmrPlusPlus v2.0 can process the raw data from the sequencer, identify the fragments of DNA, and count them. It also provides a count of the polymorphisms that occur in each DNA fragment with respect to the reference database. - -*homepage*: - -version |toolchain -----------------|------------- -``2.0-20200114``|``GCC/8.3.0`` - -### AMS - -The Amsterdam Modeling Suite (AMS) provides a comprehensive set of modules for computational chemistry and materials science, from quantum mechanics to fluid thermodynamics. - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|--------------- -``2020.102``|``-intelmpi``|``iimpi/2020b`` -``2022.102``|``-intelmpi``|``iimpi/2021b`` -``2023.101``|``-intelmpi``|``iimpi/2022a`` -``2023.104``|``-intelmpi``|``iimpi/2022b`` - -### Anaconda2 - -Built to complement the rich, open source Python community, the Anaconda platform provides an enterprise-ready data analytics platform that empowers companies to adopt a modern open data science analytics architecture. - -*homepage*: - -version |toolchain ------------|---------- -``4.0.0`` |``system`` -``4.2.0`` |``system`` -``4.4.0`` |``system`` -``5.0.1`` |``system`` -``5.1.0`` |``system`` -``5.3.0`` |``system`` -``2018.12``|``system`` -``2019.03``|``system`` -``2019.07``|``system`` -``2019.10``|``system`` - -### Anaconda3 - -Built to complement the rich, open source Python community, the Anaconda platform provides an enterprise-ready data analytics platform that empowers companies to adopt a modern open data science analytics architecture. - -*homepage*: - -version |toolchain --------------|---------- -``4.0.0`` |``system`` -``4.2.0`` |``system`` -``4.4.0`` |``system`` -``5.0.1`` |``system`` -``5.1.0`` |``system`` -``5.3.0`` |``system`` -``2018.12`` |``system`` -``2019.03`` |``system`` -``2019.07`` |``system`` -``2019.10`` |``system`` -``2020.02`` |``system`` -``2020.07`` |``system`` -``2020.11`` |``system`` -``2021.05`` |``system`` -``2021.11`` |``system`` -``2022.05`` |``system`` -``2022.10`` |``system`` -``2023.03-1``|``system`` -``2023.07-2``|``system`` -``2023.09-0``|``system`` -``2024.02-1``|``system`` - -### anadama2 - -AnADAMA2 is the next generation of AnADAMA (Another Automated Data Analysis Management Application). AnADAMA is a tool to create reproducible workflows and execute them efficiently. - -*homepage*: - -version |toolchain -----------|-------------- -``0.10.0``|``foss/2022a`` - -### aNCI - -Non-covalent interaction (NCI) for MD trajectories - -*homepage*: - -version|toolchain --------|----------------------- -``2.0``|``iccifort/2019.5.281`` - -### andi - -This is the andi program for estimating the evolutionary distance between closely related genomes. These distances can be used to rapidly infer phylogenies for big sets of genomes. Because andi does not compute full alignments, it is so efficient that it scales even up to thousands of bacterial genomes. - -*homepage*: - -version |toolchain ---------|-------------- -``0.13``|``foss/2018b`` - -### ANGEL - -ANGEL: Robust Open Reading Frame prediction - -*homepage*: - -version|versionsuffix |toolchain --------|-----------------|-------------- -``3.0``|``-Python-3.7.2``|``foss/2019a`` - -### angsd - -Program for analysing NGS data. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``0.910``|``foss/2016a`` -``0.921``|``foss/2018a`` -``0.925``|``foss/2018b`` -``0.933``|``GCC/8.3.0``, ``iccifort/2019.5.281`` -``0.935``|``GCC/10.2.0`` -``0.940``|``GCC/11.2.0``, ``GCC/12.3.0`` - -### ANIcalculator - -This tool will calculate the bidirectional average nucleotide identity (gANI) and Alignment Fraction (AF) between two genomes. Required input is the full path to the fna file (nucleotide sequence of genes in fasta format) of each query genome. Either the rRNA and tRNA genes can be excluded, or provided in a list with the -ignoreList option. This is necessary as the presence of tRNA and/or rRNA genes in the fna will artificially inflate the ANI. - -*homepage*: - -version|toolchain --------|-------------------------------------- -``1.0``|``GCCcore/10.3.0``, ``GCCcore/11.3.0`` - -### anndata - -anndata is a Python package for handling annotated data matrices in memory and on disk, positioned between pandas and xarray - -*homepage*: - -version |toolchain -----------------|------------------------------ -``0.8.0`` |``foss/2022a`` -``0.9.2`` |``foss/2021a``, ``foss/2021b`` -``0.10.5.post1``|``foss/2023a`` - -### Annif - -Annif is a multi-algorithm automated subject indexing tool for libraries, archives and museums. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------------------- -``0.40.0``|``-Python-3.7.2``|``foss/2019a``, ``intel/2019a`` - -### Annocript - -Annocript is a pipeline for the annotation of de-novo generated transcriptomes. It executes blast analysis with UniProt, NCBI Conserved Domain Database and Nucleotide division adding also annotations from Gene Ontology, the Enzyme Commission and UniPathways. Annocript also gives information about the longest ORF and the non-coding potential using external software. Annocript is also capable to identify putative long non-coding RNAs by using an heuristic based on homology and sequence features. - -*homepage*: - -version|toolchain --------|-------------- -``2.0``|``foss/2022a`` - -### annovar - -ANNOVAR is an efficient software tool to utilize update-to-date information to functionally annotate genetic variants detected from diverse genomes (including human genome hg18, hg19, hg38, as well as mouse, worm, fly, yeast and many others). - -*homepage*: - -version |versionsuffix |toolchain --------------|----------------|------------------ -``2016Feb01``|``-Perl-5.22.1``|``foss/2016a`` -``20191024`` |``-Perl-5.28.1``|``GCCcore/8.2.0`` -``20200607`` |``-Perl-5.34.0``|``GCCcore/11.2.0`` - -### ANSYS - -ANSYS simulation software enables organizations to confidently predict how their products will operate in the real world. We believe that every product is a promise of something greater. - -*homepage*: - -version |toolchain -----------|---------- -``15.0`` |``system`` -``2022R2``|``system`` -``2023R1``|``system`` - -### ANSYS_CFD - -ANSYS computational fluid dynamics (CFD) simulation software allows you to predict, with confidence, the impact of fluid flows on your product throughout design and manufacturing as well as during end use. ANSYS renowned CFD analysis tools include the widely used and well-validated ANSYS Fluent and ANSYS CFX. - -*homepage*: - -version |toolchain ---------|---------- -``16.2``|``system`` -``17.0``|``system`` - -### ant - -Apache Ant is a Java library and command-line tool whose mission is to drive processes described in build files as targets and extension points dependent upon each other. The main known usage of Ant is the build of Java applications. - -*homepage*: - -version |versionsuffix |toolchain ------------|-------------------|---------- -``1.8.4`` |``-Java-1.7.0_10`` |``system`` -``1.8.4`` |``-Java-1.7.0_21`` |``system`` -``1.9.0`` |``-Java-1.7.0_15`` |``system`` -``1.9.0`` |``-Java-1.7.0_21`` |``system`` -``1.9.3`` |``-Java-1.7.0_60`` |``system`` -``1.9.3`` |``-Java-1.7.0_79`` |``system`` -``1.9.6`` |``-Java-1.7.0_75`` |``system`` -``1.9.6`` |``-Java-1.7.0_79`` |``system`` -``1.9.6`` |``-Java-1.7.0_80`` |``system`` -``1.9.6`` |``-Java-1.8.0_66`` |``system`` -``1.9.6`` |``-Java-1.8.0_72`` |``system`` -``1.9.6`` |``-Java-1.8.0_77`` |``system`` -``1.9.7`` |``-Java-1.8.0_92`` |``system`` -``1.10.0`` |``-Java-1.8.0_112``|``system`` -``1.10.1`` |``-Java-1.8`` |``system`` -``1.10.1`` |``-Java-1.8.0_121``|``system`` -``1.10.1`` |``-Java-1.8.0_144``|``system`` -``1.10.1`` |``-Java-1.8.0_152``|``system`` -``1.10.1`` |``-Java-1.8.0_162``|``system`` -``1.10.5`` |``-Java-1.8`` |``system`` -``1.10.6`` |``-Java-1.8`` |``system`` -``1.10.7`` |``-Java-11`` |``system`` -``1.10.8`` |``-Java-11`` |``system`` -``1.10.9`` |``-Java-11`` |``system`` -``1.10.11``|``-Java-11`` |``system`` -``1.10.11``|``-Java-13`` |``system`` -``1.10.12``|``-Java-11`` |``system`` -``1.10.12``|``-Java-17`` |``system`` -``1.10.14``|``-Java-11`` |``system`` -``1.10.14``|``-Java-21`` |``system`` - -### ANTIC - -Antic is an algebraic number theory library. - -*homepage*: - -version |toolchain ----------|-------------- -``0.2.5``|``gfbf/2022a`` - -### antiSMASH - -antiSMASH allows the rapid genome-wide identification, annotation and analysis of secondary metabolite biosynthesis gene clusters in bacterial and fungal genomes. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``5.1.2``|``-Python-3.7.4``|``foss/2019b`` -``5.2.0``| |``foss/2020b`` -``6.0.1``| |``foss/2020b`` - -### ANTLR - -ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is a language tool that provides a framework for constructing recognizers, compilers, and translators from grammatical descriptions containing Java, C#, C++, or Python actions. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------------------------------------------------------------------------------------------------------------- -``2.7.7``| |``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``foss/2017b``, ``foss/2018b``, ``foss/2019a``, ``intel/2017b`` -``2.7.7``|``-Java-11`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``2.7.7``|``-Python-2.7.11``|``foss/2016a`` -``2.7.7``|``-Python-2.7.13``|``intel/2017a`` -``2.7.7``|``-Python-2.7.14``|``foss/2018a``, ``intel/2017b`` -``2.7.7``|``-Python-3.6.4`` |``intel/2018a`` - -### ANTs - -ANTs extracts information from complex datasets that include imaging. ANTs is useful for managing, interpreting and visualizing multidimensional data. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``2.2.0``|``-Python-2.7.12``|``foss/2016b`` -``2.3.0``|``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``2.3.1``|``-Python-3.6.6`` |``foss/2018b`` -``2.3.2``|``-Python-3.7.4`` |``foss/2019b`` -``2.3.5``| |``foss/2021a`` -``2.5.0``| |``foss/2022b`` - -### anvio - -An analysis and visualization platform for 'omics data. - -*homepage*: - -version|versionsuffix |toolchain --------|-----------------|--------------- -``6.1``|``-Python-3.7.4``|``intel/2019b`` -``8`` | |``foss/2022b`` - -### any2fasta - -Convert various sequence formats to FASTA - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|------------------------------------------------------------------------------------------------ -``0.4.2``| |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``0.4.2``|``-Perl-5.28.1``|``GCCcore/8.2.0`` - -### AOCC - -AMD Optimized C/C++ & Fortran compilers (AOCC) based on LLVM 13.0 - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------- -``2.3.0``|``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``3.0.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``3.1.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``3.2.0``|``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``4.0.0``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### AOFlagger - -The AOFlagger is a tool that can find and remove radio-frequency interference (RFI) in radio astronomical observations. It can make use of Lua scripts to make flagging strategies flexible, and the tools are applicable to a wide set of telescopes. - -*homepage*: - -version |toolchain ----------|------------------------------ -``3.4.0``|``foss/2022a``, ``foss/2023b`` - -### AOMP - -AMD fork of LLVM, setup for OpenMP offloading to Accelerators - -*homepage*: - -version |toolchain -----------|------------------------------------- -``13.0-2``|``GCCcore/10.2.0``, ``gcccuda/2020a`` - -### APBS - -APBS is a software package for modeling biomolecular solvation through solution of the Poisson-Boltzmann equation (PBE), one of the most popular continuum models for describing electrostatic interactions between molecular solutes in salty, aqueous media. - -*homepage*: - -version|versionsuffix |toolchain --------|------------------------|---------- -``1.4``|``-linux-static-x86_64``|``system`` - -### apex - -A PyTorch Extension: Tools for easy mixed precision and distributed training in Pytorch - -*homepage*: - -version |versionsuffix |toolchain -------------|-----------------|------------------ -``20200325``|``-Python-3.7.4``|``fosscuda/2019b`` -``20210420``| |``fosscuda/2020b`` - -### APR - -Apache Portable Runtime (APR) libraries. - -*homepage*: - -version |toolchain ----------|-------------------------------------------------------------------------------------------------------------------- -``1.6.3``|``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``iomkl/2018a`` -``1.7.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/8.2.0``, ``GCCcore/9.3.0`` -``1.7.4``|``GCCcore/12.3.0`` - -### APR-util - -Apache Portable Runtime (APR) util libraries. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.6.1``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/9.3.0``, ``iomkl/2018a`` -``1.6.3``|``GCCcore/12.3.0`` - -### AptaSUITE - -A full-featured bioinformatics software collection for the comprehensive analysis of aptamers in HT-SELEX experiments - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|---------- -``0.9.4``|``-Java-11`` |``system`` - -### ARAGORN - -a program to detect tRNA genes and tmRNA genes in nucleotide sequences - -*homepage*: - -version |toolchain -----------|--------------------------------------- -``1.2.38``|``foss/2016b``, ``iccifort/2019.5.281`` -``1.2.41``|``foss/2021b`` - -### Arb - -Arb is a C library for arbitrary-precision interval arithmetic. It has full support for both real and complex numbers. The library is thread-safe, portable, and extensively tested. - -*homepage*: - -version |toolchain -----------|-------------------------------------------------------------------------------- -``2.16.0``|``GCC/7.3.0-2.30``, ``GCC/8.2.0-2.31.1``, ``iccifort/2018.3.222-GCC-7.3.0-2.30`` -``2.17.0``|``GCC/8.3.0`` -``2.19.0``|``GCC/10.3.0`` -``2.22.1``|``foss/2021b`` -``2.23.0``|``gfbf/2022a`` - -### Arcade-Learning-Environment - -The Arcade Learning Environment (ALE) is a simple framework that allows researchers and hobbyists to develop AI agents for Atari 2600 games. It is built on top of the Atari 2600 emulator Stella and separates the details of emulation from agent design. This video depicts over 50 games currently supported in the ALE. - -*homepage*: - -version |toolchain ----------|-------------- -``0.7.3``|``foss/2021b`` -``0.8.1``|``foss/2022a`` - -### arcasHLA - -arcasHLA performs high resolution genotyping for HLA class I and class II genes from RNA sequencing, supporting both paired and single-end samples. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``0.2.0``|``-Python-3.7.4``|``foss/2019b`` - -### ARCH - -Autoregressive Conditional Heteroskedasticity (ARCH) and other tools for financial econometrics, written in Python (with Cython and/or Numba used to improve performance). - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``4.5.0``|``-Python-3.6.4``|``intel/2018a`` - -### Archive-Zip - -Provide an interface to ZIP archive files. - -*homepage*: - -version |toolchain ---------|-------------------------------------------------------------------------------------------------- -``1.68``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0`` - -### ArchR - -ArchR is a full-featured R package for processing and analyzing single-cell ATAC-seq data. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``1.0.1``|``-R-4.1.2`` |``foss/2021b`` -``1.0.2``|``-R-4.2.2`` |``foss/2022b`` -``1.0.2``|``-R-4.3.2`` |``foss/2023a`` - -### archspec - -A library for detecting, labeling, and reasoning about microarchitectures - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------------------------------- -``0.1.0``|``-Python-3.7.4``|``GCCcore/8.3.0`` -``0.1.0``|``-Python-3.8.2``|``GCCcore/9.3.0`` -``0.1.2``| |``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``0.1.3``| |``GCCcore/11.2.0`` -``0.1.4``| |``GCCcore/11.3.0`` -``0.2.0``| |``GCCcore/12.2.0`` -``0.2.1``| |``GCCcore/12.3.0`` -``0.2.2``| |``GCCcore/13.2.0`` - -### AreTomo2 - -AreTomo2, a multi-GPU accelerated software package that fully automates motion- corrected marker-free tomographic alignment and reconstruction, now includes robust GPU-accelerated CTF (Contrast Transfer Function) estimation in a single package. AreTomo2 is part of our endeavor to build a fully-automated high- throughput processing pipeline that enables real-time reconstruction of tomograms in parallel with tomographic data collection. It strives to be fast and accurate, as well as provides for easy integration into subtomogram processing workflows by generating IMod compatible files containing alignment and CTF parameters needed to bootstrap subtomogram averaging. AreTomo2 can also be used for on-the-fly reconstruction of tomograms and CTF estimation in parallel with tilt series collection, enabling real-time assessment of sample quality and adjustment of collection parameters - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|------------------ -``1.0.0``|``-CUDA-12.1.1``|``GCCcore/12.3.0`` - -### ARGoS - -A parallel, multi-engine simulator for heterogeneous swarm robotics - -*homepage*: - -version |versionsuffix |toolchain -----------------|--------------|-------------- -``3.0.0-beta53``|``-Lua-5.2.4``|``foss/2018b`` -``3.0.0-beta59``| |``GCC/11.2.0`` - -### argtable - -Argtable is an ANSI C library for parsing GNU style command line options with a minimum of fuss. - -*homepage*: - -version |toolchain ---------|------------------------------------------------------------------------------------------------------------------------------------------------------------------ -``2.13``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``foss/2016b``, ``foss/2018b``, ``intel/2018a``, ``intel/2018b`` - -### aria2 - -aria2 is a lightweight multi-protocol & multi-source command-line download utility. - -*homepage*: - -version |toolchain -----------|------------------ -``1.35.0``|``GCCcore/10.3.0`` -``1.36.0``|``GCCcore/11.3.0`` - -### Arlequin - -Arlequin: An Integrated Software for Population Genetics Data Analysis - -*homepage*: - -version |toolchain ------------|-------------- -``3.5.2.2``|``foss/2019b`` - -### Armadillo - -Armadillo is an open-source C++ linear algebra library (matrix maths) aiming towards a good balance between speed and ease of use. Integer, floating point and complex numbers are supported, as well as a subset of trigonometric and statistics functions. - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|------------------------------- -``7.600.2``|``-Python-2.7.12``|``foss/2016b`` -``7.800.0``|``-Python-2.7.12``|``intel/2016b`` -``7.950.1``|``-Python-2.7.12``|``intel/2016b`` -``8.300.1``| |``foss/2017b``, ``intel/2017b`` -``8.400.0``| |``foss/2018a`` -``9.600.5``| |``foss/2018b`` -``9.700.2``| |``foss/2019a`` -``9.880.1``| |``foss/2020a`` -``9.900.1``| |``foss/2019b``, ``foss/2020a`` -``10.5.3`` | |``foss/2020b`` -``10.7.5`` | |``foss/2021a`` -``11.4.3`` | |``foss/2022a``, ``foss/2022b`` -``12.6.2`` | |``foss/2023a`` -``12.8.0`` | |``foss/2023b`` - -### arosics - -AROSICS is a python package to perform automatic subpixel co-registration of two satellite image datasets based on an image matching approach working in the frequency domain, combined with a multistage workflow for effective detection of false-positives. - -*homepage*: - -version |toolchain ----------|-------------- -``1.7.6``|``foss/2021a`` - -### ARPACK++ - -Arpackpp is a C++ interface to the ARPACK Fortran package, which implements the implicit restarted Arnoldi method for iteratively solving large-scale sparse eigenvalue problems. - -*homepage*: - -version |toolchain ---------------|-------------- -``2018.03.26``|``foss/2017b`` - -### arpack-ng - -ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems. - -*homepage*: - -version |toolchain ----------|-------------------------------------------------------------------------------- -``3.3.0``|``foss/2016a``, ``intel/2016a`` -``3.4.0``|``foss/2016b``, ``foss/2017a``, ``intel/2016b``, ``intel/2017a`` -``3.5.0``|``foss/2017b``, ``foss/2018a``, ``foss/2018b``, ``intel/2017a``, ``intel/2017b`` -``3.6.2``|``intel/2018a`` -``3.7.0``|``foss/2019a``, ``foss/2019b``, ``foss/2020a``, ``intel/2019b``, ``intel/2020a`` -``3.8.0``|``foss/2020b``, ``foss/2021a``, ``foss/2021b``, ``foss/2022a``, ``foss/2022b`` -``3.9.0``|``foss/2023a``, ``foss/2023b`` -``3.9.1``|``foss/2023b`` - -### ArrayFire - -ArrayFire is a general-purpose library that simplifies the process of developing software that targets parallel and massively-parallel architectures including CPUs, GPUs, and other hardware acceleration devices. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``3.6.4``| |``foss/2018b`` -``3.6.4``|``-CUDA-9.2.88``|``foss/2018b`` - -### Arriba - -Arriba is a command-line tool for the detection of gene fusions from RNA-Seq data. It was developed for the use in a clinical research setting. Therefore, short runtimes and high sensitivity were important design criteria. - -*homepage*: - -version |toolchain ----------|------------------------------ -``1.1.0``|``foss/2018b`` -``2.1.0``|``GCC/10.2.0``, ``GCC/10.3.0`` -``2.2.1``|``GCC/11.2.0`` -``2.3.0``|``GCC/11.2.0`` -``2.4.0``|``GCC/12.2.0`` - -### Arrow - -Apache Arrow (incl. PyArrow Python bindings), a cross-language development platform for in-memory data. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|---------------------------------------------------------------- -``0.7.1`` |``-Python-3.6.3`` |``intel/2017b`` -``0.12.0``|``-Python-2.7.15``|``foss/2018b``, ``intel/2018b`` -``0.12.0``|``-Python-3.6.6`` |``intel/2018b`` -``0.16.0``|``-Python-3.7.4`` |``foss/2019b``, ``intel/2019b`` -``0.17.1``| |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b`` -``0.17.1``|``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``6.0.0`` | |``foss/2021a``, ``foss/2021b`` -``6.0.1`` | |``foss/2021a`` -``8.0.0`` | |``foss/2021a``, ``foss/2021b``, ``foss/2022.05``, ``foss/2022a`` -``11.0.0``| |``gfbf/2022b`` -``14.0.1``| |``gfbf/2023a`` - -### arrow-R - -R interface to the Apache Arrow C++ library - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|-------------- -``0.17.1`` |``-R-4.0.0`` |``foss/2020a`` -``6.0.0.2`` |``-R-4.1.0`` |``foss/2021a`` -``6.0.0.2`` |``-R-4.1.2`` |``foss/2021b`` -``6.0.0.2`` |``-R-4.2.0`` |``foss/2021b`` -``8.0.0`` |``-R-4.2.1`` |``foss/2022a`` -``11.0.0.3``|``-R-4.2.2`` |``foss/2022b`` -``14.0.1`` |``-R-4.3.2`` |``foss/2023a`` - -### ART - -ART is a set of simulation tools to generate synthetic next-generation sequencing reads - -*homepage*: - -version |toolchain ---------------|---------------------------------- -``2016.06.05``|``GCCcore/6.4.0``, ``intel/2016b`` - -### Artemis - -The Artemis Software is a set of software tools for genome browsing and annotation. It includes: Artemis, Artemis Comparison Tool (ACT), BamView and DNAPlotter. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|---------- -``18.0.2``|``-Java-11`` |``system`` -``18.0.3``|``-Java-11`` |``system`` -``18.2.0``|``-Java-11`` |``system`` - -### artic-ncov2019 - -Initial implementation of an ARTIC bioinformatics platform for nanopore sequencing of nCoV2019 novel coronavirus. - -*homepage*: - -version |versionsuffix |toolchain ---------------|-----------------|-------------- -``2020.04.13``|``-Python-3.6.6``|``foss/2018b`` -``2021.06.24``| |``foss/2020b`` - -### ARTS - -ARTS is a radiative transfer model for the millimeter and sub-millimeter spectral range. There are a number of models mostly developed explicitly for the different sensors. - -*homepage*: - -version |toolchain -----------|--------------- -``2.2.64``|``gompi/2019a`` - -### ArviZ - -Exploratory analysis of Bayesian models with Python - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|----------------------------------------------- -``0.7.0`` |``-Python-3.7.4``|``foss/2019b``, ``intel/2019b`` -``0.11.1``| |``intel/2020b`` -``0.11.4``| |``foss/2021b``, ``intel/2021b`` -``0.12.1``| |``foss/2021a``, ``foss/2022a``, ``intel/2022a`` -``0.16.1``| |``foss/2023a`` - -### ARWEN - -ARWEN, tRNA detection in metazoan mitochondrial sequences - -*homepage*: - -version |toolchain ----------|----------------- -``1.2.3``|``GCCcore/7.3.0`` - -### ASAP - -ASAP focuses on fast and fluid image viewing with an easy-to-use interface for making annotations. It consists of two main components: an IO library for reading and writing multi-resolution images and a viewer component for visualizing such images. - -*homepage*: - -version|versionsuffix |toolchain --------|----------------|-------------- -``2.0``|``-CUDA-11.3.1``|``foss/2021a`` -``2.1``| |``foss/2022a`` - -### ASAP3 - -ASAP is a calculator for doing large-scale classical molecular dynamics within the Campos Atomic Simulation Environment (ASE). - -*homepage*: - -version |versionsuffix |toolchain ------------|-----------------|------------------------------------------------ -``3.10.7`` |``-Python-3.5.2``|``foss/2016b`` -``3.10.7`` |``-Python-3.6.2``|``foss/2017b`` -``3.10.8`` |``-Python-3.5.2``|``foss/2016b`` -``3.10.8`` |``-Python-3.6.2``|``foss/2017b`` -``3.10.8`` |``-Python-3.6.3``|``foss/2017b`` -``3.10.10``|``-Python-3.6.6``|``foss/2018b``, ``intel/2018b``, ``iomkl/2018b`` -``3.11.10``|``-Python-3.7.2``|``foss/2019a``, ``intel/2019a`` -``3.12.2`` |``-ASE-3.21.1`` |``foss/2020b``, ``intel/2020b`` -``3.12.7`` |``-ASE-3.21.1`` |``foss/2020b``, ``intel/2020b`` -``3.13.2`` | |``foss/2023a`` -``3.13.3`` | |``foss/2023a``, ``intel/2023a`` - -### ASCAT - -ASCAT is a method to derive copy number profiles of tumor cells, accounting for normal cell admixture and tumor aneuploidy. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``3.1.2``|``-R-4.2.1`` |``foss/2022a`` -``3.1.2``|``-R-4.2.2`` |``foss/2022b`` - -### ASE - -ASE is a python package providing an open source Atomic Simulation Environment in the Python scripting language. - -*homepage*: - -version |versionsuffix |toolchain ---------------|------------------|---------------------------------------------------------------------------------------------------------------------------------- -``3.9.1.4567``|``-Python-2.7.11``|``intel/2016a`` -``3.10.0`` |``-Python-2.7.11``|``intel/2016.02-GCC-4.9`` -``3.11.0`` |``-Python-2.7.12``|``intel/2016b`` -``3.13.0`` |``-Python-2.7.12``|``foss/2016b`` -``3.13.0`` |``-Python-2.7.13``|``intel/2017a`` -``3.15.0`` |``-Python-2.7.12``|``foss/2016b`` -``3.15.0`` |``-Python-2.7.14``|``intel/2017b`` -``3.15.0`` |``-Python-3.5.2`` |``foss/2016b`` -``3.15.0`` |``-Python-3.6.2`` |``foss/2017b`` -``3.15.0`` |``-Python-3.6.3`` |``foss/2017b`` -``3.16.2`` |``-Python-3.6.4`` |``iomkl/2018.02``, ``iomkl/2018a`` -``3.16.2`` |``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b``, ``iomkl/2018b`` -``3.17.0`` |``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b``, ``iomkl/2018b`` -``3.17.0`` |``-Python-3.7.2`` |``foss/2019a``, ``intel/2019a`` -``3.18.0`` |``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``3.18.0`` |``-Python-3.7.2`` |``foss/2019a``, ``intel/2019a`` -``3.19.0`` |``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``3.19.0`` |``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b``, ``intel/2019b`` -``3.19.0`` |``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``3.20.1`` | |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b`` -``3.20.1`` |``-Python-3.7.4`` |``foss/2019b``, ``intel/2019b`` -``3.20.1`` |``-Python-3.8.2`` |``intel/2020a`` -``3.21.1`` | |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b`` -``3.21.1`` |``-Python-3.8.2`` |``foss/2020a`` -``3.22.0`` | |``foss/2020b``, ``foss/2021a``, ``fosscuda/2020b``, ``intel/2020b``, ``intel/2021a`` -``3.22.1`` | |``foss/2021b``, ``foss/2022a``, ``gfbf/2022b``, ``gfbf/2023a``, ``gomkl/2021a``, ``iimkl/2023a``, ``intel/2021b``, ``intel/2022a`` - -### ASF-SearchAPI - -asf_search is a Python module for performing searches of the ASF catalog. In addition, it offers baseline functionality and download support. - -*homepage*: - -version |toolchain ----------|-------------- -``6.5.0``|``foss/2022a`` - -### ASHS - -Automatic Segmentation of Hippocampal Subfields (ASHS) - -*homepage*: - -version |toolchain --------------------|---------- -``rev103_20140612``|``system`` - -### Aspera-CLI - -IBM Aspera Command-Line Interface (the Aspera CLI) is a collection of Aspera tools for performing high-speed, secure data transfers from the command line. The Aspera CLI is for users and organizations who want to automate their transfer workflows. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|---------- -``3.7.2``|``.354.010c3b8`` |``system`` -``3.9.0``|``.1326.6985b21``|``system`` -``3.9.6``|``.1467.159c5b1``|``system`` - -### Aspera-Connect - -Connect is an install-on-demand Web browser plug-in that facilitates high-speed uploads and downloads with an Aspera transfer server. - -*homepage*: - -version |toolchain ----------|---------- -``3.6.1``|``system`` -``3.9.6``|``system`` - -### assembly-stats - -Get assembly statistics from FASTA and FASTQ files. - -*homepage*: - -version |toolchain ----------|------------------ -``1.0.1``|``GCCcore/11.3.0`` - -### assimp - -Open Asset Import Library (assimp) is a library to import and export various 3d-model-formats including scene-post-processing to generate missing render data. - -*homepage*: - -version |toolchain ----------|------------------ -``5.0.1``|``GCCcore/8.3.0`` -``5.2.5``|``GCCcore/12.3.0`` -``5.3.1``|``GCCcore/13.2.0`` - -### Assimulo - -Assimulo is a simulation package for solving ordinary differential equations. - -*homepage*: - -version|versionsuffix |toolchain --------|------------------|--------------- -``2.9``|``-Python-2.7.15``|``intel/2018b`` - -### ASTRID - -ASTRID-2 is a method for estimating species trees from gene trees. - -*homepage*: - -version |toolchain ----------|--------------- -``2.2.1``|``gompi/2019a`` - -### astro-tulips - -tulips creates diagrams of the structure and evolution of stars. It creates plots and movies based on output from the MESA stellar evolution code - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.1``|``foss/2022a`` - -### astropy - -The Astropy Project is a community effort to develop a common core package for Astronomy in Python and foster an ecosystem of interoperable astronomy packages. The Astropy community is committed to supporting diversity and inclusion. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|---------------------------------------------------- -``2.0.12``|``-Python-2.7.15``|``foss/2018b``, ``intel/2018b`` -``2.0.14``| |``foss/2019a`` -``4.0.1`` |``-Python-3.7.4`` |``foss/2019b`` -``4.0.1`` |``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``4.2.1`` | |``foss/2020b``, ``intel/2020b``, ``intelcuda/2020b`` -``4.3.1`` | |``foss/2021a``, ``foss/2021b``, ``intel/2021a`` -``5.0.4`` | |``foss/2021a`` -``5.1.1`` | |``foss/2022a``, ``intel/2022a`` -``5.2.2`` | |``gfbf/2022b`` - -### at-spi2-atk - -AT-SPI 2 toolkit bridge - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------------------------------------------------------------------ -``2.26.3``|``fosscuda/2018b`` -``2.32.0``|``GCCcore/8.2.0`` -``2.34.1``|``GCCcore/8.3.0`` -``2.34.2``|``GCCcore/9.3.0`` -``2.38.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### at-spi2-core - -Assistive Technology Service Provider Interface. - -*homepage*: - -version |toolchain ------------|------------------ -``2.26.3`` |``fosscuda/2018b`` -``2.32.0`` |``GCCcore/8.2.0`` -``2.34.0`` |``GCCcore/8.3.0`` -``2.36.0`` |``GCCcore/9.3.0`` -``2.38.0`` |``GCCcore/10.2.0`` -``2.40.2`` |``GCCcore/10.3.0`` -``2.40.3`` |``GCCcore/11.2.0`` -``2.44.1`` |``GCCcore/11.3.0`` -``2.46.0`` |``GCCcore/12.2.0`` -``2.49.91``|``GCCcore/12.3.0`` -``2.50.0`` |``GCCcore/13.2.0`` - -### ATAT - -The Alloy-Theoretic Automated Toolkit (ATAT) is a generic name that refers to a collection of alloy theory tools - -*homepage*: - -version |toolchain ---------|----------------- -``3.36``|``GCCcore/9.3.0`` - -### ATK - -ATK provides the set of accessibility interfaces that are implemented by other toolkits and applications. Using the ATK interfaces, accessibility tools have full access to view and control running applications. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------ -``2.18.0``|``intel/2016a`` -``2.20.0``|``foss/2016a``, ``intel/2016a`` -``2.22.0``|``foss/2016b``, ``intel/2016b`` -``2.26.0``|``intel/2017a`` -``2.26.1``|``foss/2018b``, ``intel/2017b`` -``2.27.1``|``foss/2017b``, ``intel/2017b`` -``2.28.1``|``foss/2018a``, ``foss/2018b``, ``fosscuda/2018b``, ``intel/2018a`` -``2.32.0``|``GCCcore/8.2.0`` -``2.34.1``|``GCCcore/8.3.0`` -``2.36.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/9.3.0`` -``2.38.0``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### ATLAS - -ATLAS (Automatically Tuned Linear Algebra Software) is the application of the AEOS (Automated Empirical Optimization of Software) paradigm, with the present emphasis on the Basic Linear Algebra Subprograms (BLAS), a widely used, performance-critical, linear algebra kernel library. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------ -``3.10.2``|``-LAPACK-3.6.1``|``GCC/5.4.0-2.26`` - -### atomate - -atomate has implementations of FireWorks workflows for Materials Science. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``0.4.4``|``-Python-2.7.13``|``intel/2017a`` - -### AtomPAW - -AtomPAW is a Projector-Augmented Wave Dataset Generator that can be used both as a standalone program and a library. - -*homepage*: - -version |toolchain ------------|--------------- -``4.1.0.5``|``intel/2018b`` -``4.1.0.6``|``intel/2018b`` - -### atools - -Tools to make using job arrays a lot more convenient. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|---------------------------------------------------------- -``1.4.2``|``-Python-2.7.12``|``intel/2016b`` -``1.4.6``|``-Python-2.7.16``|``GCCcore/8.3.0`` -``1.4.8``|``-Python-2.7.18``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``1.5.1``| |``GCCcore/11.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### atropos - -Atropos is tool for specific, sensitive, and speedy trimming of NGS reads. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|--------------- -``1.1.21``|``-Python-3.6.6``|``intel/2018b`` -``1.1.32``| |``gompi/2023a`` - -### ATSAS - -ATSAS is a program suite for small-angle scattering data analysis from biological macromolecules. - -*homepage*: - -version |versionsuffix |toolchain ------------|---------------|---------- -``2.5.1-1``|``.el6.x86_64``|``system`` -``2.5.1-1``|``.sl5.x86_64``|``system`` -``2.7.1-1``|``.el7.x86_64``|``system`` - -### attr - -Commands for Manipulating Filesystem Extended Attributes - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------ -``2.4.47``|``GCCcore/8.2.0`` -``2.4.48``|``GCCcore/9.3.0`` -``2.5.1`` |``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### attrdict - -AttrDict is a Python library that provides mapping objects that allow their elements to be accessed both as keys and as attributes. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|----------------- -``2.0.1``|``-Python-3.7.4``|``GCCcore/8.3.0`` - -### attrdict3 - -AttrDict is a Python library that provides mapping objects that allow their elements to be accessed both as keys and as attributes. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------- -``2.0.2``|``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### augur - -Pipeline components for real-time phylodynamic analysis - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``7.0.2``|``-Python-3.7.4``|``intel/2019b`` - -### AUGUSTUS - -AUGUSTUS is a program that predicts genes in eukaryotic genomic sequences - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------------------------------------------------------- -``3.2.3``|``-Python-2.7.13``|``intel/2017a`` -``3.3`` | |``foss/2018a`` -``3.3.2``| |``intel/2019a`` -``3.3.2``|``-Python-2.7.13``|``intel/2017a`` -``3.3.2``|``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``3.3.2``|``-Python-2.7.15``|``intel/2018b`` -``3.3.3``| |``foss/2019b``, ``intel/2019b`` -``3.4.0``| |``foss/2020a``, ``foss/2020b``, ``foss/2021a``, ``foss/2021b`` -``3.5.0``| |``foss/2022a``, ``foss/2022b`` - -### Austin - -Austin is a Python frame stack sampler for CPython written in pure C. - -*homepage*: - -version |toolchain ----------|------------------------------ -``3.2.0``|``GCCcore/11.2.0``, ``system`` - -### AUTO-07p - -AUTO is a publicly available software for continuation and bifurcation problems in ordinary differential equations originally written in 1980 and widely used in the dynamical systems community. - -*homepage*: - -version |toolchain ----------|-------------- -``0.9.3``|``foss/2021a`` - -### Autoconf - -Autoconf is an extensible package of M4 macros that produce shell scripts to automatically configure software source code packages. These scripts can adapt the packages to many kinds of UNIX-like systems without manual user intervention. Autoconf creates a configuration script for a package from a template file that lists the operating system features that the package can use, in the form of M4 macro calls. - -*homepage*: - -version |toolchain ---------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.68``|``foss/2016b`` -``2.69``|``GCC/4.8.2``, ``GCC/4.8.4``, ``GCC/4.9.2``, ``GCC/4.9.3``, ``GCC/4.9.3-2.25``, ``GCC/5.2.0``, ``GCC/5.4.0-2.26``, ``GCCcore/10.2.0``, ``GCCcore/4.9.2``, ``GCCcore/4.9.3``, ``GCCcore/5.3.0``, ``GCCcore/5.4.0``, ``GCCcore/6.1.0``, ``GCCcore/6.2.0``, ``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.2.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.2.0``, ``GCCcore/9.3.0``, ``GNU/4.9.2-2.25``, ``GNU/4.9.3-2.25``, ``GNU/5.1.0-2.25``, ``foss/2016.04``, ``foss/2016a``, ``foss/2016b``, ``gimkl/2.11.5``, ``intel/2016.02-GCC-4.9``, ``intel/2016a``, ``intel/2016b``, ``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25``, ``system`` -``2.71``|``FCC/4.5.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.1.0``, ``GCCcore/13.2.0``, ``system`` -``2.72``|``GCCcore/13.3.0`` - -### Autoconf-archive - -The GNU Autoconf Archive is a collection of more than 500 macros for GNU Autoconf that have been contributed as free software by friendly supporters of the cause from all over the Internet. Every single one of those macros can be re-used without imposing any restrictions whatsoever on the licensing of the generated configure script. In particular, it is possible to use all those macros in configure scripts that are meant for non-free software. This policy is unusual for a Free Software Foundation project. The FSF firmly believes that software ought to be free, and software licenses like the GPL are specifically designed to ensure that derivative work based on free software must be free as well. In case of Autoconf, however, an exception has been made, because Autoconf is at such a pivotal position in the software development tool chain that the benefits from having this tool available as widely as possible outweigh the disadvantage that some authors may choose to use it, too, for proprietary software. - -*homepage*: - -version |toolchain ---------------|-------------------- -``2019.01.06``|``GCC/8.2.0-2.31.1`` -``2021.02.19``|``GCCcore/10.2.0`` -``2023.02.20``|``GCCcore/11.3.0`` - -### AutoDock - -AutoDock is a suite of automated docking tools. It is designed to predict how small molecules, such as substrates or drug candidates, bind to a receptor of known 3D structure. - -*homepage*: - -version |toolchain ------------|-------------- -``4.2.5.1``|``GCC/5.2.0`` -``4.2.6`` |``GCC/10.3.0`` - -### AutoDock-GPU - -OpenCL and Cuda accelerated version of AutoDock. It leverages its embarrasingly parallelizable LGA by processing ligand-receptor poses in parallel over multiple compute units. AutoDock is a suite of automated docking tools. It is designed to predict how small molecules, such as substrates or drug candidates, bind to a receptor of known 3D structure. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``1.5.3``|``-CUDA-11.3.1``|``GCC/10.3.0`` -``1.5.3``|``-CUDA-11.7.0``|``GCC/11.3.0`` - -### AutoDock-Vina - -AutoDock Vina is an open-source program for doing molecular docking. - -*homepage*: - -version |versionsuffix |toolchain ----------|--------------|------------------------------ -``1.1.2``|``-linux_x86``|``system`` -``1.2.3``| |``foss/2021a``, ``foss/2021b`` - -### AutoDockSuite - -AutoDock is a suite of automated docking tools. It is designed to predict how small molecules, such as substrates or drug candidates, bind to a receptor of known 3D structure. - -*homepage*: - -version |toolchain ----------|----------------- -``4.2.6``|``GCCcore/8.3.0`` - -### AutoGeneS - -AutoGeneS automatically extracts informative genes and reveals the cellular heterogeneity of bulk RNA samples. - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.4``|``foss/2020b`` - -### AutoGrid - -AutoDock is a suite of automated docking tools. It is designed to predict how small molecules, such as substrates or drug candidates, bind to a receptor of known 3D structure. - -*homepage*: - -version |toolchain ------------|------------- -``4.2.5.1``|``GCC/5.2.0`` - -### Automake - -Automake: GNU Standards-compliant Makefile generator - -*homepage*: - -version |toolchain -----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.11.3``|``foss/2016b`` -``1.14`` |``GCC/4.8.2``, ``intel/2016a`` -``1.14.1``|``GCC/4.8.2`` -``1.15`` |``GCC/4.8.4``, ``GCC/4.9.2``, ``GCC/4.9.3``, ``GCC/4.9.3-2.25``, ``GCC/5.2.0``, ``GCC/5.4.0-2.26``, ``GCCcore/4.9.2``, ``GCCcore/4.9.3``, ``GCCcore/5.3.0``, ``GCCcore/5.4.0``, ``GCCcore/6.1.0``, ``GCCcore/6.2.0``, ``GCCcore/6.3.0``, ``GNU/4.9.2-2.25``, ``GNU/4.9.3-2.25``, ``GNU/5.1.0-2.25``, ``foss/2016.04``, ``foss/2016a``, ``foss/2016b``, ``gimkl/2.11.5``, ``intel/2016.02-GCC-4.9``, ``intel/2016a``, ``intel/2016b``, ``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25``, ``system`` -``1.15.1``|``GCCcore/6.4.0``, ``GCCcore/7.2.0``, ``GCCcore/7.3.0``, ``GCCcore/8.3.0`` -``1.16.1``|``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.2.0``, ``GCCcore/9.3.0`` -``1.16.2``|``GCCcore/10.2.0`` -``1.16.3``|``FCC/4.5.0``, ``GCCcore/10.3.0`` -``1.16.4``|``GCCcore/11.2.0`` -``1.16.5``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.1.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0``, ``system`` - -### AutoMap - -Tool to find regions of homozygosity (ROHs) from sequencing data. - -*homepage*: - -version|versionsuffix|toolchain --------|-------------|-------------- -``1.0``|``-20200324``|``foss/2019b`` - -### autopep8 - -A tool that automatically formats Python code to conform to the PEP 8 style guide. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``1.4.4``|``-Python-3.6.4``|``intel/2018a`` -``2.0.4``| |``foss/2022a`` -``2.2.0``| |``foss/2023a`` - -### Autotools - -This bundle collect the standard GNU build tools: Autoconf, Automake and libtool - -*homepage*: - -version |toolchain -------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``20150119``|``GCC/4.9.2`` -``20150215``|``GCC/4.8.4``, ``GCC/4.9.2``, ``GCC/4.9.3``, ``GCC/4.9.3-2.25``, ``GCC/5.2.0``, ``GCC/5.4.0-2.26``, ``GCCcore/4.9.2``, ``GCCcore/4.9.3``, ``GCCcore/5.3.0``, ``GCCcore/5.4.0``, ``GCCcore/6.1.0``, ``GCCcore/6.2.0``, ``GCCcore/6.3.0``, ``GNU/4.9.2-2.25``, ``GNU/4.9.3-2.25``, ``GNU/5.1.0-2.25``, ``foss/2016.04``, ``foss/2016a``, ``foss/2016b``, ``gimkl/2.11.5``, ``gimkl/2017a``, ``intel/2016.02-GCC-4.9``, ``intel/2016a``, ``intel/2016b``, ``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25``, ``system`` -``20170619``|``GCCcore/6.4.0``, ``GCCcore/7.2.0`` -``20180311``|``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.2.0``, ``GCCcore/9.3.0`` -``20200321``|``GCCcore/10.2.0`` -``20210128``|``FCC/4.5.0``, ``GCCcore/10.3.0`` -``20210726``|``GCCcore/11.2.0`` -``20220317``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.1.0``, ``GCCcore/13.2.0``, ``system`` -``20231222``|``GCCcore/13.3.0`` - -### Avogadro2 - -Avogadro is an advanced molecule editor and visualizer designed for cross-platform use in computational chemistry, molecular modeling, bioinformatics, materials science, and related areas. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|---------- -``1.97.0``|``-linux-x86_64``|``system`` - -### avro-cpp - -C++ implementation of Avro data serialization system. - -*homepage*: - -version |toolchain -----------|-------------- -``1.11.1``|``GCC/11.2.0`` - -### awscli - -Universal Command Line Environment for AWS - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|------------------ -``1.11.1`` |``-Python-2.7.12``|``intel/2016b`` -``1.11.56`` |``-Python-2.7.12``|``foss/2016b`` -``1.16.290``|``-Python-3.6.6`` |``foss/2018b`` -``1.17.7`` |``-Python-3.7.4`` |``GCCcore/8.3.0`` -``1.18.89`` |``-Python-3.8.2`` |``GCCcore/9.3.0`` -``2.0.55`` |``-Python-3.8.2`` |``GCCcore/9.3.0`` -``2.11.21`` | |``GCCcore/11.3.0`` -``2.15.2`` | |``GCCcore/12.2.0`` - -### Ax - -Ax is an accessible, general-purpose platform for understanding, managing, deploying, and automating adaptive experiments. Adaptive experimentation is the machine-learning guided process of iteratively exploring a (possibly infinite) parameter space in order to identify optimal configurations in a resource-efficient manner. Ax currently supports Bayesian optimization and bandit optimization as exploration strategies. Bayesian optimization in Ax is powered by BoTorch, a modern library for Bayesian optimization research built on PyTorch. - -*homepage*: - -version |toolchain ----------|-------------- -``0.3.3``|``foss/2022a`` - -### axel - -Lightweight CLI download accelerator - -*homepage*: - -version |toolchain -----------|------------------------------------ -``2.17.9``|``GCCcore/8.3.0``, ``GCCcore/9.3.0`` - -## B - - -[BA3-SNPS-autotune](#ba3-snps-autotune) - [BabelStream](#babelstream) - [babl](#babl) - [Bader](#bader) - [BAGEL](#bagel) - [BAli-Phy](#bali-phy) - [bam-readcount](#bam-readcount) - [Bambi](#bambi) - [bamFilters](#bamfilters) - [BAMM](#bamm) - [BAMSurgeon](#bamsurgeon) - [bamtofastq](#bamtofastq) - [BamTools](#bamtools) - [BamUtil](#bamutil) - [Bandage](#bandage) - [barrnap](#barrnap) - [basemap](#basemap) - [bases2fastq](#bases2fastq) - [Bash](#bash) - [bashplotlib](#bashplotlib) - [bat](#bat) - [batchgenerators](#batchgenerators) - [BatMeth2](#batmeth2) - [BayesAss](#bayesass) - [BayesAss3-SNPs](#bayesass3-snps) - [BayeScan](#bayescan) - [BayeScEnv](#bayescenv) - [BayesPrism](#bayesprism) - [BayesTraits](#bayestraits) - [Bazel](#bazel) - [bbcp](#bbcp) - [bbFTP](#bbftp) - [BBMap](#bbmap) - [bc](#bc) - [BCALM](#bcalm) - [bcbio-gff](#bcbio-gff) - [BCEL](#bcel) - [BCFtools](#bcftools) - [bcgTree](#bcgtree) - [bcl-convert](#bcl-convert) - [bcl2fastq2](#bcl2fastq2) - [bcolz](#bcolz) - [bcrypt](#bcrypt) - [BDBag](#bdbag) - [Beagle](#beagle) - [beagle-lib](#beagle-lib) - [Beast](#beast) - [BeautifulSoup](#beautifulsoup) - [BEDOPS](#bedops) - [BEDTools](#bedtools) - [BEEF](#beef) - [behave](#behave) - [bench](#bench) - [BerkeleyGW](#berkeleygw) - [BFAST](#bfast) - [BFC](#bfc) - [BGC-Bayesian-genomic-clines](#bgc-bayesian-genomic-clines) - [BgeeCall](#bgeecall) - [BgeeDB](#bgeedb) - [bgen](#bgen) - [bgen-reader](#bgen-reader) - [BiasAdjustCXX](#biasadjustcxx) - [bibtexparser](#bibtexparser) - [BiG-SCAPE](#big-scape) - [BigDFT](#bigdft) - [BinSanity](#binsanity) - [binutils](#binutils) - [Bio-DB-HTS](#bio-db-hts) - [Bio-EUtilities](#bio-eutilities) - [Bio-FeatureIO](#bio-featureio) - [Bio-SamTools](#bio-samtools) - [Bio-SearchIO-hmmer](#bio-searchio-hmmer) - [bioawk](#bioawk) - [biobakery-workflows](#biobakery-workflows) - [biobambam2](#biobambam2) - [biogeme](#biogeme) - [biom-format](#biom-format) - [biomart-perl](#biomart-perl) - [BioPerl](#bioperl) - [BioPP](#biopp) - [Biopython](#biopython) - [BioServices](#bioservices) - [BirdNET](#birdnet) - [biscuit](#biscuit) - [Bismark](#bismark) - [Bison](#bison) - [bitarray](#bitarray) - [bitshuffle](#bitshuffle) - [BLACS](#blacs) - [BLASR](#blasr) - [blasr_libcpp](#blasr_libcpp) - [BLAST](#blast) - [BLAST+](#blast+) - [BLAT](#blat) - [Blender](#blender) - [BLIS](#blis) - [Blitz++](#blitz++) - [BlobTools](#blobtools) - [Block](#block) - [Blosc](#blosc) - [Blosc2](#blosc2) - [BLT](#blt) - [bmtagger](#bmtagger) - [BMTK](#bmtk) - [bnpy](#bnpy) - [BOINC](#boinc) - [bokeh](#bokeh) - [BoltzTraP](#boltztrap) - [BoltzTraP2](#boltztrap2) - [Bonito](#bonito) - [Bonmin](#bonmin) - [Bonnie++](#bonnie++) - [Boost](#boost) - [Boost.MPI](#boost.mpi) - [Boost.Python](#boost.python) - [Boost.Python-NumPy](#boost.python-numpy) - [boost_histogram](#boost_histogram) - [BOPTEST](#boptest) - [boto3](#boto3) - [Bottleneck](#bottleneck) - [Bowtie](#bowtie) - [Bowtie2](#bowtie2) - [Bpipe](#bpipe) - [bpp](#bpp) - [bpytop](#bpytop) - [Bracken](#bracken) - [Braindecode](#braindecode) - [BRAKER](#braker) - [BreakDancer](#breakdancer) - [breseq](#breseq) - [BRiAl](#brial) - [Brotli](#brotli) - [Brotli-python](#brotli-python) - [Brunsli](#brunsli) - [bsddb3](#bsddb3) - [BSMAPz](#bsmapz) - [Bsoft](#bsoft) - [BSseeker2](#bsseeker2) - [btllib](#btllib) - [BuDDy](#buddy) - [BUFRLIB](#bufrlib) - [build](#build) - [buildenv](#buildenv) - [buildingspy](#buildingspy) - [Bullet](#bullet) - [BUSCO](#busco) - [BUStools](#bustools) - [BWA](#bwa) - [bwa-mem2](#bwa-mem2) - [bwa-meth](#bwa-meth) - [bwakit](#bwakit) - [bwidget](#bwidget) - [BWISE](#bwise) - [bx-python](#bx-python) - [BXH_XCEDE_TOOLS](#bxh_xcede_tools) - [byacc](#byacc) - [byobu](#byobu) - [bzip2](#bzip2) - - -### BA3-SNPS-autotune - -This program will automatically tune mixing parameters for BA3-SNPs by implementing a binary search algorithm and conducting short exploratory runs of BA3-SNPS. - -*homepage*: - -version |toolchain ----------|-------------- -``2.1.2``|``GCC/11.3.0`` - -### BabelStream - -STREAM, for lots of devices written in many programming models - -*homepage*: - -version|versionsuffix|toolchain --------|-------------|-------------- -``3.4``|``-omp`` |``GCC/11.2.0`` - -### babl - -babl is pixel encoding and color space conversion engine in C - -*homepage*: - -version |toolchain -----------|------------------ -``0.1.86``|``GCCcore/10.3.0`` - -### Bader - -A fast algorithm for doing Bader's analysis on a charge density grid. - -*homepage*: - -version |toolchain ---------|--------------------------------------- -``1.02``|``intel/2018a`` -``1.03``|``intel/2018b`` -``1.04``|``GCC/11.2.0``, ``iccifort/2020.4.304`` - -### BAGEL - -BAGEL (Brilliantly Advanced General Electronic-structure Library) is a parallel electronic-structure program. - -*homepage*: - -version |toolchain ----------|------------------------------ -``1.1.1``|``intel/2016b`` -``1.2.2``|``foss/2021a``, ``foss/2023a`` - -### BAli-Phy - -BAli-Phy estimates multiple sequence alignments and evolutionary trees from DNA, amino acid, or codon sequences. - -*homepage*: - -version |toolchain ----------|---------- -``3.6.0``|``system`` - -### bam-readcount - -Count DNA sequence reads in BAM files - -*homepage*: - -version |toolchain ----------|--------------------------------------------- -``0.8.0``|``GCC/11.2.0``, ``GCC/9.3.0``, ``foss/2018b`` -``1.0.1``|``GCC/12.2.0`` - -### Bambi - -Bambi is a high-level Bayesian model-building interface written in Python. It works with the probabilistic programming frameworks PyMC3 and is designed to make it extremely easy to fit Bayesian mixed-effects models common in biology, social sciences and other disciplines. - -*homepage*: - -version |toolchain ----------|------------------------------- -``0.7.1``|``foss/2021b``, ``intel/2021b`` - -### bamFilters - -A utility tool to filter alignments from bam files, using identity percent, low complexity and read coverage. - -*homepage*: - -version |toolchain ---------------|-------------- -``2022-06-30``|``GCC/11.3.0`` - -### BAMM - -BAMM is oriented entirely towards detecting and quantifying heterogeneity in evolutionary rates. It uses reversible jump Markov chain Monte Carlo to automatically explore a vast universe of candidate models of lineage diversification and trait evolution. - -*homepage*: - -version |toolchain ----------|-------------- -``2.5.0``|``foss/2022a`` - -### BAMSurgeon - -Tools for adding mutations to existing .bam files, used for testing mutation callers - -*homepage*: - -version|versionsuffix |toolchain --------|------------------|------------- -``1.2``|``-Python-2.7.16``|``GCC/8.3.0`` - -### bamtofastq - -Convert 10x BAM files to the original FASTQs compatible with 10x pipelines. - -*homepage*: - -version |toolchain ----------|------------------ -``1.4.0``|``GCCcore/10.3.0`` - -### BamTools - -BamTools provides both a programmer's API and an end-user's toolkit for handling BAM files. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ -``2.4.0``|``foss/2016b`` -``2.4.1``|``intel/2017a`` -``2.5.0``|``foss/2016b``, ``intel/2017b`` -``2.5.1``|``GCC/10.2.0``, ``GCC/8.2.0-2.31.1``, ``GCC/8.3.0``, ``GCC/9.3.0``, ``foss/2017b``, ``foss/2018a``, ``foss/2018b``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1``, ``iccifort/2019.5.281``, ``iccifort/2020.4.304``, ``intel/2017b``, ``intel/2018b`` -``2.5.2``|``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0``, ``GCC/12.3.0`` - -### BamUtil - -BamUtil is a repository that contains several programs that perform operations on SAM/BAM files. All of these programs are built into a single executable, bam. - -*homepage*: - -version |toolchain -----------|--------------- -``1.0.13``|``intel/2016b`` -``1.0.14``|``intel/2018a`` - -### Bandage - -Bandage is a program for visualising de novo assembly graphs - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------------------------------- -``0.8.1``|``_Centos`` |``system`` -``0.8.1``|``_Ubuntu`` |``system`` -``0.9.0``| |``GCCcore/11.2.0``, ``GCCcore/11.3.0`` - -### barrnap - -Barrnap (BAsic Rapid Ribosomal RNA Predictor) predicts the location of ribosomal RNA genes in genomes. - -*homepage*: - -version|toolchain --------|--------------------------------------------------------------------------------------- -``0.9``|``GCC/8.2.0-2.31.1``, ``foss/2018b``, ``gompi/2020b``, ``gompi/2021b``, ``gompi/2022a`` - -### basemap - -The matplotlib basemap toolkit is a library for plotting 2D data on maps in Python - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``1.0.7``|``-Python-2.7.13``|``intel/2017a`` -``1.0.7``|``-Python-3.6.3`` |``intel/2017b`` -``1.0.7``|``-Python-3.6.4`` |``intel/2018a`` -``1.2.0``|``-Python-3.6.6`` |``intel/2018b`` -``1.2.2``|``-Python-3.8.2`` |``foss/2020a`` -``1.3.6``| |``foss/2022a`` -``1.3.9``| |``foss/2023a`` - -### bases2fastq - -Bases2Fastq Software demultiplexes sequencing data and converts base calls into FASTQ files for secondary analysis with the FASTQ-compatible software of your choice. The Element AVITI™ System records base calls, which are the main output of a sequencing run, with associated quality scores (Q-scores) in bases files. Bases files must be converted into the FASTQ file format for secondary analysis. To generate QC reports, also load BeautifulSoup and bokeh. - -*homepage*: - -version |toolchain ----------|---------- -``1.5.1``|``system`` - -### Bash - -Bash is an sh-compatible command language interpreter that executes commands read from the standard input or from a file. Bash also incorporates useful features from the Korn and C shells (ksh and csh). - -*homepage*: - -version|toolchain --------|------------- -``4.3``|``GCC/4.9.2`` - -### bashplotlib - -bashplotlib is a python package and command line tool for making basic plots in the terminal. It's a quick way to visualize data when you don't have a GUI. - -*homepage*: - -version |toolchain ----------|------------------ -``0.6.5``|``GCCcore/10.3.0`` - -### bat - -The BAT Python package supports the processing and analysis of Bro data with Pandas, scikit-learn, and Spark - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``0.3.3``|``-Python-3.6.3``|``intel/2017b`` - -### batchgenerators - -Data augmentation toolkit developed at the Division of Medical Image Computing at the German Cancer Research Center (DKFZ) to suit all our deep learning data augmentation needs. - -*homepage*: - -version |toolchain ---------|-------------- -``0.25``|``foss/2021a`` - -### BatMeth2 - -An Integrated Package for Bisulfite DNA Methylation Data Analysis with Indel-sensitive Mapping. - -*homepage*: - -version|toolchain --------|-------------- -``2.1``|``foss/2019b`` - -### BayesAss - -BayesAss: Bayesian Inference of Recent Migration Using Multilocus Genotypes - -*homepage*: - -version |toolchain ----------|-------------- -``3.0.4``|``foss/2016a`` - -### BayesAss3-SNPs - -Modification of BayesAss 3.0.4 to allow handling of large SNP datasets generated via methods such as RADseq protocols. - -*homepage*: - -version|toolchain --------|-------------- -``1.1``|``GCC/11.3.0`` - -### BayeScan - -BayeScan aims at identifying candidate loci under natural selection from genetic data, using differences in allele frequencies between populations. - -*homepage*: - -version|toolchain --------|----------------------------------------------- -``2.1``|``foss/2016a``, ``foss/2018a``, ``intel/2018a`` - -### BayeScEnv - -BayeScEnv is a Fst-based, genome-scan method that uses environmental variables to detect local adaptation. - -*homepage*: - -version|toolchain --------|------------------------------------------------------ -``1.1``|``GCC/8.3.0``, ``foss/2016a``, ``iccifort/2019.5.281`` - -### BayesPrism - -Bayesian cell Proportion Reconstruction Inferred using Statistical Marginalization (BayesPrism): A Fully Bayesian Inference of Tumor Microenvironment composition and gene expression - -*homepage*: - -version|versionsuffix|toolchain --------|-------------|-------------- -``2.0``|``-R-4.2.1`` |``foss/2022a`` - -### BayesTraits - -BayesTraits is a computer package for performing analyses of trait evolution among groups of species for which a phylogeny or sample of phylogenies is available. This new package incoporates our earlier and separate programes Multistate, Discrete and Continuous. BayesTraits can be applied to the analysis of traits that adopt a finite number of discrete states, or to the analysis of continuously varying traits. Hypotheses can be tested about models of evolution, about ancestral states and about correlations among pairs of traits. - -*homepage*: - -version |versionsuffix |toolchain ----------------|-----------------|---------- -``1.0-linux32``| |``system`` -``2.0`` |``-Beta-Linux64``|``system`` -``3.0.2`` |``-Linux`` |``system`` - -### Bazel - -Bazel is a build tool that builds code quickly and reliably. It is used to build the majority of Google's software. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|----------------------------------------------------------------------------- -``0.4.4`` | |``system`` -``0.7.0`` | |``GCCcore/6.4.0`` -``0.10.0``| |``GCCcore/6.4.0`` -``0.11.0``| |``GCCcore/6.4.0`` -``0.11.1``| |``GCCcore/6.4.0`` -``0.12.0``| |``GCCcore/6.4.0`` -``0.16.0``| |``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``0.18.0``| |``GCCcore/7.3.0`` -``0.20.0``| |``GCCcore/7.3.0``, ``GCCcore/8.2.0`` -``0.25.2``| |``GCCcore/8.2.0`` -``0.26.1``| |``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``0.29.1``| |``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``0.29.1``|``-Java-1.8``|``GCCcore/9.3.0`` -``1.1.0`` | |``GCCcore/8.3.0`` -``2.0.0`` | |``GCCcore/10.2.0``, ``GCCcore/8.3.0`` -``3.4.1`` | |``GCCcore/8.3.0`` -``3.6.0`` | |``GCCcore/9.3.0`` -``3.7.1`` | |``GCCcore/8.3.0`` -``3.7.2`` | |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/8.3.0`` -``4.2.2`` | |``GCCcore/11.2.0`` -``5.1.1`` | |``GCCcore/11.3.0`` -``6.1.0`` | |``GCCcore/12.3.0`` -``6.3.1`` | |``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### bbcp - -BBCP is an alternative to Gridftp when transferring large amounts of data, capable of breaking up your transfer into multiple simultaneous transferring streams, thereby transferring data much faster than single-streaming utilities such as SCP and SFTP. See details at http://pcbunn.cithep.caltech.edu/bbcp/using_bbcp.htm or http://www.nics.tennessee.edu/computing-resources/data-transfer/bbcp - -*homepage*: - -version |versionsuffix |toolchain ------------------|------------------|---------- -``12.01.30.00.0``|``-amd64_linux26``|``system`` - -### bbFTP - -bbFTP is a file transfer software. It implements its own transfer protocol, which is optimized for large files (larger than 2GB) and secure as it does not read the password in a file and encrypts the connection information. bbFTP main features are: * Encoded username and password at connection * SSH and Certificate authentication modules * Multi-stream transfer * Big windows as defined in RFC1323 * On-the-fly data compression * Automatic retry * Customizable time-outs * Transfer simulation * AFS authentication integration * RFIO interface - -*homepage*: - -version |toolchain ----------|---------------------------------------------- -``3.2.1``|``GCCcore/9.3.0``, ``intel/2016a``, ``system`` - -### BBMap - -BBMap short read aligner, and other bioinformatic tools. - -*homepage*: - -version |versionsuffix |toolchain -----------|-------------------|--------------------------------------------- -``36.62`` |``-Java-1.8.0_112``|``intel/2016b`` -``37.93`` | |``foss/2018a``, ``intel/2018a`` -``38.26`` | |``foss/2018b`` -``38.50b``| |``GCC/8.2.0-2.31.1`` -``38.76`` | |``GCC/8.2.0-2.31.1`` -``38.79`` | |``GCC/8.3.0`` -``38.87`` | |``GCC/8.2.0-2.31.1``, ``iccifort/2020.1.217`` -``38.90`` | |``GCC/10.2.0``, ``GCC/9.3.0`` -``38.96`` | |``GCC/10.3.0`` -``38.98`` | |``GCC/11.2.0`` -``39.01`` | |``GCC/11.3.0``, ``GCC/12.2.0`` - -### bc - -bc is an arbitrary precision numeric processing language. - -*homepage*: - -version |toolchain ------------|------------- -``1.06.95``|``GCC/4.8.2`` - -### BCALM - -de Bruijn graph compaction in low memory - -*homepage*: - -version |toolchain ----------|-------------- -``2.2.0``|``foss/2018a`` - -### bcbio-gff - -Read and write Generic Feature Format (GFF) with Biopython integration. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|---------------------------------------------- -``0.6.6``|``-Python-3.8.2``|``foss/2020a`` -``0.6.7``| |``foss/2021a`` -``0.7.0``| |``foss/2020b``, ``foss/2022a``, ``foss/2022b`` - -### BCEL - -The Byte Code Engineering Library (Apache Commons BCEL™) is intended to give users a convenient way to analyze, create, and manipulate (binary) Java class files (those ending with .class). - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|---------- -``5.2`` |``-Java-1.8``|``system`` -``6.5.0``|``-Java-1.8``|``system`` - -### BCFtools - -Samtools is a suite of programs for interacting with high-throughput sequencing data. BCFtools - Reading/writing BCF2/VCF/gVCF files and calling/filtering/summarising SNP and short indel sequence variants - -*homepage*: - -version |toolchain -----------|----------------------------------------------------------------------------------------- -``1.3`` |``foss/2016a``, ``intel/2016a`` -``1.3.1`` |``foss/2016b`` -``1.6`` |``foss/2016b``, ``foss/2017b``, ``intel/2017b`` -``1.8`` |``GCC/6.4.0-2.28`` -``1.9`` |``foss/2018a``, ``foss/2018b``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1``, ``intel/2018b`` -``1.10.2``|``GCC/8.3.0``, ``GCC/9.3.0``, ``iccifort/2019.5.281`` -``1.11`` |``GCC/10.2.0`` -``1.12`` |``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/9.3.0`` -``1.14`` |``GCC/11.2.0`` -``1.15.1``|``GCC/11.3.0`` -``1.17`` |``GCC/12.2.0`` -``1.18`` |``GCC/12.3.0`` -``1.19`` |``GCC/13.2.0`` - -### bcgTree - -Automatized phylogenetic tree building from bacterial core genomes. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|--------------- -``1.0.10``|``-Perl-5.26.1``|``intel/2018a`` -``1.1.0`` |``-Perl-5.28.0``|``intel/2018b`` - -### bcl-convert - -The Illumina BCL Convert v4.0 is a standalone local software app that converts the Binary Base Call (BCL) files produced by Illumina sequencing systems to FASTQ files. - -*homepage*: - -version |versionsuffix |toolchain ------------|--------------|---------- -``4.0.3-2``|``el7.x86_64``|``system`` - -### bcl2fastq2 - -bcl2fastq Conversion Software both demultiplexes data and converts BCL files generated by Illumina sequencing systems to standard FASTQ file formats for downstream analysis. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------------------------------------------------------------------------------------------------------------------------------------- -``2.19.1``|``-Python-2.7.12``|``foss/2016b`` -``2.20.0``| |``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0``, ``GCC/8.3.0``, ``GCC/9.3.0``, ``foss/2018b``, ``intel/2019a`` -``2.20.0``|``-Python-2.7.12``|``foss/2016b`` -``2.20.0``|``-Python-2.7.14``|``intel/2017b`` - -### bcolz - -bcolz provides columnar, chunked data containers that can be compressed either in-memory and on-disk. Column storage allows for efficiently querying tables, as well as for cheap column addition and removal. It is based on NumPy, and uses it as the standard data container to communicate with bcolz objects, but it also comes with support for import/export facilities to/from HDF5/PyTables tables and pandas dataframes. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``1.1.1``|``-Python-2.7.13``|``foss/2017a`` -``1.2.1``| |``foss/2020b`` -``1.2.1``|``-Python-3.8.2`` |``foss/2020a`` - -### bcrypt - -Acceptable password hashing for your software and your servers (but you should really use argon2id or scrypt) - -*homepage*: - -version |toolchain ----------|------------------ -``4.0.1``|``GCCcore/12.3.0`` -``4.1.3``|``GCCcore/13.2.0`` - -### BDBag - -The bdbag utilities are a collection of software programs for working with BagIt packages that conform to the Bagit and Bagit/RO profiles. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``1.4.1``|``-Python-2.7.14``|``intel/2018a`` -``1.4.1``|``-Python-3.6.4`` |``intel/2018a`` -``1.6.3``| |``intel/2021b`` - -### Beagle - -Beagle is a software package for phasing genotypes and for imputing ungenotyped markers. - -*homepage*: - -version |versionsuffix|toolchain --------------------|-------------|---------- -``5.4.22Jul22.46e``|``-Java-11`` |``system`` - -### beagle-lib - -beagle-lib is a high-performance library that can perform the core calculations at the heart of most Bayesian and Maximum Likelihood phylogenetics packages. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------------------------------------------------------------------------------------------------------------------------- -``2.1.2``| |``foss/2016a``, ``foss/2017a`` -``3.0.1``| |``foss/2018a``, ``intel/2018a`` -``3.0.2``| |``foss/2018b`` -``3.0.2``|``-CUDA-9.2.88``|``foss/2018b`` -``3.1.2``| |``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/8.2.0-2.31.1``, ``GCC/9.3.0``, ``gcccuda/2019b``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -``4.0.0``| |``GCC/11.3.0`` - -### Beast - -BEAST is a cross-platform program for Bayesian MCMC analysis of molecular sequences. It is entirely orientated towards rooted, time-measured phylogenies inferred using strict or relaxed molecular clock models. It can be used as a method of reconstructing phylogenies but is also a framework for testing evolutionary hypotheses without conditioning on a single tree topology. BEAST uses MCMC to average over tree space, so that each tree is weighted proportional to its posterior probability. - -*homepage*: - -version |toolchain -----------|------------------------------------ -``1.8.4`` |``system`` -``1.10.1``|``intel/2018a`` -``1.10.4``|``GCC/10.2.0``, ``GCC/8.2.0-2.31.1`` -``2.4.0`` |``foss/2016a`` -``2.4.7`` |``foss/2017a`` -``2.5.0`` |``foss/2018a`` -``2.5.1`` |``foss/2018b`` -``2.5.2`` |``GCC/8.2.0-2.31.1`` -``2.6.3`` |``gcccuda/2019b`` -``2.6.4`` |``GCC/10.2.0`` -``2.6.7`` |``GCC/10.3.0`` -``2.7.3`` |``GCC/11.3.0`` - -### BeautifulSoup - -Beautiful Soup is a Python library designed for quick turnaround projects like screen-scraping. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|---------------------------------------------------------- -``4.6.0`` |``-Python-3.6.3``|``intel/2017b`` -``4.6.3`` |``-Python-3.6.4``|``intel/2018a`` -``4.7.1`` |``-Python-3.6.6``|``intel/2018b`` -``4.8.0`` | |``GCCcore/8.2.0`` -``4.9.1`` | |``GCCcore/8.3.0`` -``4.9.1`` |``-Python-3.8.2``|``GCCcore/9.3.0`` -``4.9.3`` | |``GCCcore/10.2.0`` -``4.10.0``| |``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``4.11.1``| |``GCCcore/12.2.0`` -``4.12.2``| |``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### BEDOPS - -BEDOPS is an open-source command-line toolkit that performs highly efficient and scalable Boolean and other set operations, statistical calculations, archiving, conversion and other management of genomic data of arbitrary scale. Tasks can be easily split by chromosome for distributing whole-genome analyses across a computational cluster. - -*homepage*: - -version |toolchain -----------|------------------------------- -``2.4.1`` |``GCC/4.8.4`` -``2.4.2`` |``GCC/4.8.2`` -``2.4.20``|``system`` -``2.4.26``|``system`` -``2.4.30``|``foss/2016b`` -``2.4.32``|``foss/2018a``, ``intel/2018a`` -``2.4.35``|``foss/2018b`` -``2.4.41``|``foss/2021b`` - -### BEDTools - -BEDTools: a powerful toolset for genome arithmetic. The BEDTools utilities allow one to address common genomics tasks such as finding feature overlaps and computing coverage. The utilities are largely based on four widely-used file formats: BED, GFF/GTF, VCF, and SAM/BAM. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------------------------------- -``2.25.0``|``foss/2016a`` -``2.26.0``|``GCCcore/6.4.0``, ``foss/2016a``, ``intel/2016b``, ``intel/2017a``, ``intel/2017b`` -``2.27.1``|``GCCcore/6.4.0``, ``foss/2016b``, ``foss/2018b``, ``intel/2017a``, ``intel/2018a`` -``2.28.0``|``GCC/8.2.0-2.31.1``, ``foss/2018b``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -``2.29.2``|``GCC/8.3.0``, ``GCC/9.3.0`` -``2.30.0``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0``, ``iccifort/2020.4.304`` -``2.31.0``|``GCC/12.3.0`` - -### BEEF - -BEEF is a library-based implementation of the Bayesian Error Estimation Functional, suitable for linking against by Fortran- or C-based DFT codes. A description of BEEF can be found at http://dx.doi.org/10.1103/PhysRevB.85.235149. - -*homepage*: - -version |toolchain ----------|------------------------------------------------ -``0.1.1``|``iccifort/2019.5.281``, ``iccifort/2020.4.304`` - -### behave - -behave: Behavior-driven development (or BDD) is an agile software development technique that encourages collaboration between developers, QA and non-technical or business participants in a software project. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``1.2.5``|``-Python-2.7.12``|``foss/2016b`` -``1.2.6``|``-Python-3.6.4`` |``intel/2018a`` - -### bench - -Tools to accurately benchmark and analyze execution times for R expressions. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``1.1.2``|``-R-4.2.1`` |``foss/2022a`` - -### BerkeleyGW - -The BerkeleyGW Package is a set of computer codes that calculates the quasiparticle properties and the optical responses of a large variety of materials from bulk periodic crystals to nanostructures such as slabs, wires and molecules. - -*homepage*: - -version |versionsuffix |toolchain --------------|-----------------|---------------------------------------------------------------- -``1.0.6`` | |``intel/2016.02-GCC-4.9`` -``1.1-beta2``| |``intel/2016.02-GCC-4.9`` -``1.2.0`` | |``intel/2017a``, ``intel/2018a`` -``2.0.0`` | |``foss/2017b``, ``foss/2018b``, ``intel/2017b``, ``intel/2018a`` -``2.1.0`` |``-Python-3.7.4``|``foss/2019b``, ``intel/2019b`` -``3.0.1`` | |``foss/2020b``, ``foss/2021a`` -``3.1.0`` | |``foss/2022a``, ``intel/2022a`` -``4.0`` | |``foss/2022a`` - -### BFAST - -BFAST facilitates the fast and accurate mapping of short reads to reference sequences. Some advantages of BFAST include: 1) Speed: enables billions of short reads to be mapped quickly. 2) Accuracy: A priori probabilities for mapping reads with defined set of variants. 3) An easy way to measurably tune accuracy at the expense of speed. - -*homepage*: - -version |toolchain -----------|-------------- -``0.7.0a``|``foss/2016b`` - -### BFC - -BFC is a standalone high-performance tool for correcting sequencing errors from Illumina sequencing data. It is specifically designed for high-coverage whole-genome human data, though also performs well for small genomes. - -*homepage*: - -version|toolchain --------|-------------- -``1`` |``foss/2018a`` - -### BGC-Bayesian-genomic-clines - -Collection of code for Bayesian genomic cline analyses. - -*homepage*: - -version |toolchain ---------|--------------- -``1.03``|``gompi/2021a`` - -### BgeeCall - -Automatic RNA-Seq present/absent gene expression calls generation - -*homepage*: - -version |versionsuffix |toolchain -----------|---------------|-------------- -``1.16.0``|``-R-%(rver)s``|``foss/2021a`` - -### BgeeDB - -Annotation and gene expression data retrieval from Bgee database. TopAnat, an anatomical entities Enrichment Analysis tool for UBERON ontology. - -*homepage*: - -version |versionsuffix |toolchain -----------|---------------|-------------- -``2.26.0``|``-R-%(rver)s``|``foss/2021a`` - -### bgen - -A BGEN file format reader. It fully supports the BGEN format specifications 1.2 and 1.3. - -*homepage*: - -version |toolchain ----------|------------------ -``3.0.2``|``GCCcore/7.3.0`` -``3.0.3``|``GCCcore/9.3.0`` -``4.1.3``|``GCCcore/10.2.0`` - -### bgen-reader - -A bgen file format reader. This python package is a wrapper around the bgen library, a low-memory footprint reader that efficiently reads bgen files. It fully supports the bgen format specifications: 1.2 and 1.3; as well as their optional compressed formats. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``3.0.2``|``-Python-3.6.6``|``foss/2018b`` - -### BiasAdjustCXX - -BiasAdjustCXX command-line tool for the application of fast and efficient bias corrections in climatic research - -*homepage*: - -version |toolchain ----------|--------------- -``1.9.1``|``gompi/2021b`` - -### bibtexparser - -Bibtex parser in Python 2.7 and 3.x - -*homepage*: - -version |toolchain ----------|----------------- -``1.1.0``|``GCCcore/8.2.0`` - -### BiG-SCAPE - -BiG-SCAPE and CORASON provide a set of tools to explore the diversity of biosynthetic gene clusters (BGCs) across large numbers of genomes, by constructing BGC sequence similarity networks, grouping BGCs into gene cluster families, and exploring gene cluster diversity linked to enzyme phylogenies. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``1.0.1``|``-Python-3.7.4``|``intel/2019b`` -``1.1.5``| |``foss/2022a`` - -### BigDFT - -BigDFT: electronic structure calculation based on Daubechies wavelets. bigdft-suite is a set of different packages to run bigdft. - -*homepage*: - -version |toolchain ----------|-------------- -``1.9.1``|``foss/2021b`` - -### BinSanity - -BinSanity contains a suite a scripts designed to cluster contigs generated from metagenomic assembly into putative genomes. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``0.3.5``|``-Python-3.7.4``|``foss/2019b`` - -### binutils - -binutils: GNU binary utilities - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.25`` |``GCC/4.9.2``, ``GCC/4.9.2-binutils-2.25``, ``GCC/4.9.3``, ``GCC/4.9.3-binutils-2.25``, ``GCC/5.1.0-binutils-2.25``, ``GCCcore/4.9.2``, ``GCCcore/4.9.3``, ``GCCcore/4.9.4``, ``system`` -``2.25.1``|``system`` -``2.26`` |``GCCcore/5.3.0``, ``GCCcore/5.4.0``, ``GCCcore/5.5.0``, ``GCCcore/6.3.0``, ``system`` -``2.27`` |``GCCcore/6.1.0``, ``GCCcore/6.2.0``, ``GCCcore/6.3.0``, ``system`` -``2.28`` |``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.1.0``, ``system`` -``2.29`` |``GCCcore/7.2.0``, ``GCCcore/system``, ``system`` -``2.30`` |``GCCcore/7.3.0``, ``GCCcore/8.1.0``, ``system`` -``2.31.1``|``GCCcore/7.4.0``, ``GCCcore/8.2.0``, ``system`` -``2.32`` |``GCCcore/8.3.0``, ``GCCcore/9.1.0``, ``GCCcore/9.2.0``, ``system`` -``2.34`` |``GCCcore/10.1.0``, ``GCCcore/9.3.0``, ``system`` -``2.35`` |``GCCcore/10.2.0``, ``system`` -``2.36.1``|``FCC/4.5.0``, ``GCCcore/10.3.0``, ``GCCcore/11.1.0``, ``GCCcore/8.4.0``, ``GCCcore/9.4.0``, ``system`` -``2.37`` |``GCCcore/11.2.0``, ``system`` -``2.38`` |``GCCcore/11.3.0``, ``GCCcore/12.1.0``, ``GCCcore/9.5.0``, ``system`` -``2.39`` |``GCCcore/12.2.0``, ``system`` -``2.40`` |``GCCcore/11.4.0``, ``GCCcore/12.3.0``, ``GCCcore/13.1.0``, ``GCCcore/13.2.0``, ``system`` -``2.42`` |``GCCcore/13.3.0``, ``GCCcore/14.1.0``, ``system`` - -### Bio-DB-HTS - -Read files using HTSlib including BAM/CRAM, Tabix and BCF database files - -*homepage*: - -version |versionsuffix |toolchain ---------|----------------|-------------------------------------------------------------- -``2.11``|``-Perl-5.26.0``|``foss/2017b``, ``intel/2017b`` -``2.11``|``-Perl-5.26.1``|``intel/2018a`` -``2.11``|``-Perl-5.28.0``|``foss/2018b`` -``3.01``| |``GCC/10.2.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0`` -``3.01``|``-Perl-5.28.1``|``GCC/8.2.0-2.31.1`` - -### Bio-EUtilities - -BioPerl low-level API for retrieving and storing data from NCBI eUtils - -*homepage*: - -version |toolchain ---------|----------------- -``1.76``|``GCCcore/8.3.0`` - -### Bio-FeatureIO - -An I/O iterator subsystem for genomic sequence features - -*homepage*: - -version |toolchain ------------|------------------ -``1.6.905``|``GCCcore/12.3.0`` - -### Bio-SamTools - -This is a Perl interface to the SAMtools sequence alignment interface. - -*homepage*: - -version |versionsuffix |toolchain ---------|----------------|--------------- -``1.43``|``-Perl-5.24.1``|``intel/2017a`` - -### Bio-SearchIO-hmmer - -Code to parse output from hmmsearch, hmmscan, phmmer and nhmmer, compatible with both version 2 and version 3 of the HMMER package from http://hmmer.org. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------ -``1.7.3``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0`` - -### bioawk - -Bioawk is an extension to Brian Kernighan's awk, adding the support of several common biological data formats, including optionally gzip'ed BED, GFF, SAM, VCF, FASTA/Q and TAB-delimited formats with column names. - -*homepage*: - -version|toolchain --------|---------------------------------------------- -``1.0``|``GCC/10.3.0``, ``GCC/11.2.0``, ``foss/2018b`` - -### biobakery-workflows - -bioBakery workflows is a collection of workflows and tasks for executing common microbial community analyses using standardized, validated tools and parameters. Quality control and statistical summary reports are automatically generated for most data types, which include 16S amplicons, metagenomes, and metatranscriptomes. Workflows are run directly from the command line and tasks can be imported to create your own custom workflows. The workflows and tasks are built with AnADAMA2 which allows for parallel task execution locally and in a grid compute environment. - -*homepage*: - -version|toolchain --------|-------------- -``3.1``|``foss/2022a`` - -### biobambam2 - -Tools for processing BAM files - -*homepage*: - -version |toolchain ------------|------------------------------- -``2.0.87`` |``GCC/11.3.0``, ``intel/2018a`` -``2.0.185``|``GCC/12.3.0`` - -### biogeme - -Biogeme is a open source Python package designed for the maximum likelihood estimation of parametric models in general, with a special emphasis on discrete choice models. - -*homepage*: - -version |toolchain -----------|-------------- -``3.1.2`` |``foss/2021a`` -``3.2.6`` |``foss/2022a`` -``3.2.8`` |``foss/2021a`` -``3.2.10``|``foss/2022a`` - -### biom-format - -The BIOM file format (canonically pronounced biome) is designed to be a general-use format for representing biological sample by observation contingency tables. BIOM is a recognized standard for the Earth Microbiome Project and is a Genomics Standards Consortium supported project. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------------------ -``2.1.10``|``-Python-3.8.2``|``foss/2020a`` -``2.1.12``| |``foss/2021b`` -``2.1.14``| |``foss/2022a`` -``2.1.15``| |``foss/2022b``, ``foss/2023a`` - -### biomart-perl - -The BioMart Perl API allows you to go a step further with BioMart and integrate BioMart Perl Code into custom Perl scripts. - -*homepage*: - -version |versionsuffix |toolchain ----------------|----------------|----------------- -``0.7_e6db561``|``-Perl-5.26.0``|``GCCcore/6.4.0`` - -### BioPerl - -Bioperl is the product of a community effort to produce Perl code which is useful in biology. Examples include Sequence objects, Alignment objects and database searching objects. - -*homepage*: - -version |versionsuffix |toolchain ------------|----------------|---------------------------------------------------------------------------------------------------------------------- -``1.6.924``|``-Perl-5.20.3``|``intel/2016a`` -``1.6.924``|``-Perl-5.22.1``|``foss/2016a`` -``1.7.0`` |``-Perl-5.24.0``|``foss/2016b`` -``1.7.1`` |``-Perl-5.24.0``|``intel/2016b`` -``1.7.1`` |``-Perl-5.24.1``|``intel/2017a`` -``1.7.2`` | |``GCCcore/8.3.0`` -``1.7.2`` |``-Perl-5.26.0``|``foss/2017b``, ``intel/2017b`` -``1.7.2`` |``-Perl-5.26.1``|``intel/2018a`` -``1.7.2`` |``-Perl-5.28.0``|``foss/2018b``, ``intel/2018b`` -``1.7.2`` |``-Perl-5.28.1``|``GCCcore/8.2.0`` -``1.7.7`` | |``GCCcore/9.3.0`` -``1.7.8`` | |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### BioPP - -Bio++ is a set of C++ libraries for Bioinformatics, including sequence analysis, phylogenetics, molecular evolution and population genetics. Bio++ is Object Oriented and is designed to be both easy to use and computer efficient. Bio++ intends to help programmers to write computer expensive programs, by providing them a set of re-usable tools. - -*homepage*: - -version |toolchain ----------|----------------------------------- -``2.4.1``|``GCC/8.2.0-2.31.1``, ``GCC/9.3.0`` - -### Biopython - -Biopython is a set of freely available tools for biological computation written in Python by an international team of developers. It is a distributed collaborative effort to develop Python libraries and applications which address the needs of current and future work in bioinformatics. - -*homepage*: - -version |versionsuffix |toolchain ---------|------------------|--------------------------------------------------------------- -``1.65``|``-Python-2.7.11``|``foss/2016a`` -``1.68``|``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``1.68``|``-Python-3.5.2`` |``foss/2016b``, ``intel/2016b`` -``1.70``|``-Python-2.7.13``|``foss/2017a`` -``1.70``|``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``1.70``|``-Python-3.6.1`` |``intel/2017a`` -``1.70``|``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``1.71``|``-Python-2.7.14``|``intel/2018a`` -``1.71``|``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``1.72``|``-Python-2.7.15``|``foss/2018b``, ``intel/2018b`` -``1.72``|``-Python-3.6.6`` |``foss/2018b`` -``1.73``| |``foss/2019a``, ``fosscuda/2019a``, ``intel/2019a`` -``1.73``|``-Python-3.6.6`` |``foss/2018b`` -``1.74``| |``foss/2019a`` -``1.75``|``-Python-2.7.16``|``foss/2019b`` -``1.75``|``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b``, ``intel/2019b`` -``1.76``|``-Python-2.7.18``|``foss/2020b``, ``foss/2021b`` -``1.78``| |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b`` -``1.78``|``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``1.79``| |``foss/2021a``, ``foss/2021b``, ``foss/2022a``, ``intel/2021b`` -``1.81``| |``foss/2022b`` -``1.83``| |``foss/2023a`` - -### BioServices - -Bioservices is a Python package that provides access to many Bioinformatices Web Services (e.g., UniProt) and a framework to easily implement Web Services wrappers (based on WSDL/SOAP or REST protocols). - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``1.7.9``|``-Python-3.8.2``|``foss/2020a`` - -### BirdNET - -BirdNET is a research platform that aims at recognizing birds by sound at scale. We support various hardware and operating systems such as Arduino microcontrollers, the Raspberry Pi, smartphones, web browsers, workstation PCs, and even cloud services. BirdNET is a citizen science platform as well as an analysis software for extremely large collections of audio. BirdNET aims to provide innovative tools for conservationists, biologists, and birders alike. - -*homepage*: - -version |versionsuffix |toolchain -------------|-----------------|------------------ -``20201214``|``-Python-3.7.4``|``fosscuda/2019b`` - -### biscuit - -Utilities to help analyze bisulfite-treated sequence data - -*homepage*: - -version |toolchain ----------|-------------- -``0.1.4``|``foss/2016a`` - -### Bismark - -A tool to map bisulfite converted sequence reads and determine cytosine methylation states - -*homepage*: - -version |toolchain -----------|------------------------------- -``0.19.0``|``intel/2017b`` -``0.20.1``|``foss/2018b``, ``intel/2018b`` -``0.23.1``|``foss/2021b`` -``0.24.0``|``GCC/11.3.0`` -``0.24.1``|``GCC/12.2.0`` - -### Bison - -Bison is a general-purpose parser generator that converts an annotated context-free grammar into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.7`` |``GCC/4.8.1``, ``GCC/4.8.4``, ``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``system`` -``3.0.2``|``GCC/4.8.2`` -``3.0.3``|``GCC/4.9.2`` -``3.0.4``|``GCC/4.9.2``, ``GCC/4.9.2-binutils-2.25``, ``GCC/4.9.3``, ``GCC/4.9.3-2.25``, ``GCC/4.9.3-binutils-2.25``, ``GCC/5.1.0-binutils-2.25``, ``GCCcore/4.9.2``, ``GCCcore/4.9.3``, ``GCCcore/4.9.4``, ``GCCcore/5.3.0``, ``GCCcore/5.4.0``, ``GCCcore/5.5.0``, ``GCCcore/6.1.0``, ``GCCcore/6.2.0``, ``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.1.0``, ``GCCcore/7.2.0``, ``GCCcore/7.3.0``, ``GCCcore/8.1.0``, ``GCCcore/system``, ``GNU/4.9.3-2.25``, ``foss/2016a``, ``foss/2016b``, ``gimkl/2.11.5``, ``gimkl/2017a``, ``intel/2016.02-GCC-4.9``, ``intel/2016a``, ``intel/2016b``, ``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25``, ``system`` -``3.0.5``|``GCCcore/5.5.0``, ``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.2.0``, ``GCCcore/7.3.0``, ``GCCcore/8.1.0``, ``GCCcore/8.2.0``, ``GCCcore/system``, ``system`` -``3.2.2``|``GCCcore/7.4.0`` -``3.3.2``|``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/8.4.0``, ``GCCcore/9.1.0``, ``GCCcore/9.2.0``, ``system`` -``3.5.2``|``system`` -``3.5.3``|``GCCcore/10.2.0``, ``GCCcore/9.3.0``, ``system`` -``3.6.1``|``GCCcore/10.1.0`` -``3.7.1``|``GCCcore/10.2.0``, ``system`` -``3.7.6``|``FCC/4.5.0``, ``GCCcore/10.3.0``, ``GCCcore/11.1.0``, ``GCCcore/11.2.0``, ``GCCcore/9.4.0``, ``system`` -``3.8.2``|``GCCcore/11.3.0``, ``GCCcore/11.4.0``, ``GCCcore/12.1.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.1.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0``, ``GCCcore/14.1.0``, ``GCCcore/9.5.0``, ``system`` - -### bitarray - -bitarray provides an object type which efficiently represents an array of booleans - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``0.8.3``|``-Python-2.7.15``|``intel/2018b`` -``0.8.3``|``-Python-3.6.6`` |``intel/2018b`` -``1.2.1``|``-Python-3.7.4`` |``foss/2019b`` -``1.5.3``|``-Python-2.7.16``|``GCC/8.3.0`` - -### bitshuffle - -Filter for improving compression of typed binary data. Bitshuffle is an algorithm that rearranges typed, binary data for improving compression, as well as a python/C package that implements this algorithm within the Numpy framework. The library can be used along side HDF5 to compress and decompress datasets and is integrated through the dynamically loaded filters framework. Bitshuffle is HDF5 filter number 32008. - -*homepage*: - -version |toolchain ----------|-------------- -``0.5.1``|``foss/2023a`` - -### BLACS - -The BLACS (Basic Linear Algebra Communication Subprograms) project is an ongoing investigation whose purpose is to create a linear algebra oriented message passing interface that may be implemented efficiently and uniformly across a large range of distributed memory platforms. - -*homepage*: - -version|toolchain --------|------------------- -``1.1``|``gmvapich2/2016a`` - -### BLASR - -The PacBio® long read aligner - -*homepage*: - -version |toolchain -------------|--------------- -``2.2`` |``intel/2016b`` -``5.3.3`` |``gompi/2019a`` -``20170330``|``intel/2017a`` - -### blasr_libcpp - -Blasr_libcpp is a library used by blasr and other executables such as samtoh5, loadPulses for analyzing PacBio sequences - -*homepage*: - -version |toolchain -------------|--------------- -``20170426``|``intel/2017a`` - -### BLAST - -Basic Local Alignment Search Tool, or BLAST, is an algorithm for comparing primary biological sequence information, such as the amino-acid sequences of different proteins or the nucleotides of DNA sequences. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|---------- -``2.2.26``|``-Linux_x86_64``|``system`` -``2.8.1`` |``-Linux_x86_64``|``system`` -``2.10.0``|``-Linux_x86_64``|``system`` -``2.10.1``|``-Linux_x86_64``|``system`` -``2.11.0``|``-Linux_x86_64``|``system`` - -### BLAST+ - -Basic Local Alignment Search Tool, or BLAST, is an algorithm for comparing primary biological sequence information, such as the amino-acid sequences of different proteins or the nucleotides of DNA sequences. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|----------------------------------------------------------------------------------- -``2.2.31``| |``system`` -``2.3.0`` |``-Python-2.7.11``|``foss/2016a`` -``2.6.0`` |``-Python-2.7.12``|``foss/2016b`` -``2.6.0`` |``-Python-2.7.13``|``foss/2017a``, ``intel/2017a`` -``2.6.0`` |``-Python-2.7.14``|``intel/2017b`` -``2.7.1`` | |``foss/2018a``, ``foss/2018b``, ``intel/2018a``, ``intel/2018b`` -``2.7.1`` |``-Python-2.7.14``|``intel/2017b`` -``2.8.1`` | |``foss/2018b`` -``2.9.0`` | |``gompi/2019a``, ``gompi/2019b``, ``gompi/2021b``, ``iimpi/2019a``, ``iimpi/2019b`` -``2.10.1``| |``gompi/2020a``, ``iimpi/2020a`` -``2.11.0``| |``gompi/2019b``, ``gompi/2020a``, ``gompi/2020b``, ``gompi/2021a`` -``2.12.0``| |``gompi/2021b`` -``2.13.0``| |``gompi/2022a`` -``2.14.0``| |``gompi/2022b`` -``2.14.1``| |``gompi/2023a`` - -### BLAT - -BLAT on DNA is designed to quickly find sequences of 95% and greater similarity of length 25 bases or more. - -*homepage*: - -version|toolchain --------|-------------------------------------------------------------------------------------------------------------------- -``3.5``|``GCC/8.2.0-2.31.1``, ``GCC/8.3.0``, ``GCC/9.3.0``, ``foss/2016b``, ``foss/2018b``, ``intel/2016b``, ``intel/2017a`` -``3.7``|``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0`` - -### Blender - -Blender is the free and open source 3D creation suite. It supports the entirety of the 3D pipeline-modeling, rigging, animation, simulation, rendering, compositing and motion tracking, even video editing and game creation. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------------------|------------------------------- -``2.77a``|``-Python-3.5.2`` |``intel/2016b`` -``2.79`` |``-Python-3.6.1`` |``intel/2017a`` -``2.79b``|``-Python-3.6.6`` |``intel/2018b`` -``2.79b``|``-Python-3.6.6-CUDA-9.2.88``|``foss/2018b`` -``2.81`` |``-Python-3.7.4`` |``foss/2019b``, ``intel/2019b`` -``3.0.0``|``-linux-x64`` |``system`` -``3.1.2``|``-linux-x64`` |``system`` -``3.2.2``|``-linux-x64`` |``system`` -``3.3.1``|``-linux-x86_64-CUDA-11.7.0``|``system`` -``3.4.1``|``-linux-x86_64-CUDA-11.7.0``|``system`` -``3.5.0``|``-linux-x86_64-CUDA-11.7.0``|``system`` -``3.6.5``|``-linux-x86_64-CUDA-12.1.1``|``system`` -``4.0.1``|``-linux-x86_64-CUDA-12.1.1``|``system`` - -### BLIS - -AMD's fork of BLIS. BLIS is a portable software framework for instantiating high-performance BLAS-like dense linear algebra libraries. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------------------------------------------------------------------------------------- -``0.3.2``| |``GCC/7.3.0-2.30`` -``0.6.0``| |``GCC/8.3.0-2.32`` -``0.8.0``| |``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``0.8.1``| |``GCC/10.3.0``, ``GCC/11.2.0``, ``GCCcore/10.3.0`` -``0.9.0``| |``GCC/11.3.0``, ``GCC/12.2.0``, ``GCC/12.3.0``, ``GCC/13.2.0``, ``intel-compilers/2022.1.0`` -``1.0`` | |``GCC/13.2.0``, ``GCC/13.3.0`` -``1.2`` |``-amd`` |``GCC/7.3.0-2.30`` -``2.2`` |``-amd`` |``GCCcore/9.3.0`` -``3.0`` |``-amd`` |``GCCcore/10.3.0`` -``3.0.1``|``-amd`` |``GCC/11.2.0``, ``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``3.1`` |``-amd`` |``GCCcore/11.2.0`` - -### Blitz++ - -Blitz++ is a (LGPLv3+) licensed meta-template library for array manipulation in C++ with a speed comparable to Fortran implementations, while preserving an object-oriented interface - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------------------------------------------------- -``0.10`` |``GCCcore/6.4.0``, ``foss/2016a`` -``1.0.2``|``GCCcore/10.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/9.3.0`` - -### BlobTools - -A modular command-line solution for visualisation, quality control and taxonomic partitioning of genome datasets. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|-------------- -``20180528``|``-Python-2.7.15``|``foss/2018b`` - -### Block - -Block implements the density matrix renormalization group (DMRG) algorithm for quantum chemistry. - -*homepage*: - -version |toolchain -------------------|------------------------------ -``1.5.3-20200525``|``foss/2022a``, ``foss/2022b`` - -### Blosc - -Blosc, an extremely fast, multi-threaded, meta-compressor library - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------ -``1.11.1``|``intel/2016b`` -``1.12.1``|``GCCcore/6.4.0``, ``foss/2016b``, ``foss/2017a``, ``intel/2017a`` -``1.14.2``|``GCCcore/6.4.0``, ``foss/2016a`` -``1.14.4``|``GCCcore/7.3.0`` -``1.17.0``|``GCCcore/8.2.0`` -``1.17.1``|``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.21.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``1.21.1``|``GCCcore/11.2.0`` -``1.21.3``|``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``1.21.5``|``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### Blosc2 - -Blosc, an extremely fast, multi-threaded, meta-compressor library - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``2.0.3`` |``GCCcore/10.2.0`` -``2.0.4`` |``GCCcore/10.3.0`` -``2.4.3`` |``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``2.6.1`` |``GCCcore/11.3.0`` -``2.8.0`` |``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``2.13.2``|``GCCcore/13.2.0`` - -### BLT - -BLT is an extension to the Tk toolkit, adding new widgets, geometry managers, and miscellaneous commands. - -*homepage*: - -version |toolchain -------------|------------------ -``20181223``|``GCCcore/11.2.0`` - -### bmtagger - -Best Match Tagger for removing human reads from metagenomics datasets - -*homepage*: - -version |toolchain ----------|------------------------------------------------ -``3.101``|``foss/2018b``, ``gompi/2019a``, ``gompi/2020b`` - -### BMTK - -The Brain Modeling Toolkit (BMTK) is a python-based software package for building, simulating and analyzing large-scale neural network models. It supports the building and simulation of models of varying levels-of-resolution; from multi-compartment biophysically detailed networks, to point-neuron models, to filter-based models, and even population-level firing rate models. - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.8``|``foss/2021a`` - -### bnpy - -Bayesian nonparametric machine learning for python provides code for training popular clustering models on large datasets. The focus is on Bayesian nonparametric models based on the Dirichlet process, but it also provides parametric counterparts. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``0.1.6``|``-Python-2.7.15``|``foss/2018b`` - -### BOINC - -BOINC is a program that lets you donate your idle computer time to science projects like SETI@home, Climateprediction.net, Rosetta@home, World Community Grid, and many others. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|------------- -``7.2.42``|``-client`` |``GCC/4.8.2`` - -### bokeh - -Statistical and novel interactive HTML plots for Python - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|------------------------------------------------------------------------ -``0.12.3`` |``-Python-2.7.12``|``intel/2016b`` -``0.12.3`` |``-Python-3.5.2`` |``intel/2016b`` -``0.12.15``|``-Python-3.6.4`` |``intel/2018a`` -``1.0.4`` |``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``1.3.4`` |``-Python-3.7.2`` |``foss/2019a`` -``1.4.0`` |``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b``, ``intel/2019b`` -``2.0.2`` |``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``2.2.3`` | |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b``, ``intelcuda/2020b`` -``2.4.1`` | |``foss/2021a`` -``2.4.2`` | |``foss/2021b`` -``2.4.3`` | |``foss/2022a`` -``3.2.1`` | |``foss/2022b`` -``3.2.2`` | |``foss/2023a`` -``3.4.1`` | |``gfbf/2023b`` - -### BoltzTraP - -Boltzmann Transport Properties (BoltzTraP) is a program for calculating the semi-classic transport coefficients. - -*homepage*: - -version |toolchain ----------|--------------- -``1.2.5``|``intel/2016a`` - -### BoltzTraP2 - -BoltzTraP2 provides a numerically stable and efficient method for obtaining analytic representations of electronic bands based on density-functional-theory results for relatively sparse grids. It achieves this goal by using smoothed Fourier interpolation. - -*homepage*: - -version |toolchain ------------|-------------- -``22.12.1``|``foss/2022a`` - -### Bonito - -Convolution Basecaller for Oxford Nanopore Reads - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|---------------------------------- -``0.1.0``|``-Python-3.7.4``|``foss/2019b``, ``fosscuda/2019b`` -``0.1.4``|``-Python-3.7.4``|``fosscuda/2019b`` -``0.2.0``|``-Python-3.7.4``|``fosscuda/2019b`` -``0.2.2``|``-Python-3.7.4``|``fosscuda/2019b`` -``0.3.2``|``-Python-3.7.4``|``fosscuda/2019b`` -``0.3.5``|``-Python-3.7.4``|``fosscuda/2019b`` -``0.3.8``| |``fosscuda/2020b`` -``0.4.0``| |``fosscuda/2020b`` - -### Bonmin - -Ipopt (Interior Point OPTimizer, pronounced eye-pea-Opt) is a software package for large-scale nonlinear optimization. - -*homepage*: - -version |toolchain ----------|--------------- -``1.8.7``|``intel/2019a`` - -### Bonnie++ - -Enhanced performance Test of Filesystem I/O - -*homepage*: - -version |toolchain ----------|-------------- -``1.97`` |``foss/2016a`` -``2.00a``|``GCC/10.3.0`` - -### Boost - -Boost provides free peer-reviewed portable C++ source libraries. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|-------------------------------------------------------------------- -``1.54.0``|``-Python-2.7.12``|``foss/2016b`` -``1.55.0``| |``system`` -``1.55.0``|``-Python-2.7.11``|``foss/2016a`` -``1.57.0``|``-Python-2.7.10``|``gimkl/2.11.5`` -``1.58.0``| |``intel/2017a`` -``1.58.0``|``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``1.58.0``|``-serial`` |``GCC/4.9.2`` -``1.59.0``|``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``1.60.0``| |``foss/2016a``, ``intel/2016a`` -``1.60.0``|``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``1.60.0``|``-Python-3.5.1`` |``foss/2016a`` -``1.61.0``| |``foss/2016a``, ``foss/2016b``, ``intel/2016a``, ``intel/2016b`` -``1.61.0``|``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``1.61.0``|``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``1.61.0``|``-Python-3.5.1`` |``foss/2016a`` -``1.62.0``|``-Python-2.7.12``|``intel/2016b`` -``1.63.0``| |``foss/2017a`` -``1.63.0``|``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``1.63.0``|``-Python-2.7.13``|``foss/2017a``, ``intel/2017a`` -``1.63.0``|``-Python-2.7.14``|``foss/2018a``, ``intel/2017b`` -``1.63.0``|``-Python-3.5.2`` |``foss/2016b`` -``1.64.0``| |``gompi/2019a``, ``gompic/2019a``, ``intel/2017a`` -``1.64.0``|``-Python-2.7.13``|``intel/2017a`` -``1.65.0``|``-Python-2.7.13``|``intel/2017a`` -``1.65.1``| |``foss/2017a``, ``foss/2017b``, ``intel/2017a``, ``intel/2017b`` -``1.65.1``|``-Python-2.7.13``|``intel/2017a`` -``1.65.1``|``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``1.65.1``|``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``1.66.0``| |``foss/2018a``, ``intel/2017b``, ``intel/2018.01``, ``intel/2018a`` -``1.66.0``|``-Python-2.7.14``|``foss/2018a``, ``intel/2017b``, ``intel/2018a`` -``1.66.0``|``-Python-3.6.3`` |``intel/2018.01`` -``1.66.0``|``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``1.66.0``|``-no_mpi`` |``GCCcore/6.4.0`` -``1.67.0``| |``foss/2018b``, ``fosscuda/2018b``, ``intel/2018a``, ``intel/2018b`` -``1.67.0``|``-Python-2.7.14``|``foss/2018a`` -``1.68.0``|``-Python-2.7.15``|``foss/2018b``, ``intel/2018b`` -``1.68.0``|``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``1.69.0``| |``intel/2019.01`` -``1.70.0``| |``gompi/2019a``, ``gompic/2019a``, ``iimpi/2019a``, ``iimpic/2019a`` -``1.71.0``| |``gompi/2019b``, ``gompic/2019b``, ``iimpi/2019b``, ``iimpic/2019b`` -``1.72.0``| |``gompi/2020a``, ``gompic/2020a``, ``iimpi/2020a`` -``1.72.0``|``-no_mpi`` |``GCCcore/9.3.0`` -``1.74.0``| |``GCC/10.2.0``, ``GCC/12.3.0``, ``iccifort/2020.4.304`` -``1.75.0``| |``GCC/11.2.0`` -``1.76.0``| |``GCC/10.3.0``, ``intel-compilers/2021.2.0`` -``1.77.0``| |``GCC/11.2.0``, ``intel-compilers/2021.4.0`` -``1.79.0``| |``GCC/11.2.0``, ``GCC/11.3.0`` -``1.81.0``| |``GCC/12.2.0`` -``1.82.0``| |``GCC/12.3.0`` -``1.83.0``| |``GCC/13.2.0`` -``1.85.0``| |``GCC/13.3.0`` - -### Boost.MPI - -Boost provides free peer-reviewed portable C++ source libraries. - -*homepage*: - -version |toolchain -----------|-------------------------------- -``1.76.0``|``gompi/2021a`` -``1.77.0``|``gompi/2021b`` -``1.79.0``|``gompi/2022a``, ``gompi/2022b`` -``1.81.0``|``gompi/2022b`` -``1.82.0``|``gompi/2023a`` - -### Boost.Python - -Boost.Python is a C++ library which enables seamless interoperability between C++ and the Python programming language. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|-------------------------------------------------------------------- -``1.64.0``| |``gompi/2019a``, ``gompic/2019a`` -``1.65.1``|``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``1.66.0``|``-Python-2.7.14``|``intel/2018a`` -``1.66.0``|``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``1.67.0``|``-Python-2.7.15``|``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b`` -``1.67.0``|``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``1.70.0``| |``gompi/2019a``, ``gompic/2019a``, ``iimpi/2019a``, ``iimpic/2019a`` -``1.71.0``| |``gompi/2019b``, ``gompic/2019b``, ``iimpi/2019b``, ``iimpic/2019b`` -``1.72.0``| |``gompi/2020a``, ``gompic/2020a``, ``iimpi/2020a`` -``1.74.0``| |``GCC/10.2.0`` -``1.76.0``| |``GCC/10.3.0`` -``1.77.0``| |``GCC/11.2.0`` -``1.79.0``| |``GCC/11.3.0`` -``1.83.0``| |``GCC/13.2.0`` - -### Boost.Python-NumPy - -Boost.Python is a C++ library which enables seamless interoperability between C++ and the Python programming language. - -*homepage*: - -version |toolchain -----------|-------------- -``1.79.0``|``foss/2022a`` - -### boost_histogram - -Boost-histogram is a Python package providing Python bindings for Boost.Histogram. - -*homepage*: - -version |toolchain ----------|-------------- -``1.2.1``|``foss/2021a`` - -### BOPTEST - -This repository contains code for the Building Optimization Performance Test framework (BOPTEST) that is being developed as part of the IBPSA Project 1. - -*homepage*: - -version |toolchain ----------|---------- -``0.3.0``|``system`` - -### boto3 - -Boto3 is the Amazon Web Services (AWS) Software Development Kit (SDK) for Python, which allows Python developers to write software that makes use of services like Amazon S3 and Amazon EC2. - -*homepage*: - -version |toolchain -------------|-------------------------------------- -``1.20.13`` |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``1.26.37`` |``GCCcore/11.3.0`` -``1.26.163``|``GCCcore/12.2.0`` -``1.28.70`` |``GCCcore/12.3.0`` - -### Bottleneck - -Fast NumPy array functions written in C - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``1.2.1``|``-Python-3.6.4``|``intel/2018a`` -``1.3.2``|``-Python-3.8.2``|``foss/2020a`` -``1.3.6``| |``foss/2022a`` -``1.3.7``| |``foss/2022a`` - -### Bowtie - -Bowtie is an ultrafast, memory-efficient short read aligner. It aligns short DNA sequences (reads) to the human genome. - -*homepage*: - -version |toolchain ------------|------------------------------------------------------------------------------------------------------------------------------------- -``1.1.2`` |``GCCcore/5.4.0``, ``GCCcore/6.3.0``, ``foss/2016a``, ``intel/2016b``, ``intel/2017a``, ``intel/2018a`` -``1.2.1.1``|``foss/2016b``, ``intel/2017b`` -``1.2.2`` |``foss/2018b``, ``intel/2017b``, ``intel/2018a`` -``1.2.3`` |``GCC/8.2.0-2.31.1``, ``GCC/8.3.0``, ``GCC/9.3.0``, ``foss/2018b``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1``, ``iccifort/2019.5.281`` -``1.3.0`` |``GCC/10.2.0``, ``GCC/9.3.0`` -``1.3.1`` |``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0`` - -### Bowtie2 - -Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes. Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome, its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes. - -*homepage*: - -version |toolchain ------------|------------------------------------------------------------------------------------------------------ -``2.2.8`` |``foss/2016a`` -``2.2.9`` |``foss/2016a``, ``intel/2016b`` -``2.3.2`` |``foss/2016b``, ``foss/2017a``, ``intel/2017a`` -``2.3.3.1``|``intel/2017b`` -``2.3.4`` |``intel/2017b`` -``2.3.4.1``|``foss/2017b``, ``intel/2017b``, ``intel/2018a`` -``2.3.4.2``|``foss/2018b``, ``intel/2018b`` -``2.3.4.3``|``foss/2017b`` -``2.3.5.1``|``GCC/8.2.0-2.31.1``, ``GCC/8.3.0``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1``, ``iccifort/2019.5.281`` -``2.4.1`` |``GCC/9.3.0`` -``2.4.2`` |``GCC/10.2.0``, ``GCC/9.3.0`` -``2.4.4`` |``GCC/10.3.0``, ``GCC/11.2.0`` -``2.4.5`` |``GCC/11.3.0`` -``2.5.1`` |``GCC/10.3.0``, ``GCC/12.2.0``, ``GCC/12.3.0`` - -### Bpipe - -Bpipe - a tool for running and managing bioinformatics pipelines - -*homepage*: - -version |toolchain ------------|--------------- -``0.9.9.2``|``intel/2017a`` - -### bpp - -The aim of this project is to implement a versatile high-performance version of the BPP software. - -*homepage*: - -version |toolchain ----------|-------------- -``4.3.8``|``GCC/8.3.0`` -``4.4.0``|``GCC/10.3.0`` - -### bpytop - -Resource monitor that shows usage and stats for processor, memory, disks, network and processes. - -*homepage*: - -version |toolchain -----------|------------------ -``1.0.60``|``GCCcore/10.2.0`` -``1.0.67``|``GCCcore/10.3.0`` - -### Bracken - -Bracken (Bayesian Reestimation of Abundance with KrakEN) is a highly accurate statistical method that computes the abundance of species in DNA sequences from a metagenomics sample. Braken uses the taxonomy labels assigned by Kraken, a highly accurate metagenomics classification algorithm, to estimate the number of reads originating from each species present in a sample. Kraken classifies reads to the best matching location in the taxonomic tree, but does not estimate abundances of species. We use the Kraken database itself to derive probabilities that describe how much sequence from each genome is identical to other genomes in the database, and combine this information with the assignments for a particular sample to estimate abundance at the species level, the genus level, or above. Combined with the Kraken classifier, Bracken produces accurate species- and genus-level abundance estimates even when a sample contains two or more near-identical species. NOTE: Bracken is compatible with both Kraken 1 and Kraken 2. However, the default kmer length is different depending on the version of Kraken used. If you use Kraken 1 defaults, specify 31 as the kmer length. If you use Kraken 2 defaults, specify 35 as the kmer length. - -*homepage*: - -version |toolchain ----------|------------------ -``2.6.0``|``GCCcore/9.3.0`` -``2.6.2``|``GCCcore/11.2.0`` -``2.7`` |``GCCcore/11.2.0`` -``2.9`` |``GCCcore/10.3.0`` - -### Braindecode - -Braindecode is an open-source Python toolbox for decoding raw electrophysiological brain data with deep learning models. It includes dataset fetchers, data preprocessing and visualization tools, as well as implementations of several deep learning architectures and data augmentations for analysis of EEG, ECoG and MEG. - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------------------|-------------- -``0.7`` |``-PyTorch-1.10.0`` |``foss/2021a`` -``0.7`` |``-PyTorch-1.10.0-CUDA-11.3.1``|``foss/2021a`` -``0.8.1``|``-PyTorch-2.1.2`` |``foss/2023a`` -``0.8.1``|``-PyTorch-2.1.2-CUDA-12.1.1`` |``foss/2023a`` - -### BRAKER - -BRAKER is a pipeline for fully automated prediction of protein coding genes with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomes. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------------------ -``2.1.2``| |``intel/2019a`` -``2.1.5``|``-Python-3.7.4``|``intel/2019b`` -``2.1.6``| |``foss/2021b``, ``foss/2022a`` - -### BreakDancer - -BreakDancer is a Perl/C++ package that provides genome-wide detection of structural variants from next generation paired-end sequencing reads - -*homepage*: - -version |toolchain ----------|--------------- -``1.4.5``|``intel/2017a`` - -### breseq - -breseq is a computational pipeline for the analysis of short-read re-sequencing data - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|--------------- -``0.35.0``|``-R-3.6.0`` |``intel/2019a`` -``0.35.4``|``-R-4.0.0`` |``foss/2020a`` -``0.36.1``| |``foss/2021b`` -``0.38.1``| |``foss/2022a`` - -### BRiAl - -BRiAl is the legacy version of PolyBoRi maintained by sagemath developers. - -*homepage*: - -version |toolchain -----------|-------------- -``1.2.12``|``GCC/11.3.0`` - -### Brotli - -Brotli is a generic-purpose lossless compression algorithm that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling, with a compression ratio comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate but offers more dense compression. The specification of the Brotli Compressed Data Format is defined in RFC 7932. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------------------------------------------------------------------- -``1.0.9``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/8.3.0`` -``1.1.0``|``GCCcore/13.2.0``, ``GCCcore/13.3.0`` - -### Brotli-python - -Brotli is a generic-purpose lossless compression algorithm that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling, with a compression ratio comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate but offers more dense compression. The specification of the Brotli Compressed Data Format is defined in RFC 7932. - -*homepage*: - -version |toolchain ----------|-------------------------------------------------------------------------------------------------- -``1.0.9``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``1.1.0``|``GCCcore/13.2.0`` - -### Brunsli - -Brunsli is a lossless JPEG repacking library. - -*homepage*: - -version|toolchain --------|-------------------------------------------------------------------------------------------------- -``0.1``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### bsddb3 - -bsddb3 is a nearly complete Python binding of the Oracle/Sleepycat C API for the Database Environment, Database, Cursor, Log Cursor, Sequence and Transaction objects. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------------------------------- -``6.2.6``| |``GCCcore/8.2.0`` -``6.2.6``|``-Python-2.7.15``|``fosscuda/2018b`` -``6.2.9``| |``GCCcore/10.2.0``, ``GCCcore/11.3.0`` - -### BSMAPz - -Updated and optimized fork of BSMAP. BSMAPz is a short reads mapping program for bisulfite sequencing in DNA methylation study. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``1.1.1``|``-Python-2.7.16``|``intel/2019b`` - -### Bsoft - -Bsoft is a collection of programs and a platform for development of software for image and molecular processing in structural biology. Problems in structural biology are approached with a highly modular design, allowing fast development of new algorithms without the burden of issues such as file I/O. It provides an easily accessible interface, a resource that can be and has been used in other packages. - -*homepage*: - -version |toolchain ----------|-------------- -``2.0.2``|``foss/2017b`` -``2.0.7``|``GCC/9.3.0`` - -### BSseeker2 - -BS-Seeker2 is a seamless and versatile pipeline for accurately and fast mapping the bisulfite-treated reads. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------------------------------- -``2.1.8``|``-Python-2.7.16``|``GCC/8.3.0``, ``iccifort/2019.5.281`` - -### btllib - -Bioinformatics Technology Lab common code library - -*homepage*: - -version |toolchain ----------|-------------- -``1.7.0``|``GCC/12.3.0`` - -### BuDDy - -A Binary Decision Diagram library, with many highly efficient vectorized BDD operations, dynamic variable reordering, automated garbage collection, a C++ interface with automatic reference counting, and much more. - -*homepage*: - -version|toolchain --------|------------------ -``2.4``|``GCCcore/10.2.0`` - -### BUFRLIB - -NCEP BUFRLIB software to encode or decode BUFR messages. It is not intended to be a primer on the BUFR code form itself. - -*homepage*: - -version |toolchain -------------|----------------------- -``11.3.0.2``|``iccifort/2020.1.217`` - -### build - -A simple, correct Python build frontend. - -*homepage*: - -version |toolchain -----------|------------------------------ -``0.10.0``|``foss/2022a``, ``foss/2022b`` -``1.0.3`` |``foss/2023a``, ``foss/2023b`` - -### buildenv - -This module sets a group of environment variables for compilers, linkers, maths libraries, etc., that you can use to easily transition between toolchains when building your software. To query the variables being set please use: module show - -*homepage*: - -version |versionsuffix |toolchain ------------|----------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``default``| |``FCC/4.5.0``, ``Fujitsu/21.05``, ``foss/2017b``, ``foss/2018b``, ``foss/2019b``, ``foss/2020a``, ``foss/2020b``, ``foss/2021a``, ``foss/2021b``, ``foss/2022a``, ``foss/2022b``, ``foss/2023a``, ``foss/2023b``, ``fosscuda/2019b``, ``fosscuda/2020a``, ``fosscuda/2020b``, ``intel/2016b``, ``intel/2017a``, ``intel/2019b``, ``intel/2020a``, ``intel/2020b``, ``intel/2021a``, ``intel/2021b``, ``intel/2022a``, ``intel/2022b``, ``intel/2023a``, ``intel/2023b``, ``intelcuda/2019b``, ``intelcuda/2020a``, ``intelcuda/2020b``, ``nvompi/2022.07`` -``default``|``-CUDA-11.3.1``|``foss/2021a`` -``default``|``-CUDA-11.4.1``|``foss/2021b`` -``default``|``-CUDA-11.7.0``|``foss/2022a`` -``default``|``-CUDA-12.0.0``|``foss/2022b`` -``default``|``-CUDA-12.1.1``|``foss/2023a`` - -### buildingspy - -Python modules for automating Modelica simulations and for running unit test for the Buildings library - -*homepage*: - -version |toolchain ----------|-------------- -``4.0.0``|``foss/2022a`` - -### Bullet - -Bullet professional 3D Game Multiphysics Library provides state of the art collision detection, soft body and rigid body dynamics. - -*homepage*: - -version |toolchain -----------|------------------------------- -``2.83.7``|``foss/2016a``, ``intel/2016a`` - -### BUSCO - -BUSCO: assessing genome assembly and annotation completeness with single-copy orthologs - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``1.22`` |``-Python-2.7.13``|``intel/2017a`` -``2.0.1``|``-Python-2.7.13``|``intel/2017a`` -``3.0.2``|``-Python-2.7.15``|``intel/2018b`` -``4.0.5``|``-Python-3.7.4`` |``foss/2019b`` -``4.0.6``| |``foss/2020b`` -``5.0.0``| |``foss/2020b`` -``5.1.2``| |``foss/2020b`` -``5.4.2``| |``foss/2021a`` -``5.4.3``| |``foss/2021b`` -``5.4.5``| |``foss/2022a`` -``5.4.7``| |``foss/2022b`` - -### BUStools - -bustools is a program for manipulating BUS files for single cell RNA-Seq datasets. It can be used to error correct barcodes, collapse UMIs, produce gene count or transcript compatibility count matrices, and is useful for many other tasks. See the kallisto | bustools website for examples and instructions on how to use bustools as part of a single-cell RNA-seq workflow. - -*homepage*: - -version |toolchain -----------|--------------------------------- -``0.40.0``|``GCCcore/9.3.0``, ``foss/2018b`` -``0.43.1``|``GCCcore/11.3.0`` - -### BWA - -Burrows-Wheeler Aligner (BWA) is an efficient program that aligns relatively short nucleotide sequences against a long reference sequence such as the human genome. - -*homepage*: - -version |toolchain --------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``0.7.12`` |``foss/2016b`` -``0.7.13`` |``foss/2016a``, ``intel/2016a`` -``0.7.15`` |``GCCcore/5.4.0``, ``GCCcore/6.4.0``, ``foss/2016a``, ``foss/2016b``, ``intel/2016b``, ``intel/2017a`` -``0.7.16a`` |``foss/2016b``, ``intel/2017a`` -``0.7.17`` |``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/8.2.0-2.31.1``, ``GCC/8.3.0``, ``GCC/9.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``foss/2017b``, ``foss/2018a``, ``foss/2018b``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1``, ``iccifort/2019.5.281``, ``iccifort/2020.4.304``, ``intel/2017b``, ``intel/2018a``, ``intel/2018b`` -``0.7.17-20220923``|``GCCcore/12.3.0`` -``0.7.18`` |``GCCcore/12.3.0`` - -### bwa-mem2 - -The tool bwa-mem2 is the next version of the bwa-mem algorithm in bwa. It produces alignment identical to bwa and is ~1.3-3.1x faster depending on the use-case, dataset and the running machine. - -*homepage*: - -version |toolchain ----------|---------------------------- -``2.2.1``|``intel-compilers/2023.1.0`` - -### bwa-meth - -Fast and accurante alignment of BS-Seq reads. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------- -``0.2.2``|``iccifort/2019.1.144-GCC-8.2.0-2.31.1``, ``iccifort/2019.5.281`` -``0.2.6``|``GCC/11.3.0`` - -### bwakit - -Bwakit is a self-consistent installation-free package of scripts and precompiled binaries, providing an end-to-end solution to read mapping. - -*homepage*: - -version |versionsuffix |toolchain -----------|--------------|---------- -``0.7.15``|``_x64-linux``|``system`` - -### bwidget - -The BWidget Toolkit is a high-level Widget Set for Tcl/Tk built using native Tcl/Tk 8.x namespaces. - -*homepage*: - -version |toolchain -----------|-------------------------------------------------------- -``1.9.13``|``GCCcore/8.2.0`` -``1.9.14``|``GCCcore/10.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.9.15``|``GCCcore/11.2.0``, ``GCCcore/11.3.0`` - -### BWISE - -de Bruijn Workflow using Integral information of Short pair End reads - -*homepage*: - -version |versionsuffix |toolchain -------------|-----------------|-------------- -``20180820``|``-Python-3.6.4``|``foss/2018a`` - -### bx-python - -The bx-python project is a Python library and associated set of scripts to allow for rapid implementation of genome scale analyses. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``0.7.4`` |``-Python-2.7.12``|``foss/2016b`` -``0.7.4`` |``-Python-2.7.13``|``intel/2017a`` -``0.8.1`` |``-Python-2.7.14``|``intel/2018a`` -``0.8.2`` |``-Python-3.6.6`` |``foss/2018b`` -``0.8.4`` | |``foss/2019a`` -``0.8.8`` |``-Python-3.7.4`` |``foss/2019b`` -``0.8.9`` |``-Python-3.8.2`` |``foss/2020a`` -``0.8.11``| |``foss/2021a`` -``0.8.13``| |``foss/2021b`` -``0.9.0`` | |``foss/2022a`` -``0.10.0``| |``foss/2023a`` - -### BXH_XCEDE_TOOLS - -A collection of data processing and image analysis tools for data in BXH or XCEDE format. This includes data format encapsulation/conversion, event-related analysis, QA tools, and more. These tools form the basis of the fBIRN QA procedures and are also distributed as part of the fBIRN Data Upload Scripts. - -*homepage*: - -version |toolchain -----------|---------- -``1.11.1``|``system`` - -### byacc - -Berkeley Yacc (byacc) is generally conceded to be the best yacc variant available. In contrast to bison, it is written to avoid dependencies upon a particular compiler. - -*homepage*: - -version |toolchain -------------|------------------------------- -``20160324``|``intel/2016a`` -``20160606``|``foss/2016b``, ``intel/2016b`` -``20170709``|``GCCcore/6.4.0`` - -### byobu - -Byobu is an elegant enhancement of the otherwise functional, plain, practical GNU Screen. Byobu includes an enhanced profile, configuration utilities, and system status notifications for the GNU screen window manager as well as the Tmux terminal multiplexer - -*homepage*: - -version |toolchain ----------|------------- -``5.133``|``GCC/8.3.0`` - -### bzip2 - -bzip2 is a freely available, patent free, high-quality data compressor. It typically compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical compressors), whilst being around twice as fast at compression and six times faster at decompression. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ -``1.0.6``|``GCC/4.8.1``, ``GCC/4.8.2``, ``GCC/4.8.4``, ``GCC/4.9.2``, ``GCC/4.9.3-2.25``, ``GCC/5.4.0-2.26``, ``GCCcore/4.9.3``, ``GCCcore/5.4.0``, ``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.2.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GNU/4.9.3-2.25``, ``foss/2016.04``, ``foss/2016a``, ``foss/2016b``, ``gimkl/2.11.5``, ``gimkl/2017a``, ``intel/2016.02-GCC-4.9``, ``intel/2016a``, ``intel/2016b``, ``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25``, ``system`` -``1.0.8``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.1.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``system`` - -## C - - -[c-ares](#c-ares) - [C3D](#c3d) - [cadaver](#cadaver) - [CaDiCaL](#cadical) - [CAFE5](#cafe5) - [Caffe](#caffe) - [cairo](#cairo) - [cairomm](#cairomm) - [Calcam](#calcam) - [CalculiX-CrunchiX](#calculix-crunchix) - [Calendrical](#calendrical) - [Calib](#calib) - [CAMPARI](#campari) - [Cantera](#cantera) - [canu](#canu) - [Canvas](#canvas) - [CAP3](#cap3) - [CapnProto](#capnproto) - [captum](#captum) - [Cargo](#cargo) - [Carma](#carma) - [carputils](#carputils) - [Cartopy](#cartopy) - [CASA](#casa) - [casacore](#casacore) - [Casanovo](#casanovo) - [CaSpER](#casper) - [CASPR](#caspr) - [Cassiopeia](#cassiopeia) - [CASTEP](#castep) - [castor](#castor) - [CastXML](#castxml) - [CAT-BAT](#cat-bat) - [CatBoost](#catboost) - [Catch2](#catch2) - [category_encoders](#category_encoders) - [CatLearn](#catlearn) - [CatMAP](#catmap) - [causallift](#causallift) - [causalml](#causalml) - [CaVEMan](#caveman) - [CAVIAR](#caviar) - [Cbc](#cbc) - [CBLAS](#cblas) - [ccache](#ccache) - [CCCL](#cccl) - [CCfits](#ccfits) - [CCL](#ccl) - [cclib](#cclib) - [cctbx-base](#cctbx-base) - [cctools](#cctools) - [CD-HIT](#cd-hit) - [CDAT](#cdat) - [cdbfasta](#cdbfasta) - [CDBtools](#cdbtools) - [cddlib](#cddlib) - [CDFlib](#cdflib) - [cDNA_Cupcake](#cdna_cupcake) - [CDO](#cdo) - [cdo-bindings](#cdo-bindings) - [cdsapi](#cdsapi) - [cell2location](#cell2location) - [CellBender](#cellbender) - [CellChat](#cellchat) - [CellMix](#cellmix) - [CellOracle](#celloracle) - [Cellpose](#cellpose) - [CellRanger](#cellranger) - [CellRanger-ARC](#cellranger-arc) - [CellRanger-ATAC](#cellranger-atac) - [CellRank](#cellrank) - [CellTypist](#celltypist) - [CENSO](#censo) - [centerline](#centerline) - [Centrifuge](#centrifuge) - [Cereal](#cereal) - [CESM-deps](#cesm-deps) - [CFDEMcoupling](#cfdemcoupling) - [cffi](#cffi) - [CFITSIO](#cfitsio) - [cftime](#cftime) - [CGAL](#cgal) - [cget](#cget) - [Cgl](#cgl) - [CGmapTools](#cgmaptools) - [CGNS](#cgns) - [CharLS](#charls) - [charm-gems](#charm-gems) - [CHASE](#chase) - [Check](#check) - [CheckM](#checkm) - [CheckM-Database](#checkm-database) - [CheckM2](#checkm2) - [Cheetah](#cheetah) - [Chemaxon-Marvin](#chemaxon-marvin) - [chemprop](#chemprop) - [CheMPS2](#chemps2) - [CHERAB](#cherab) - [chewBBACA](#chewbbaca) - [chi2comb](#chi2comb) - [Chimera](#chimera) - [ChimPipe](#chimpipe) - [ChIPseeker](#chipseeker) - [Chromaprint](#chromaprint) - [chromVARmotifs](#chromvarmotifs) - [cicero](#cicero) - [CIF2Cell](#cif2cell) - [cimfomfa](#cimfomfa) - [CIRCexplorer](#circexplorer) - [CIRCexplorer2](#circexplorer2) - [Circlator](#circlator) - [Circos](#circos) - [Circuitscape](#circuitscape) - [CIRI](#ciri) - [CIRI-long](#ciri-long) - [CIRIquant](#ciriquant) - [cisTEM](#cistem) - [CITE-seq-Count](#cite-seq-count) - [Clair3](#clair3) - [Clang](#clang) - [Clang-AOMP](#clang-aomp) - [Clang-Python-bindings](#clang-python-bindings) - [CLAPACK](#clapack) - [Clarabel.rs](#clarabel.rs) - [CLEAR](#clear) - [CLEASE](#clease) - [CLHEP](#clhep) - [CliMetLab](#climetlab) - [CLIP](#clip) - [cliquer](#cliquer) - [CLISP](#clisp) - [ClonalFrameML](#clonalframeml) - [CLooG](#cloog) - [CloudCompare](#cloudcompare) - [Clp](#clp) - [Clustal-Omega](#clustal-omega) - [ClustalW2](#clustalw2) - [Cluster-Buster](#cluster-buster) - [ClusterShell](#clustershell) - [CMake](#cmake) - [CMAverse](#cmaverse) - [CmdStanR](#cmdstanr) - [cmocean](#cmocean) - [cmph](#cmph) - [CMSeq](#cmseq) - [CNT-ILP](#cnt-ilp) - [CNVkit](#cnvkit) - [CNVnator](#cnvnator) - [Co-phylog](#co-phylog) - [COBRApy](#cobrapy) - [CoCoALib](#cocoalib) - [CodAn](#codan) - [code-cli](#code-cli) - [code-server](#code-server) - [CODEX2](#codex2) - [CodingQuarry](#codingquarry) - [Cogent](#cogent) - [Coin](#coin) - [CoinUtils](#coinutils) - [ColabFold](#colabfold) - [colossalai](#colossalai) - [COMEBin](#comebin) - [Commet](#commet) - [CompareM](#comparem) - [Compass](#compass) - [Compress-Raw-Zlib](#compress-raw-zlib) - [COMSOL](#comsol) - [Con3F](#con3f) - [conan](#conan) - [CONCOCT](#concoct) - [Concorde](#concorde) - [ConcurrentVersionsSystem](#concurrentversionssystem) - [configparser](#configparser) - [configurable-http-proxy](#configurable-http-proxy) - [CONN](#conn) - [connected-components-3d](#connected-components-3d) - [ConnectomeWorkbench](#connectomeworkbench) - [contextily](#contextily) - [Control-FREEC](#control-freec) - [cooler](#cooler) - [CoordgenLibs](#coordgenlibs) - [Coot](#coot) - [CopyKAT](#copykat) - [core-counter](#core-counter) - [Coreutils](#coreutils) - [corner](#corner) - [CoSymLib](#cosymlib) - [coverage](#coverage) - [cowsay](#cowsay) - [CP2K](#cp2k) - [CPB](#cpb) - [CPC2](#cpc2) - [cpio](#cpio) - [CPLEX](#cplex) - [CPMD](#cpmd) - [CPPE](#cppe) - [CppHeaderParser](#cppheaderparser) - [CppUnit](#cppunit) - [cppy](#cppy) - [cppyy](#cppyy) - [cppzmq](#cppzmq) - [cpu_features](#cpu_features) - [cram](#cram) - [cramtools](#cramtools) - [CrayCCE](#craycce) - [CrayGNU](#craygnu) - [CrayIntel](#crayintel) - [CrayPGI](#craypgi) - [crb-blast](#crb-blast) - [CREST](#crest) - [CRF++](#crf++) - [CRISPR-DAV](#crispr-dav) - [CRISPResso2](#crispresso2) - [cromwell](#cromwell) - [crossguid](#crossguid) - [CrossMap](#crossmap) - [CrossTalkZ](#crosstalkz) - [CRPropa](#crpropa) - [Crumble](#crumble) - [cryoCARE](#cryocare) - [cryoDRGN](#cryodrgn) - [cryptography](#cryptography) - [CryptoMiniSat](#cryptominisat) - [CrystFEL](#crystfel) - [CSB](#csb) - [CSBDeep](#csbdeep) - [CSBLAST](#csblast) - [cscope](#cscope) - [csvkit](#csvkit) - [ctags](#ctags) - [ctffind](#ctffind) - [ctffind5](#ctffind5) - [CTPL](#ctpl) - [Cube](#cube) - [CubeGUI](#cubegui) - [CubeLib](#cubelib) - [CubeWriter](#cubewriter) - [CuCLARK](#cuclark) - [CUDA](#cuda) - [CUDA-Samples](#cuda-samples) - [CUDAcompat](#cudacompat) - [CUDAcore](#cudacore) - [CUDD](#cudd) - [cuDNN](#cudnn) - [Cufflinks](#cufflinks) - [CUnit](#cunit) - [CuPy](#cupy) - [cURL](#curl) - [currentNe](#currentne) - [cuSPARSELt](#cusparselt) - [custodian](#custodian) - [cutadapt](#cutadapt) - [cuTENSOR](#cutensor) - [cuteSV](#cutesv) - [CUTLASS](#cutlass) - [CVglasso](#cvglasso) - [CVX](#cvx) - [CVXOPT](#cvxopt) - [CVXPY](#cvxpy) - [CWIPI](#cwipi) - [cwltool](#cwltool) - [cxxopts](#cxxopts) - [cysignals](#cysignals) - [Cython](#cython) - [cython-blis](#cython-blis) - [cytoolz](#cytoolz) - [Cytoscape](#cytoscape) - [cytosim](#cytosim) - [cyvcf2](#cyvcf2) - - -### c-ares - -c-ares is a C library for asynchronous DNS requests (including name resolves) - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``1.17.2``|``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``1.18.1``|``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``1.19.1``|``GCCcore/12.3.0`` -``1.27.0``|``GCCcore/13.2.0`` - -### C3D - -Convert3D Medical Image Processing Tool - -*homepage*: - -version |toolchain ----------|---------- -``1.0.0``|``system`` - -### cadaver - -cadaver is a command-line WebDAV client for Unix. - -*homepage*: - -version |toolchain -----------|--------------- -``0.23.3``|``intel/2017a`` - -### CaDiCaL - -CaDiCaL is a simplified satisfiability solver. The original goal of the development of CaDiCaL was to obtain a CDCL solver, which is easy to understand and change, while at the same time not being much slower than other state-of-the-art CDCL solvers. - -*homepage*: - -version |toolchain ----------|------------- -``1.3.0``|``GCC/9.3.0`` - -### CAFE5 - -Software for Computational Analysis of gene Family Evolution The purpose of CAFE is to analyze changes in gene family size in a way that accounts for phylogenetic history and provides a statistical foundation for evolutionary inferences. The program uses a birth and death process to model gene gain and loss across a user-specified phylogenetic tree. The distribution of family sizes generated under this model can provide a basis for assessing the significance of the observed family size differences among taxa. - -*homepage*: - -version |toolchain ----------|-------------- -``5.0.0``|``GCC/10.2.0`` - -### Caffe - -Caffe is a deep learning framework made with expression, speed, and modularity in mind. It is developed by the Berkeley Vision and Learning Center (BVLC) and community contributors. - -*homepage*: - -version|versionsuffix |toolchain --------|------------------------------|--------------- -``1.0``|``-CUDA-9.1.85-Python-2.7.14``|``intel/2017b`` -``1.0``|``-Python-2.7.13`` |``intel/2017a`` -``1.0``|``-Python-2.7.14`` |``intel/2017b`` -``rc3``|``-CUDA-7.5.18-Python-2.7.11``|``foss/2016a`` - -### cairo - -Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System (via both Xlib and XCB), Quartz, Win32, image buffers, PostScript, PDF, and SVG file output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB - -*homepage*: - -version |versionsuffix |toolchain ------------|----------------|------------------------------------------------------------------------------------------------------------------- -``1.14.6`` | |``foss/2016a``, ``foss/2016b``, ``intel/2016a``, ``intel/2016b`` -``1.14.6`` |``-GLib-2.48.0``|``foss/2016a``, ``intel/2016a`` -``1.14.8`` | |``intel/2017a`` -``1.14.10``| |``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``intel/2017b`` -``1.14.12``| |``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``1.16.0`` | |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.17.4`` | |``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``1.17.8`` | |``GCCcore/12.3.0`` -``1.18.0`` | |``GCCcore/13.2.0`` - -### cairomm - -The Cairomm package provides a C++ interface to Cairo. - -*homepage*: - -version |toolchain -----------|------------------------------------ -``1.12.2``|``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``1.16.2``|``GCC/11.3.0`` - -### Calcam - -Calcam is a Python package providing tools for spatial calibration of cameras, i.e. determining the mapping between pixel coordinates in an image and real-world 3D sight lines & coordinates. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``2.1.0``|``-Python-2.7.14``|``intel/2018a`` -``2.1.0``|``-Python-3.6.4`` |``intel/2018a`` - -### CalculiX-CrunchiX - -A Free Software Three-Dimensional Structural Finite Element Program - -*homepage*: - -version |toolchain ---------|---------------------------------------------- -``2.20``|``foss/2021a``, ``foss/2022b``, ``foss/2023a`` - -### Calendrical - -Calendrical module is for calendrical calculations. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|--------------- -``2.0.1`` |``-Python-3.6.3``|``intel/2017b`` -``2.0.2a``|``-Python-3.6.4``|``intel/2018a`` -``2.0.2a``|``-Python-3.6.6``|``intel/2018b`` - -### Calib - -Calib clusters paired-end reads using their barcodes and sequences. Calib is suitable for amplicon sequencing where a molecule is tagged, then PCR amplified with high depth, also known as Unique Molecule Identifier (UMI) sequencing. - -*homepage*: - -version |toolchain ----------|------------- -``0.3.4``|``GCC/9.3.0`` - -### CAMPARI - -CAMPARI is a joint package for performing and analyzing molecular simulations, in particular of systems of biological relevance. It focuses on a wide availability of algorithms for (advanced) sampling and is capable of combining Monte Carlo and molecular dynamics in seamless fashion. - -*homepage*: - -version|toolchain --------|-------------------------------- -``4.0``|``intel/2020b``, ``intel/2023a`` - -### Cantera - -Chemical kinetics, thermodynamics, and transport tool suite - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------------------------ -``2.2.1``|``-Python-2.7.12``|``intel/2016b`` -``2.3.0``|``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``2.3.0``|``-Python-2.7.13``|``intel/2017a`` -``2.3.0``|``-Python-2.7.14``|``foss/2017b``, ``intel/2017b``, ``intel/2018a`` -``2.4.0``|``-Python-2.7.14``|``intel/2018a`` -``2.6.0``| |``foss/2022a`` -``3.0.0``| |``foss/2023a`` - -### canu - -Canu is a fork of the Celera Assembler designed for high-noise single-molecule sequencing - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------------------------------------------------------------------- -``1.4`` | |``foss/2016b`` -``1.7`` | |``intel/2018a`` -``1.8`` |``-Perl-5.26.0``|``foss/2017b``, ``intel/2017b`` -``1.8`` |``-Perl-5.28.0``|``foss/2018b`` -``1.8`` |``-Perl-5.28.1``|``GCCcore/8.2.0`` -``1.9`` |``-Java-11`` |``GCCcore/8.3.0`` -``2.1.1``| |``GCCcore/10.2.0`` -``2.1.1``|``-Java-11`` |``GCCcore/9.3.0`` -``2.2`` | |``GCC/12.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``2.2`` |``-Java-11`` |``GCCcore/10.3.0`` - -### Canvas - -Copy number variant (CNV) calling from DNA sequencing data - -*homepage*: - -version |toolchain ----------------|---------- -``1.39.0.1598``|``system`` - -### CAP3 - -CAP3 assembly program - -*homepage*: - -version |toolchain --------------------------|---------- -``20071221-intel-x86`` |``system`` -``20071221-intel-x86_64``|``system`` -``20071221-opteron`` |``system`` - -### CapnProto - -Cap’n Proto is an insanely fast data interchange format and capability-based RPC system. - -*homepage*: - -version |toolchain ------------|---------------------------------------------------------- -``0.6.1`` |``GCCcore/6.4.0`` -``0.7.0`` |``GCCcore/7.3.0`` -``0.8.0`` |``GCCcore/9.3.0`` -``0.9.1`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``0.10.2`` |``GCCcore/11.3.0`` -``0.10.3`` |``GCCcore/12.2.0`` -``1.0.1`` |``GCCcore/12.3.0`` -``1.0.1.1``|``GCCcore/13.2.0`` - -### captum - -Captum is a model interpretability and understanding library for PyTorch. Captum means comprehension in Latin and contains general purpose implementations of integrated gradients, saliency maps, smoothgrad, vargrad and others for PyTorch models. It has quick integration for models built with domain-specific libraries such as torchvision, torchtext, and others. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``0.5.0``| |``foss/2022a`` -``0.5.0``|``-CUDA-11.7.0``|``foss/2022a`` - -### Cargo - -The Rust package manager - -*homepage*: - -version |toolchain -----------|-------------- -``0.13.0``|``foss/2016b`` - -### Carma - -Carma - A molecular dynamics analysis program - -*homepage*: - -version |toolchain ---------|-------------- -``2.01``|``foss/2019b`` - -### carputils - -carputils is a Python framework for generating and running openCARP examples. - -*homepage*: - -version |versionsuffix |toolchain -------------|-----------------|-------------- -``20200915``|``-Python-3.8.2``|``foss/2020a`` -``20210513``| |``foss/2020b`` - -### Cartopy - -Cartopy is a Python package designed to make drawing maps for data analysis and visualisation easy. - -*homepage*: - -version |versionsuffix |toolchain -----------------|-----------------|------------------------------- -``0.18.0`` |``-Python-3.7.4``|``foss/2019b`` -``0.18.0`` |``-Python-3.8.2``|``foss/2020a`` -``0.19.0.post1``| |``foss/2020b``, ``intel/2020b`` -``0.20.0`` | |``foss/2021a`` -``0.20.3`` | |``foss/2021b``, ``foss/2022a`` -``0.22.0`` | |``foss/2023a`` - -### CASA - -CASA, the Common Astronomy Software Applications package, is the primary data processing software for the Atacama Large Millimeter/submillimeter Array (ALMA) and NSF's Karl G. Jansky Very Large Array (VLA), and is frequently used also for other radio telescopes. The CASA software can process data from both single-dish and aperture-synthesis telescopes, and one of its core functionalities is to support the data reduction and imaging pipelines for ALMA, VLA and the VLA Sky Survey (VLASS). - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|---------- -``6.5.5-21``|``-py3.8`` |``system`` - -### casacore - -A suite of C++ libraries for radio astronomy data processing. The ephemerides data needs to be in DATA_DIR and the location must be specified at runtime. Thus user's can update them. - -*homepage*: - -version |toolchain ----------|------------------------------ -``3.4.0``|``foss/2021b`` -``3.5.0``|``foss/2022a``, ``foss/2023b`` - -### Casanovo - -De Novo Mass Spectrometry Peptide Sequencing with a Transformer Model - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``3.3.0``| |``foss/2022a`` -``3.3.0``|``-CUDA-11.7.0``|``foss/2022a`` - -### CaSpER - -CaSpER is a signal processing approach for identification, visualization, and integrative analysis of focal and large-scale CNV events in multiscale resolution using either bulk or single-cell RNA sequencing data. - -*homepage*: - -version|toolchain --------|-------------- -``2.0``|``foss/2019b`` - -### CASPR - -Running CASPR is extremely easy and convenient to analyze CRIPR-Cas9 screens using pgRNAs. - -*homepage*: - -version |toolchain -------------|-------------- -``20200730``|``foss/2022a`` - -### Cassiopeia - -A Package for Cas9-Enabled Single Cell Lineage Tracing Tree Reconstruction. - -*homepage*: - -version |toolchain ----------|-------------- -``2.0.0``|``foss/2023a`` - -### CASTEP - -CASTEP is an electronic structure materials modelling code based on density functional theory (DFT), with functionality including geometry optimization molecular dynamics, phonons, NMR chemical shifts and much more. - -*homepage*: - -version |toolchain -----------|-------------------------------------------------------------------------------------- -``21.1.1``|``CrayCCE/19.06``, ``CrayGNU/19.06``, ``foss/2019b``, ``intel/2019b``, ``iomkl/2019b`` -``22.11`` |``foss/2022a`` -``23.1`` |``foss/2023a`` - -### castor - -Efficient phylogenetic analyses on massive phylogenies comprising up to millions of tips. Functions include pruning, rerooting, calculation of most-recent common ancestors, calculating distances from the tree root and calculating pairwise distances. Calculation of phylogenetic signal and mean trait depth (trait conservatism), ancestral state reconstruction and hidden character prediction of discrete characters, simulating and fitting models of trait evolution, fitting and simulating diversification models, dating trees, comparing trees, and reading/writing trees in Newick format. - -*homepage*: - -version |toolchain -----------|-------------- -``1.7.11``|``foss/2022a`` - -### CastXML - -CastXML is a C-family abstract syntax tree XML output tool. - -*homepage*: - -version |toolchain -------------|----------------- -``0.4.3`` |``GCCcore/8.3.0`` -``20160617``|``foss/2016a`` -``20180806``|``foss/2018a`` - -### CAT-BAT - -Tool for taxonomic classification of contigs and metagenome-assembled genomes (MAGs). - -*homepage*: - -version |toolchain ----------|-------------- -``5.2.3``|``GCC/10.3.0`` - -### CatBoost - -CatBoost is a high-performance open source library for gradient boosting on decision trees - -*homepage*: - -version|toolchain --------|-------------- -``1.2``|``gfbf/2023a`` - -### Catch2 - -A modern, C++-native, header-only, test framework for unit-tests, TDD and BDD - using C++11, C++14, C++17 and later (or C++03 on the Catch1.x branch) - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------------------- -``2.9.1`` |``system`` -``2.11.0``|``system`` -``2.13.4``|``system`` -``2.13.9``|``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``system`` - -### category_encoders - -A set of scikit-learn-style transformers for encoding categorical variables into numeric by means of different techniques. - -*homepage*: - -version |toolchain ----------|-------------- -``2.4.1``|``foss/2021b`` - -### CatLearn - -An environment for atomistic machine learning in Python for applications in catalysis - -*homepage*: - -version |toolchain ----------|--------------- -``0.6.2``|``intel/2022a`` - -### CatMAP - -Catalyst Micro-kinetic Analysis Package for automated creation of micro-kinetic models used in catalyst screening. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|--------------- -``20170927``|``-Python-2.7.14``|``intel/2017b`` -``20220519``| |``foss/2022a`` - -### causallift - -CausalLift: Python package for Uplift Modeling in real-world business; applicable for both A/B testing and observational data - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``1.0.6``|``-Python-3.8.2``|``foss/2020a`` - -### causalml - -Causal ML: A Python Package for Uplift Modeling and Causal Inference with ML - -*homepage*: - -version |versionsuffix |toolchain -------------------|-----------------|-------------- -``0.3.0-20180610``|``-Python-3.7.2``|``foss/2019a`` -``0.8.0-20200909``|``-Python-3.8.2``|``foss/2020a`` - -### CaVEMan - -SNV expectation maximisation based mutation calling algorithm aimed at detecting somatic mutations in paired (tumour/normal) cancer samples. Supports both bam and cram format via htslib - -*homepage*: - -version |toolchain -----------|-------------- -``1.13.2``|``foss/2018a`` - -### CAVIAR - -CAusal Variants Identication in Associated Regions. A statistical framework that quantifies the probability of each variant to be causal while allowing an arbitrary number of causal variants. - -*homepage*: - -version |toolchain -----------------|-------------- -``2.2-20190419``|``foss/2019b`` - -### Cbc - -Cbc (Coin-or branch and cut) is an open-source mixed integer linear programming solver written in C++. It can be used as a callable library or using a stand-alone executable. - -*homepage*: - -version |toolchain ------------|---------------------------------------------- -``2.10.3`` |``foss/2018b`` -``2.10.5`` |``foss/2020b``, ``foss/2021a``, ``foss/2022b`` -``2.10.11``|``foss/2023a`` - -### CBLAS - -C interface to the BLAS - -*homepage*: - -version |toolchain -------------|------------------------------------------------ -``20110120``|``foss/2016b``, ``intel/2019b``, ``intel/2020a`` - -### ccache - -Ccache (or “ccache”) is a compiler cache. It speeds up recompilation by caching previous compilations and detecting when the same compilation is being done again - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|---------------------------------------------------------- -``3.2.5`` | |``system`` -``3.3.1`` | |``system`` -``3.3.3`` | |``system`` -``3.3.4`` |``-f90`` |``system`` -``3.7.11``| |``system`` -``4.2.1`` | |``system`` -``4.6.1`` | |``GCCcore/11.2.0`` -``4.6.3`` | |``GCCcore/11.3.0``, ``system`` -``4.7.5`` | |``system`` -``4.8.3`` | |``system`` -``4.9`` | |``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### CCCL - -CUDA C++ Core Libraries (header only) - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|------------------ -``2.3.0``|``-CUDA-12.1.1``|``GCCcore/12.3.0`` - -### CCfits - -CCfits is an object oriented interface to the cfitsio library. It is designed to make the capabilities of cfitsio available to programmers working in C++. - -*homepage*: - -version|toolchain --------|----------------- -``2.5``|``GCCcore/9.3.0`` - -### CCL - -Clozure CL (often called CCL for short) is a free Common Lisp implementation with a long history. Some distinguishing features of the implementation include fast compilation speed, native threads, a precise, generational, compacting garbage collector, and a convenient foreign-function interface. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------- -``1.11.5``|``system`` -``1.12`` |``GCCcore/9.3.0`` -``1.12.1``|``GCCcore/10.3.0`` -``1.12.2``|``GCCcore/11.3.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### cclib - -cclib is a Python library that provides parsers for computational chemistry log files. It also provides a platform to implement algorithms in a package-independent manner. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------------------- -``1.5`` |``-Python-3.5.2``|``foss/2016b`` -``1.6.3``|``-Python-3.8.2``|``foss/2020a``, ``intel/2020a`` -``1.7.2``| |``foss/2021b`` -``1.8`` | |``foss/2023a`` - -### cctbx-base - -The Computational Crystallography Toolbox (cctbx) is being developed as the open source component of the Phenix project. The goal of the Phenix project is to advance automation of macromolecular structure determination. Phenix depends on the cctbx, but not vice versa. This hierarchical approach enforces a clean design as a reusable library. The cctbx is therefore also useful for small-molecule crystallography and even general scientific applications. - -*homepage*: - -version |toolchain -----------|---------------------------------- -``2020.8``|``foss/2020b``, ``fosscuda/2020b`` - -### cctools - -The Cooperating Computing Tools (CCTools) help you to design and deploy scalable applications that run on hundreds or thousands of machines at once. - -*homepage*: - -version |toolchain -----------|----------------- -``7.0.22``|``GCCcore/8.3.0`` - -### CD-HIT - -CD-HIT is a very widely used program for clustering and comparing protein or nucleotide sequences. - -*homepage*: - -version |versionsuffix |toolchain ----------|--------------|----------------------------------------------------------------------------------------------------------------------------------------------------- -``4.6.4``|``-2015-0603``|``GNU/4.9.3-2.25`` -``4.6.6``| |``foss/2016b`` -``4.6.8``| |``foss/2018b``, ``intel/2017a``, ``intel/2018a`` -``4.8.1``| |``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0``, ``GCC/8.3.0``, ``GCC/9.3.0``, ``foss/2018b``, ``iccifort/2019.5.281`` - -### CDAT - -CDAT is a powerful and complete front-end to a rich set of visual-data exploration and analysis capabilities well suited for data analysis problems. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``8.2.1``|``-Python-3.8.2``|``foss/2020a`` - -### cdbfasta - -Fasta file indexing and retrival tool - -*homepage*: - -version |toolchain ---------|-------------------------------------------------------------------------------- -``0.99``|``GCC/8.3.0``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1``, ``iccifort/2019.5.281`` - -### CDBtools - -CDB (Constant DataBase) indexing and retrieval tools for FASTA files - -*homepage*: - -version |toolchain ---------|------------------------------ -``0.99``|``GCC/10.2.0``, ``GCC/11.3.0`` - -### cddlib - -An efficient implementation of the Double Description Method - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``0.94i``|``GCCcore/8.2.0`` -``0.94j``|``GCCcore/8.3.0`` -``0.94m``|``GCCcore/11.3.0``, ``GCCcore/13.2.0`` - -### CDFlib - -cdflib is a python module to read/write CDF (Common Data Format .cdf) files without needing to install the CDF NASA library. - -*homepage*: - -version |toolchain ----------|-------------- -``0.4.9``|``foss/2022a`` - -### cDNA_Cupcake - -cDNA_Cupcake is a miscellaneous collection of Python and R scripts used for analyzing sequencing data. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``5.8`` |``-Python-2.7.14``|``intel/2018a`` -``24.2.0``|``-Python-3.8.2`` |``foss/2020a`` -``26.0.0``| |``foss/2021a`` - -### CDO - -CDO is a collection of command line Operators to manipulate and analyse Climate and NWP model Data. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------ -``1.7.2`` |``intel/2016b`` -``1.8.1`` |``intel/2017a`` -``1.9.1`` |``intel/2017b`` -``1.9.2`` |``intel/2017b`` -``1.9.5`` |``intel/2018a``, ``intel/2018b``, ``iomkl/2018b`` -``1.9.8`` |``intel/2019b`` -``1.9.10``|``gompi/2019b``, ``gompi/2020b``, ``gompi/2021a``, ``iimpi/2021b`` -``2.0.5`` |``gompi/2021b`` -``2.0.6`` |``gompi/2022a`` -``2.1.1`` |``gompi/2021a`` -``2.2.2`` |``gompi/2023a``, ``gompi/2023b`` - -### cdo-bindings - -Python interface to CDO. - -*homepage*: - -version |toolchain ----------|-------------- -``1.5.7``|``foss/2021b`` -``1.6.0``|``foss/2022a`` - -### cdsapi - -Climate Data Store API - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------ -``0.1.4``| |``foss/2019a`` -``0.1.4``|``-Python-3.6.6``|``foss/2018b`` -``0.3.0``| |``GCCcore/9.3.0`` -``0.5.1``| |``GCCcore/11.3.0`` - -### cell2location - -Comprehensive mapping of tissue cell architecture via integrated single cell and spatial transcriptomics (cell2location model) - -*homepage*: - -version |toolchain ---------------|------------------ -``0.05-alpha``|``fosscuda/2020b`` - -### CellBender - -CellBender is a software package for eliminating technical artifacts from high-throughput single-cell RNA sequencing (scRNA-seq) data. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``0.2.1``|``-CUDA-11.3.1``|``foss/2021a`` -``0.2.2``| |``foss/2022a`` -``0.3.0``| |``foss/2023a`` -``0.3.0``|``-CUDA-12.1.1``|``foss/2023a`` - -### CellChat - -" R toolkit for inference, visualization and analysis of cell-cell communication from single-cell data - -*homepage*: - -version |toolchain ----------|-------------- -``1.5.0``|``foss/2022a`` - -### CellMix - -A Comprehensive Toolbox for Gene Expression Deconvolution - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``1.6.2``|``-R-3.5.1`` |``foss/2018b`` - -### CellOracle - -CellOracle is a Python library for in silico gene perturbation analyses using single-cell omics data and Gene Regulatory Network models. - -*homepage*: - -version |toolchain -----------|-------------- -``0.12.0``|``foss/2022a`` - -### Cellpose - -a generalist algorithm for cellular segmentation - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|---------------------------------- -``0.6.5``| |``foss/2020b``, ``fosscuda/2020b`` -``2.2.2``| |``foss/2022a`` -``2.2.2``|``-CUDA-11.7.0``|``foss/2022a`` - -### CellRanger - -Cell Ranger is a set of analysis pipelines that process Chromium single-cell RNA-seq output to align reads, generate gene-cell matrices and perform clustering and gene expression analysis. - -*homepage*: - -version |toolchain ----------|---------- -``3.0.0``|``system`` -``3.0.2``|``system`` -``3.1.0``|``system`` -``4.0.0``|``system`` -``5.0.0``|``system`` -``5.0.1``|``system`` -``6.0.0``|``system`` -``6.0.1``|``system`` -``6.0.2``|``system`` -``6.1.2``|``system`` -``7.0.0``|``system`` -``7.1.0``|``system`` -``7.2.0``|``system`` -``8.0.0``|``system`` -``8.0.1``|``system`` - -### CellRanger-ARC - -Cell Ranger ARC is a set of analysis pipelines that process Chromium Single Cell Multiome ATAC + Gene Expression sequencing data to generate a variety of analyses pertaining to gene expression, chromatin accessibility and their linkage. Furthermore, since the ATAC and gene expression measurements are on the very same cell, we are able to perform analyses that link chromatin accessibility and gene expression. - -*homepage*: - -version |toolchain ----------|---------- -``1.0.1``|``system`` -``2.0.0``|``system`` -``2.0.1``|``system`` -``2.0.2``|``system`` - -### CellRanger-ATAC - -Cell Ranger ATAC is a set of analysis pipelines that process Chromium Single Cell ATAC data. - -*homepage*: - -version |toolchain ----------|---------- -``1.2.0``|``system`` -``2.0.0``|``system`` -``2.1.0``|``system`` - -### CellRank - -CellRank is a toolkit to uncover cellular dynamics based on Markov state modeling of single-cell data. It contains two main modules: kernels compute cell-cell transition probabilities and estimators generate hypothesis based on these. - -*homepage*: - -version |toolchain ----------|-------------- -``1.4.0``|``foss/2021a`` -``2.0.2``|``foss/2023a`` - -### CellTypist - -A tool for semi-automatic cell type annotation - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.0``|``foss/2021b`` -``1.6.2``|``foss/2023a`` - -### CENSO - -Commandline Energetic SOrting (CENSO) is a sorting algorithm for efficient evaluation of Structure Ensembles (SE). The input ensemble (or single structure) originating from a CREST[SQM/FF] run can be ranked by free energy at DFT level and/or geometries can be optimized using DFT. - -*homepage*: - -version |toolchain ----------|----------------------------------- -``1.2.0``|``GCCcore/12.3.0``, ``intel/2022a`` - -### centerline - -Roads, rivers and similar linear structures are often represented by long and complex polygons. Since one of the most important attributes of a linear structure is its length, extracting that attribute from a polygon can prove to be more or less difficult. This library tries to solve this problem by creating the the polygon's centerline using the Voronoi diagram. For more info on how to use this package, see the official documentation. - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.1``|``foss/2022a`` - -### Centrifuge - -Classifier for metagenomic sequences - -*homepage*: - -version |toolchain ---------------|-------------------------------- -``1.0.3`` |``foss/2018b`` -``1.0.4`` |``gompi/2020b``, ``gompi/2021a`` -``1.0.4-beta``|``foss/2018b``, ``gompi/2020a`` - -### Cereal - -cereal is a header-only C++11 serialization library. cereal takes arbitrary data types and reversibly turns them into different representations, such as compact binary encodings, XML, or JSON. cereal was designed to be fast, light-weight, and easy to extend - it has no external dependencies and can be easily bundled with other code or used standalone. - -*homepage*: - -version |toolchain ----------|------------------------------ -``1.3.0``|``system`` -``1.3.2``|``GCCcore/12.2.0``, ``system`` - -### CESM-deps - -CESM is a fully-coupled, community, global climate model that provides state-of-the-art computer simulations of the Earth's past, present, and future climate states. - -*homepage*: - -version|toolchain --------|-------------------------------------------------------------------------------- -``2`` |``foss/2018b``, ``foss/2021b``, ``foss/2022a``, ``intel/2018b``, ``iomkl/2018b`` - -### CFDEMcoupling - -CFDEMcoupling is an open source CFD-DEM engine. It provides the possibility to couple the DEM engine LIGGGHTS to a CFD framework. - -*homepage*: - -version |toolchain ----------|------------------------------ -``3.8.0``|``foss/2018a``, ``foss/2019b`` - -### cffi - -C Foreign Function Interface for Python. Interact with almost any C code from Python, based on C-like declarations that you can often copy-paste from header files or documentation. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------- -``1.15.1``|``GCCcore/11.3.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` -``1.16.0``|``GCCcore/13.3.0`` - -### CFITSIO - -CFITSIO is a library of C and Fortran subroutines for reading and writing data files in FITS (Flexible Image Transport System) data format. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------- -``3.38`` |``foss/2016a``, ``intel/2016a`` -``3.41`` |``GCCcore/5.4.0``, ``GCCcore/6.3.0``, ``intel/2016b`` -``3.42`` |``GCCcore/6.4.0``, ``intel/2017b`` -``3.45`` |``GCCcore/7.3.0``, ``intel/2018b`` -``3.47`` |``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``3.48`` |``GCCcore/9.3.0`` -``3.49`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``4.2.0``|``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``4.3.0``|``GCCcore/12.3.0`` -``4.3.1``|``GCCcore/13.2.0`` - -### cftime - -Time-handling functionality from netcdf4-python - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|------------------------------- -``1.0.0`` |``-Python-3.6.4`` |``intel/2018a`` -``1.0.0b1``|``-Python-3.6.2`` |``foss/2017b`` -``1.0.1`` |``-Python-2.7.15``|``intel/2018b`` -``1.0.1`` |``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` - -### CGAL - -The goal of the CGAL Open Source Project is to provide easy access to efficient and reliable geometric algorithms in the form of a C++ library. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------------------------------------------ -``4.8`` |``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``4.8.1`` | |``foss/2016b``, ``intel/2016b`` -``4.8.1`` |``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``4.9`` |``-Python-2.7.12``|``intel/2016b`` -``4.9`` |``-Python-2.7.13``|``intel/2017a`` -``4.11`` |``-Python-2.7.13``|``intel/2017a`` -``4.11`` |``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``4.11`` |``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``4.11.1``|``-Python-2.7.14``|``foss/2018a``, ``intel/2018a`` -``4.11.1``|``-Python-2.7.15``|``foss/2018b`` -``4.11.1``|``-Python-3.6.4`` |``foss/2018a`` -``4.11.1``|``-Python-3.6.6`` |``foss/2018b`` -``4.14`` |``-Python-3.7.2`` |``foss/2019a``, ``intel/2019a`` -``4.14.1``|``-Python-2.7.16``|``foss/2019b`` -``4.14.1``|``-Python-3.7.4`` |``foss/2019b``, ``intel/2019b`` -``4.14.3``| |``gompi/2021a``, ``gompi/2021b``, ``gompi/2022a``, ``iimpi/2021a`` -``4.14.3``|``-Python-3.8.2`` |``gompi/2020a``, ``iimpi/2020a`` -``5.2`` | |``gompi/2020b`` -``5.4`` | |``GCCcore/12.3.0`` -``5.5.2`` | |``GCCcore/12.2.0`` -``5.6`` | |``GCCcore/12.3.0`` -``5.6.1`` | |``GCCcore/13.2.0`` - -### cget - -Cmake package retrieval. This can be used to download and install cmake packages - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``0.1.6``|``-Python-3.6.4``|``foss/2018a`` - -### Cgl - -The COIN-OR Cut Generation Library (Cgl) is a collection of cut generators that can be used with other COIN-OR packages that make use of cuts, such as, among others, the linear solver Clp or the mixed integer linear programming solvers Cbc or BCP. Cgl uses the abstract class OsiSolverInterface (see Osi) to use or communicate with a solver. It does not directly call a solver. - -*homepage*: - -version |toolchain -----------|------------------------------ -``0.60.2``|``foss/2018b`` -``0.60.3``|``foss/2020b``, ``foss/2021a`` -``0.60.7``|``foss/2022b`` -``0.60.8``|``foss/2023a`` - -### CGmapTools - -Command-line Toolset for Bisulfite Sequencing Data Analysis - -*homepage*: - -version |toolchain ----------|--------------- -``0.1.2``|``intel/2019b`` - -### CGNS - -The CGNS system is designed to facilitate the exchange of data between sites and applications, and to help stabilize the archiving of aerodynamic data. - -*homepage*: - -version |toolchain ----------|------------------- -``3.3.1``|``foss/2016b`` -``4.1.0``|``intelcuda/2019b`` - -### CharLS - -CharLS is a C++ implementation of the JPEG-LS standard for lossless and near-lossless image compression and decompression. JPEG-LS is a low-complexity image compression standard that matches JPEG 2000 compression ratios. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``2.0.0``|``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``2.1.0``|``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``2.2.0``|``GCCcore/10.2.0`` -``2.3.4``|``GCCcore/10.3.0`` -``2.4.1``|``GCCcore/11.3.0`` -``2.4.2``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### charm-gems - -This repository contains the gems C++ code and python bindings used in Freesurfer's Sequence-Adaptive Multimodal SEGmentation (SAMSEG) and in SimNIBS 4.0 Complete Head Anatomy Reconstruction Method (CHARM) to create individualized head models for electric field simulations. - -*homepage*: - -version |toolchain ----------|-------------- -``1.3.3``|``foss/2023a`` - -### CHASE - -Case-control HAplotype Sharing analyses. Haplotype sharing analyses for genome-wide association studies. - -*homepage*: - -version |toolchain -------------|---------- -``20130626``|``system`` - -### Check - -Check is a unit testing framework for C. It features a simple interface for defining unit tests, putting little in the way of the developer. Tests are run in a separate address space, so both assertion failures and code errors that cause segmentation faults or other signals can be caught. Test results are reportable in the following: Subunit, TAP, XML, and a generic logging format. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------------------------------------------------------------------------------------- -``0.12.0``|``GCCcore/6.4.0`` -``0.15.2``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/9.3.0`` - -### CheckM - -CheckM provides a set of tools for assessing the quality of genomes recovered from isolates, single cells, or metagenomes. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------- -``1.0.13``|``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``1.0.13``|``-Python-2.7.15``|``foss/2018b`` -``1.0.13``|``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``1.0.18``|``-Python-2.7.15``|``foss/2019a`` -``1.0.18``|``-Python-2.7.18``|``foss/2020b`` -``1.1.2`` |``-Python-3.7.4`` |``foss/2019b``, ``intel/2019b`` -``1.1.3`` | |``foss/2021a``, ``foss/2021b`` -``1.1.3`` |``-Python-3.8.2`` |``intel/2020a`` -``1.2.2`` | |``foss/2022a`` - -### CheckM-Database - -CheckM provides a set of tools for assessing the quality of genomes recovered from isolates, single cells, or metagenomes. This is the corresponding database. - -*homepage*: - -version |toolchain ---------------|---------- -``2015_01_16``|``system`` - -### CheckM2 - -Assessing the quality of metagenome-derived genome bins using machine learning - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.2``|``foss/2022b`` - -### Cheetah - -Cheetah is an open source template engine and code generation tool. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``2.4.4``|``-Python-2.7.15``|``intel/2018b`` - -### Chemaxon-Marvin - -Marvin suite is a chemically intelligent desktop toolkit built to help you draw, edit, publish, render, import and export your chemical structures and as well as allowing you to convert between various chemical and graphical file formats. It is free for individual, academic and non-commercial use. - -*homepage*: - -version |toolchain ----------|---------- -``21.14``|``system`` -``23.9`` |``system`` - -### chemprop - -Message Passing Neural Networks for Molecule Property Prediction - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``1.5.2``| |``foss/2022a`` -``1.5.2``|``-CUDA-11.7.0``|``foss/2022a`` - -### CheMPS2 - -CheMPS2 is a scientific library which contains a spin-adapted implementation of the density matrix renormalization group (DMRG) for ab initio quantum chemistry. - -*homepage*: - -version |toolchain ------------|--------------------------------------------------------------------------------- -``1.6`` |``intel/2016a`` -``1.7-rc2``|``intel/2016a`` -``1.7.1`` |``intel/2016a`` -``1.7.2`` |``intel/2016a`` -``1.8`` |``intel/2016b`` -``1.8.8`` |``intel/2018b`` -``1.8.9`` |``foss/2018b``, ``foss/2019a``, ``intel/2018b``, ``intel/2019a``, ``intel/2019b`` -``1.8.11`` |``foss/2021b`` -``1.8.12`` |``foss/2022a``, ``foss/2022b`` - -### CHERAB - -CHERAB is a python library for forward modelling diagnostics based on spectroscopic plasma emission. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------------------- -``1.2.0``|``-Python-3.6.6``|``intel/2018b`` -``1.3.0``| |``foss/2020b``, ``intel/2020b`` -``1.4.0``| |``foss/2020b``, ``intel/2020b`` - -### chewBBACA - -chewBBACA stands for "BSR-Based Allele Calling Algorithm". chewBBACA is a comprehensive pipeline including a set of functions for the creation and validation of whole genome and core genome MultiLocus Sequence Typing (wg/cgMLST) schemas, providing an allele calling algorithm based on Blast Score Ratio that can be run in multiprocessor settings and a set of functions to visualize and validate allele variation in the loci. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``2.5.5``|``-Python-3.8.2``|``intel/2020a`` - -### chi2comb - -Cumulative density function of linear combinations of independent chi-square random variables and a standard Normal distribution. As of now, this is basically a repackaging of the davies function implemented in the CompQuadForm library for R. - -*homepage*: - -version |toolchain ----------|----------------- -``0.0.3``|``GCCcore/7.3.0`` - -### Chimera - -UCSF Chimera is a highly extensible program for interactive visualization and analysis of molecular structures and related data, including density maps, supramolecular assemblies, sequence alignments, docking results, trajectories, and conformational ensembles. - -*homepage*: - -version |versionsuffix |toolchain ---------|-----------------|---------- -``1.10``|``-linux_x86_64``|``system`` -``1.16``|``-linux_x86_64``|``system`` - -### ChimPipe - -ChimPipe is a computational method for the detection of novel transcription-induced chimeric transcripts and fusion genes from Illumina Paired-End RNA-seq data. It combines junction spanning and paired-end read information to accurately detect chimeric splice junctions at base-pair resolution. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``0.9.5``| |``foss/2018b`` -``0.9.5``|``-Python-2.7.12``|``foss/2016b`` - -### ChIPseeker - -This package implements functions to retrieve the nearest genes around the peak, annotate genomic region of the peak, statstical methods for estimate the significance of overlap among ChIP peak data sets, and incorporate GEO database for user to compare the own dataset with those deposited in database. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|-------------- -``1.32.1``|``-R-4.2.1`` |``foss/2022a`` - -### Chromaprint - -Chromaprint is the core component of the AcoustID project. It's a client-side library that implements a custom algorithm for extracting fingerprints from any audio source. - -*homepage*: - -version |toolchain ----------|----------------- -``1.4.3``|``GCCcore/8.2.0`` - -### chromVARmotifs - -The goal of chromVARmotifs is to make it easy to use several different motif collections in R, particularly for use with motifmatchr and chromVAR packages. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``0.2.0``|``-R-4.3.2`` |``foss/2023a`` - -### cicero - -Cicero is an R package that provides tools for analyzing single-cell chromatin accessibility experiments. - -*homepage*: - -version |versionsuffix |toolchain -------------|---------------------|-------------- -``1.3.4.11``|``-R-4.0.3-Monocle3``|``foss/2020b`` -``1.3.8`` |``-R-4.2.1-Monocle3``|``foss/2022a`` - -### CIF2Cell - -CIF2Cell is a tool to generate the geometrical setup for various electronic structure codes from a CIF (Crystallographic Information Framework) file. The program currently supports output for a number of popular electronic structure programs, including ABINIT, ASE, CASTEP, CP2K, CPMD, CRYSTAL09, Elk, EMTO, Exciting, Fleur, FHI-aims, Hutsepot, MOPAC, Quantum Espresso, RSPt, Siesta, SPR-KKR, VASP. Also exports some related formats like .coo, .cfg and .xyz-files. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|----------------- -``1.2.10``|``-Python-2.7.16``|``GCCcore/8.3.0`` - -### cimfomfa - -This library supports both MCL, a cluster algorithm for graphs, and zoem, a macro/DSL language. It supplies abstractions for memory management, I/O, associative arrays, strings, heaps, and a few other things. The string library has had heavy testing as part of zoem. Both understandably and regrettably I chose long ago to make it C-string-compatible, hence nul bytes may not be part of a string. At some point I hope to rectify this, perhaps unrealistically. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------- -``22.273``|``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### CIRCexplorer - -CIRCexplorer2 is a comprehensive and integrative circular RNA analysis toolset. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``1.1.10``|``-Python-2.7.14``|``intel/2017b`` - -### CIRCexplorer2 - -CIRCexplorer2 is a comprehensive and integrative circular RNA analysis toolset. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------ -``2.3.2``|``-Python-2.7.14``|``intel/2017b`` -``2.3.3``|``-Python-2.7.14``|``intel/2018a`` -``2.3.8``|``-Python-2.7.18``|``foss/2020b``, ``foss/2021b`` - -### Circlator - -A tool to circularize genome assemblies.s - -*homepage*: - -version |toolchain ----------|-------------- -``1.5.5``|``foss/2023a`` - -### Circos - -Circos is a software package for visualizing data and information. It visualizes data in a circular layout - this makes Circos ideal for exploring relationships between objects or positions. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|------------------------------------- -``0.69-5``|``-Perl-5.24.0``|``foss/2016b`` -``0.69-6``|``-Perl-5.26.1``|``GCCcore/6.4.0`` -``0.69-6``|``-Perl-5.28.0``|``GCCcore/7.3.0`` -``0.69-9``| |``GCCcore/11.3.0``, ``GCCcore/9.3.0`` - -### Circuitscape - -Algorithms from circuit theory to predict connectivity in heterogeneous landscapes - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|---------- -``5.12.3``|``-Julia-1.7.2``|``system`` -``5.12.3``|``-Julia-1.9.2``|``system`` - -### CIRI - -CircRNA Identifier. A de novo circular RNA identification tool - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|--------------- -``2.0.6``|``-Perl-5.26.0``|``intel/2017b`` - -### CIRI-long - -Circular RNA Identification for Long-Reads Nanopore Sequencing Data - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.2``|``foss/2020b`` - -### CIRIquant - -CIRIquant is a comprehensive analysis pipeline for circRNA detection and quantification in RNA-Seq data - -*homepage*: - -version |versionsuffix |toolchain -------------------|------------------|-------------- -``1.1.2-20221201``|``-Python-2.7.18``|``foss/2021b`` - -### cisTEM - -cisTEM is user-friendly software to process cryo-EM images of macromolecular complexes and obtain high-resolution 3D reconstructions from them. - -*homepage*: - -version |toolchain ---------------|-------------- -``1.0.0-beta``|``foss/2018a`` - -### CITE-seq-Count - -A python package that allows to count antibody TAGS from a CITE-seq and/or cell hashing experiment. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``1.4.3``|``-Python-3.6.6``|``foss/2018b`` -``1.4.3``|``-Python-3.7.4``|``foss/2019b`` - -### Clair3 - -Clair3 is a germline small variant caller for long-reads. Clair3 makes the best of two major method categories: pileup calling handles most variant candidates with speed, and full-alignment tackles complicated candidates to maximize precision and recall. Clair3 runs fast and has superior performance, especially at lower coverage. Clair3 is simple and modular for easy deployment and integration. - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.4``|``foss/2022a`` - -### Clang - -C, C++, Objective-C compiler, based on LLVM. Does not include C++ standard library -- use libstdc++ from GCC. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|-------------------------------------- -``3.3`` | |``GCC/4.8.1`` -``3.4`` | |``GCC/4.8.2`` -``3.4.1`` | |``GCC/4.8.2`` -``3.4.2`` | |``GCC/4.8.2`` -``3.6.0`` | |``GCC/4.9.2`` -``3.6.1`` | |``GCC/4.9.2`` -``3.7.0`` | |``GNU/4.9.3-2.25`` -``3.7.1`` | |``GCC/4.9.3-2.25``, ``foss/2016a`` -``3.8.0`` | |``GCC/4.9.3-2.25`` -``3.8.1`` | |``GCC/5.4.0-2.26``, ``foss/2016b`` -``5.0.0`` | |``GCC/6.4.0-2.28`` -``5.0.1`` | |``GCC/6.4.0-2.28`` -``6.0.1`` | |``GCC/6.4.0-2.28``, ``GCC/7.3.0-2.30`` -``7.0.0`` | |``GCC/6.4.0-2.28`` -``7.0.1`` | |``GCC/7.3.0-2.30`` -``8.0.0`` | |``GCCcore/8.2.0`` -``8.0.0`` |``-CUDA-10.1.105``|``GCCcore/8.2.0`` -``8.0.1`` |``-CUDA-10.1.105``|``GCC/8.2.0-2.31.1`` -``8.0.1`` |``-CUDA-10.1.243``|``GCC/8.3.0`` -``9.0.1`` | |``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``9.0.1`` |``-CUDA-10.1.243``|``GCC/8.3.0`` -``10.0.0``| |``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``10.0.1``| |``GCCcore/9.3.0`` -``11.0.0``| |``GCCcore/9.3.0`` -``11.0.1``| |``GCCcore/10.2.0``, ``gcccuda/2020b`` -``12.0.1``| |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``12.0.1``|``-CUDA-11.3.1`` |``GCCcore/10.3.0`` -``13.0.1``| |``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``13.0.1``|``-CUDA-11.4.1`` |``GCCcore/11.2.0`` -``13.0.1``|``-CUDA-11.7.0`` |``GCCcore/11.3.0`` -``15.0.5``| |``GCCcore/11.3.0`` -``16.0.4``| |``GCCcore/12.2.0`` -``16.0.6``| |``GCCcore/12.3.0`` -``16.0.6``|``-CUDA-12.1.1`` |``GCCcore/12.3.0`` -``17.0.6``| |``GCCcore/13.2.0`` - -### Clang-AOMP - -AOMP is an open source Clang/LLVM based compiler with added support for the OpenMP® API on Radeon™ GPUs. - -*homepage*: - -version |toolchain ----------|------------------ -``4.5.0``|``GCCcore/11.2.0`` - -### Clang-Python-bindings - -Python bindings for libclang - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|-------------------------------------- -``8.0.0`` |``-Python-2.7.15``|``GCCcore/8.2.0`` -``10.0.1``|``-Python-3.8.2`` |``GCCcore/9.3.0`` -``13.0.1``| |``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``16.0.6``| |``GCCcore/12.3.0`` - -### CLAPACK - -C version of LAPACK - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------- -``3.2.1``|``GCC/6.4.0-2.28``, ``iccifort/2017.4.196-GCC-6.4.0-2.28``, ``intel/2017a`` - -### Clarabel.rs - -Interior-point solver for convex conic optimisation problems in Rust. - -*homepage*: - -version |toolchain ----------|-------------- -``0.7.1``|``gfbf/2023a`` - -### CLEAR - -Direct comparison of circular and linear RNA expression - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|-------------- -``20210117``|``-Python-2.7.18``|``foss/2021b`` - -### CLEASE - -CLuster Expansion in Atomic Simulation Environment (CLEASE) is a package that automates the cumbersome setup and construction procedure of cluster expansion (CE). It provides a comprehensive list of tools for specifying parameters for CE, generating training structures, fitting effective cluster interaction (ECI) values and running Monte Carlo simulations. - -*homepage*: - -version |toolchain -----------|--------------- -``0.10.6``|``intel/2021a`` - -### CLHEP - -The CLHEP project is intended to be a set of HEP-specific foundation and utility classes such as random generators, physics vectors, geometry and linear algebra. CLHEP is structured in a set of packages independent of any external package. - -*homepage*: - -version |toolchain ------------|---------------------------------------------------------------- -``2.1.1.0``|``intel/2016a`` -``2.1.3.1``|``intel/2016a`` -``2.2.0.8``|``intel/2016a`` -``2.3.1.1``|``intel/2016a`` -``2.3.4.3``|``foss/2017b``, ``intel/2017b`` -``2.4.0.0``|``intel/2017b`` -``2.4.1.0``|``foss/2017b``, ``foss/2018b``, ``intel/2017b``, ``intel/2018b`` -``2.4.1.3``|``foss/2019b``, ``foss/2020a`` -``2.4.4.0``|``GCC/10.2.0``, ``GCC/11.2.0`` -``2.4.5.1``|``GCC/11.2.0`` -``2.4.5.3``|``GCC/11.3.0`` -``2.4.6.2``|``GCC/11.3.0`` -``2.4.6.4``|``GCC/12.2.0`` - -### CliMetLab - -CliMetLab is a Python package aiming at simplifying access to climate and meteorological datasets, allowing users to focus on science instead of technical issues such as data access and data formats. It is mostly intended to be used in Jupyter notebooks, and be interoperable with all popular data analytic packages, such as Numpy, Pandas, Xarray, SciPy, Matplotlib, etc. as well as machine learning frameworks, such as Tensorflow, Keras or PyTorch. - -*homepage*: - -version |toolchain -----------|-------------- -``0.12.6``|``foss/2022a`` - -### CLIP - -CLIP (Contrastive Language-Image Pre-Training) is a neural network trained on a variety of (image, text) pairs. It can be instructed in natural language to predict the most relevant text snippet, given an image, without directly optimizing for the task, similarly to the zero-shot capabilities of GPT-2 and 3. - -*homepage*: - -version |versionsuffix |toolchain -------------|----------------|-------------- -``20230220``|``-CUDA-11.7.0``|``foss/2022a`` - -### cliquer - -Cliquer is a set of C routines for finding cliques in an arbitrary weighted graph. It uses an exact branch-and-bound algorithm developed by Patric Ostergard. It is designed with the aim of being efficient while still being flexible and easy to use. - -*homepage*: - -version |toolchain ---------|-------------------------------------- -``1.21``|``GCCcore/11.3.0``, ``GCCcore/13.2.0`` - -### CLISP - -Common Lisp is a high-level, general-purpose, object-oriented, dynamic, functional programming language. - -*homepage*: - -version |toolchain ---------|------------------------------------ -``2.49``|``GCCcore/6.4.0``, ``GCCcore/9.3.0`` - -### ClonalFrameML - -Efficient Inference of Recombination in Whole Bacterial Genomes - -*homepage*: - -version |toolchain ---------|-------------- -``1.11``|``foss/2016b`` - -### CLooG - -CLooG is a free software and library to generate code for scanning Z-polyhedra. That is, it finds a code (e.g. in C, FORTRAN...) that reaches each integral point of one or more parameterized polyhedra. CLooG has been originally written to solve the code generation problem for optimizing compilers based on the polytope model. Nevertheless it is used now in various area e.g. to build control automata for high-level synthesis or to find the best polynomial approximation of a function. CLooG may help in any situation where scanning polyhedra matters. While the user has full control on generated code quality, CLooG is designed to avoid control overhead and to produce a very effective code. - -*homepage*: - -version |toolchain -----------|------------- -``0.18.1``|``GCC/4.8.2`` - -### CloudCompare - -3D point cloud and mesh processing software - -*homepage*: - -version |toolchain -----------|-------------- -``2.12.4``|``foss/2021b`` - -### Clp - -Clp (Coin-or linear programming) is an open-source linear programming solver. It is primarily meant to be used as a callable library, but a basic, stand-alone executable version is also available. - -*homepage*: - -version |toolchain -----------|------------------------------ -``1.17.3``|``foss/2018b`` -``1.17.6``|``foss/2020b``, ``foss/2021a`` -``1.17.7``|``foss/2021b`` -``1.17.8``|``foss/2022b`` -``1.17.9``|``foss/2023a`` - -### Clustal-Omega - -Clustal Omega is a multiple sequence alignment program for proteins. It produces biologically meaningful multiple sequence alignments of divergent sequences. Evolutionary relationships can be seen via viewing Cladograms or Phylograms - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------------------------------------------------------------------------- -``1.2.0``|``foss/2016b`` -``1.2.4``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/8.3.0``, ``foss/2018b``, ``intel-compilers/2021.2.0``, ``intel/2018a``, ``intel/2018b`` - -### ClustalW2 - -ClustalW2 is a general purpose multiple sequence alignment program for DNA or proteins. - -*homepage*: - -version|toolchain --------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.1``|``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/12.3.0``, ``foss/2016b``, ``foss/2018b``, ``foss/2021a``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1``, ``intel/2017b``, ``intel/2018b``, ``intel/2020a`` - -### Cluster-Buster - -Cluster-Buster is a program for finding interesting functional regions, such as transcriptional enhancers, in DNA sequences. - -*homepage*: - -version |toolchain -------------|--------------- -``20160106``|``intel/2016a`` -``20200507``|``GCC/12.2.0`` - -### ClusterShell - -ClusterShell is an event-driven open source Python library, designed to run local or distant commands in parallel on server farms or on large Linux clusters. - -*homepage*: - -version |toolchain ----------|---------- -``1.7.3``|``system`` - -### CMake - -CMake, the cross-platform, open-source build system. CMake is a family of tools designed to build, test and package software. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------------------------------------------------------------------------- -``2.8.11``|``GCC/4.8.1`` -``2.8.12``|``GCC/4.8.1``, ``GCC/4.8.2`` -``3.0.0`` |``GCC/4.8.3`` -``3.1.0`` |``GCC/4.9.2`` -``3.1.3`` |``GCC/4.9.2``, ``system`` -``3.2.1`` |``GCC/4.9.2``, ``GNU/4.9.3-2.25`` -``3.3.1`` |``system`` -``3.3.2`` |``GNU/4.9.3-2.25``, ``gimkl/2.11.5`` -``3.4.1`` |``GCC/4.9.2``, ``GCCcore/4.9.3``, ``foss/2016a``, ``intel/2016.02-GCC-4.9``, ``intel/2016a``, ``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25`` -``3.4.3`` |``foss/2016a``, ``foss/2016b``, ``gimkl/2.11.5``, ``intel/2016a`` -``3.5.1`` |``intel/2016a`` -``3.5.2`` |``GCC/4.9.3-2.25``, ``foss/2016a``, ``foss/2016b``, ``intel/2016a``, ``intel/2016b``, ``system`` -``3.6.1`` |``GCC/5.4.0-2.26``, ``GCCcore/4.9.3``, ``foss/2016b``, ``intel/2016b``, ``system`` -``3.6.2`` |``GCCcore/5.4.0``, ``foss/2016b``, ``intel/2016b`` -``3.7.1`` |``GCCcore/5.4.0``, ``GCCcore/6.2.0``, ``foss/2016b``, ``intel/2016b`` -``3.7.2`` |``GCCcore/6.3.0``, ``foss/2016b``, ``intel/2016b`` -``3.8.0`` |``GCCcore/6.3.0`` -``3.8.1`` |``GCCcore/6.3.0`` -``3.8.2`` |``GCCcore/6.3.0`` -``3.9.1`` |``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``system`` -``3.9.4`` |``GCCcore/6.4.0`` -``3.9.5`` |``GCCcore/6.4.0`` -``3.9.6`` |``system`` -``3.10.0``|``GCCcore/6.4.0`` -``3.10.1``|``GCCcore/6.4.0`` -``3.10.2``|``GCCcore/6.4.0``, ``GCCcore/7.2.0`` -``3.10.3``|``GCCcore/6.4.0``, ``GCCcore/7.2.0`` -``3.11.1``|``GCCcore/6.4.0`` -``3.11.4``|``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.3.0`` -``3.12.1``|``GCCcore/6.4.0``, ``GCCcore/7.2.0``, ``GCCcore/7.3.0``, ``system`` -``3.13.3``|``GCCcore/8.2.0`` -``3.15.1``|``system`` -``3.15.3``|``GCCcore/8.3.0`` -``3.16.4``|``GCCcore/9.3.0`` -``3.18.4``|``GCCcore/10.2.0``, ``system`` -``3.20.1``|``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``3.21.1``|``GCCcore/11.2.0`` -``3.22.1``|``GCCcore/11.2.0`` -``3.23.1``|``GCCcore/11.3.0`` -``3.24.3``|``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``3.26.3``|``GCCcore/12.3.0``, ``GCCcore/13.1.0`` -``3.27.6``|``GCCcore/13.2.0`` -``3.29.3``|``GCCcore/13.3.0`` - -### CMAverse - -The R package CMAverse provides a suite of functions for reproducible causal mediation analysis including cmdag for DAG visualization, cmest for statistical modeling and cmsens for sensitivity analysis. - -*homepage*: - -version |toolchain -------------|-------------- -``20220112``|``foss/2021b`` - -### CmdStanR - -CmdStanR is a lightweight interface to Stan for R users - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``0.5.0``|``-R-4.1.2`` |``foss/2021b`` -``0.5.2``|``-R-4.2.1`` |``foss/2022a`` -``0.7.1``|``-R-4.3.2`` |``foss/2023a`` - -### cmocean - -This package contains colormaps for commonly-used oceanographic variables. Most of the colormaps started from matplotlib colormaps, but have now been adjusted using the viscm tool to be perceptually uniform. - -*homepage*: - -version|toolchain --------|-------------- -``2.0``|``foss/2022a`` - -### cmph - -Cmph is a free minimal perfect hash C library, providing several algorithms in the literature in a consistent, ease to use, API. - -*homepage*: - -version|toolchain --------|------------------ -``2.0``|``GCCcore/12.3.0`` - -### CMSeq - -CMSeq is a set of commands to provide an interface to .bam files for coverage and sequence consensus. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``1.0.3``|``-Python-3.8.2``|``foss/2020a`` -``1.0.4``| |``foss/2022a`` - -### CNT-ILP - -Integer Linear Program for the Copy-Number Tree Problem - -*homepage*: - -version |toolchain -------------|-------------------- -``20171031``|``GCC/8.2.0-2.31.1`` - -### CNVkit - -A command-line toolkit and Python library for detecting copy number variants and alterations genome-wide from high-throughput sequencing. - -*homepage*: - -version |versionsuffix |toolchain -----------|-------------------------|--------------- -``0.9.2`` |``-Python-2.7.14`` |``intel/2017b`` -``0.9.3`` |``-Python-3.6.4`` |``intel/2018a`` -``0.9.6`` |``-Python-3.7.2-R-3.6.0``|``foss/2019a`` -``0.9.8`` |``-R-4.0.3`` |``foss/2020b`` -``0.9.10``|``-R-4.2.2`` |``foss/2022b`` - -### CNVnator - -a tool for CNV discovery and genotyping from depth-of-coverage by mapped reads - -*homepage*: - -version |toolchain ----------|-------------- -``0.3.3``|``foss/2016b`` - -### Co-phylog - -Co-phylog: an assembly-free phylogenomic approach for closely related organisms H Yi, L Jin Nucleic acids research 41 (7), e75-e75 - -*homepage*: - -version |toolchain -------------|------------------ -``20201012``|``GCC/7.3.0-2.30`` - -### COBRApy - -COBRApy is a package for constraint-based modeling of metabolic networks. - -*homepage*: - -version |toolchain -----------|-------------- -``0.26.0``|``foss/2021a`` -``0.29.0``|``foss/2023b`` - -### CoCoALib - -CoCoALib is a free GPL3 C++ library for doing Computations in Commutative Algebra. - -*homepage*: - -version |toolchain ------------|-------------------- -``0.99601``|``GCC/8.2.0-2.31.1`` -``0.99700``|``GCC/8.3.0`` -``0.99818``|``GCC/11.3.0`` -``0.99850``|``GCC/13.2.0`` - -### CodAn - -CodAn (Coding sequence Annotator) is a computational tool designed to characterize the CDS and UTR regions on transcripts from any Eukaryote species. - -*homepage*: - -version|toolchain --------|-------------- -``1.2``|``foss/2021b`` - -### code-cli - -Visual Studio Code is a lightweight but powerful source code editor which runs on your desktop and is available for Windows, macOS and Linux. It comes with built-in support for JavaScript, TypeScript and Node.js and has a rich ecosystem of extensions for other languages and runtimes (such as C++, C#, Java, Python, PHP, Go, .NET). Begin your journey with VS Code with these introductory videos. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|---------- -``1.85.1``|``-x64`` |``system`` - -### code-server - -Run VS Code on any machine anywhere and access it in the browser. - -*homepage*: - -version |toolchain -----------|---------- -``3.7.3`` |``system`` -``4.9.1`` |``system`` -``4.16.1``|``system`` -``4.21.1``|``system`` -``4.22.1``|``system`` -``4.89.1``|``system`` - -### CODEX2 - -Full-spectrum copy number variation detection by high-throughput DNA sequencing - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|--------------- -``20180227``|``-R-3.4.3`` |``intel/2017b`` - -### CodingQuarry - -Highly accurate hidden Markov model gene prediction in fungal genomes using RNA-seq transcripts - -*homepage*: - -version|toolchain --------|-------------- -``2.0``|``foss/2021b`` - -### Cogent - -Cogent is a tool for reconstructing the coding genome using high-quality full-length transcriptome sequences. It is designed to be used on Iso-Seq data and in cases where there is no reference genome or the ref genome is highly incomplete. - -*homepage*: - -version |toolchain ----------|-------------- -``8.0.0``|``foss/2021a`` - -### Coin - -Coin is an OpenGL-based, 3D graphics library that has its roots in the Open Inventor 2.1 API, which Coin still is compatible with. - -*homepage*: - -version |toolchain ----------|------------------------------ -``4.0.0``|``GCC/10.3.0``, ``GCC/11.2.0`` - -### CoinUtils - -CoinUtils (Coin-OR Utilities) is an open-source collection of classes and functions that are generally useful to more than one COIN-OR project. - -*homepage*: - -version |toolchain ------------|---------------------------------- -``2.11.3`` |``GCCcore/7.3.0``, ``foss/2018b`` -``2.11.4`` |``GCC/10.3.0``, ``GCCcore/10.2.0`` -``2.11.6`` |``GCC/11.2.0`` -``2.11.9`` |``GCC/12.2.0`` -``2.11.10``|``GCC/12.3.0`` - -### ColabFold - -Making protein folding accessible to all. Predict proteins structures both in google colab and on your machine. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``1.5.2``| |``foss/2022a`` -``1.5.2``|``-CUDA-11.7.0``|``foss/2022a`` - -### colossalai - -Colossal-AI: A Unified Deep Learning System for Big Model Era - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``0.1.8``|``-CUDA-11.3.1``|``foss/2021a`` - -### COMEBin - -Effective binning of metagenomic contigs using COntrastive Multi-viEw representation learning - -*homepage*: - -version |toolchain -------------------|-------------- -``1.0.3-20240310``|``foss/2022a`` - -### Commet - -COMMET ("COmpare Multiple METagenomes") provides a global similarity overview between all datasets of a large metagenomic project. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|-------------- -``20150415``|``-Python-2.7.11``|``foss/2016a`` - -### CompareM - -A toolbox for comparative genomics. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|-------------- -``0.0.23``|``-Python-2.7.15``|``foss/2018b`` -``0.1.2`` | |``foss/2021b`` - -### Compass - -In-Silico Modeling of Metabolic Heterogeneity using Single-Cell Transcriptomes. - -*homepage*: - -version |toolchain ------------|-------------- -``2024.04``|``foss/2021b`` - -### Compress-Raw-Zlib - -Low-Level Interface to zlib or zlib-ng compression library - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``2.202``|``GCCcore/11.3.0``, ``GCCcore/12.2.0`` - -### COMSOL - -COMSOL Multiphysics is a general-purpose software platform, based on advanced numerical methods, for modeling and simulating physics-based problems. - -*homepage*: - -version |toolchain --------------|---------- -``5.4.0.225``|``system`` -``6.2.0.290``|``system`` - -### Con3F - -Con3F is a Python package to read, manipulate and convert force field files - -*homepage*: - -version |versionsuffix |toolchain -----------------|-----------------|--------------- -``1.0-20190329``|``-Python-3.7.2``|``intel/2019a`` - -### conan - -Decentralized, open-source (MIT), C/C++ package manager. - -*homepage*: - -version |toolchain -----------|------------------ -``1.58.0``|``GCCcore/11.3.0`` -``1.60.2``|``GCCcore/12.3.0`` - -### CONCOCT - -Clustering cONtigs with COverage and ComposiTion (CONCOCT) is a program for unsupervised binning of metagenomic contigs by using nucleotide composition, coverage data in multiple samples and linkage data from paired end reads. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``1.0.0``|``-Python-2.7.14``|``foss/2017b`` -``1.0.0``|``-Python-2.7.15``|``foss/2018b`` -``1.0.0``|``-Python-3.6.3`` |``foss/2017b`` -``1.1.0``|``-Python-2.7.15``|``foss/2019a`` -``1.1.0``|``-Python-2.7.18``|``foss/2020b`` - -### Concorde - -Concorde is a computer code for the symmetric traveling salesman problem (TSP) and some related network optimization problems - -*homepage*: - -version |toolchain -------------|-------------- -``20031219``|``GCC/12.3.0`` - -### ConcurrentVersionsSystem - -CVS is a version control system, an important component of Source Configuration Management (SCM). - -*homepage*: - -version |toolchain ------------|----------------------------------------------------------------------- -``1.11.23``|``GCC/4.8.2``, ``GCCcore/11.2.0``, ``GCCcore/4.9.3``, ``GCCcore/6.4.0`` - -### configparser - -configparser is a Python library that brings the updated configparser from Python 3.5 to Python 2.6-3.5 - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``3.5.0``|``-Python-2.7.11``|``foss/2016a`` -``3.5.0``|``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``3.5.0``|``-Python-3.5.2`` |``intel/2016b`` -``3.5.0``|``-Python-3.6.3`` |``intel/2017b`` - -### configurable-http-proxy - -HTTP proxy for node.js including a REST API for updating the routing table. Developed as a part of the Jupyter Hub multi-user server. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------ -``1.3.0``|``-nodejs-4.4.7``|``foss/2016a`` -``3.1.1``|``-nodejs-8.9.4``|``foss/2017a`` -``4.2.1``| |``GCCcore/10.2.0`` -``4.4.0``| |``GCCcore/10.3.0`` -``4.5.3``| |``GCCcore/11.3.0`` -``4.5.5``| |``GCCcore/12.2.0`` -``4.5.6``| |``GCCcore/12.3.0`` -``4.6.1``| |``GCCcore/13.2.0`` - -### CONN - -CONN is an open-source Matlab/SPM-based cross-platform software for the computation, display, and analysis of functional connectivity Magnetic Resonance Imaging (fcMRI). CONN is used to analyze resting state data (rsfMRI) as well as task-related designs. - -*homepage*: - -version|versionsuffix |toolchain --------|-----------------|---------- -``21a``|``-MATLAB-2021a``|``system`` - -### connected-components-3d - -cc3d is an implementation of connected components in three dimensions using a 26, 18, or 6-connected neighborhood in 3D or 4 and 8-connected in 2D. - -*homepage*: - -version |toolchain -----------|-------------- -``3.12.1``|``foss/2022b`` - -### ConnectomeWorkbench - -Connectome Workbench is an open source, freely available visualization and discovery tool used to map neuroimaging data, especially data generated by the Human Connectome Project. - -*homepage*: - -version |versionsuffix |toolchain ----------|---------------|-------------------------------------------------- -``1.2.2``| |``system`` -``1.3.2``| |``GCCcore/8.2.0``, ``foss/2017b``, ``intel/2017b`` -``1.4.2``|``-rh_linux64``|``system`` -``1.5.0``| |``GCCcore/10.3.0`` - -### contextily - -contextily is a small Python 3 package to retrieve tile maps from the internet. It can add those tiles as basemap to matplotlib figures or write tile maps to disk into geospatial raster files. Bounding boxes can be passed in both WGS84 (EPSG:4326) and Spheric Mercator (EPSG:3857). - -*homepage*: - -version |toolchain ----------|-------------- -``1.5.0``|``foss/2023a`` - -### Control-FREEC - -Copy number and genotype annotation from whole genome and whole exome sequencing data. - -*homepage*: - -version |toolchain ---------|---------------------------------------- -``11.5``|``GCC/7.3.0-2.30``, ``GCC/8.2.0-2.31.1`` -``11.6``|``GCC/10.2.0`` - -### cooler - -Cooler is a support library for a storage format, also called cooler, used to store genomic interaction data of any size, such as Hi-C contact matrices. - -*homepage*: - -version |toolchain ----------|-------------- -``0.9.1``|``foss/2022a`` - -### CoordgenLibs - -Schrodinger-developed 2D Coordinate Generation - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------ -``1.3.2``|``gompi/2019a``, ``iimpi/2019a`` -``3.0.1``|``gompi/2019b``, ``gompi/2021a``, ``gompi/2022a``, ``iimpi/2020a`` -``3.0.2``|``gompi/2023a`` - -### Coot - -Coot is for macromolecular model building, model completion and validation, particularly suitable for protein modelling using X-ray data. - -*homepage*: - -version |versionsuffix |toolchain -------------|---------------------------------------------------------|---------- -``0.8.1`` |``-binary-Linux-x86_64-rhel-6-python-gtk2`` |``system`` -``0.9.8.92``|``-binary-Linux-x86_64-scientific-linux-7.6-python-gtk2``|``system`` - -### CopyKAT - -CopyKAT: Inference of genomic copy number and subclonal structure of human tumors from high-throughput single cell RNAseq data - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``1.1.0``|``-R-4.2.1`` |``foss/2022a`` -``1.1.0``|``-R-4.2.2`` |``foss/2022b`` - -### core-counter - -Tool to check available cores and OMP threads - -*homepage*: - -version |toolchain ----------|---------- -``1.1.1``|``system`` - -### Coreutils - -The GNU Core Utilities are the basic file, shell and text manipulation utilities of the GNU operating system. These are the core utilities which are expected to exist on every operating system. - -*homepage*: - -version |toolchain ---------|-------------------------------------- -``8.23``|``GCC/4.9.2`` -``8.27``|``GCCcore/5.4.0`` -``8.29``|``GCCcore/6.4.0`` -``8.32``|``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``9.0`` |``GCCcore/11.2.0`` -``9.1`` |``GCCcore/11.3.0``, ``GCCcore/12.2.0`` - -### corner - -Make some beautiful corner plots. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``2.0.1``|``-Python-2.7.15``|``foss/2019a`` -``2.0.1``|``-Python-3.7.2`` |``foss/2019a`` -``2.2.2``| |``foss/2021b`` - -### CoSymLib - -Cosymlib is a python library for computing continuous symmetry & shape measures (CSMs & CShMs). Although its main aim is to provide simple and ready-to-use tools for the analysis of the symmetry & shape of molecules, many of the procedures contained in cosymlib can be easily applied to any finite geometrical object defined by a set of vertices or a by mass distribution function. - -*homepage*: - -version |toolchain -----------|-------------- -``0.10.9``|``foss/2022a`` - -### coverage - -Coverage.py is a tool for measuring code coverage of Python programs. It monitors your program, noting which parts of the code have been executed, then analyzes the source to identify code that could have been executed but was not. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------------------------------- -``4.5.1``|``-Python-2.7.14``|``intel/2017b`` -``5.5`` | |``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``7.2.3``| |``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``7.2.7``| |``GCCcore/11.3.0`` -``7.4.4``| |``GCCcore/13.2.0`` - -### cowsay - -Configurable talking characters in ASCII art - -*homepage*: - -version |toolchain ---------|---------- -``3.04``|``system`` - -### CP2K - -CP2K is a freely available (GPL) program, written in Fortran 95, to perform atomistic and molecular simulations of solid state, liquid, molecular and biological systems. It provides a general framework for different methods such as e.g. density functional theory (DFT) using a mixed Gaussian and plane waves approach (GPW), and classical pair and many-body potentials. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|------------------------------------------------------------------------------------------------- -``3.0`` | |``intel/2016a``, ``intel/2016b``, ``intel/2017b``, ``intel/2018a`` -``3.0`` |``-psmp`` |``intel/2016b`` -``4.1`` | |``intel/2016b`` -``4.1`` |``-psmp`` |``foss/2016b`` -``5.1`` | |``foss/2018a``, ``foss/2020a``, ``foss/2020b``, ``intel/2017b``, ``intel/2018a``, ``intel/2020a`` -``6.1`` | |``foss/2019a``, ``intel/2018a``, ``intel/2020a`` -``7.1`` | |``foss/2020a``, ``foss/2020b``, ``intel/2020a``, ``intel/2020b`` -``7.1`` |``-psmp`` |``foss/2020b`` -``8.1`` | |``foss/2020b`` -``8.2`` | |``foss/2021a``, ``intel/2021a`` -``9.1`` | |``foss/2022a`` -``2022.1``| |``foss/2022a`` -``2023.1``| |``foss/2022b``, ``foss/2023a`` - -### CPB - -CPB is a novel two-step Pearson correlation based biclustering approach to mine genes that are co-regulated with a given reference gene in order to discover genes that function in a common biological process. In the first step, the algorithm identifies subsets of genes with high correlation, reducing false negatives with a nonparametric filtering scheme. In the second step, biclusters from multiple datasets are used to extract and rank gene correlation information. - -*homepage*: - -version |versionsuffix |toolchain --------------|------------------|-------------- -``11-4-2011``|``-Python-2.7.13``|``foss/2017a`` - -### CPC2 - -a fast and accurate coding potential calculator based on sequence intrinsic features - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.1``|``foss/2022a`` - -### cpio - -The cpio package contains tools for archiving. - -*homepage*: - -version |toolchain ---------|------------------------------------------------------------------------------ -``2.14``|``GCCcore/11.3.0`` -``2.15``|``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0`` - -### CPLEX - -IBM ILOG CPLEX Optimizer's mathematical programming technology enables analytical decision support for improving efficiency, reducing costs, and increasing profitability. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------------------ -``12.9`` | |``GCCcore/8.2.0`` -``12.10`` |``-Python-3.7.4``|``GCCcore/8.3.0`` -``22.1.1``| |``GCCcore/11.2.0``, ``system`` - -### CPMD - -The CPMD code is a parallelized plane wave / pseudopotential implementation of DFT, particularly designed for ab-initio molecular dynamics. - -*homepage*: - -version|toolchain --------|-------------- -``4.3``|``foss/2022a`` - -### CPPE - -CPPE is an open-source, light-weight C++ and Python library for Polarizable Embedding (PE)1,2 calculations. It provides an easy-to-use API to implement PE for ground-state self-consistent field (SCF) calculations and post-SCF methods. A convenient Python interface is also available. - -*homepage*: - -version |toolchain ----------|------------------------------ -``0.3.1``|``GCC/11.3.0``, ``GCC/12.2.0`` - -### CppHeaderParser - -CppHeaderParser is a pure python module that will parse C++ header files and generate a data structure representing the class. - -*homepage*: - -version |toolchain ----------|------------------ -``2.7.4``|``GCCcore/11.3.0`` - -### CppUnit - -CppUnit is the C++ port of the famous JUnit framework for unit testing. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------------------------------------------------------------------------------------- -``1.12.1``|``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``foss/2016a`` -``1.15.1``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` - -### cppy - -A small C++ header library which makes it easier to write Python extension modules. The primary feature is a PyObject smart pointer which automatically handles reference counting and provides convenience methods for performing common object operations. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------ -``1.1.0``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``1.2.1``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### cppyy - -cppyy is an automatic, run-time, Python-C++ bindings generator, for calling C++ from Python and Python from C++. - -*homepage*: - -version |toolchain ----------|------------------ -``3.0.0``|``GCCcore/11.3.0`` -``3.1.2``|``GCCcore/13.2.0`` - -### cppzmq - -cppzmq is a C++ binding for libzmq. - -*homepage*: - -version |toolchain ----------|---------- -``4.9.0``|``system`` - -### cpu_features - -A cross-platform C library to retrieve CPU features (such as available instructions) at runtime. - -*homepage*: - -version |toolchain ----------|------------------ -``0.6.0``|``GCCcore/10.2.0`` - -### cram - -Cram is a functional testing framework for command line applications. - -*homepage*: - -version|toolchain --------|----------------- -``0.7``|``GCCcore/8.2.0`` - -### cramtools - -CRAMTools is a set of Java tools and APIs for efficient compression of sequence read data. Although this is intended as a stable version the code is released as early access. Parts of the CRAMTools are experimental and may not be supported in the future. - -*homepage*: - -version|versionsuffix |toolchain --------|------------------|---------- -``2.0``|``-Java-1.7.0_80``|``system`` -``3.0``|``-Java-1.7.0_80``|``system`` - -### CrayCCE - -Toolchain using Cray compiler wrapper, using PrgEnv-cray (PE release: June 2019). - -*homepage*: - -version |toolchain ----------|---------- -``19.06``|``system`` - -### CrayGNU - -Toolchain using Cray compiler wrapper, using PrgEnv-gnu module (PE release: June 2019). - -*homepage*: - -version |toolchain ----------|---------- -``19.06``|``system`` - -### CrayIntel - -Toolchain using Cray compiler wrapper, using PrgEnv-intel (PE release: June 2019). - -*homepage*: - -version |toolchain ----------|---------- -``19.06``|``system`` - -### CrayPGI - -Toolchain using Cray compiler wrapper, PrgEnv-pgi compiler (PE release: June 2019). - -*homepage*: - -version |toolchain ----------|---------- -``19.06``|``system`` - -### crb-blast - -Conditional Reciprocal Best BLAST - high confidence ortholog assignment. CRB-BLAST is a novel method for finding orthologs between one set of sequences and another. This is particularly useful in genome and transcriptome annotation. - -*homepage*: - -version |versionsuffix |toolchain ----------|---------------|------------------------------------------------- -``0.6.9``| |``gompi/2021a``, ``gompi/2021b``, ``intel/2017a`` -``0.6.9``|``-Ruby-2.6.1``|``foss/2018b`` - -### CREST - -CREST is an utility/driver program for the xtb program. Originally it was designed as conformer sampling program, hence the abbreviation Conformer–Rotamer Ensemble Sampling Tool, but now offers also some utility functions for calculations with the GFNn–xTB methods. Generally the program functions as an IO based OMP scheduler (i.e., calculations are performed by the xtb program) and tool for the creation and analysation of structure ensembles. - -*homepage*: - -version |toolchain -------------|------------------------------- -``2.11`` |``intel/2021a`` -``2.11.2`` |``intel/2021a`` -``2.12`` |``gfbf/2023a``, ``intel/2022a`` -``3.0.1`` |``gfbf/2022b`` -``20240319``|``gfbf/2023a`` - -### CRF++ - -CRF++ is a simple, customizable, and open source implementation of Conditional Random Fields (CRFs) for segmenting/labeling sequential data. CRF++ is designed for generic purpose and will be applied to a variety of NLP tasks, such as Named Entity Recognition, Information Extraction and Text Chunking. - -*homepage*: - -version |toolchain ---------|--------------------------------------------------------- -``0.58``|``iccifort/2019.1.144-GCC-8.2.0-2.31.1``, ``intel/2018b`` - -### CRISPR-DAV - -CRISPR-DAV is a pipeline to analyze amplicon-based NGS data of CRISPR clones in a high throughput manner. - -*homepage*: - -version |toolchain ----------|-------------- -``2.3.4``|``foss/2020b`` - -### CRISPResso2 - -CRISPResso2 is a software pipeline designed to enable rapid and intuitive interpretation of genome editing experiments. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|-------------- -``2.0.44``|``-Python-2.7.16``|``foss/2019b`` -``2.1.2`` |``-Python-2.7.18``|``foss/2020b`` -``2.2.1`` | |``foss/2020b`` - -### cromwell - -Cromwell is a Workflow Management System geared towards scientific workflows. - -*homepage*: - -version|versionsuffix|toolchain --------|-------------|---------- -``56`` |``-Java-11`` |``system`` - -### crossguid - -CrossGuid is a minimal, cross platform, C++ GUID library. It uses the best native GUID/UUID generator on the given platform and has a generic class for parsing, stringifying, and comparing IDs. The guid generation technique is determined by your platform: - -*homepage*: - -version |toolchain -------------|-------------------------------------- -``20190529``|``GCCcore/11.2.0``, ``GCCcore/11.3.0`` - -### CrossMap - -CrossMap is a program for genome coordinates conversion between different assemblies (such as hg18 (NCBI36) <=> hg19 (GRCh37)). It supports commonly used file formats including BAM, CRAM, SAM, Wiggle, BigWig, BED, GFF, GTF and VCF. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``0.3.9``|``-Python-3.7.2``|``foss/2019a`` - -### CrossTalkZ - -CrossTalkZ is a statistical method and software to assess the significance of crosstalk enrichment between pairs of gene or protein groups in large biological networks. - -*homepage*: - -version|toolchain --------|-------------- -``1.4``|``foss/2016a`` - -### CRPropa - -CRPropa is a publicly available code to study the propagation of ultra high energy nuclei up to iron on their voyage through an extra galactic environment. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``3.1.5``|``-Python-3.7.2``|``foss/2019a`` -``3.1.6``|``-Python-3.8.2``|``foss/2020a`` - -### Crumble - -Exploration of controlled loss of quality values for compressing CRAM files - -*homepage*: - -version |toolchain ----------|-------------- -``0.8.3``|``GCC/11.2.0`` - -### cryoCARE - -This package is a memory efficient implementation of cryoCARE. This setup trains a denoising U-Net for tomographic reconstruction according to the Noise2Noise training paradigm. Therefore the user has to provide two tomograms of the same sample. The simplest way to achieve this is with direct- detector movie-frames. You can use Warp to generate two reconstructed tomograms based on the even/odd frames. Alternatively, the movie-frames can be split in two halves (e.g. with MotionCor2 -SplitSum 1 or with IMOD alignframes -debug 10000) from which two identical, up to random noise, tomograms can be reconstructed. These two (even and odd) tomograms can be used as input to this cryoCARE implementation. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``0.2.1``|``-CUDA-11.3.1``|``foss/2021a`` -``0.3.0``|``-CUDA-11.7.0``|``foss/2022a`` - -### cryoDRGN - -cryoDRGN: Deep Reconstructing Generative Networks for cryo-EM heterogeneous reconstruction. CryoDRGN is a neural network based algorithm for heterogeneous cryo-EM reconstruction. In particular, the method models a continuous distribution over 3D structures by using a neural network based representation for the volume. - -*homepage*: - -version |versionsuffix |toolchain ---------------|----------------|------------------ -``0.3.2`` | |``fosscuda/2020b`` -``0.3.5`` |``-CUDA-11.3.1``|``foss/2021a`` -``1.0.0-beta``|``-CUDA-11.3.1``|``foss/2021a`` - -### cryptography - -cryptography is a package designed to expose cryptographic primitives and recipes to Python developers. - -*homepage*: - -version |toolchain -----------|------------------ -``41.0.1``|``GCCcore/12.3.0`` -``41.0.5``|``GCCcore/13.2.0`` - -### CryptoMiniSat - -CryptoMiniSat is an advanced SAT solver - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``5.0.1``|``-Python-2.7.12``|``intel/2016b`` - -### CrystFEL - -CrystFEL is a suite of programs for processing diffraction data acquired "serially" in a "snapshot" manner, such as when using the technique of Serial Femtosecond Crystallography (SFX) with a free-electron laser source. - -*homepage*: - -version |toolchain ----------|------------------------------- -``0.8.0``|``foss/2019a``, ``intel/2019a`` - -### CSB - -Computational Structural Biology Toolbox CSB is a python library and application framework, which can be used to solve problems in the field of structural bioinformatics. If you are a bioinformatician, software engineer or a researcher working in this field, chances are you may find something useful here. Our package consists of a few major components: 1. Core class library - object-oriented, granular, with an emphasis on design and clean interfaces. 2. Application framework - console applications ("protocols"), which consume objects from the core library in order to build something executable (and hopefully useful). 3. Test framework - ensures that the library actually works. - -*homepage*: - -version |toolchain ----------|-------------- -``1.2.5``|``foss/2020b`` - -### CSBDeep - -CSBDeep is a toolbox for Content-aware Image Restoration (CARE). - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|---------------------------------- -``0.4.1``|``-Python-3.7.2``|``foss/2019a``, ``fosscuda/2019a`` -``0.7.4``| |``foss/2022a`` -``0.7.4``|``-CUDA-11.7.0`` |``foss/2022a`` - -### CSBLAST - -Context-specific extension of BLAST that significantly improves sensitivity and alignment quality. - -*homepage*: - -version |toolchain ----------|------------------ -``2.2.3``|``GCCcore/8.3.0`` -``2.2.4``|``GCCcore/11.3.0`` - -### cscope - -Cscope is a developer's tool for browsing source code. - -*homepage*: - -version |toolchain ---------|---------- -``15.9``|``system`` - -### csvkit - -csvkit is a suite of command-line tools for converting to and working with CSV, the king of tabular file formats. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------ -``1.0.4``| |``GCCcore/8.2.0`` -``1.0.5``|``-Python-3.7.4``|``GCCcore/8.3.0`` -``1.1.0``| |``GCCcore/11.3.0`` - -### ctags - -Ctags generates an index (or tag) file of language objects found in source files that allows these items to be quickly and easily located by a text editor or other utility. - -*homepage*: - -version|toolchain --------|---------- -``5.8``|``system`` - -### ctffind - -Program for finding CTFs of electron micrographs. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|---------------------------------------------------------------------------------------------------------------------- -``4.1.13``| |``foss/2019a``, ``fosscuda/2019a``, ``fosscuda/2019b`` -``4.1.14``| |``foss/2019b``, ``foss/2021b``, ``foss/2022a``, ``foss/2022b``, ``foss/2023a``, ``fosscuda/2019b``, ``fosscuda/2020b`` -``4.1.14``|``-CUDA-11.3.1``|``foss/2021a`` - -### ctffind5 - -Program for finding CTFs of electron micrographs. - -*homepage*: - -version |toolchain ----------|-------------- -``5.0.2``|``foss/2023a`` - -### CTPL - -Modern and efficient C++ Thread Pool Library - -*homepage*: - -version |toolchain ----------|-------------- -``0.0.2``|``GCC/11.3.0`` - -### Cube - -Cube, which is used as performance report explorer for Scalasca and Score-P, is a generic tool for displaying a multi-dimensional performance space consisting of the dimensions (i) performance metric, (ii) call path, and (iii) system resource. Each dimension can be represented as a tree, where non-leaf nodes of the tree can be collapsed or expanded to achieve the desired level of granularity. - -*homepage*: - -version |toolchain ----------|-------------- -``4.3.4``|``foss/2016a`` - -### CubeGUI - -Cube, which is used as performance report explorer for Scalasca and Score-P, is a generic tool for displaying a multi-dimensional performance space consisting of the dimensions (i) performance metric, (ii) call path, and (iii) system resource. Each dimension can be represented as a tree, where non-leaf nodes of the tree can be collapsed or expanded to achieve the desired level of granularity. This module provides the Cube graphical report explorer. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``4.4.4``|``GCCcore/8.2.0``, ``GCCcore/9.3.0`` -``4.6`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``4.8`` |``GCCcore/11.3.0`` - -### CubeLib - -Cube, which is used as performance report explorer for Scalasca and Score-P, is a generic tool for displaying a multi-dimensional performance space consisting of the dimensions (i) performance metric, (ii) call path, and (iii) system resource. Each dimension can be represented as a tree, where non-leaf nodes of the tree can be collapsed or expanded to achieve the desired level of granularity. This module provides the Cube general purpose C++ library component and command-line tools. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------- -``4.4.4``|``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``4.6`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``4.8`` |``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``4.8.1``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``4.8.2``|``GCCcore/12.2.0``, ``GCCcore/13.2.0`` - -### CubeWriter - -Cube, which is used as performance report explorer for Scalasca and Score-P, is a generic tool for displaying a multi-dimensional performance space consisting of the dimensions (i) performance metric, (ii) call path, and (iii) system resource. Each dimension can be represented as a tree, where non-leaf nodes of the tree can be collapsed or expanded to achieve the desired level of granularity. This module provides the Cube high-performance C writer library component. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------- -``4.4.3``|``GCCcore/10.2.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``4.6`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``4.8`` |``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``4.8.1``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``4.8.2``|``GCCcore/12.2.0``, ``GCCcore/13.2.0`` - -### CuCLARK - -Metagenomic classifier for CUDA-enabled GPUs - -*homepage*: - -version|toolchain --------|------------------ -``1.1``|``fosscuda/2019b`` - -### CUDA - -CUDA (formerly Compute Unified Device Architecture) is a parallel computing platform and programming model created by NVIDIA and implemented by the graphics processing units (GPUs) that they produce. CUDA gives developers access to the virtual instruction set and memory of the parallel computational elements in CUDA GPUs. - -*homepage*: - -version |toolchain ------------------|-------------------------------------------------------------------------- -``5.5.22`` |``GCC/4.8.2``, ``system`` -``6.0.37`` |``system`` -``6.5.14`` |``system`` -``7.0.28`` |``system`` -``7.5.18`` |``GCC/4.9.4-2.25``, ``iccifort/2016.3.210-GCC-4.9.3-2.25``, ``system`` -``8.0.44`` |``GCC/5.4.0-2.26``, ``iccifort/2016.3.210-GCC-5.4.0-2.26``, ``system`` -``8.0.61`` |``system`` -``8.0.61_375.26``|``GCC/5.4.0-2.26`` -``9.0.176`` |``GCC/6.4.0-2.28``, ``iccifort/2017.4.196-GCC-6.4.0-2.28``, ``system`` -``9.1.85`` |``GCC/6.4.0-2.28``, ``system`` -``9.2.88`` |``GCC/6.4.0-2.28``, ``GCC/7.3.0-2.30``, ``system`` -``9.2.148.1`` |``system`` -``10.0.130`` |``system`` -``10.1.105`` |``GCC/8.2.0-2.31.1``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1``, ``system`` -``10.1.168`` |``system`` -``10.1.243`` |``GCC/8.3.0``, ``iccifort/2019.5.281``, ``system`` -``10.2.89`` |``GCC/8.3.0`` -``11.0.2`` |``GCC/9.3.0``, ``iccifort/2020.1.217`` -``11.1.1`` |``GCC/10.2.0``, ``iccifort/2020.4.304`` -``11.3.1`` |``system`` -``11.4.1`` |``system`` -``11.4.2`` |``system`` -``11.5.0`` |``system`` -``11.5.1`` |``system`` -``11.5.2`` |``system`` -``11.6.0`` |``system`` -``11.7.0`` |``system`` -``11.8.0`` |``system`` -``12.0.0`` |``system`` -``12.1.0`` |``system`` -``12.1.1`` |``system`` -``12.2.0`` |``system`` -``12.2.2`` |``system`` -``12.3.0`` |``system`` -``12.3.2`` |``system`` -``12.4.0`` |``system`` - -### CUDA-Samples - -Samples for CUDA Developers which demonstrates features in CUDA Toolkit - -*homepage*: - -version |versionsuffix |toolchain ---------|----------------|-------------- -``11.3``|``-CUDA-11.3.1``|``GCC/10.3.0`` -``11.6``|``-CUDA-11.7.0``|``GCC/11.3.0`` -``12.1``|``-CUDA-12.1.1``|``GCC/12.3.0`` - -### CUDAcompat - -Using the CUDA Forward Compatibility package, system administrators can run applications built using a newer toolkit even when an older driver that does not satisfy the minimum required driver version is installed on the system. This forward compatibility allows the CUDA deployments in data centers and enterprises to benefit from the faster release cadence and the latest features and performance of CUDA Toolkit. - -*homepage*: - -version |versionsuffix |toolchain ---------|--------------|---------- -``11`` | |``system`` -``11.6``| |``system`` -``11.6``|``-510.85.02``|``system`` -``11.7``| |``system`` -``11.7``|``-515.65.01``|``system`` - -### CUDAcore - -CUDA (formerly Compute Unified Device Architecture) is a parallel computing platform and programming model created by NVIDIA and implemented by the graphics processing units (GPUs) that they produce. CUDA gives developers access to the virtual instruction set and memory of the parallel computational elements in CUDA GPUs. - -*homepage*: - -version |toolchain -----------|---------- -``11.0.2``|``system`` -``11.1.1``|``system`` -``11.2.1``|``system`` -``11.2.2``|``system`` -``11.3.0``|``system`` -``11.4.0``|``system`` -``11.5.1``|``system`` - -### CUDD - -The CUDD package is a package written in C for the manipulation of decision diagrams. It supports binary decision diagrams (BDDs), algebraic decision diagrams (ADDs), and Zero-Suppressed BDDs (ZDDs). - -*homepage*: - -version |toolchain ----------|-------------- -``3.0.0``|``GCC/11.3.0`` - -### cuDNN - -The NVIDIA CUDA Deep Neural Network library (cuDNN) is a GPU-accelerated library of primitives for deep neural networks. - -*homepage*: - -version |versionsuffix |toolchain --------------|------------------|----------------------------------------------------------- -``4.0`` | |``system`` -``5.0`` |``-CUDA-7.5.18`` |``system`` -``5.0-rc`` | |``system`` -``5.1`` |``-CUDA-8.0.44`` |``system`` -``6.0`` |``-CUDA-8.0.61`` |``system`` -``6.0.21`` |``-CUDA-7.5.18`` |``system`` -``6.0.21`` |``-CUDA-8.0.44`` |``system`` -``7.0.2`` |``-CUDA-9.0.176`` |``system`` -``7.0.5`` |``-CUDA-8.0.44`` |``system`` -``7.0.5`` |``-CUDA-9.0.176`` |``system`` -``7.0.5`` |``-CUDA-9.1.85`` |``system`` -``7.0.5.15`` | |``fosscuda/2017b``, ``fosscuda/2018a``, ``intelcuda/2017b`` -``7.1.4.18`` | |``fosscuda/2018b`` -``7.4.2.24`` | |``gcccuda/2019a`` -``7.4.2.24`` |``-CUDA-10.0.130``|``system`` -``7.5.0.56`` |``-CUDA-10.0.130``|``system`` -``7.6.2.24`` |``-CUDA-10.1.243``|``system`` -``7.6.4.38`` | |``gcccuda/2019a``, ``gcccuda/2019b`` -``7.6.4.38`` |``-CUDA-10.0.130``|``system`` -``8.0.4.30`` |``-CUDA-11.0.2`` |``system`` -``8.0.4.30`` |``-CUDA-11.1.1`` |``system`` -``8.0.5.39`` |``-CUDA-11.1.1`` |``system`` -``8.1.0.77`` |``-CUDA-11.2.1`` |``system`` -``8.1.1.33`` |``-CUDA-11.2.1`` |``system`` -``8.2.1.32`` |``-CUDA-11.3.1`` |``system`` -``8.2.2.26`` |``-CUDA-11.4.0`` |``system`` -``8.2.2.26`` |``-CUDA-11.4.1`` |``system`` -``8.4.0.27`` |``-CUDA-11.6.0`` |``system`` -``8.4.1.50`` |``-CUDA-11.5.2`` |``system`` -``8.4.1.50`` |``-CUDA-11.6.0`` |``system`` -``8.4.1.50`` |``-CUDA-11.7.0`` |``system`` -``8.5.0.96`` |``-CUDA-11.7.0`` |``system`` -``8.6.0.163``|``-CUDA-11.8.0`` |``system`` -``8.7.0.84`` |``-CUDA-11.8.0`` |``system`` -``8.8.0.121``|``-CUDA-12.0.0`` |``system`` -``8.9.2.26`` |``-CUDA-12.1.1`` |``system`` -``8.9.2.26`` |``-CUDA-12.2.0`` |``system`` -``8.9.7.29`` |``-CUDA-12.3.0`` |``system`` - -### Cufflinks - -Transcript assembly, differential expression, and differential regulation for RNA-Seq - -*homepage*: - -version |toolchain -------------|------------------------------------------------------------------------------------------------- -``2.2.1`` |``foss/2016a``, ``foss/2016b``, ``foss/2018b``, ``gompi/2019b``, ``intel/2017b``, ``intel/2018a`` -``20190706``|``GCC/10.2.0``, ``GCC/11.2.0``, ``gompi/2019a`` - -### CUnit - -Automated testing framework for C. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------- -``2.1-3``|``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0``, ``GCCcore/6.4.0`` - -### CuPy - -CuPy is an open-source array library accelerated with NVIDIA CUDA. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------ -``8.2.0`` |``-Python-3.7.4``|``fosscuda/2019b`` -``8.5.0`` | |``fosscuda/2020b`` -``11.4.0``|``-CUDA-11.4.1`` |``foss/2021b`` -``12.1.0``|``-CUDA-12.0.0`` |``foss/2022b`` -``13.0.0``|``-CUDA-12.1.1`` |``foss/2023a`` - -### cURL - -libcurl is a free and easy-to-use client-side URL transfer library, supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, Kerberos), file transfer resume, http proxy tunneling and more. - -*homepage*: - -version |toolchain -----------|----------------------------------------------------------------------------------- -``7.33.0``|``GCC/4.8.2`` -``7.34.0``|``GCC/4.8.2`` -``7.40.0``|``GCC/4.9.2`` -``7.46.0``|``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25`` -``7.47.0``|``foss/2016a``, ``intel/2016.02-GCC-4.9``, ``intel/2016a`` -``7.49.1``|``GCCcore/5.4.0``, ``foss/2016a``, ``foss/2016b``, ``intel/2016a``, ``intel/2016b`` -``7.52.1``|``gimkl/2017a``, ``intel/2016b`` -``7.53.1``|``GCCcore/6.3.0`` -``7.54.0``|``GCCcore/6.3.0`` -``7.55.1``|``GCCcore/6.4.0`` -``7.56.0``|``GCCcore/6.4.0`` -``7.56.1``|``GCCcore/6.4.0`` -``7.58.0``|``GCCcore/6.4.0`` -``7.59.0``|``GCCcore/6.4.0`` -``7.60.0``|``GCCcore/7.2.0``, ``GCCcore/7.3.0`` -``7.63.0``|``GCCcore/8.2.0`` -``7.66.0``|``GCCcore/8.3.0`` -``7.69.1``|``GCCcore/9.3.0`` -``7.72.0``|``GCCcore/10.2.0`` -``7.76.0``|``GCCcore/10.3.0`` -``7.78.0``|``GCCcore/11.2.0`` -``7.83.0``|``GCCcore/11.3.0`` -``7.84.0``|``GCCcore/12.1.0`` -``7.86.0``|``GCCcore/12.2.0`` -``8.0.1`` |``GCCcore/12.3.0``, ``GCCcore/13.1.0`` -``8.3.0`` |``GCCcore/13.2.0`` -``8.7.1`` |``GCCcore/13.3.0`` - -### currentNe - -Estimation of current effective population using artificial neural networks. - -*homepage*: - -version |toolchain ----------|------------------ -``1.0.0``|``GCCcore/12.3.0`` - -### cuSPARSELt - -NVIDIA cuSPARSELt is a high-performance CUDA library dedicated to general matrix-matrix operations in which at least one operand is a sparse matrix - -*homepage*: - -version |versionsuffix |toolchain ------------|----------------|---------- -``0.3.0.3``|``-CUDA-11.4.1``|``system`` -``0.6.0.6``|``-CUDA-12.1.1``|``system`` - -### custodian - -A simple JIT job management framework in Python. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``1.1.0``|``-Python-2.7.13``|``intel/2017a`` - -### cutadapt - -Cutadapt finds and removes adapter sequences, primers, poly-A tails and other types of unwanted sequence from your high-throughput sequencing reads. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------------------------ -``1.9.1``|``-Python-2.7.11``|``foss/2016a`` -``1.9.1``|``-Python-2.7.12``|``foss/2016b`` -``1.14`` |``-Python-2.7.13``|``foss/2017a``, ``intel/2017a`` -``1.15`` |``-Python-3.5.2`` |``foss/2016b`` -``1.16`` |``-Python-2.7.14``|``foss/2017b``, ``intel/2017b``, ``intel/2018a`` -``1.16`` |``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``1.16`` |``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``1.18`` | |``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``1.18`` |``-Python-2.7.15``|``foss/2018b`` -``1.18`` |``-Python-2.7.18``|``GCC/10.2.0`` -``1.18`` |``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``2.1`` |``-Python-3.6.6`` |``foss/2018b`` -``2.7`` |``-Python-3.7.4`` |``GCCcore/8.3.0`` -``2.8`` |``-Python-3.7.4`` |``GCCcore/8.3.0`` -``2.10`` | |``GCCcore/10.2.0`` -``2.10`` |``-Python-3.7.4`` |``GCCcore/8.3.0`` -``2.10`` |``-Python-3.8.2`` |``GCCcore/9.3.0`` -``3.4`` | |``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``3.5`` | |``GCCcore/11.2.0`` -``4.2`` | |``GCCcore/11.3.0`` -``4.4`` | |``GCCcore/12.2.0`` - -### cuTENSOR - -The cuTENSOR Library is a GPU-accelerated tensor linear algebra library providing tensor contraction, reduction and elementwise operations. - -*homepage*: - -version |versionsuffix |toolchain ------------|----------------|----------------- -``1.2.2.5``| |``gcccuda/2019b`` -``1.2.2.5``|``-CUDA-11.1.1``|``system`` -``1.6.0.3``|``-CUDA-11.3.1``|``system`` -``1.6.1.5``|``-CUDA-11.4.1``|``system`` -``1.6.1.5``|``-CUDA-11.7.0``|``system`` -``1.7.0.1``|``-CUDA-12.0.0``|``system`` -``2.0.1.2``|``-CUDA-12.1.1``|``system`` -``2.0.1.2``|``-CUDA-12.2.2``|``system`` - -### cuteSV - -cuteSV uses tailored methods to collect the signatures of various types of SVs and employs a clustering-and-refinement method to analyze the signatures to implement sensitive SV detection. - -*homepage*: - -version |toolchain ----------|-------------- -``2.0.3``|``foss/2022a`` - -### CUTLASS - -CUTLASS is a collection of CUDA C++ template abstractions for implementing high-performance matrix-matrix multiplication (GEMM) and related computations at all levels and scales within CUDA. It incorporates strategies for hierarchical decomposition and data movement similar to those used to implement cuBLAS and cuDNN. CUTLASS decomposes these "moving parts" into reusable, modular software components abstracted by C++ template classes. Primitives for different levels of a conceptual parallelization hierarchy can be specialized and tuned via custom tiling sizes, data types, and other algorithmic policy. The resulting flexibility simplifies their use as building blocks within custom kernels and applications. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|-------------- -``2.11.0``|``-CUDA-11.7.0``|``foss/2022a`` - -### CVglasso - -CVglasso is an R package that estimates a lasso-penalized precision matrix via block-wise coordinate descent – also known as the graphical lasso (glasso) algorithm. - -*homepage*: - -version|versionsuffix|toolchain --------|-------------|-------------- -``1.0``|``-R-4.2.1`` |``foss/2022a`` - -### CVX - -CVX is a Matlab-based modeling system for convex optimization. CVX turns Matlab into a modeling language, allowing constraints and objectives to be specified using standard Matlab expression syntax. - -*homepage*: - -version|versionsuffix |toolchain --------|-----------------|---------- -``2.2``|``-MATLAB-2023a``|``system`` - -### CVXOPT - -CVXOPT is a free software package for convex optimization based on the Python programming language. Its main purpose is to make the development of software for convex optimization applications straightforward by building on Python's extensive standard library and on the strengths of Python as a high-level programming language. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------ -``1.1.9``|``-Python-2.7.13``|``intel/2017a`` -``1.2.1``|``-Python-3.6.4`` |``intel/2018a`` -``1.2.3``| |``foss/2019a`` -``1.2.3``|``-Python-3.6.6`` |``intel/2018b`` -``1.2.4``|``-Python-3.7.4`` |``intel/2019b`` -``1.2.6``| |``foss/2020b``, ``foss/2021a`` -``1.3.1``| |``foss/2022a`` - -### CVXPY - -CVXPY is a Python-embedded modeling language for convex optimization problems. It allows you to express your problem in a natural way that follows the math, rather than in the restrictive standard form required by solvers. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``1.0.24``| |``foss/2019a`` -``1.0.28``|``-Python-3.7.4``|``foss/2019b`` -``1.3.0`` | |``foss/2022a`` -``1.4.2`` | |``foss/2023a`` - -### CWIPI - -CWIPI (Coupling With Interpolation Parallel Interface) library helps in chaining and coupling codes. Provides exchanges of interpolated fields through a non-compliant geometric interface and allows control of the coupling algorithm using control parameters. CWIPI takes advantage of the distribution of the definition of the coupling algorithm in the different codes. - -*homepage*: - -version |toolchain -----------|-------------------------------- -``0.12.0``|``gompi/2021a``, ``gompi/2022a`` - -### cwltool - -Common workflow language (CWL) reference implementation. - -*homepage*: - -version |toolchain -----------------------|-------------- -``3.1.20221008225030``|``foss/2021a`` -``3.1.20221018083734``|``foss/2021a`` - -### cxxopts - -cxxopts is a lightweight C++ command line option parser - -*homepage*: - -version |toolchain ----------|---------- -``3.0.0``|``system`` - -### cysignals - -The cysignals package provides mechanisms to handle interrupts (and other signals and errors) in Cython code. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------- -``1.10.2``|``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``1.10.2``|``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``1.11.2``| |``GCCcore/11.3.0`` -``1.11.4``| |``GCCcore/13.2.0`` - -### Cython - -Cython is an optimising static compiler for both the Python programming language and the extended Cython programming language (based on Pyrex). - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|---------------------------------------------------------- -``0.23.4`` |``-Python-2.7.10``|``gimkl/2.11.5`` -``0.24.1`` |``-Python-2.7.11``|``foss/2016a`` -``0.25.2`` |``-Python-2.7.12``|``foss/2016b`` -``0.25.2`` |``-Python-3.6.4`` |``intel/2018a`` -``0.27.3`` |``-Python-2.7.15``|``GCCcore/8.2.0`` -``0.29.10``|``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``0.29.10``|``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``0.29.22``| |``GCCcore/10.2.0`` -``0.29.33``| |``GCCcore/11.3.0`` -``3.0.7`` | |``GCCcore/12.3.0`` -``3.0.8`` | |``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``3.0.10`` | |``GCCcore/13.2.0`` -``3.0a5`` | |``GCCcore/10.2.0`` - -### cython-blis - -Fast BLAS-like operations from Python and Cython, without the tears. Provides the Blis linear algebra routines as a self-contained Python C-extension. - -*homepage*: - -version |toolchain ----------|-------------- -``0.9.1``|``foss/2022a`` - -### cytoolz - -Cython implementation of the toolz package, which provides high performance utility functions for iterables, functions, and dictionaries. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|----------------- -``0.10.1``|``-Python-3.6.6``|``foss/2018b`` -``0.10.1``|``-Python-3.7.2``|``GCCcore/8.2.0`` - -### Cytoscape - -Cytoscape is an open source software platform for visualizing complex networks and integrating these with any type of attribute data. A lot of Apps are available for various kinds of problem domains, including bioinformatics, social network analysis, and semantic web. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|---------- -``3.9.1``|``-Java-11`` |``system`` - -### cytosim - -Cytosim is a cytoskeleton simulation engine written in C++ working on Mac OS, GNU/Linux and Windows (with Cygwin). - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|--------------- -``20190117``|``-mkl`` |``gomkl/2019a`` - -### cyvcf2 - -cython + htslib == fast VCF and BCF processing - -*homepage*: - -version |versionsuffix |toolchain ------------|-----------------|------------------------------- -``0.10.10``|``-Python-3.6.6``|``foss/2018b`` -``0.11.5`` | |``foss/2019a``, ``intel/2019a`` - -## D - - -[dadi](#dadi) - [dagitty](#dagitty) - [Dakota](#dakota) - [DALI](#dali) - [DaliLite](#dalilite) - [Dalton](#dalton) - [damageproto](#damageproto) - [dammit](#dammit) - [DANPOS2](#danpos2) - [DAS_Tool](#das_tool) - [dask](#dask) - [dask-labextension](#dask-labextension) - [datalad](#datalad) - [datamash](#datamash) - [davix](#davix) - [DB](#db) - [DB_File](#db_file) - [DBCSR](#dbcsr) - [DBD-mysql](#dbd-mysql) - [DBG2OLC](#dbg2olc) - [DBus](#dbus) - [dbus-glib](#dbus-glib) - [dclone](#dclone) - [dcm2niix](#dcm2niix) - [DCMTK](#dcmtk) - [dd](#dd) - [deal.II](#deal.ii) - [deap](#deap) - [decona](#decona) - [deconf](#deconf) - [DeconICA](#deconica) - [deepdiff](#deepdiff) - [deepfold](#deepfold) - [DeepLabCut](#deeplabcut) - [DeepLoc](#deeploc) - [deepmedic](#deepmedic) - [DeepMod2](#deepmod2) - [DeepSurv](#deepsurv) - [deepTools](#deeptools) - [DEICODE](#deicode) - [Delft3D](#delft3d) - [Delly](#delly) - [DeltaLake](#deltalake) - [DeMixT](#demixt) - [Demystify](#demystify) - [DendroPy](#dendropy) - [denseweight](#denseweight) - [DensPart](#denspart) - [Deprecated](#deprecated) - [desktop-file-utils](#desktop-file-utils) - [destiny](#destiny) - [Detectron2](#detectron2) - [DETONATE](#detonate) - [devbio-napari](#devbio-napari) - [Devito](#devito) - [DFA](#dfa) - [DFT-D3](#dft-d3) - [DFT-D4](#dft-d4) - [DFTB+](#dftb+) - [dftd3-lib](#dftd3-lib) - [dftd4](#dftd4) - [DGL](#dgl) - [DIA-NN](#dia-nn) - [DIAL](#dial) - [dialog](#dialog) - [DIALOGUE](#dialogue) - [DIAMOND](#diamond) - [Dice](#dice) - [DiCE-ML](#dice-ml) - [dicom2nifti](#dicom2nifti) - [DicomBrowser](#dicombrowser) - [DiffBind](#diffbind) - [Diffutils](#diffutils) - [dijitso](#dijitso) - [dill](#dill) - [DIRAC](#dirac) - [distributed](#distributed) - [DistributedStream](#distributedstream) - [DjVuLibre](#djvulibre) - [DL_POLY_4](#dl_poly_4) - [DL_POLY_Classic](#dl_poly_classic) - [dlb](#dlb) - [dlib](#dlib) - [DLPack](#dlpack) - [dm-haiku](#dm-haiku) - [dm-reverb](#dm-reverb) - [dm-tree](#dm-tree) - [DMCfun](#dmcfun) - [DMLC-Core](#dmlc-core) - [DMTCP](#dmtcp) - [DOLFIN](#dolfin) - [dominate](#dominate) - [dorado](#dorado) - [Doris](#doris) - [DosageConvertor](#dosageconvertor) - [dotNET-Core](#dotnet-core) - [dotNET-Core-Runtime](#dotnet-core-runtime) - [dotNET-SDK](#dotnet-sdk) - [double-conversion](#double-conversion) - [DoubletFinder](#doubletfinder) - [Doxygen](#doxygen) - [DP3](#dp3) - [DRAGMAP](#dragmap) - [Drake](#drake) - [dRep](#drep) - [drmaa-python](#drmaa-python) - [DROP](#drop) - [dropEst](#dropest) - [DSA](#dsa) - [dSFMT](#dsfmt) - [DSRC](#dsrc) - [Dsuite](#dsuite) - [dtcmp](#dtcmp) - [dtcwt](#dtcwt) - [DualSPHysics](#dualsphysics) - [DUBStepR](#dubstepr) - [dune-core](#dune-core) - [dune-fem](#dune-fem) - [duplex-tools](#duplex-tools) - [dx-toolkit](#dx-toolkit) - [dxpy](#dxpy) - [DyMat](#dymat) - [dynesty](#dynesty) - - -### dadi - -∂a∂i implements methods for demographic history and selection inference from genetic data, based on diffusion approximations to the allele frequency spectrum. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``1.7.0``|``-Python-2.7.12``|``intel/2016b`` - -### dagitty - -A port of the web-based software 'DAGitty', available at , for analyzing structural causal models (also known as directed acyclic graphs or DAGs). This package computes covariate adjustment sets for estimating causal effects, enumerates instrumental variables, derives testable implications (d-separation and vanishing tetrads), generates equivalent models, and includes a simple facility for data simulation. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``0.2-2``|``-R-3.5.1`` |``foss/2018b`` - -### Dakota - -The Dakota project delivers both state-of-the-art research and robust, usable software for optimization and UQ. Broadly, the Dakota software's advanced parametric analyses enable design exploration, model calibration, risk analysis, and quantification of margins and uncertainty with computational models. - -*homepage*: - -version |toolchain -----------|-------------- -``6.16.0``|``foss/2021b`` - -### DALI - -R-package for the analysis of single-cell TCR/BCR data in the Seurat ecosystem - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``2.1.2``|``-R-4.2.2`` |``foss/2022b`` - -### DaliLite - -DaliLite is a light version of the software run by the Dali server. The web server has search and data visualization options which are not included in this package. DaliLite supports data import (import.pl) to convert PDB entries to Dali's internal data format and pairwise comparison (dali.pl) to structurally align a list of query structures to a list of target structures. - -*homepage*: - -version|toolchain --------|--------------- -``4.1``|``gompi/2021a`` - -### Dalton - -The Dalton code is a powerful tool for a wide range of molecular properties at different levels of theory. Any published work arising from use of one of the Dalton2016 programs must acknowledge that by a proper reference, https://www.daltonprogram.org/www/citation.html. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|--------------- -``2016`` |``-i8`` |``intel/2017b`` -``2020.0``| |``foss/2021a`` -``2020.1``| |``foss/2022b`` - -### damageproto - -X protocol and ancillary headers for xinerama - -*homepage*: - -version |toolchain ----------|------------------------------- -``1.2.1``|``foss/2016a``, ``intel/2016a`` - -### dammit - -dammit is a simple de novo transcriptome annotator. It was born out of the observations that annotation is mundane and annoying, all the individual pieces of the process exist already, and the existing solutions are overly complicated or rely on crappy non-free software. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``0.3.2``|``-Python-2.7.13``|``intel/2017a`` - -### DANPOS2 - -A toolkit for Dynamic Analysis of Nucleosome and Protein Occupancy by Sequencing, version 2 - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``2.2.2``|``-Python-2.7.12``|``foss/2016b`` - -### DAS_Tool - -DAS Tool is an automated method that integrates the results of a flexible number of binning algorithms to calculate an optimized, non-redundant set of bins from a single assembly. - -*homepage*: - -version |versionsuffix |toolchain ----------|--------------------------|-------------- -``1.1.1``|``-R-3.5.1-Python-2.7.15``|``foss/2018b`` -``1.1.1``|``-R-4.1.2`` |``foss/2021b`` -``1.1.3``|``-R-4.1.0`` |``foss/2021a`` - -### dask - -Dask natively scales Python. Dask provides advanced parallelism for analytics, enabling performance at scale for the tools you love. - -*homepage*: - -version |versionsuffix |toolchain --------------|------------------|------------------------------------------------------------------------ -``0.8.2`` |``-Python-2.7.11``|``intel/2016a`` -``0.8.2`` |``-Python-3.5.1`` |``intel/2016a`` -``0.11.0`` |``-Python-2.7.11``|``foss/2016a`` -``0.11.0`` |``-Python-2.7.12``|``intel/2016b`` -``0.11.0`` |``-Python-3.5.2`` |``intel/2016b`` -``0.12.0`` |``-Python-2.7.12``|``intel/2016b`` -``0.12.0`` |``-Python-3.5.2`` |``foss/2016b``, ``intel/2016b`` -``0.16.0`` |``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``0.16.0`` |``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``0.17.0`` |``-Python-2.7.13``|``foss/2017a``, ``intel/2017a`` -``0.17.0`` |``-Python-3.6.1`` |``intel/2017a`` -``0.17.2`` |``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``0.19.4`` |``-Python-3.6.6`` |``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b`` -``1.0.0`` |``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``1.1.4`` |``-Python-2.7.15``|``fosscuda/2018b`` -``2.3.0`` |``-Python-3.7.2`` |``foss/2019a`` -``2.8.0`` |``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b``, ``intel/2019b`` -``2.18.1`` |``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``2021.2.0`` | |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b``, ``intelcuda/2020b`` -``2021.9.1`` | |``foss/2021a`` -``2022.1.0`` | |``foss/2021b`` -``2022.10.0``| |``foss/2022a`` -``2023.7.1`` | |``foss/2022b`` -``2023.9.2`` | |``foss/2023a`` -``2023.12.1``| |``foss/2023a`` -``2024.5.1`` | |``gfbf/2023b`` - -### dask-labextension - -This package provides a JupyterLab extension to manage Dask clusters, as well as embed Dask's dashboard plots directly into JupyterLab panes. - -*homepage*: - -version |toolchain ----------|------------------------------ -``6.0.0``|``foss/2022a`` -``7.0.0``|``foss/2023a``, ``gfbf/2023b`` - -### datalad - -DataLad is a free and open source distributed data management system that keeps track of your data, creates structure, ensures reproducibility, supports collaboration, and integrates with widely used data infrastructure. - -*homepage*: - -version |toolchain -----------|------------------ -``0.18.4``|``GCCcore/12.2.0`` -``0.19.5``|``GCCcore/12.3.0`` - -### datamash - -GNU datamash performs basic numeric, textual and statistical operations on input data files - -*homepage*: - -version|toolchain --------|-------------------------------------------------------- -``1.3``|``foss/2018a`` -``1.5``|``GCCcore/10.2.0``, ``GCCcore/7.3.0``, ``GCCcore/8.3.0`` -``1.8``|``GCCcore/11.3.0`` - -### davix - -The davix project aims to make file management over HTTP-based protocols simple. The focus is on high-performance remote I/O and data management of large collections of files. Currently, there is support for the WebDav (link is external), Amazon S3 (link is external), Microsoft Azure (link is external), and HTTP (link is external) protocols. - -*homepage*: - -version |toolchain ----------|----------------- -``0.6.6``|``intel/2017a`` -``0.7.5``|``GCCcore/8.3.0`` - -### DB - -Berkeley DB enables the development of custom data management solutions, without the overhead traditionally associated with such custom projects. - -*homepage*: - -version |toolchain ------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``4.8.30`` |``intel/2016a`` -``6.2.23`` |``foss/2016a`` -``6.2.32`` |``GCCcore/6.4.0``, ``intel/2017a`` -``18.1.25``|``GCCcore/7.3.0`` -``18.1.32``|``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``18.1.40``|``FCC/4.5.0``, ``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.1.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0`` - -### DB_File - -Perl5 access to Berkeley DB version 1.x. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|------------------ -``1.835``| |``GCCcore/9.3.0`` -``1.835``|``-Perl-5.20.3``|``intel/2016a`` -``1.835``|``-Perl-5.22.1``|``foss/2016a`` -``1.855``| |``GCCcore/10.2.0`` -``1.856``| |``GCCcore/10.3.0`` -``1.857``| |``GCCcore/11.2.0`` -``1.858``| |``GCCcore/11.3.0`` -``1.859``| |``GCCcore/12.3.0`` - -### DBCSR - -DBCSR stands for Distributed Blocked Compressed Sparse Row. DBCSR is a library designed to efficiently perform sparse matrix-matrix multiplication, among other operations. - -*homepage*: - -version |toolchain ----------|-------------- -``2.5.0``|``foss/2021b`` - -### DBD-mysql - -Perl binding for MySQL - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------------------------------------------------------- -``4.032``|``-Perl-5.22.2``|``intel/2016a`` -``4.033``|``-Perl-5.24.0``|``intel/2016b`` -``4.042``|``-Perl-5.24.1``|``intel/2017a`` -``4.046``|``-Perl-5.26.0``|``foss/2017b``, ``intel/2017b`` -``4.046``|``-Perl-5.26.1``|``intel/2018a`` -``4.048``|``-Perl-5.28.0``|``foss/2018b`` -``4.050``| |``GCC/10.2.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0`` -``4.050``|``-Perl-5.28.1``|``foss/2019a`` - -### DBG2OLC - -DBG2OLC:Efficient Assembly of Large Genomes Using Long Erroneous Reads of the Third Generation Sequencing Technologies - -*homepage*: - -version |toolchain -------------|---------------------------------------------------------- -``20170208``|``intel/2016b``, ``intel/2017a`` -``20180221``|``GCC/6.4.0-2.28``, ``iccifort/2017.4.196-GCC-6.4.0-2.28`` -``20200724``|``GCC/11.3.0`` - -### DBus - -D-Bus is a message bus system, a simple way for applications to talk to one another. In addition to interprocess communication, D-Bus helps coordinate process lifecycle; it makes it simple and reliable to code a "single instance" application or daemon, and to launch applications and daemons on demand when their services are needed. - -*homepage*: - -version |toolchain ------------|---------------------------------------------------------- -``1.10.8`` |``foss/2016a``, ``intel/2016a`` -``1.10.12``|``intel/2016b`` -``1.10.20``|``GCCcore/6.4.0`` -``1.11.20``|``intel/2017a`` -``1.13.0`` |``intel/2017b`` -``1.13.6`` |``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``1.13.8`` |``GCCcore/8.2.0`` -``1.13.12``|``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.13.18``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``1.14.0`` |``GCCcore/11.3.0`` -``1.15.2`` |``GCCcore/12.2.0`` -``1.15.4`` |``GCCcore/12.3.0`` -``1.15.8`` |``GCCcore/13.2.0`` - -### dbus-glib - -D-Bus is a message bus system, a simple way for applications to talk to one another. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------ -``0.106``|``foss/2016a``, ``intel/2016a`` -``0.108``|``intel/2016b``, ``intel/2017a`` -``0.110``|``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``intel/2017b`` -``0.112``|``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` - -### dclone - -Low level functions for implementing maximum likelihood estimating procedures for complex models using data cloning and Bayesian Markov chain Monte Carlo methods - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``2.3-0``|``-R-4.2.1`` |``foss/2022a`` - -### dcm2niix - -dcm2niix is designed to convert neuroimaging data from the DICOM format to the NIfTI format. - -*homepage*: - -version |toolchain -----------------|------------------------------------ -``1.0.20180622``|``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``1.0.20190902``|``GCCcore/7.3.0``, ``GCCcore/8.2.0`` -``1.0.20200331``|``GCCcore/8.3.0`` -``1.0.20201102``|``GCCcore/8.3.0`` -``1.0.20211006``|``GCCcore/10.3.0`` -``1.0.20220720``|``GCCcore/11.3.0`` -``1.0.20230411``|``GCCcore/12.2.0`` - -### DCMTK - -DCMTK is a collection of libraries and applications implementing large parts the DICOM standard. It includes software for examining, constructing and converting DICOM image files, handling offline media, sending and receiving images over a network connection, as well as demonstrative image storage and worklist servers. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``3.6.3``|``GCCcore/7.3.0`` -``3.6.5``|``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``3.6.6``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``3.6.7``|``GCCcore/11.3.0`` - -### dd - -dd is a package for working with binary decision diagrams that includes both a pure Python implementation and Cython bindings to C libraries (CUDD, Sylvan, BuDDy). The Python and Cython modules implement the same API, so the same user code runs with both. All the standard operations on BDDs are available, including dynamic variable reordering using sifting, garbage collection, dump/load from files, plotting, and a parser of quantified Boolean expressions. This module includes bindings for: CUDD v3.0.0, Sylvan v1.0.0 - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``0.5.6``|``-Python-3.8.2``|``foss/2020a`` - -### deal.II - -deal.II is a C++ program library targeted at the computational solution of partial differential equations using adaptive finite elements. - -*homepage*: - -version |toolchain ----------|------------------------------- -``9.1.1``|``foss/2019a``, ``intel/2019a`` -``9.3.3``|``foss/2021a`` -``9.5.2``|``foss/2023a`` - -### deap - -DEAP is a novel evolutionary computation framework for rapid prototyping and testing of ideas. It seeks to make algorithms explicit and data structures transparent. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``0.9.2``|``-Python-2.7.12``|``intel/2016b`` - -### decona - -fastq to polished sequenses: pipeline suitable for mixed samples and long (Nanopore) reads - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``0.1.2``|``-Python-3.7.4``|``foss/2019b`` - -### deconf - -decomposition (deconfounding) of OMICS datasets in heterogeneous tissues - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``1.0.1``|``-R-3.5.1`` |``foss/2018b`` - -### DeconICA - -Deconvolution of transcriptome through Immune Component Analysis (DeconICA) is an R package for identifying immune-related signals in transcriptome through deconvolution or unsupervised source separation methods. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``0.1.0``|``-R-3.5.1`` |``foss/2018b`` - -### deepdiff - -DeepDiff: Deep Difference of dictionaries, iterables and almost any other object recursively. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------------------------------- -``3.3.0``|``-Python-2.7.15``|``intel/2018b`` -``3.3.0``|``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``4.0.6``|``-Python-3.7.2`` |``GCCcore/8.2.0`` -``5.0.2``|``-Python-3.7.4`` |``GCCcore/8.3.0`` -``5.7.0``| |``GCCcore/11.2.0`` -``5.8.1``| |``GCCcore/11.3.0`` -``6.7.1``| |``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### deepfold - -This package provides an implementation of DeepFold, a trainable, Transformer-based deep protein folding model. We modified the open-source code of DeepMind AlphaFold v2.0 and Uni-Fold-jax. Pretrained models can be found in environment variable $DEEPFOLD_PARAMETERS - -*homepage*: - -version |versionsuffix |toolchain -------------|----------------|-------------- -``20240308``|``-CUDA-11.7.0``|``foss/2022a`` - -### DeepLabCut - -Markerless tracking of user-defined features with deep learning - -*homepage*: - -version |versionsuffix |toolchain ------------|----------------|-------------- -``2.2.0.6``| |``foss/2021a`` -``2.2.0.6``|``-CUDA-11.3.1``|``foss/2021a`` -``2.3.6`` |``-CUDA-11.7.0``|``foss/2022a`` - -### DeepLoc - -DeepLoc 2.0 predicts the subcellular localization(s) of eukaryotic proteins - -*homepage*: - -version|toolchain --------|-------------- -``2.0``|``foss/2022b`` - -### deepmedic - -Efficient Multi-Scale 3D Convolutional Neural Network for Segmentation of 3D Medical Scans. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``0.8.2``| |``foss/2021a`` -``0.8.2``|``-CUDA-11.3.1``|``foss/2021a`` - -### DeepMod2 - -DeepMod2 is a computational tool for detecting DNA methylation and modifications from Oxford Nanopore reads. - -*homepage*: - -version |toolchain ----------|-------------- -``0.0.1``|``foss/2021a`` - -### DeepSurv - -DeepSurv is a deep learning approach to survival analysis. - -*homepage*: - -version |versionsuffix |toolchain -------------------|-----------------|------------------ -``2.0.0-20180922``|``-Python-3.6.6``|``fosscuda/2018b`` - -### deepTools - -deepTools is a suite of python tools particularly developed for the efficient analysis of high-throughput sequencing data, such as ChIP-seq, RNA-seq or MNase-seq. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``2.5.4``|``-Python-3.6.3``|``intel/2017b`` -``3.3.1``|``-Python-3.6.6``|``foss/2018b`` -``3.3.1``|``-Python-3.7.4``|``intel/2019b`` -``3.3.1``|``-Python-3.8.2``|``foss/2020a`` -``3.5.0``| |``foss/2021a`` -``3.5.1``| |``foss/2021b`` -``3.5.2``| |``foss/2022a`` - -### DEICODE - -DEICODE is a form of Aitchison Distance that is robust to high levels of sparsity. DEICODE utilizes a natural solution to the zero problem formulated in recommendation systems called matrix completion. A simple way to interpret the method is, as a robust compositional PCA (via SVD) where zero values do not influence the resulting ordination. - -*homepage*: - -version |toolchain ----------|-------------- -``0.2.4``|``foss/2022a`` - -### Delft3D - -Simulation of multi-dimensional hydrodynamic flows and transport phenomena, including sediments. Delft3D-FLOW is part of Delft3D 4. - -*homepage*: - -version |versionsuffix|toolchain ------------|-------------|-------------- -``4.04.01``|``-FLOW`` |``foss/2022a`` - -### Delly - -Delly is an integrated structural variant (SV) prediction method that can discover, genotype and visualize deletions, tandem duplications, inversions and translocations at single-nucleotide resolution in short-read massively parallel sequencing data. It uses paired-ends, split-reads and read-depth to sensitively and accurately delineate genomic rearrangements throughout the genome. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``0.7.8``|``-linux_x86_64``|``system`` -``0.8.7``| |``gompi/2020b`` -``1.1.5``| |``GCC/11.3.0`` -``1.1.6``| |``GCC/12.2.0`` - -### DeltaLake - -Native Delta Lake Python binding based on delta-rs with Pandas integration. The Delta Lake project aims to unlock the power of the Deltalake for as many users and projects as possible by providing native low-level APIs aimed at developers and integrators, as well as a high-level operations API that lets you query, inspect, and operate your Delta Lake with ease. - -*homepage*: - -version |toolchain -----------|-------------- -``0.15.1``|``gfbf/2023a`` - -### DeMixT - -Cell type-specific deconvolution of heterogeneous tumor samples with two or three components using expression data from RNAseq or microarray platforms. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``0.2.1``|``-R-3.5.1`` |``foss/2018b`` - -### Demystify - -Demystify is a tool which allows puzzles to be expressed in a high-level constraint programming language and uses MUSes to automatically produce descriptions of steps in the puzzle solving. - -*homepage*: - -version |toolchain -----------|-------------- -``0.0.17``|``foss/2020b`` - -### DendroPy - -A Python library for phylogenetics and phylogenetic computing: reading, writing, simulation, processing and manipulation of phylogenetic trees (phylogenies) and characters. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------------------------------------------------------------------------------------------- -``4.4.0``| |``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``intel/2019a`` -``4.4.0``|``-Python-2.7.15``|``intel/2018b`` -``4.5.2``| |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``4.5.2``|``-Python-2.7.18``|``GCCcore/10.2.0`` -``4.6.1``| |``GCCcore/12.3.0`` - -### denseweight - -This package implements the method for imbalanced regression DenseWeight. The corresponding paper "Density-based weighting for imbalanced regression". The goal of DenseWeight is to allow training machine learning models for regression tasks that emphasize performance for data points with rare target values in comparison to data points with more common target values. - -*homepage*: - -version |toolchain ----------|------------------------------ -``0.1.2``|``foss/2022a``, ``foss/2023a`` - -### DensPart - -Atoms-in-molecules density partitioning schemes based on stockholder recipe - -*homepage*: - -version |toolchain -------------|--------------- -``20220603``|``intel/2022a`` - -### Deprecated - -If you need to mark a function or a method as deprecated, you can use the @deprecated decorator. - -*homepage*: - -version |toolchain -----------|------------------------------ -``1.2.13``|``foss/2021a``, ``foss/2022a`` -``1.2.14``|``foss/2023a`` - -### desktop-file-utils - -desktop-file-utils contains a few command line utilities for working with desktop entries: * desktop-file-validate: validates a desktop file and prints warnings/errors about desktop entry specification violations. * desktop-file-install: installs a desktop file to the applications directory, optionally munging it a bit in transit. * update-desktop-database: updates the database containing a cache of MIME types handled by desktop files. It requires GLib to compile, because the implementation requires Unicode utilities and such. - -*homepage*: - -version |toolchain ---------|------------------ -``0.27``|``GCCcore/12.3.0`` - -### destiny - -R packages to create and plot diffusion maps. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|--------------- -``2.5.6``|``-R-3.4.0`` |``intel/2017a`` - -### Detectron2 - -Detectron2 is Facebook AI Research's next generation library that provides state-of-the-art detection and segmentation algorithms. It is the successor of Detectron and maskrcnn-benchmark. It supports a number of computer vision research projects and production applications in Facebook. - -*homepage*: - -version|versionsuffix |toolchain --------|----------------|-------------- -``0.6``| |``foss/2021a`` -``0.6``|``-CUDA-11.3.1``|``foss/2021a`` - -### DETONATE - -DETONATE (DE novo TranscriptOme rNa-seq Assembly with or without the Truth Evaluation) consists of two component packages, RSEM-EVAL and REF-EVAL. Both packages are mainly intended to be used to evaluate de novo transcriptome assemblies, although REF-EVAL can be used to compare sets of any kinds of genomic sequences. - -*homepage*: - -version |toolchain ---------|------------------------------- -``1.11``|``GCC/12.3.0``, ``intel/2017b`` - -### devbio-napari - -A bundle of napari plugins useful for 3D+t image processing and analysis for studying developmental biology. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|-------------- -``0.10.1``| |``foss/2022a`` -``0.10.1``|``-CUDA-11.7.0``|``foss/2022a`` - -### Devito - -Devito is a domain-specific Language (DSL) and code generation framework for performing optimised Finite Difference (FD) computation from high-level symbolic problem definitions. Devito performs automated code generation and Just-In-time (JIT) compilation based on symbolic equations defined in SymPy to create and execute highly optimised Finite Difference stencil kernels on multiple computer platforms. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``4.6.1``|``-Python-3.8.2``|``foss/2020a`` - -### DFA - -Python library for modeling DFAs, Moore Machines, and Transition Systems. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------ -``0.3.4``|``-Python-3.8.2``|``GCCcore/9.3.0`` -``2.1.2``| |``GCCcore/10.2.0`` - -### DFT-D3 - -DFT-D3 implements a dispersion correction for density functionals, Hartree-Fock and semi-empirical quantum chemical methods. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------------------------------------------------------- -``3.2.0``|``GCC/8.3.0``, ``iccifort/2020.4.304``, ``intel-compilers/2021.2.0``, ``intel-compilers/2021.4.0``, ``intel-compilers/2022.2.1``, ``intel/2019a`` - -### DFT-D4 - -Generally Applicable Atomic-Charge Dependent London Dispersion Correction. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``3.2.0``|``-Python-3.7.4``|``intel/2019b`` -``3.6.0``| |``intel/2022a`` - -### DFTB+ - -DFTB+ is a fast and efficient versatile quantum mechanical simulation package. It is based on the Density Functional Tight Binding (DFTB) method, containing almost all of the useful extensions which have been developed for the DFTB framework so far. Using DFTB+ you can carry out quantum mechanical simulations like with ab-initio density functional theory based packages, but in an approximate way gaining typically around two order of magnitude in speed. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------------|--------------- -``1.3.1``| |``intel/2017a`` -``17.1`` |``-Python-2.7.14`` |``intel/2017b`` -``19.1`` |``-Python-2.7.16`` |``foss/2019b`` -``19.1`` |``-Python-2.7.16-mpi``|``foss/2019b`` -``21.1`` | |``intel/2021a`` - -### dftd3-lib - -This is a repackaged version of the DFTD3 program by S. Grimme and his coworkers. The original program (V3.1 Rev 1) was downloaded at 2016-04-03. It has been converted to free format and encapsulated into modules. - -*homepage*: - -version|toolchain --------|------------------------------------------- -``0.9``|``GCC/8.3.0``, ``intel-compilers/2021.2.0`` - -### dftd4 - -Generally Applicable Atomic-Charge Dependent London Dispersion Correction. - -*homepage*: - -version |toolchain ----------|------------------------------- -``3.4.0``|``gfbf/2022b``, ``iimkl/2022b`` - -### DGL - -DGL is an easy-to-use, high performance and scalable Python package for deep learning on graphs. DGL is framework agnostic, meaning if a deep graph model is a component of an end-to-end application, the rest of the logics can be implemented in any major frameworks, such as PyTorch, Apache MXNet or TensorFlow. - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------------------|------------------ -``0.6.1``|``-Python-3.7.4-PyTorch-1.8.1``|``fosscuda/2019b`` -``0.9.1``|``-CUDA-11.3.1`` |``foss/2021a`` - -### DIA-NN - -DIA-NN is a universal software for data-independent acquisition (DIA) proteomics data processing. - -*homepage*: - -version |toolchain ----------|---------- -``1.8.1``|``system`` - -### DIAL - -DIAL (De novo Identification of Alleles) is a collection of programs to automate the discovery of alleles for a species where we lack a reference sequence. The SNPs/alleles are specifically selected for a low error rate in genotyping assays. - -*homepage*: - -version |toolchain ---------------|-------------- -``2011.06.06``|``foss/2016a`` - -### dialog - -A utility for creating TTY dialog boxes - -*homepage*: - -version |toolchain -----------------|------------------ -``1.3-20231002``|``GCCcore/10.3.0`` - -### DIALOGUE - -DIALOGUE is a dimensionality reduction method that uses cross-cell-type associations to identify multicellular programs (MCPs) and map the cell transcriptome as a function of its environment. - -*homepage*: - -version |versionsuffix|toolchain -----------------|-------------|-------------- -``1.0-20230228``|``-R-4.2.0`` |``foss/2021b`` - -### DIAMOND - -Accelerated BLAST compatible local sequence aligner - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------------- -``0.9.22``|``foss/2018a``, ``foss/2018b``, ``intel/2018a``, ``intel/2018b`` -``0.9.24``|``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -``0.9.30``|``GCC/8.3.0``, ``iccifort/2019.5.281`` -``0.9.36``|``GCC/9.3.0`` -``2.0.4`` |``GCC/9.3.0`` -``2.0.6`` |``GCC/7.3.0-2.30`` -``2.0.7`` |``GCC/10.2.0`` -``2.0.11``|``GCC/10.3.0`` -``2.0.13``|``GCC/10.3.0``, ``GCC/11.2.0`` -``2.1.0`` |``GCC/11.3.0`` -``2.1.8`` |``GCC/10.3.0``, ``GCC/12.2.0``, ``GCC/12.3.0`` -``2.1.9`` |``GCC/13.2.0`` - -### Dice - -Dice contains code for performing SHCI, VMC, GFMC, DMC, FCIQMC, stochastic MRCI and SC-NEVPT2, and AFQMC calculations with a focus on ab initio systems. - -*homepage*: - -version |toolchain -------------|-------------- -``20221025``|``foss/2022a`` -``20240101``|``foss/2022b`` - -### DiCE-ML - -Diverse Counterfactual Explanations (DiCE) for ML - -*homepage*: - -version|toolchain --------|-------------- -``0.9``|``foss/2022a`` - -### dicom2nifti - -Python library for converting dicom files to nifti - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|---------------------------------- -``2.2.12``|``-Python-3.8.2``|``foss/2020a`` -``2.3.0`` | |``foss/2020b``, ``fosscuda/2020b`` - -### DicomBrowser - -DicomBrowser is an application for inspecting and modifying DICOM metadata in many files at once. - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|---------- -``1.7.0b5``|``-Java-1.7.0_80``|``system`` - -### DiffBind - -Compute differentially bound sites from multiple ChIP-seq experiments using affinity (quantitative) data. Also enables occupancy (overlap) analysis and plotting functions. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``3.6.5``|``-R-4.2.1`` |``foss/2022a`` - -### Diffutils - -Diffutils: GNU diff utilities - find the differences between files - -*homepage*: - -version|toolchain --------|------------- -``3.3``|``GCC/4.8.2`` - -### dijitso - -dijitso is a Python module for distributed just-in-time shared library building. - -*homepage*: - -version |versionsuffix |toolchain -------------|-----------------|-------------- -``2019.1.0``|``-Python-3.7.4``|``foss/2019b`` - -### dill - -dill extends python's pickle module for serializing and de-serializing python objects to the majority of the built-in python types. Serialization is the process of converting an object to a byte stream, and the inverse of which is converting a byte stream back to on python object hierarchy. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``0.3.0``|``GCCcore/8.2.0`` -``0.3.3``|``GCCcore/10.2.0``, ``GCCcore/8.3.0`` -``0.3.4``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``0.3.6``|``GCCcore/11.3.0`` -``0.3.7``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### DIRAC - -DIRAC: Program for Atomic and Molecular Direct Iterative Relativistic All-electron Calculations - -*homepage*: - -version |versionsuffix |toolchain ---------|----------------------------|------------------------------------------------------------------------------------------------- -``19.0``|``-Python-2.7.18-int64`` |``intel/2020a`` -``19.0``|``-Python-2.7.18-mpi-int64``|``intel/2020a`` -``22.0``| |``foss/2021a``, ``intel/2021a`` -``22.0``|``-int64`` |``intel/2021a`` -``23.0``| |``foss/2022a``, ``foss/2022b``, ``foss/2023a``, ``intel/2022a``, ``intel/2022b``, ``intel/2023a`` -``23.0``|``-int64`` |``intel/2022b``, ``intel/2023a`` - -### distributed - -Dask.distributed is a lightweight library for distributed computing in Python. It extends both the concurrent.futures and dask APIs to moderate sized clusters. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``1.14.3``|``-Python-2.7.12``|``intel/2016b`` -``1.14.3``|``-Python-3.5.2`` |``intel/2016b`` -``1.21.6``|``-Python-3.6.4`` |``intel/2018a`` - -### DistributedStream - -A MPI distributed stream benchmark, useful to identifying nodes with poor memory performance and characterising memory bandwidth variation over systems. - -*homepage*: - -version|toolchain --------|--------------- -``1.0``|``gompi/2021a`` - -### DjVuLibre - -DjVuLibre is an open source (GPL'ed) implementation of DjVu, including viewers, browser plugins, decoders, simple encoders, and utilities. - -*homepage*: - -version |toolchain -----------|------------------ -``3.5.28``|``GCCcore/12.3.0`` - -### DL_POLY_4 - -DL_POLY is a general purpose classical molecular dynamics (MD) simulation software - -*homepage*: - -version |toolchain ----------|------------------------------- -``5.0.0``|``foss/2020b``, ``intel/2020b`` -``5.1.0``|``foss/2022b``, ``intel/2022b`` - -### DL_POLY_Classic - -DL_POLY Classic is a freely available molecular dynamics program developed from the DL_POLY_2 package. This version does not install the java gui. - -*homepage*: - -version |versionsuffix |toolchain ---------|-----------------|------------------------------- -``1.9`` | |``intel/2016b`` -``1.9`` |``-PLUMED-2.2.3``|``intel/2016b`` -``1.10``| |``foss/2019b``, ``intel/2019b`` - -### dlb - -DLB is a dynamic library designed to speed up HPC hybrid applications (i.e., two levels of parallelism) by improving the load balance of the outer level of parallelism (e.g., MPI) by dynamically redistributing the computational resources at the inner level of parallelism (e.g., OpenMP). at run time. - -*homepage*: - -version |toolchain ----------|-------------------------------- -``3.2`` |``gompi/2022a``, ``iimpi/2022a`` -``3.3.1``|``gompi/2022a``, ``iimpi/2022a`` -``3.4`` |``gompi/2023b``, ``iimpi/2023b`` - -### dlib - -Dlib is a modern C++ toolkit containing machine learning algorithms and tools for creating complex software in C++ to solve real world problems. It is used in both industry and academia in a wide range of domains including robotics, embedded devices, mobile phones, and large high performance computing environments. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``19.22``| |``foss/2021a`` -``19.22``|``-CUDA-11.3.1``|``foss/2021a`` - -### DLPack - -DLPack is a stable in-memory data structure for an ndarray system to interact with a variety of frameworks. - -*homepage*: - -version|toolchain --------|-------------- -``0.3``|``GCC/10.3.0`` -``0.8``|``GCC/11.3.0`` - -### dm-haiku - -Haiku is a simple neural network library for JAX developed by some of the authors of Sonnet, a neural network library for TensorFlow. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``0.0.9``| |``foss/2022a`` -``0.0.9``|``-CUDA-11.3.1``|``foss/2021a`` -``0.0.9``|``-CUDA-11.7.0``|``foss/2022a`` - -### dm-reverb - -Reverb is an efficient and easy-to-use data storage and transport system designed for machine learning research. Reverb is primarily used as an experience replay system for distributed reinforcement learning algorithms but the system also supports multiple data structure representations such as FIFO, LIFO, and priority queues. - -*homepage*: - -version |toolchain ----------|-------------- -``0.2.0``|``foss/2020b`` -``0.7.0``|``foss/2021b`` - -### dm-tree - -dm-tree provides tree, a library for working with nested data structures. In a way, tree generalizes the builtin map function which only supports flat sequences, and allows to apply a function to each "leaf" preserving the overall structure. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``0.1.1``|``GCCcore/8.3.0`` -``0.1.5``|``GCCcore/10.2.0`` -``0.1.6``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``0.1.8``|``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### DMCfun - -Diffusion Model of Conflict (DMC) in Reaction Time Tasks - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``1.3.0``|``-R-3.6.2`` |``foss/2019b`` - -### DMLC-Core - -DMLC-Core is the backbone library to support all DMLC projects, offers the bricks to build efficient and scalable distributed machine learning libraries. - -*homepage*: - -version|toolchain --------|------------------------------ -``0.5``|``GCC/10.3.0``, ``GCC/11.3.0`` - -### DMTCP - -DMTCP is a tool to transparently checkpoint the state of multiple simultaneous applications, including multi-threaded and distributed applications. It operates directly on the user binary executable, without any Linux kernel modules or other kernel modifications. - -*homepage*: - -version |toolchain ----------|------------------------------------------------- -``2.4.5``|``system`` -``2.5.0``|``foss/2016a`` -``2.5.1``|``system`` -``2.5.2``|``GCCcore/8.3.0``, ``foss/2016b``, ``foss/2018b`` -``2.6.0``|``GCCcore/8.2.0``, ``GCCcore/9.3.0`` -``3.0.0``|``GCCcore/11.3.0`` - -### DOLFIN - -DOLFIN is the C++/Python interface of FEniCS, providing a consistent PSE (Problem Solving Environment) for ordinary and partial differential equations. - -*homepage*: - -version |versionsuffix |toolchain -------------------|-----------------|-------------- -``2018.1.0.post1``|``-Python-3.6.4``|``foss/2018a`` -``2019.1.0.post0``|``-Python-3.7.4``|``foss/2019b`` - -### dominate - -Dominate is a Python library for creating and manipulating HTML documents using an elegant DOM API. It allows you to write HTML pages in pure Python very concisely, which eliminates the need to learn another template language, and lets you take advantage of the more powerful features of Python. - -*homepage*: - -version |toolchain ----------|------------------ -``2.8.0``|``GCCcore/11.3.0`` - -### dorado - -Dorado is a high-performance, easy-to-use, open source basecaller for Oxford Nanopore reads. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``0.1.1``|``-CUDA-11.7.0``|``foss/2022a`` -``0.3.0``|``-CUDA-11.7.0``|``foss/2022a`` -``0.3.1``|``-CUDA-11.7.0``|``foss/2022a`` -``0.5.1``|``-CUDA-11.7.0``|``foss/2022a`` -``0.5.3``|``-CUDA-11.7.0``|``foss/2022a`` - -### Doris - -Delft object-oriented radar interferometric software - -*homepage*: - -version |toolchain --------------|------------------------------- -``4.02`` |``intel/2017a`` -``4.04beta4``|``foss/2018a``, ``intel/2017a`` -``4.06beta2``|``intel/2017a`` - -### DosageConvertor - -DosageConvertor is a C++ tool to convert dosage files (in VCF format) from Minimac3/4 to other formats such as MaCH or PLINK. Please note that this tool CANNOT handle missing values in the input files and may NOT work for non-Minimac3/4 VCF files. - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.4``|``GCC/10.2.0`` - -### dotNET-Core - -.NET is a free, cross-platform, open source developer platform for building many different types of applications. With .NET, you can use multiple languages, editors, and libraries to build for web, mobile, desktop, gaming, and IoT. Contains the SDK and the Runtime. - -*homepage*: - -version |toolchain ------------|---------- -``6.0`` |``system`` -``6.0.420``|``system`` -``8.0`` |``system`` -``8.0.203``|``system`` - -### dotNET-Core-Runtime - -.NET is a free, cross-platform, open source developer platform for building many different types of applications. - -*homepage*: - -version |toolchain -----------|------------------ -``2.0.7`` |``GCCcore/6.4.0`` -``5.0.17``|``GCCcore/10.3.0`` -``6.0.1`` |``GCCcore/11.2.0`` - -### dotNET-SDK - -.NET is a free, cross-platform, open source developer platform for building many different types of applications. - -*homepage*: - -version |versionsuffix |toolchain ------------|--------------|---------- -``3.1.300``|``-linux-x64``|``system`` -``6.0.101``|``-linux-x64``|``system`` - -### double-conversion - -Efficient binary-decimal and decimal-binary conversion routines for IEEE doubles. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------- -``3.0.3``|``foss/2018a`` -``3.1.4``|``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``3.1.5``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/9.3.0`` -``3.2.0``|``GCCcore/11.3.0`` -``3.2.1``|``GCCcore/12.2.0`` -``3.3.0``|``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### DoubletFinder - -R package for detecting doublets in single-cell RNA sequencing data - -*homepage*: - -version |versionsuffix|toolchain -------------------|-------------|-------------- -``2.0.3`` |``-R-4.0.0`` |``foss/2020a`` -``2.0.3-20230131``|``-R-4.2.1`` |``foss/2022a`` -``2.0.3-20230819``|``-R-4.2.2`` |``foss/2022b`` - -### Doxygen - -Doxygen is a documentation system for C++, C, Java, Objective-C, Python, IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D. - -*homepage*: - -version |toolchain ------------|------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.8.9.1``|``GCC/4.9.2`` -``1.8.10`` |``GNU/4.9.3-2.25``, ``intel/2016.02-GCC-4.9`` -``1.8.11`` |``GCC/4.9.2``, ``GCCcore/5.4.0``, ``foss/2016a``, ``foss/2016b``, ``intel/2016a``, ``intel/2016b``, ``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25`` -``1.8.13`` |``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``gimkl/2017a`` -``1.8.14`` |``GCCcore/6.4.0``, ``GCCcore/7.2.0``, ``GCCcore/7.3.0`` -``1.8.15`` |``GCCcore/8.2.0`` -``1.8.16`` |``GCCcore/8.3.0`` -``1.8.17`` |``GCCcore/9.3.0`` -``1.8.20`` |``GCCcore/10.2.0`` -``1.9.1`` |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``1.9.4`` |``GCCcore/11.3.0`` -``1.9.5`` |``GCCcore/12.2.0`` -``1.9.7`` |``GCCcore/12.3.0`` -``1.9.8`` |``GCCcore/13.2.0`` -``1.11.0`` |``GCCcore/13.3.0`` - -### DP3 - -DP3: streaming processing pipeline for radio interferometric data. - -*homepage*: - -version|toolchain --------|------------------------------ -``6.0``|``foss/2022a``, ``foss/2023b`` - -### DRAGMAP - -Dragmap is the Dragen mapper/aligner Open Source Software. - -*homepage*: - -version |toolchain ----------|-------------- -``1.3.0``|``foss/2021b`` - -### Drake - -Drake is a simple-to-use, extensible, text-based data workflow tool that organizes command execution around data and its dependencies. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|---------- -``1.0.3``|``-Java-1.8``|``system`` - -### dRep - -dRep is a python program which performs rapid pair-wise comparison of genome sets. One of it’s major purposes is for genome de-replication, but it can do a lot more. - -*homepage*: - -version |toolchain ----------|-------------- -``3.0.0``|``foss/2021a`` -``3.4.2``|``foss/2022a`` - -### drmaa-python - -Distributed Resource Management Application API (DRMAA) bindings for Python. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|------------------ -``0.7.9``|``-slurm`` |``GCCcore/12.2.0`` - -### DROP - -Pipeline to find aberrant events in RNA-Seq data, useful for diagnosis of rare disorders - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``1.0.3``|``-R-4.0.3`` |``foss/2020b`` -``1.1.0``|``-R-4.0.3`` |``foss/2020b`` -``1.1.1``|``-R-4.1.2`` |``foss/2021b`` - -### dropEst - -Pipeline for initial analysis of droplet-based single-cell RNA-seq data - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|--------------- -``0.7.1``|``-R-3.4.3`` |``intel/2017b`` - -### DSA - -Digital Sorting Algorithm - -*homepage*: - -version|versionsuffix|toolchain --------|-------------|-------------- -``1.0``|``-R-3.5.1`` |``foss/2018b`` - -### dSFMT - -Double precision SIMD-oriented Fast Mersenne Twister. - -*homepage*: - -version |toolchain ----------|------------------ -``2.2.5``|``GCCcore/10.2.0`` - -### DSRC - -DNA Sequence Reads Compression is an application designed for compression of data files containing reads from DNA sequencing in FASTQ format. The amount of such files can be huge, e.g., a few (or tens) of gigabytes, so a need for a robust data compression tool is clear. Usually universal compression programs like gzip or bzip2 are used for this purpose, but it is obvious that a specialized tool can work better. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|---------- -``2.0rc``|``-linux-64-bit``|``system`` - -### Dsuite - -Fast calculation of the ABBA-BABA statistics across many populations/species - -*homepage*: - -version |toolchain -------------|-------------------------------------------- -``20190713``|``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -``20210718``|``GCC/10.3.0``, ``intel-compilers/2021.2.0`` - -### dtcmp - -The Datatype Comparison (DTCMP) Library provides pre-defined and user-defined comparison operations to compare the values of two items which can be arbitrary MPI datatypes. Using these comparison operations, the library provides various routines for manipulating data, which may be distributed over the processes of an MPI communicator. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------ -``1.1.0``|``gompi/2019a``, ``gompi/2020a``, ``iimpi/2019a``, ``iimpi/2020a`` -``1.1.2``|``gompi/2020b`` -``1.1.4``|``gompi/2022a``, ``gompi/2023a`` - -### dtcwt - -Dual-Tree Complex Wavelet Transform library for Python - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``0.12.0``|``-Python-2.7.15``|``foss/2018b`` -``0.12.0``|``-Python-3.7.4`` |``intel/2019b`` - -### DualSPHysics - -DualSPHysics is based on the Smoothed Particle Hydrodynamics model named SPHysics. The code is developed to study free-surface flow phenomena where Eulerian methods can be difficult to apply, such as waves or impact of dam-breaks on off-shore structures. DualSPHysics is a set of C++, CUDA and Java codes designed to deal with real-life engineering problems. - -*homepage*: - -version |versionsuffix |toolchain ------------|---------------------|-------------- -``5.0.175``| |``GCC/11.2.0`` -``5.0.175``|``-CUDA-%(cudaver)s``|``GCC/11.2.0`` - -### DUBStepR - -DUBStepR (Determining the Underlying Basis using Step-wise Regression) is a feature selection algorithm for cell type identification in single-cell RNA-sequencing data. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``1.2.0``|``-R-4.1.2`` |``foss/2021b`` - -### dune-core - -The Dune core modules build the stable basis of Dune. They follow a consistent release cycle and have high requirements regarding stability and backwards compatibility. These modules build the foundation for higher-level components. - -*homepage*: - -version |toolchain ----------------|-------------- -``2.8.0.post1``|``foss/2020b`` - -### dune-fem - -DUNE-FEM is a discretization module based on DUNE containing all the building blocks required to implement efficient solvers for a wide range of (systems of non linear) partial differential equations. DUNE-FEM can also be used through an extensive Python interface which brings all components of DUNE-FEM and the DUNE core modules to Python. - -*homepage*: - -version |toolchain ------------|-------------- -``2.8.0.6``|``foss/2020b`` - -### duplex-tools - -Duplex Tools contains a set of utilities for dealing with Duplex sequencing data. Tools are provided to identify and prepare duplex pairs for basecalling by Dorado (recommended) and Guppy, and for recovering simplex basecalls from incorrectly concatenated pairs. - -*homepage*: - -version |toolchain ----------|-------------- -``0.3.1``|``foss/2022a`` -``0.3.3``|``foss/2022a`` - -### dx-toolkit - -The DNAnexus Platform SDK - also called dx-toolkit - includes the dx command-line client; tools for building and debugging apps; utilities for working with DNA data on the DNAnexus Platform; and Python, Java, C++ and R bindings for working on the DNAnexus Platform. - -*homepage*: - -version |toolchain ------------|------------------ -``0.350.1``|``GCCcore/12.2.0`` - -### dxpy - -DNAnexus Platform API bindings for Python - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|------------------ -``0.266.1``|``-Python-2.7.14``|``intel/2018a`` -``0.345.0``| |``GCCcore/12.2.0`` - -### DyMat - -Read and process result files from Dymola and OpenModelica with Python. - -*homepage*: - -version|versionsuffix |toolchain --------|---------------|-------------- -``0.7``|``-2020-12-12``|``foss/2021b`` - -### dynesty - -dynesty is a Pure Python, MIT-licensed Dynamic Nested Sampling package for estimating Bayesian posteriors and evidences. - -*homepage*: - -version |toolchain ----------|-------------- -``2.1.3``|``foss/2023a`` - -## E - - -[E-ANTIC](#e-antic) - [e3nn](#e3nn) - [ea-utils](#ea-utils) - [earthengine-api](#earthengine-api) - [easel](#easel) - [EasyBuild](#easybuild) - [EasyMocap](#easymocap) - [EasyQC](#easyqc) - [ebGSEA](#ebgsea) - [ecBuild](#ecbuild) - [ecCodes](#eccodes) - [eccodes-python](#eccodes-python) - [ecFlow](#ecflow) - [ECL](#ecl) - [eclib](#eclib) - [ED2](#ed2) - [EDirect](#edirect) - [edlib](#edlib) - [EggLib](#egglib) - [eggnog-mapper](#eggnog-mapper) - [EGTtools](#egttools) - [eht-imaging](#eht-imaging) - [Eigen](#eigen) - [EigenExa](#eigenexa) - [EIGENSOFT](#eigensoft) - [einops](#einops) - [elastix](#elastix) - [elbencho](#elbencho) - [ELFIO](#elfio) - [elfutils](#elfutils) - [Elk](#elk) - [Elmer](#elmer) - [ELPA](#elpa) - [ELPH](#elph) - [elprep](#elprep) - [ELSI](#elsi) - [ELSI-RCI](#elsi-rci) - [Emacs](#emacs) - [EMAN2](#eman2) - [EMBOSS](#emboss) - [Embree](#embree) - [emcee](#emcee) - [EMU](#emu) - [enaBrowserTool](#enabrowsertool) - [enchant](#enchant) - [enchant-2](#enchant-2) - [EnergyPlus](#energyplus) - [EnsEMBLCoreAPI](#ensemblcoreapi) - [ensmallen](#ensmallen) - [entrypoints](#entrypoints) - [epct](#epct) - [EPD](#epd) - [EPIC](#epic) - [epiScanpy](#episcanpy) - [EpiSCORE](#episcore) - [eQuilibrator](#equilibrator) - [EricScript](#ericscript) - [ESL-Bundle](#esl-bundle) - [ESM-2](#esm-2) - [ESMF](#esmf) - [ESMPy](#esmpy) - [ESMValTool](#esmvaltool) - [eSpeak-NG](#espeak-ng) - [ESPResSo](#espresso) - [Essentia](#essentia) - [ETE](#ete) - [ETSF_IO](#etsf_io) - [eudev](#eudev) - [EUKulele](#eukulele) - [EVcouplings](#evcouplings) - [Evcxr-REPL](#evcxr-repl) - [EveryBeam](#everybeam) - [EvidentialGene](#evidentialgene) - [evince](#evince) - [evmix](#evmix) - [ExaBayes](#exabayes) - [ExaML](#examl) - [Excel-Writer-XLSX](#excel-writer-xlsx) - [ExifTool](#exiftool) - [exiv2](#exiv2) - [Exonerate](#exonerate) - [expat](#expat) - [expect](#expect) - [expecttest](#expecttest) - [eXpress](#express) - [ExpressBetaDiversity](#expressbetadiversity) - [Extrae](#extrae) - [ExtremeLy](#extremely) - [EZC3D](#ezc3d) - - -### E-ANTIC - -E-ANTIC is a C/C++ library to deal with real embedded number fields built on top of ANTIC (https://github.com/wbhart/antic). Its aim is to have as fast as possible exact arithmetic operations and comparisons. - -*homepage*: - -version |toolchain ----------|-------------------- -``0.1.2``|``GCC/8.2.0-2.31.1`` -``0.1.5``|``GCC/8.3.0`` -``1.3.0``|``gfbf/2022a`` -``2.0.2``|``gfbf/2023b`` - -### e3nn - -Euclidean neural networks (e3nn) is a python library based on pytorch to create equivariant neural networks for the group O(3). - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------------------|-------------- -``0.3.3``| |``foss/2022a`` -``0.3.3``|``-CUDA-11.7.0`` |``foss/2022a`` -``0.3.3``|``-CUDA-12.1.1`` |``foss/2023a`` -``0.3.3``|``-PyTorch-1.13.1-CUDA-11.7.0``|``foss/2022a`` - -### ea-utils - -Command-line tools for processing biological sequencing data. Barcode demultiplexing, adapter trimming, etc. Primarily written to support an Illumina based pipeline - but should work with any FASTQs. - -*homepage*: - -version |toolchain -------------|----------------------------------------------- -``1.04.807``|``foss/2016a``, ``foss/2016b``, ``intel/2016b`` - -### earthengine-api - -Python and JavaScript bindings for calling the Earth Engine API - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|--------------- -``0.1.143``|``-Python-2.7.14``|``intel/2018a`` - -### easel - -Easel supports computational analysis of biological sequences using probabilistic models. - -*homepage*: - -version |toolchain ---------|-------------- -``0.48``|``GCC/12.2.0`` - -### EasyBuild - -EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way. - -*homepage*: - -version |toolchain -----------|---------- -``1.0.0`` |``system`` -``1.0.1`` |``system`` -``1.0.2`` |``system`` -``1.1.0`` |``system`` -``1.2.0`` |``system`` -``1.3.0`` |``system`` -``1.4.0`` |``system`` -``1.5.0`` |``system`` -``1.6.0`` |``system`` -``1.7.0`` |``system`` -``1.8.0`` |``system`` -``1.8.1`` |``system`` -``1.8.2`` |``system`` -``1.9.0`` |``system`` -``1.10.0``|``system`` -``1.11.0``|``system`` -``1.11.1``|``system`` -``1.12.0``|``system`` -``1.12.1``|``system`` -``1.13.0``|``system`` -``1.14.0``|``system`` -``1.15.0``|``system`` -``1.15.1``|``system`` -``1.15.2``|``system`` -``1.16.0``|``system`` -``1.16.1``|``system`` -``1.16.2``|``system`` -``2.0.0`` |``system`` -``2.1.0`` |``system`` -``2.1.1`` |``system`` -``2.2.0`` |``system`` -``2.3.0`` |``system`` -``2.4.0`` |``system`` -``2.5.0`` |``system`` -``2.6.0`` |``system`` -``2.7.0`` |``system`` -``2.8.0`` |``system`` -``2.8.1`` |``system`` -``2.8.2`` |``system`` -``2.9.0`` |``system`` -``3.0.0`` |``system`` -``3.0.1`` |``system`` -``3.0.2`` |``system`` -``3.1.0`` |``system`` -``3.1.1`` |``system`` -``3.1.2`` |``system`` -``3.2.0`` |``system`` -``3.2.1`` |``system`` -``3.3.0`` |``system`` -``3.3.1`` |``system`` -``3.4.0`` |``system`` -``3.4.1`` |``system`` -``3.5.0`` |``system`` -``3.5.1`` |``system`` -``3.5.2`` |``system`` -``3.5.3`` |``system`` -``3.6.0`` |``system`` -``3.6.1`` |``system`` -``3.6.2`` |``system`` -``3.7.0`` |``system`` -``3.7.1`` |``system`` -``3.8.0`` |``system`` -``3.8.1`` |``system`` -``3.9.0`` |``system`` -``3.9.1`` |``system`` -``3.9.2`` |``system`` -``3.9.3`` |``system`` -``3.9.4`` |``system`` -``4.0.0`` |``system`` -``4.0.1`` |``system`` -``4.1.0`` |``system`` -``4.1.1`` |``system`` -``4.1.2`` |``system`` -``4.2.0`` |``system`` -``4.2.1`` |``system`` -``4.2.2`` |``system`` -``4.3.0`` |``system`` -``4.3.1`` |``system`` -``4.3.2`` |``system`` -``4.3.3`` |``system`` -``4.3.4`` |``system`` -``4.4.0`` |``system`` -``4.4.1`` |``system`` -``4.4.2`` |``system`` -``4.5.0`` |``system`` -``4.5.1`` |``system`` -``4.5.2`` |``system`` -``4.5.3`` |``system`` -``4.5.4`` |``system`` -``4.5.5`` |``system`` -``4.6.0`` |``system`` -``4.6.1`` |``system`` -``4.6.2`` |``system`` -``4.7.0`` |``system`` -``4.7.1`` |``system`` -``4.7.2`` |``system`` -``4.8.0`` |``system`` -``4.8.1`` |``system`` -``4.8.2`` |``system`` -``4.9.0`` |``system`` -``4.9.1`` |``system`` - -### EasyMocap - -EasyMoCap is an open-source toolbox designed for markerless human motion capture from RGB videos. This project offers a wide range of motion capture methods across various settings. - -*homepage*: - -version|versionsuffix |toolchain --------|----------------|-------------- -``0.2``| |``foss/2022a`` -``0.2``|``-CUDA-11.7.0``|``foss/2022a`` - -### EasyQC - -EasyQC is an R-package that provides advanced functionality to (1) perform file-level QC of single genome-wide association (GWA) data-sets (2) conduct quality control across several GWA data-sets (meta-level QC) (3) simplify data-handling of large-scale GWA data-sets. - -*homepage*: - -version|versionsuffix|toolchain --------|-------------|--------------- -``9.2``|``-R-3.3.1`` |``intel/2016b`` - -### ebGSEA - -Gene Set Enrichment Analysis is one of the most common tasks in the analysis of omic data, and is critical for biological interpretation. In the context of Epigenome Wide Association Studies (EWAS), which typically rank individual cytosines according to the level of differential methylation, enrichment analysis of biological pathways is challenging due to differences in CpG/probe density between genes. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``0.1.0``|``-R-4.2.1`` |``foss/2022a`` - -### ecBuild - -A CMake-based build system, consisting of a collection of CMake macros and functions that ease the managing of software build systems - -*homepage*: - -version |toolchain ----------|---------- -``3.7.0``|``system`` -``3.8.0``|``system`` - -### ecCodes - -ecCodes is a package developed by ECMWF which provides an application programming interface and a set of tools for decoding and encoding messages in the following formats: WMO FM-92 GRIB edition 1 and edition 2, WMO FM-94 BUFR edition 3 and edition 4, WMO GTS abbreviated header (only decoding). - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------------------------- -``2.7.3`` | |``intel/2018a`` -``2.7.3`` |``-Python-2.7.14``|``intel/2017b`` -``2.8.2`` | |``intel/2018a`` -``2.9.2`` | |``intel/2018b``, ``iomkl/2018b`` -``2.12.5``| |``gompi/2019a`` -``2.15.0``| |``gompi/2019b``, ``iimpi/2019b`` -``2.17.0``| |``foss/2018b``, ``gompi/2019b`` -``2.18.0``| |``gompi/2020a`` -``2.20.0``| |``gompi/2020b`` -``2.22.1``| |``gompi/2021a`` -``2.24.2``| |``gompi/2021b``, ``iimpi/2021b`` -``2.27.0``| |``gompi/2022a`` -``2.31.0``| |``gompi/2022b``, ``gompi/2023a``, ``gompi/2023b`` - -### eccodes-python - -Python 3 interface to decode and encode GRIB and BUFR files via the ECMWF ecCodes library. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``1.0.0``|``-Python-3.7.4``|``foss/2019b`` -``1.0.0``|``-Python-3.8.2``|``foss/2020a`` -``1.1.0``| |``foss/2020b`` - -### ecFlow - -ecFlow is a client/server workflow package that enables users to run a large number of programs (with dependencies on each other and on time) in a controlled environment. It provides reasonable tolerance for hardware and software failures, combined with restart capabilities. It is used at ECMWF to run all our operational suites across a range of platforms. - -*homepage*: - -version |toolchain ----------|-------------- -``5.7.0``|``GCC/10.2.0`` - -### ECL - -ECL (Embeddable Common-Lisp) is an interpreter of the Common-Lisp language as described in the X3J13 Ansi specification, featuring CLOS (Common-Lisp Object System), conditions, loops, etc, plus a translator to C, which can produce standalone executables. - -*homepage*: - -version |toolchain ------------|------------------ -``23.9.9`` |``GCCcore/11.3.0`` -``24.5.10``|``GCCcore/13.2.0`` - -### eclib - -The eclib package includes mwrank (for 2-descent on elliptic curves over Q) and modular symbol code used to create the elliptic curve database. - -*homepage*: - -version |toolchain -------------|-------------- -``20230424``|``GCC/11.3.0`` -``20240408``|``GCC/13.2.0`` - -### ED2 - -The Ecosystem Demography Biosphere Model (ED2) is an integrated terrestrial biosphere model incorporating hydrology, land-surface biophysics, vegetation dynamics, and soil carbon and nitrogen biogeochemistry - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|--------------- -``20170201``| |``intel/2017a`` -``20170201``|``-serial`` |``intel/2017a`` - -### EDirect - -Entrez Direct (EDirect) provides access to the NCBI's suite of interconnected databases from a Unix terminal window. Search terms are entered as command-line arguments. Individual operations are connected with Unix pipes to construct multi-step queries. Selected records can then be retrieved in a variety of formats. - -*homepage*: - -version |toolchain ------------------|-------------------------------------- -``19.7.20230531``|``GCCcore/10.3.0`` -``20.5.20231006``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### edlib - -Lightweight, super fast library for sequence alignment using edit (Levenshtein) distance. - -*homepage*: - -version |versionsuffix |toolchain ----------------|-----------------|---------------------------------------------------------------------------------------------- -``1.3.8.post1``|``-Python-3.7.4``|``GCC/8.3.0``, ``iccifort/2019.5.281`` -``1.3.8.post1``|``-Python-3.8.2``|``GCC/9.3.0`` -``1.3.8.post2``|``-Python-3.8.2``|``iccifort/2020.1.217`` -``1.3.9`` | |``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0``, ``GCC/12.3.0`` - -### EggLib - -EggLib is a C++/Python library and program package for evolutionary genetics and genomics. - -*homepage*: - -version |toolchain -----------|--------------- -``2.1.10``|``intel/2016a`` -``3.3.0`` |``GCC/13.2.0`` - -### eggnog-mapper - -EggNOG-mapper is a tool for fast functional annotation of novel sequences. It uses precomputed orthologous groups and phylogenies from the eggNOG database (http://eggnog5.embl.de) to transfer functional information from fine-grained orthologs only. Common uses of eggNOG-mapper include the annotation of novel genomes, transcriptomes or even metagenomic gene catalogs. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``1.0.3`` |``-Python-2.7.14``|``intel/2018a`` -``2.1.4`` | |``foss/2020b`` -``2.1.7`` | |``foss/2021b`` -``2.1.9`` | |``foss/2022a`` -``2.1.10``| |``foss/2020b`` - -### EGTtools - -EGTtools provides a centralized repository with analytical and numerical methods to study/model game theoretical problems under the Evolutionary Game Theory (EGT) framework. - -*homepage*: - -version |toolchain ----------------|-------------- -``0.1.10.dev2``|``foss/2021b`` -``0.1.11`` |``foss/2022a`` - -### eht-imaging - -Python modules for simulating and manipulating VLBI data and producing images with regularized maximum likelihood methods. - -*homepage*: - -version |toolchain ----------|-------------- -``1.2.2``|``foss/2021a`` - -### Eigen - -Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------------------------------------------------------------------ -``3.2.3`` |``foss/2016a``, ``foss/2016b`` -``3.2.5`` |``system`` -``3.2.6`` |``system`` -``3.2.7`` |``foss/2016a``, ``intel/2016a`` -``3.2.8`` |``foss/2016a``, ``intel/2016a``, ``system`` -``3.2.9`` |``foss/2016b``, ``intel/2016b`` -``3.2.10``|``intel/2016b`` -``3.3.2`` |``foss/2016b``, ``intel/2016b`` -``3.3.3`` |``GCCcore/6.3.0``, ``intel/2016b`` -``3.3.4`` |``system`` -``3.3.5`` |``system`` -``3.3.7`` |``GCCcore/9.3.0``, ``system`` -``3.3.8`` |``GCCcore/10.2.0`` -``3.3.9`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``3.4.0`` |``GCCcore/10.2.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0`` - -### EigenExa - -EigenExa, a part of KMATHLIB, is a high performance eigen-solver. - -*homepage*: - -version |toolchain ---------|--------------- -``2.11``|``intel/2020b`` - -### EIGENSOFT - -The EIGENSOFT package combines functionality from our population genetics methods (Patterson et al. 2006) and our EIGENSTRAT stratification correction method (Price et al. 2006). The EIGENSTRAT method uses principal components analysis to explicitly model ancestry differences between cases and controls along continuous axes of variation; the resulting correction is specific to a candidate marker’s variation in frequency across ancestral populations, minimizing spurious associations while maximizing power to detect true associations. The EIGENSOFT package has a built-in plotting script and supports multiple file formats and quantitative phenotypes. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------------------------- -``6.0.1``|``foss/2016a`` -``6.1.1``|``foss/2016a`` -``6.1.4``|``foss/2016b`` -``7.2.1``|``foss/2018b``, ``foss/2019a``, ``foss/2019b``, ``foss/2020b``, ``foss/2021a``, ``intel/2019a`` - -### einops - -Flexible and powerful tensor operations for readable and reliable code. Supports numpy, pytorch, tensorflow, jax, and others. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``0.3.2``|``GCCcore/10.2.0`` -``0.4.1``|``GCCcore/10.3.0``, ``GCCcore/11.3.0`` -``0.7.0``|``GCCcore/12.3.0`` - -### elastix - -elastix: a toolbox for rigid and nonrigid registration of images. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``4.9.0``| |``foss/2018a`` -``5.0.0``|``-Python-3.7.4``|``foss/2019b`` - -### elbencho - -A distributed storage benchmark for files, objects & blocks with support for GPUs - -*homepage*: - -version |toolchain ----------|-------------- -``2.0-3``|``GCC/10.3.0`` - -### ELFIO - -ELFIO is a header-only C++ library intended for reading and generating files in the ELF binary format. - -*homepage*: - -version|toolchain --------|---------- -``3.9``|``system`` - -### elfutils - -The elfutils project provides libraries and tools for ELF files and DWARF data. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------------------------- -``0.182``|``GCCcore/9.3.0`` -``0.183``|``GCCcore/10.2.0`` -``0.185``|``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``0.187``|``GCCcore/11.3.0`` -``0.189``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``0.190``|``GCCcore/13.2.0`` - -### Elk - -An all-electron full-potential linearised augmented-plane wave (FP-LAPW) code with many advanced features. Written originally at Karl-Franzens-Universität Graz as a milestone of the EXCITING EU Research and Training Network, the code is designed to be as simple as possible so that new developments in the field of density functional theory (DFT) can be added quickly and reliably. - -*homepage*: - -version |toolchain -----------|--------------- -``4.0.15``|``intel/2016b`` -``4.3.6`` |``intel/2017a`` -``6.3.2`` |``intel/2019b`` -``7.0.12``|``foss/2020b`` -``7.2.42``|``foss/2021a`` -``8.5.2`` |``foss/2022a`` - -### Elmer - -Elmer is an open source multiphysical simulation software mainly developed by CSC - IT Center for Science (CSC). Elmer includes physical models of fluid dynamics, structural mechanics, electromagnetics, heat transfer and acoustics, for example. These are described by partial differential equations which Elmer solves by the Finite Element Method (FEM). - -*homepage*: - -version|toolchain --------|-------------- -``9.0``|``foss/2022b`` - -### ELPA - -Eigenvalue SoLvers for Petaflop-Applications. - -*homepage*: - -version |versionsuffix |toolchain --------------------|----------------|--------------------------------------------------------------------------------- -``2015.02.002`` | |``foss/2018a``, ``gimkl/2017a``, ``intel/2018a`` -``2016.05.004`` | |``intel/2016b``, ``intel/2017a`` -``2016.11.001.pre``| |``foss/2018b``, ``intel/2018b`` -``2017.11.001`` | |``foss/2018b``, ``intel/2018a``, ``intel/2018b`` -``2018.05.001`` | |``foss/2018b``, ``intel/2018b`` -``2018.11.001`` | |``intel/2019a`` -``2019.11.001`` | |``foss/2019b``, ``foss/2020a``, ``intel/2019b``, ``intel/2020a``, ``iomkl/2019b`` -``2020.05.001`` | |``intel/2020a`` -``2020.11.001`` | |``foss/2020b``, ``intel/2020b`` -``2021.05.001`` | |``foss/2021a``, ``foss/2021b``, ``intel/2021a``, ``intel/2021b`` -``2021.05.002`` | |``intel/2020b`` -``2021.11.001`` | |``foss/2021b``, ``foss/2022a``, ``intel/2021b``, ``intel/2022a``, ``intel/2022b`` -``2022.05.001`` | |``foss/2022a``, ``foss/2022b``, ``intel/2022a``, ``intel/2022b`` -``2022.05.001`` |``-CUDA-11.7.0``|``foss/2022a`` -``2022.05.001`` |``-CUDA-12.0.0``|``foss/2022b`` -``2023.05.001`` | |``foss/2023a``, ``intel/2023a`` -``2023.11.001`` | |``foss/2023b``, ``intel/2023b`` - -### ELPH - -ELPH is a general-purpose Gibbs sampler for finding motifs in a set of DNA or protein sequences. The program takes as input a set containing anywhere from a few dozen to thousands of sequences, and searches through them for the most common motif, assuming that each sequence contains one copy of the motif. We have used ELPH to find patterns such as ribosome binding sites (RBSs) and exon splicing enhancers (ESEs). - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.1``|``foss/2018b`` - -### elprep - -elPrep is a high-performance tool for analyzing .sam/.bam files (up to and including variant calling) in sequencing pipelines. - -*homepage*: - -version |toolchain ----------|---------- -``5.1.1``|``system`` - -### ELSI - -ELSI provides and enhances scalable, open-source software library solutions for electronic structure calculations in materials science, condensed matter physics, chemistry, and many other fields. ELSI focuses on methods that solve or circumvent eigenvalue problems in electronic structure theory. The ELSI infrastructure should also be useful for other challenging eigenvalue problems. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|------------------------------- -``2.5.0``| |``foss/2019b``, ``intel/2019b`` -``2.5.0``|``-PEXSI`` |``foss/2019b``, ``intel/2019b`` -``2.6.4``|``-PEXSI`` |``foss/2020b``, ``intel/2020b`` -``2.7.1``|``-PEXSI`` |``foss/2021a``, ``intel/2021a`` - -### ELSI-RCI - -ELSI-RCI provides and enhances open-source software packages which iteratively solve or circumvent eigenvalue problems in self-consistent field calculations based on the Kohn-Sham density-functional theory. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------------------------------------------------------- -``0.1.0``|``GCC/10.3.0``, ``GCC/11.2.0``, ``foss/2020b``, ``intel-compilers/2021.2.0``, ``intel-compilers/2021.4.0``, ``intel/2020b`` - -### Emacs - -GNU Emacs is an extensible, customizable text editor--and more. At its core is an interpreter for Emacs Lisp, a dialect of the Lisp programming language with extensions to support text editing. - -*homepage*: - -version |versionsuffix|toolchain ---------|-------------|------------------------------------------------------- -``24.3``| |``GCC/4.8.3`` -``24.3``|``-bare`` |``GCC/4.8.3`` -``24.4``| |``GCC/4.9.2`` -``24.5``| |``GCC/4.9.3-2.25`` -``25.1``| |``foss/2016a`` -``25.3``| |``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``26.3``| |``GCCcore/8.3.0`` -``27.1``| |``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``27.2``| |``GCCcore/11.2.0`` -``28.1``| |``GCCcore/10.2.0`` -``28.2``| |``GCCcore/12.2.0`` - -### EMAN2 - -EMAN2 is a broadly based greyscale scientific image processing suite with a primary focus on processing data from transmission electron microscopes. - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------------------|---------------------------------- -``2.3`` | |``system`` -``2.3`` |``-Python-2.7.15`` |``foss/2019a``, ``fosscuda/2019a`` -``2.21a``|``-Python-2.7.14-Boost-1.63.0``|``foss/2018a`` - -### EMBOSS - -EMBOSS is 'The European Molecular Biology Open Software Suite'. EMBOSS is a free Open Source software analysis package specially developed for the needs of the molecular biology (e.g. EMBnet) user community. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------- -``6.6.0``| |``GCC/8.2.0-2.31.1``, ``foss/2016b``, ``foss/2018b``, ``foss/2021a``, ``foss/2021b``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1``, ``intel/2017a``, ``intel/2018b`` -``6.6.0``|``-Java-11`` |``GCC/8.3.0`` -``6.6.0``|``-Java-13`` |``GCC/10.2.0`` -``6.6.0``|``-X11-20170314``|``intel/2017a`` - -### Embree - -Intel® Embree is a collection of high-performance ray tracing kernels, developed at Intel. The target users of Intel® Embree are graphics application engineers who want to improve the performance of their photo-realistic rendering application by leveraging Embree's performance-optimized ray tracing kernels. The kernels are optimized for the latest Intel® processors with support for SSE, AVX, AVX2, and AVX-512 instructions. Intel® Embree supports runtime code selection to choose the traversal and build algorithms that best matches the instruction set of your CPU. We recommend using Intel® Embree through its API to get the highest benefit from future improvements. Intel® Embree is released as Open Source under the Apache 2.0 license. - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``3.4.0`` |``iccifort/2018.1.163-GCC-6.4.0-2.28`` -``3.13.4``|``system`` - -### emcee - -Emcee is an extensible, pure-Python implementation of Goodman & Weare's Affine Invariant Markov chain Monte Carlo (MCMC) Ensemble sampler. It's designed for Bayesian parameter estimation and it's really sweet! - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``2.2.1``| |``foss/2019a`` -``2.2.1``|``-Python-2.7.15``|``foss/2018b``, ``intel/2018b`` -``2.2.1``|``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``3.1.4``| |``foss/2021b``, ``foss/2022a`` - -### EMU - -EMU infers population structure in the presence of missingness and works for both haploid, psuedo-haploid and diploid genotype datasets - -*homepage*: - -version |versionsuffix |toolchain ---------|-----------------|-------------- -``0.66``|``-Python-3.7.4``|``foss/2019b`` - -### enaBrowserTool - -enaBrowserTools is a set of scripts that interface with the ENA web services to download data from ENA easily, without any knowledge of scripting required. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------ -``1.5.4``|``-Python-3.7.2``|``GCCcore/8.2.0`` -``1.6`` | |``GCCcore/10.3.0`` - -### enchant - -Enchant is a library (and command-line program) that wraps a number of different spelling libraries and programs with a consistent interface. - -*homepage*: - -version |toolchain ----------|--------------- -``1.6.1``|``intel/2017a`` - -### enchant-2 - -Enchant aims to provide a simple but comprehensive abstraction for dealing with different spell checking libraries in a consistent way. A client, such as a text editor or word processor, need not know anything about a specific spell-checker, and since all back-ends are plugins, new spell-checkers can be added without needing any change to the program using Enchant. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``2.3.3``|``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``2.6.5``|``GCCcore/12.3.0`` - -### EnergyPlus - -EnergyPlus is a whole building energy simulation program that engineers, architects, and researchers use to model both energy consumption—for heating, cooling, ventilation, lighting and plug and process loads—and water use in buildings. - -*homepage*: - -version |toolchain -----------|-------------- -``23.2.0``|``foss/2022a`` - -### EnsEMBLCoreAPI - -The Ensembl Core Perl API and SQL schema - -*homepage*: - -version |versionsuffix |toolchain -------------------|----------------|-------------- -``96.0-r20190601``|``-Perl-5.28.1``|``foss/2019a`` - -### ensmallen - -ensmallen is a high-quality C++ library for non-linear numerical optimization - -*homepage*: - -version |toolchain -----------|-------------- -``2.21.1``|``foss/2023a`` - -### entrypoints - -Entry points are a way for Python packages to advertise objects with some common interface. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``0.2.2``|``-Python-2.7.11``|``foss/2016a`` -``0.2.2``|``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``0.2.2``|``-Python-3.5.1`` |``foss/2016a`` -``0.2.2``|``-Python-3.5.2`` |``intel/2016b`` - -### epct - -This is the epct (EUMETSAT Product Customisation Toolbox) Python package for the EUMETSAT Data Tailor. The EUMETSAT Data Tailor makes it possible for users to subset and aggregate EUMETSAT data products in space and time, filter layers, generate quicklooks, project onto new coordinate reference systems, and reformat into common GIS formats (netCDF, GeoTIFF, etc.). - -*homepage*: - -version |toolchain ----------|-------------- -``3.2.0``|``foss/2022a`` - -### EPD - -The Enthought Python Distribution provides scientists with a comprehensive set of tools to perform rigorous data analysis and visualization. Python, distinguished by its flexibility, coherence, and ease-of-use, is rapidly becoming the programming language of choice for researchers worldwide. EPD extends this capacity with a powerful collection of Python libraries to enable interactive technical computing and cross-platform rapid application development. - -*homepage*: - -version |toolchain --------------|---------- -``7.3-2-rh5``|``system`` - -### EPIC - -Package implementing EPIC method to estimate the proportion of immune, stromal, endothelial and cancer or other cells from bulk gene expression data. - -*homepage*: - -version|versionsuffix|toolchain --------|-------------|-------------- -``1.1``|``-R-3.5.1`` |``foss/2018b`` - -### epiScanpy - -EpiScanpy is a toolkit to analyse single-cell open chromatin (scATAC-seq) and single-cell DNA methylation (for example scBS-seq) data. EpiScanpy is the epigenomic extension of the very popular scRNA-seq analysis tool Scanpy (Genome Biology, 2018) [Wolf18]. - -*homepage*: - -version |toolchain ----------|------------------------------ -``0.3.1``|``foss/2021a`` -``0.4.0``|``foss/2022a``, ``foss/2023a`` - -### EpiSCORE - -Epigenetic cell-type deconvolution from Single-Cell Omic Reference profiles - -*homepage*: - -version |versionsuffix|toolchain -------------------|-------------|-------------- -``0.9.5-20220621``|``-R-4.2.1`` |``foss/2022a`` - -### eQuilibrator - -Calculation of standard thermodynamic potentials of biochemical reactions. - -*homepage*: - -version |toolchain ----------|-------------- -``0.4.7``|``foss/2021a`` - -### EricScript - -EricScript is a computational framework for the discovery of gene fusions in paired end RNA-seq data. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|--------------- -``0.5.5``|``-R-3.4.0`` |``intel/2017a`` - -### ESL-Bundle - -The ESL Bundle is a collection of libraries and utilities broadly used in electronic structure calculations, put together to make their use easier by researchers and scientific software developers. ESL stands for Electronic Structure Library, an initiative which distributes quality software and promotes open standards for high-performance computing applications in the field of electronic structure calculations. - -*homepage*: - -version |toolchain ----------|------------------------------- -``0.6.1``|``foss/2020b``, ``intel/2020b`` - -### ESM-2 - -ESM-2 outperforms all tested single-sequence protein language models across a range of structure prediction tasks. ESMFold harnesses the ESM-2 language model to generate accurate structure predictions end to end directly from the sequence of a protein. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|------------------------------ -``2.0.0``| |``foss/2021a``, ``foss/2022b`` -``2.0.0``|``-CUDA-11.3.1``|``foss/2021a`` -``2.0.0``|``-CUDA-12.1.1``|``foss/2023a`` - -### ESMF - -The Earth System Modeling Framework (ESMF) is a suite of software tools for developing high-performance, multi-component Earth science modeling applications. - -*homepage*: - -version |versionsuffix |toolchain -------------|----------------|--------------------------------------------------------------------------------- -``6.3.0rp1``| |``intel/2017a`` -``6.3.0rp1``|``-HDF5-1.8.18``|``intel/2017a`` -``7.0.0`` | |``foss/2016a`` -``7.0.2`` | |``intel/2017b`` -``7.1.0r`` | |``foss/2018b``, ``foss/2019a``, ``intel/2018a``, ``intel/2018b``, ``iomkl/2018b`` -``8.0.0`` | |``foss/2019b``, ``intel/2019b`` -``8.0.1`` | |``foss/2020a``, ``foss/2020b``, ``intel/2020a``, ``intel/2020b`` -``8.1.1`` | |``foss/2021a``, ``intel/2021a`` -``8.2.0`` | |``foss/2021b``, ``intel/2021b`` -``8.3.0`` | |``foss/2022a``, ``intel/2022a`` -``8.4.2`` | |``foss/2022a`` - -### ESMPy - -Earth System Modeling Framework (ESMF) Python Interface - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``8.0.0``|``-Python-3.7.4``|``intel/2019b`` -``8.0.1``| |``intel/2020b`` -``8.0.1``|``-Python-3.8.2``|``foss/2020a`` - -### ESMValTool - -The Earth System Model eValuation Tool (ESMValTool) is a community diagnostics and performance metrics tool for the evaluation of Earth System Models (ESMs) that allows for routine comparison of single or multiple models, either against predecessor versions or against observations. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``1.1.0``|``-Python-2.7.14``|``intel/2017b`` - -### eSpeak-NG - -The eSpeak NG is a compact open source software text-to-speech synthesizer for Linux, Windows, Android and other operating systems. It supports more than 100 languages and accents. It is based on the eSpeak engine created by Jonathan Duddington. - -*homepage*: - -version |toolchain ---------|--------------- -``1.50``|``gompi/2020a`` -``1.51``|``gfbf/2023a`` - -### ESPResSo - -A software package for performing and analyzing scientific Molecular Dynamics simulations. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|---------------------------------------------- -``4.2.1``| |``foss/2021a``, ``foss/2022a``, ``foss/2023a`` -``4.2.1``|``-CUDA-11.3.1``|``foss/2021a`` -``4.2.1``|``-CUDA-11.8.0``|``foss/2022a`` -``4.2.2``| |``foss/2023a`` - -### Essentia - -Open-source library and tools for audio and music analysis, description and synthesis - -*homepage*: - -version |versionsuffix |toolchain --------------|------------------|-------------- -``2.1_beta5``|``-Python-2.7.15``|``foss/2019a`` - -### ETE - -A Python framework for the analysis and visualization of trees - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|---------------------------------------------- -``3.0.0b36``|``-Python-2.7.12``|``intel/2016b`` -``3.1.1`` |``-Python-3.6.6`` |``foss/2018b`` -``3.1.2`` | |``foss/2020b``, ``foss/2021a``, ``foss/2021b`` -``3.1.2`` |``-Python-3.7.4`` |``foss/2019b`` -``3.1.2`` |``-Python-3.8.2`` |``foss/2020a`` -``3.1.3`` | |``foss/2022b``, ``foss/2023a`` - -### ETSF_IO - -A library of F90 routines to read/write the ETSF file format has been written. It is called ETSF_IO and available under LGPL. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------- -``1.0.4``|``foss/2017b``, ``foss/2018a``, ``foss/2018b``, ``intel/2017b``, ``intel/2018a``, ``intel/2018b`` - -### eudev - -eudev is a fork of systemd-udev with the goal of obtaining better compatibility with existing software such as OpenRC and Upstart, older kernels, various toolchains and anything else required by users and various distributions. - -*homepage*: - -version |toolchain ----------|------------------------------------------------- -``3.1.5``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` -``3.2`` |``GCCcore/4.9.3`` -``3.2.2``|``GCCcore/6.4.0`` - -### EUKulele - -Formalizing environmental eukaryotic taxonomic assignment - -*homepage*: - -version |toolchain ----------|-------------- -``2.0.6``|``foss/2022a`` - -### EVcouplings - -Predict protein structure, function and mutations using evolutionary sequence covariation. - -*homepage*: - -version |toolchain ----------|-------------- -``0.1.1``|``foss/2023a`` - -### Evcxr-REPL - -A Rust REPL (Read-Eval-Print loop) built using the evcxr evaluation context. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|------------------ -``0.14.2``|``-Rust-1.65.0``|``GCCcore/12.2.0`` - -### EveryBeam - -Library that provides the antenna response pattern for several instruments, such as LOFAR (and LOBES), SKA (OSKAR), MWA, JVLA, etc. - -*homepage*: - -version |toolchain ----------|------------------------------ -``0.5.2``|``foss/2022a``, ``foss/2023b`` - -### EvidentialGene - -EvidentialGene is a genome informatics project for "Evidence Directed Gene Construction for Eukaryotes", for constructing high quality, accurate gene sets for animals and plants (any eukaryotes), being developed by Don Gilbert at Indiana University, gilbertd at indiana edu. - -*homepage*: - -version |versionsuffix |toolchain ---------------|----------------|--------------- -``2018.01.01``|``-Perl-5.24.1``|``intel/2017a`` -``2022.01.14``| |``gompi/2021b`` - -### evince - -Evince is a document viewer for multiple document formats. The goal of evince is to replace the multiple document viewers that exist on the GNOME Desktop with a single simple application. - -*homepage*: - -version |toolchain ---------|-------------- -``45.0``|``GCC/12.3.0`` - -### evmix - -evmix: Extreme Value Mixture Modelling, Threshold Estimation and Boundary Corrected Kernel Density Estimation - -*homepage*: - -version|versionsuffix|toolchain --------|-------------|--------------- -``2.6``|``-R-3.3.1`` |``intel/2016b`` - -### ExaBayes - -ExaBayes is a software package for Bayesian tree inference. It is particularly suitable for large-scale analyses on computer clusters - -*homepage*: - -version|toolchain --------|-------------- -``1.5``|``foss/2016b`` - -### ExaML - -Exascale Maximum Likelihood (ExaML) code for phylogenetic inference using MPI - -*homepage*: - -version |versionsuffix |toolchain -----------|---------------|--------------- -``3.0.22``|``-hybrid-avx``|``gompi/2021a`` - -### Excel-Writer-XLSX - -The Excel::Writer::XLSX module can be used to create an Excel file in the 2007+ XLSX format. Multiple worksheets can be added to a workbook and formatting can be applied to cells. Text, numbers, and formulas can be written to the cells. - -*homepage*: - -version |toolchain ---------|-------------- -``1.09``|``foss/2020b`` - -### ExifTool - -Perl module (Image::ExifTool) and program (exiftool) to read EXIF information from images - -*homepage*: - -version |toolchain ----------|----------------- -``12.00``|``GCCcore/9.3.0`` - -### exiv2 - -Exiv2 is a C++ library and a command line utility to manage image metadata. It provides fast and easy read and write access to the Exif, IPTC and XMP metadata of digital images in various formats. Exiv2 is available as free software and with a commercial license, and is used in many projects. - -*homepage*: - -version |toolchain -----------|------------------ -``0.27.4``|``GCCcore/10.3.0`` -``0.27.5``|``GCCcore/11.2.0`` -``0.28.0``|``GCCcore/12.3.0`` - -### Exonerate - -Exonerate is a generic tool for pairwise sequence comparison. It allows you to align sequences using a many alignment models, using either exhaustive dynamic programming, or a variety of heuristics. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.4.0``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0``, ``GCC/6.4.0-2.28``, ``GCC/8.3.0``, ``foss/2016a``, ``foss/2016b``, ``iccifort/2017.4.196-GCC-6.4.0-2.28``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1``, ``iccifort/2019.5.281``, ``intel/2017a`` - -### expat - -Expat is an XML parser library written in C. It is a stream-oriented parser in which an application registers handlers for things the parser might find in the XML document (like start tags). - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------------------------------- -``2.1.0``|``GCC/4.9.2``, ``foss/2016a``, ``intel/2016a`` -``2.1.1``|``foss/2016a``, ``intel/2016a`` -``2.2.0``|``GCCcore/4.9.3``, ``GCCcore/5.4.0``, ``GCCcore/6.3.0``, ``foss/2016a``, ``foss/2016b``, ``gimkl/2017a``, ``intel/2016b`` -``2.2.4``|``GCCcore/6.4.0`` -``2.2.5``|``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``2.2.6``|``GCCcore/8.2.0`` -``2.2.7``|``GCCcore/8.3.0`` -``2.2.9``|``FCC/4.5.0``, ``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/9.3.0`` -``2.4.1``|``GCCcore/11.2.0`` -``2.4.8``|``GCCcore/11.3.0``, ``GCCcore/12.1.0`` -``2.4.9``|``GCCcore/12.2.0`` -``2.5.0``|``GCCcore/12.3.0``, ``GCCcore/13.2.0`` -``2.6.2``|``GCCcore/13.3.0`` - -### expect - -Expect is a tool for automating interactive applications such as telnet, ftp, passwd, fsck, rlogin, tip, etc. Expect really makes this stuff trivial. Expect is also useful for testing these same applications. - -*homepage*: - -version |toolchain -----------|------------------------------------ -``5.45.4``|``GCCcore/7.3.0``, ``GCCcore/9.3.0`` - -### expecttest - -This library implements expect tests (also known as "golden" tests). Expect tests are a method of writing tests where instead of hard-coding the expected output of a test, you run the test to get the output, and the test framework automatically populates the expected output. If the output of the test changes, you can rerun the test with the environment variable EXPECTTEST_ACCEPT=1 to automatically update the expected output. - -*homepage*: - -version |toolchain ----------|-------------------------------------------------------------------------------------------------- -``0.1.3``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``0.1.5``|``GCCcore/12.3.0`` -``0.2.1``|``GCCcore/13.2.0`` - -### eXpress - -Streaming quantification for high-throughput sequencing - -*homepage*: - -version |toolchain ----------|--------------- -``1.5.1``|``intel/2017b`` - -### ExpressBetaDiversity - -Taxon- and phylogenetic-based beta diversity measures. - -*homepage*: - -version |toolchain -----------|-------------- -``1.0.10``|``GCC/12.3.0`` - -### Extrae - -Extrae is the core instrumentation package developed by the Performance Tools group at BSC. Extrae is capable of instrumenting applications based on MPI, OpenMP, pthreads, CUDA1, OpenCL1, and StarSs1 using different instrumentation approaches. The information gathered by Extrae typically includes timestamped events of runtime calls, performance counters and source code references. Besides, Extrae provides its own API to allow the user to manually instrument his or her application. - -*homepage*: - -version |toolchain ----------|--------------- -``3.4.1``|``foss/2017a`` -``3.7.1``|``intel/2019a`` -``3.8.0``|``gompi/2020b`` -``3.8.3``|``gompi/2021a`` -``4.0.4``|``gompi/2022a`` - -### ExtremeLy - -A python package for Extreme Value Analysis. - -*homepage*: - -version |toolchain ----------|-------------- -``2.3.0``|``foss/2022a`` - -### EZC3D - -EZC3D is an easy to use reader, modifier and writer for C3D format files. It is written en C++ with proper binders for Python and MATLAB/Octave scripting langages. - -*homepage*: - -version |toolchain ----------|-------------- -``1.5.2``|``foss/2022a`` - -## F - - -[f90cache](#f90cache) - [f90nml](#f90nml) - [f90wrap](#f90wrap) - [Faber](#faber) - [FabIO](#fabio) - [FACE](#face) - [faceswap](#faceswap) - [Faiss](#faiss) - [FALCON](#falcon) - [FANN](#fann) - [fast5](#fast5) - [FASTA](#fasta) - [fasta-reader](#fasta-reader) - [fastahack](#fastahack) - [fastai](#fastai) - [FastaIndex](#fastaindex) - [FastANI](#fastani) - [Fastaq](#fastaq) - [FastFold](#fastfold) - [fastjet](#fastjet) - [fastjet-contrib](#fastjet-contrib) - [FastME](#fastme) - [fastml](#fastml) - [fastp](#fastp) - [fastparquet](#fastparquet) - [fastPHASE](#fastphase) - [fastq-pair](#fastq-pair) - [fastq-tools](#fastq-tools) - [FastQ_Screen](#fastq_screen) - [FastQC](#fastqc) - [fastqsplitter](#fastqsplitter) - [FastQTL](#fastqtl) - [fastqz](#fastqz) - [FastRFS](#fastrfs) - [fastStructure](#faststructure) - [FastTree](#fasttree) - [FastViromeExplorer](#fastviromeexplorer) - [FASTX-Toolkit](#fastx-toolkit) - [fatslim](#fatslim) - [fbm](#fbm) - [FBPIC](#fbpic) - [FCC](#fcc) - [FCM](#fcm) - [fdict](#fdict) - [FDMNES](#fdmnes) - [FDS](#fds) - [fdstools](#fdstools) - [FDTD_Solutions](#fdtd_solutions) - [feh](#feh) - [FEniCS](#fenics) - [fermi-lite](#fermi-lite) - [Ferret](#ferret) - [festival](#festival) - [fetchMG](#fetchmg) - [FFAVES](#ffaves) - [FFC](#ffc) - [FFLAS-FFPACK](#fflas-ffpack) - [FFmpeg](#ffmpeg) - [ffmpi](#ffmpi) - [ffnet](#ffnet) - [ffnvcodec](#ffnvcodec) - [fftlib](#fftlib) - [FFTW](#fftw) - [FFTW.MPI](#fftw.mpi) - [fgbio](#fgbio) - [FGSL](#fgsl) - [FHI-aims](#fhi-aims) - [FIAT](#fiat) - [FIGARO](#figaro) - [FigureGen](#figuregen) - [Fiji](#fiji) - [file](#file) - [filevercmp](#filevercmp) - [Filtlong](#filtlong) - [find_circ](#find_circ) - [finder](#finder) - [findhap](#findhap) - [findutils](#findutils) - [fineRADstructure](#fineradstructure) - [fineSTRUCTURE](#finestructure) - [fio](#fio) - [Fiona](#fiona) - [Firefox](#firefox) - [FIRESTARTER](#firestarter) - [FireWorks](#fireworks) - [FIt-SNE](#fit-sne) - [FIX](#fix) - [fixesproto](#fixesproto) - [FLAC](#flac) - [FLAIR](#flair) - [flair-NLP](#flair-nlp) - [FLANN](#flann) - [FLASH](#flash) - [Flask](#flask) - [flatbuffers](#flatbuffers) - [flatbuffers-python](#flatbuffers-python) - [FLEUR](#fleur) - [flex](#flex) - [Flexbar](#flexbar) - [FlexiBLAS](#flexiblas) - [FlexiDot](#flexidot) - [Flink](#flink) - [FLINT](#flint) - [flit](#flit) - [flook](#flook) - [flowFDA](#flowfda) - [FLTK](#fltk) - [FLUENT](#fluent) - [Flye](#flye) - [FMILibrary](#fmilibrary) - [FMM3D](#fmm3d) - [FMPy](#fmpy) - [FMRIprep](#fmriprep) - [FMS](#fms) - [fmt](#fmt) - [FoBiS](#fobis) - [FoldX](#foldx) - [fontconfig](#fontconfig) - [fontsproto](#fontsproto) - [forbear](#forbear) - [FORD](#ford) - [foss](#foss) - [fosscuda](#fosscuda) - [FoX](#fox) - [FOX-Toolkit](#fox-toolkit) - [fplll](#fplll) - [FPM](#fpm) - [fpocket](#fpocket) - [fpylll](#fpylll) - [fqtrim](#fqtrim) - [fqzcomp](#fqzcomp) - [FragGeneScan](#fraggenescan) - [FragPipe](#fragpipe) - [FRANz](#franz) - [FreeBarcodes](#freebarcodes) - [freebayes](#freebayes) - [FreeFEM](#freefem) - [FreeFem++](#freefem++) - [freeglut](#freeglut) - [FreeImage](#freeimage) - [FreeSASA](#freesasa) - [FreeSurfer](#freesurfer) - [FreeTDS](#freetds) - [freetype](#freetype) - [freetype-py](#freetype-py) - [FreeXL](#freexl) - [freud-analysis](#freud-analysis) - [FriBidi](#fribidi) - [FRUIT](#fruit) - [FRUIT_processor](#fruit_processor) - [FSL](#fsl) - [FSLeyes](#fsleyes) - [fsom](#fsom) - [FSON](#fson) - [ftfy](#ftfy) - [FTGL](#ftgl) - [fugue](#fugue) - [Fujitsu](#fujitsu) - [fullrmc](#fullrmc) - [fumi_tools](#fumi_tools) - [funannotate](#funannotate) - [FunGAP](#fungap) - [FUNWAVE-TVD](#funwave-tvd) - [FUSE](#fuse) - [FuSeq](#fuseq) - [FusionCatcher](#fusioncatcher) - [futhark](#futhark) - [futile](#futile) - [future](#future) - [fxtract](#fxtract) - - -### f90cache - -f90cache is a compiler cache. It acts as a caching pre-processor to Fortran compilers, using the -E compiler switch and a hash to detect when a compilation can be satisfied from cache. This often results in a great speedup in common compilations. - -*homepage*: - -version |toolchain ---------|---------- -``0.96``|``system`` - -### f90nml - -A Python module and command line tool for parsing Fortran namelist files - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``1.4.4``|``GCCcore/12.2.0``, ``GCCcore/13.2.0`` - -### f90wrap - -f90wrap is a tool to automatically generate Python extension modules which interface to Fortran code that makes use of derived types. It builds on the capabilities of the popular f2py utility by generating a simpler Fortran 90 interface to the original Fortran code which is then suitable for wrapping with f2py, together with a higher-level Pythonic wrapper that makes the existance of an additional layer transparent to the final user. - -*homepage*: - -version |toolchain -----------|-------------- -``0.2.8`` |``foss/2021a`` -``0.2.11``|``foss/2022a`` -``0.2.13``|``foss/2023a`` - -### Faber - -Faber started as a clone of Boost.Build, to experiment with a new Python frontend. Meanwhile it has evolved into a new build system, which retains most of the features found in Boost.Build, but with (hopefully !) much simplified logic, in addition of course to using Python as scripting language, rather than Jam. The original bjam engine is still in use as scheduler, though at this point that is mostly an implementation detail. - -*homepage*: - -version|toolchain --------|----------------- -``0.3``|``GCCcore/8.3.0`` - -### FabIO - -FabIO is an I/O library for images produced by 2D X-ray detectors and written in Python. FabIO support images detectors from a dozen of companies (including Mar, Dectris, ADSC, Hamamatsu, Oxford, ...), for a total of 20 different file formats (like CBF, EDF, TIFF, ...) and offers an unified interface to their headers (as a python dictionary) and datasets (as a numpy ndarray of integers or floats). - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|---------------------------------- -``0.10.2``|``-Python-3.7.4``|``foss/2019b``, ``fosscuda/2019b`` -``0.11.0``| |``foss/2020b``, ``fosscuda/2020b`` -``0.14.0``| |``foss/2021b`` - -### FACE - -A Fortran Ansi Colors (and Styles) Environment. A KISS pure Fortran Library for easy colorize (and stylize) strings. - -*homepage*: - -version |toolchain ----------|-------------- -``1.1.1``|``GCC/10.3.0`` - -### faceswap - -Faceswap is a tool that utilizes deep learning to recognize and swap faces in pictures and videos. - -*homepage*: - -version |versionsuffix |toolchain -------------|-----------------|-------------- -``20180212``|``-Python-3.6.3``|``foss/2017b`` - -### Faiss - -Faiss is a library for efficient similarity search and clustering of dense vectors. It contains algorithms that search in sets of vectors of any size, up to ones that possibly do not fit in RAM. It also contains supporting code for evaluation and parameter tuning. Faiss is written in C++ with complete wrappers for Python/numpy. Some of the most useful algorithms are implemented on the GPU. It is developed primarily at Meta's Fundamental AI Research group. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``1.7.4``|``-CUDA-12.1.1``|``foss/2023a`` - -### FALCON - -Falcon: a set of tools for fast aligning long reads for consensus and assembly - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``1.8.8``| |``intel/2017b`` -``1.8.8``|``-Python-2.7.16``|``intel/2019b`` - -### FANN - -Fast Artificial Neural Network Library is a free open source neural network library, which implements multilayer artificial neural networks in C with support for both fully connected and sparsely connected networks. - -*homepage*: - -version |toolchain ----------|---------------------------------- -``2.2.0``|``GCCcore/6.4.0``, ``intel/2018a`` - -### fast5 - -A lightweight C++ library for accessing Oxford Nanopore Technologies sequencing data. - -*homepage*: - -version |toolchain ----------|---------- -``0.6.5``|``system`` - -### FASTA - -The FASTA programs find regions of local or global (new) similarity between protein or DNA sequences, either by searching Protein or DNA databases, or by identifying local duplications within a sequence. - -*homepage*: - -version |toolchain ------------|------------------------------ -``36.3.5e``|``foss/2016b`` -``36.3.8i``|``GCC/11.2.0``, ``GCC/12.2.0`` - -### fasta-reader - -FASTA file reader - -*homepage*: - -version |toolchain ----------|-------------- -``3.0.2``|``GCC/12.3.0`` - -### fastahack - -Utilities for indexing and sequence extraction from FASTA files. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------------------------------------------------- -``1.0.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0``, ``GCCcore/9.3.0`` - -### fastai - -The fastai deep learning library. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|-------------- -``2.7.10``| |``foss/2022a`` -``2.7.10``|``-CUDA-11.7.0``|``foss/2022a`` - -### FastaIndex - -FastA index (.fai) handler compatible with samtools faidx - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|--------------- -``0.11rc7``|``-Python-2.7.14``|``intel/2017b`` - -### FastANI - -FastANI is developed for fast alignment-free computation of whole-genome Average Nucleotide Identity (ANI). ANI is defined as mean nucleotide identity of orthologous gene pairs shared between two microbial genomes. FastANI supports pairwise comparison of both complete and draft genome assemblies. - -*homepage*: - -version |toolchain ---------|--------------------------------------------------------------------------------------------------------------------- -``1.1`` |``foss/2018b``, ``intel/2018b`` -``1.2`` |``GCC/8.2.0-2.31.1``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -``1.3`` |``iccifort/2019.5.281`` -``1.31``|``iccifort/2020.1.217`` -``1.33``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``iccifort/2020.4.304``, ``intel-compilers/2021.4.0`` -``1.34``|``GCC/12.3.0`` - -### Fastaq - -Python3 scripts to manipulate FASTA and FASTQ files. - -*homepage*: - -version |toolchain -----------|------------------------------ -``3.17.0``|``GCC/10.3.0``, ``GCC/12.3.0`` - -### FastFold - -Optimizing Protein Structure Prediction Model Training and Inference on GPU Clusters - -*homepage*: - -version |versionsuffix |toolchain -------------|----------------|-------------- -``20220729``|``-CUDA-11.3.1``|``foss/2021a`` - -### fastjet - -A software package for jet finding in pp and e+e- collisions - -*homepage*: - -version |toolchain ----------|--------------- -``3.4.0``|``gompi/2022a`` -``3.4.2``|``gompi/2023a`` - -### fastjet-contrib - -3rd party extensions of FastJet - -*homepage*: - -version |toolchain ----------|--------------- -``1.049``|``gompi/2022a`` -``1.053``|``gompi/2023a`` - -### FastME - -FastME: a comprehensive, accurate and fast distance-based phylogeny inference program. - -*homepage*: - -version |toolchain ------------|---------------------------------------------------------------------------------------- -``2.1.5`` |``foss/2016a`` -``2.1.6.1``|``GCC/10.2.0``, ``GCC/8.3.0``, ``iccifort/2019.5.281``, ``intel/2018a``, ``intel/2018b`` -``2.1.6.3``|``GCC/12.3.0`` - -### fastml - -Maximum likelihood reconstruction of ancestral amino-acid sequences. A branch-and-bound algorithm for the inference of ancestral amino-acid sequences when the replacement rate varies among sites. - -*homepage*: - -version|toolchain --------|-------------- -``2.3``|``GCC/11.3.0`` - -### fastp - -A tool designed to provide fast all-in-one preprocessing for FastQ files. This tool is developed in C++ with multithreading supported to afford high performance. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------ -``0.19.7``|``foss/2018b`` -``0.20.0``|``GCC/8.2.0-2.31.1``, ``GCC/8.3.0``, ``iccifort/2019.5.281`` -``0.20.1``|``iccifort/2020.1.217`` -``0.23.2``|``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0`` -``0.23.4``|``GCC/12.2.0``, ``GCC/12.3.0`` - -### fastparquet - -fastparquet is a python implementation of the parquet format, aiming to integrate into python-based big data work-flows. It is used implicitly by the projects Dask, Pandas and intake-parquet. - -*homepage*: - -version |toolchain -------------|-------------- -``0.7.2`` |``foss/2021a`` -``0.8.0`` |``foss/2021b`` -``2023.4.0``|``gfbf/2022b`` - -### fastPHASE - -fastPHASE: software for haplotype reconstruction, and estimating missing genotypes from population data Documentation: http://scheet.org/code/fastphase_doc_1.4.pdf - -*homepage*: - -version |toolchain ----------|---------- -``1.4.8``|``system`` - -### fastq-pair - -Match up paired end fastq files quickly and efficiently. - -*homepage*: - -version|toolchain --------|----------------- -``1.0``|``GCCcore/8.2.0`` - -### fastq-tools - -This package provides a number of small and efficient programs to perform common tasks with high throughput sequencing data in the FASTQ format. All of the programs work with typical FASTQ files as well as gzipped FASTQ files. - -*homepage*: - -version |toolchain ----------|------------------------------ -``0.8`` |``foss/2016b``, ``foss/2018b`` -``0.8.3``|``GCC/10.3.0``, ``GCC/11.2.0`` - -### FastQ_Screen - -FastQ Screen allows you to screen a library of sequences in FastQ format against a set of sequence databases so you can see if the composition of the library matches with what you expect. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|--------------- -``0.11.3``|``-Perl-5.24.0``|``foss/2016b`` -``0.11.4``|``-Perl-5.24.0``|``foss/2016b`` -``0.12.0``|``-Perl-5.26.1``|``intel/2018a`` -``0.13.0``|``-Perl-5.28.0``|``foss/2018b`` -``0.14.0``| |``GCC/11.3.0`` - -### FastQC - -FastQC is a quality control application for high throughput sequence data. It reads in sequence data in a variety of formats and can either provide an interactive application to review the results of several different QC checks, or create an HTML based report which can be integrated into a pipeline. - -*homepage*: - -version |versionsuffix |toolchain -----------|-------------------|---------- -``0.10.1``|``-Java-1.7.0_80`` |``system`` -``0.11.2``|``-Java-1.7.0_60`` |``system`` -``0.11.3``|``-Java-1.7.0_80`` |``system`` -``0.11.4``|``-Java-1.8.0_66`` |``system`` -``0.11.4``|``-Java-1.8.0_74`` |``system`` -``0.11.5``|``-Java-1.7.0_80`` |``system`` -``0.11.5``|``-Java-1.8.0_144``|``system`` -``0.11.5``|``-Java-1.8.0_74`` |``system`` -``0.11.7``|``-Java-1.8.0_162``|``system`` -``0.11.8``|``-Java-1.8`` |``system`` -``0.11.8``|``-Java-11`` |``system`` -``0.11.9``|``-Java-1.8`` |``system`` -``0.11.9``|``-Java-11`` |``system`` -``0.12.1``|``-Java-11`` |``system`` - -### fastqsplitter - -Splits fastq files evenly. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|----------------- -``1.2.0``|``-Python-3.7.2``|``GCCcore/8.2.0`` - -### FastQTL - -FastQTL is a QTL mapper - -*homepage*: - -version |toolchain ----------|------------------------------ -``2.184``|``GCC/11.2.0``, ``foss/2018b`` - -### fastqz - -fastqz is a compressor for FASTQ files. FASTQ is the output of DNA sequencing machines. It is one of the compressors described in the paper: Bonfield JK, Mahoney MV (2013) Compression of FASTQ and SAM Format Sequencing Data. (mirror) PLoS ONE 8(3): e59190. doi:10.1371/journal.pone.0059190 - -*homepage*: - -version|toolchain --------|------------- -``1.5``|``GCC/4.8.2`` - -### FastRFS - -Fast Robinson Foulds Supertrees - -*homepage*: - -version |toolchain -----------------|--------------- -``1.0-20190613``|``gompi/2019a`` - -### fastStructure - -fastStructure is a fast algorithm for inferring population structure from large SNP genotype data. It is based on a variational Bayesian framework for posterior inference and is written in Python2.x. - -*homepage*: - -version|versionsuffix |toolchain --------|------------------|-------------- -``1.0``|``-Python-2.7.11``|``foss/2016a`` -``1.0``|``-Python-2.7.12``|``foss/2016b`` -``1.0``|``-Python-2.7.13``|``foss/2017a`` -``1.0``|``-Python-2.7.15``|``foss/2019a`` - -### FastTree - -FastTree infers approximately-maximum-likelihood phylogenetic trees from alignments of nucleotide or protein sequences. FastTree can handle alignments with up to a million of sequences in a reasonable amount of time and memory. - -*homepage*: - -version |toolchain -----------|----------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.1.10``|``foss/2018b``, ``intel/2017b``, ``intel/2018a``, ``intel/2018b`` -``2.1.11``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` - -### FastViromeExplorer - -Identify the viruses/phages and their abundance in the viral metagenomics data. - -*homepage*: - -version |toolchain -------------|-------------- -``20180422``|``foss/2019b`` - -### FASTX-Toolkit - -The FASTX-Toolkit is a collection of command line tools for Short-Reads FASTA/FASTQ files preprocessing. - -*homepage*: - -version |toolchain -----------|--------------------------------------------------------------------------------------------------------------------------------- -``0.0.14``|``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/9.3.0``, ``GCCcore/7.3.0``, ``foss/2016a``, ``foss/2016b``, ``intel/2018a`` - -### fatslim - -FATSLiM stands for “Fast Analysis Toolbox for Simulations of Lipid Membranes” and its goal is to provide an efficient, yet robust, tool to extract physical parameters from MD trajectories. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``0.2.1``|``-Python-3.6.4``|``foss/2018a`` - -### fbm - -Exact methods for simulating fractional Brownian motion and fractional Gaussian noise in Python - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``0.2.0``|``-Python-3.6.4``|``intel/2018a`` - -### FBPIC - -FBPIC (Fourier-Bessel Particle-In-Cell) is a Particle-In-Cell (PIC) code for relativistic plasma physics. It is especially well-suited for physical simulations of laser-wakefield acceleration and plasma-wakefield acceleration. - -*homepage*: - -version |toolchain -----------|------------------ -``0.20.3``|``fosscuda/2020b`` - -### FCC - -Fujitsu Compiler based compiler toolchain. - -*homepage*: <(none)> - -version |toolchain ----------|---------- -``4.5.0``|``system`` - -### FCM - -FCM is a set of tools for managing and building source code. - -*homepage*: - -version |toolchain ----------|---------- -``2.3.1``|``system`` - -### fdict - -A variable and dictionary in pure fortran for retaining any data-type and a fast hash-table dictionary. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------------------------------------------------------------- -``0.8.0``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``iccifort/2020.4.304``, ``intel-compilers/2021.2.0``, ``intel-compilers/2021.4.0`` - -### FDMNES - -X-ray spectroscopies are techniques which probe the electronic and structural properties of the materials. Most often performed at synchrotron, they are extensively used to analyse all classes of materials. The advances on the experimental side need the complementary progress on the theoretical side to extract confidentely all the information the data can furnish. In this context, the purpose of our FDMNES project is to supply to the community a user friendly ab initio code to simulate X-ray absorption and emission spectroscopies as well as resonant x-ray scattering and x-ray Raman spectroscopies, among other techniques. FDMNES, for Finite Difference Method Near Edge Structure, uses the density functional theory (DFT). It is thus specially devoted to the simulation of the K edges of all the chemical elements and of the L23 edges of the heavy ones. For the other edges, it includes advances by the use of the time dependent DFT (TD-DFT). - -*homepage*: - -version |toolchain ---------------|--------------- -``2024-02-29``|``gomkl/2023a`` - -### FDS - -Fire Dynamics Simulator (FDS) is a large-eddy simulation (LES) code for low-speed flows, with an emphasis on smoke and heat transport from fires. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------------------------- -``6.0.1``|``-no-OFED`` |``system`` -``6.5.2``| |``intel/2016b`` -``6.5.3``| |``intel/2017a`` -``6.6.0``| |``intel/2017b``, ``intel/2018a`` -``6.7.0``| |``intel/2018a`` -``6.7.4``| |``intel/2020a`` -``6.7.5``| |``intel/2020a`` -``6.7.6``| |``intel/2020b`` -``6.7.7``| |``intel/2021b`` -``6.7.9``| |``intel/2022a`` -``6.8.0``| |``intel/2022b`` - -### fdstools - -Forensic DNA Sequencing Tools Tools for characterisation and filtering of PCR stutter artefacts and other systemic noise in Next Generation Sequencing data of forensic STR markers. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|-------------- -``20160322``|``-Python-2.7.11``|``foss/2016a`` - -### FDTD_Solutions - -High performance FDTD-method Maxwell solver for the design, analysis and optimization of nanophotonic devices, processes and materials. - -*homepage*: - -version |toolchain --------------|---------- -``8.6.2`` |``system`` -``8.11.337`` |``system`` -``8.16.982`` |``system`` -``8.20.1731``|``system`` - -### feh - -feh is an X11 image viewer aimed mostly at console users. Unlike most other viewers, it does not have a fancy GUI, but simply displays images. It is controlled via commandline arguments and configurable key/mouse actions. - -*homepage*: - -version |toolchain ---------|----------------- -``2.26``|``GCCcore/6.4.0`` - -### FEniCS - -FEniCS is a computing platform for solving partial differential equations (PDEs). - -*homepage*: - -version |versionsuffix |toolchain -------------|-----------------|-------------- -``2019.1.0``|``-Python-3.7.4``|``foss/2019b`` - -### fermi-lite - -Standalone C library for assembling Illumina short reads in small regions. - -*homepage*: - -version |toolchain -------------|------------------------------------------------------------------------------------------------- -``20190320``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/12.3.0``, ``GCCcore/9.3.0`` - -### Ferret - -Ferret is an interactive computer visualization and analysis environment designed to meet the needs of oceanographers and meteorologists analyzing large and complex gridded data sets. - -*homepage*: - -version |toolchain ----------|--------------- -``7.3`` |``intel/2017b`` -``7.5.0``|``foss/2019b`` -``7.6.0``|``foss/2022a`` - -### festival - -University of Edinburgh's Festival Speech Synthesis Systems is a free software multi-lingual speech synthesis workbench that runs on multiple-platforms offering black box text to speech, as well as an open architecture for research in speech synthesis. It designed as a component of large speech technology systems. - -*homepage*: <['http://festvox.org/festival/']> - -version |toolchain ----------|------------------------------------- -``2.5.0``|``GCCcore/12.3.0``, ``GCCcore/9.3.0`` - -### fetchMG - -The program “fetchMG” was written to extract the 40 MGs from genomes and metagenomes in an easy and accurate manner. - -*homepage*: - -version|toolchain --------|------------------------------------ -``1.0``|``GCCcore/8.3.0``, ``GCCcore/9.3.0`` - -### FFAVES - -Functional Feature Amplification Via Entropy Sorting (FFAVES). Use FFAVES to amplify the signal of groups of co-regulating genes in an unsupervised, multivariate manner. By amplifying the signal of genes with correlated expression, while filtering out genes that are randomly expressed, we can identify a subset of genes more predictive of different cell types. The output of FFAVES can then be used in our second algorithm, entropy sort feature weighting (ESFW), to create a ranked list of genes that are most likely to pertain to distinct sub-populations of cells in an scRNA-seq dataset. - -*homepage*: - -version |toolchain --------------|-------------- -``2022.11.1``|``foss/2022a`` - -### FFC - -The FEniCS Form Compiler (FFC) is a compiler for finite element variational forms. - -*homepage*: - -version |versionsuffix |toolchain -------------------|-----------------|-------------- -``2018.1.0`` |``-Python-3.6.4``|``foss/2018a`` -``2019.1.0.post0``|``-Python-3.7.4``|``foss/2019b`` - -### FFLAS-FFPACK - -Finite Field Linear Algebra Subroutines / Package - -*homepage*: - -version |toolchain ----------|------------------------------ -``2.2.0``|``foss/2016a`` -``2.5.0``|``gfbf/2022a``, ``gfbf/2023b`` - -### FFmpeg - -A complete, cross-platform solution to record, convert and stream audio and video. - -*homepage*: - -version |toolchain ------------|--------------------------------------------------- -``0.10.16``|``gimkl/2.11.5``, ``intel/2016a`` -``2.8.6`` |``intel/2016a`` -``2.8.7`` |``foss/2016a``, ``intel/2016a`` -``3.0.2`` |``foss/2016a``, ``intel/2016a`` -``3.1.3`` |``foss/2016b``, ``intel/2016b`` -``3.2.4`` |``gimkl/2017a`` -``3.3.1`` |``foss/2016b`` -``3.3.4`` |``intel/2017a`` -``3.4`` |``GCCcore/6.4.0`` -``3.4.1`` |``foss/2017b``, ``intel/2017b`` -``3.4.2`` |``foss/2018a``, ``intel/2018a`` -``3.4.5`` |``foss/2018b`` -``4.0`` |``foss/2018a``, ``intel/2018a`` -``4.0.1`` |``intel/2018a`` -``4.1`` |``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b`` -``4.1.3`` |``GCCcore/8.2.0`` -``4.2.1`` |``GCCcore/8.3.0`` -``4.2.2`` |``GCCcore/9.3.0`` -``4.3.1`` |``GCCcore/10.2.0`` -``4.3.2`` |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``4.4.2`` |``GCCcore/11.3.0`` -``5.0.1`` |``GCCcore/11.3.0`` -``5.1.2`` |``GCCcore/12.2.0`` -``6.0`` |``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### ffmpi - -Fujitsu Compiler based compiler toolchain, including Fujitsu MPI for MPI support. - -*homepage*: <(none)> - -version |toolchain ----------|---------- -``4.5.0``|``system`` - -### ffnet - -Feed-forward neural network solution for python - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``0.8.3``|``-Python-2.7.11``|``intel/2016a`` - -### ffnvcodec - -FFmpeg nvidia headers. Adds support for nvenc and nvdec. Requires Nvidia GPU and drivers to be present (picked up dynamically). - -*homepage*: - -version |toolchain --------------|---------- -``11.1.5.2`` |``system`` -``12.0.16.0``|``system`` -``12.1.14.0``|``system`` - -### fftlib - -A library that intercepts FFTW calls and adds features on top of it. In particular, it enables FFT plan reuse when there are multiple calls for the same geometry. - -*homepage*: - -version |toolchain -------------|-------------------------------- -``20170628``|``gompi/2020b``, ``gompi/2022a`` - -### FFTW - -FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) in one or more dimensions, of arbitrary input size, and of both real and complex data. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.0.0`` |``-fujitsu`` |``FCC/4.5.0`` -``2.1.5`` | |``intel/2016b``, ``intel/2017a``, ``intel/2018b`` -``3.3.4`` | |``gmpich/2016a``, ``gmvapich2/1.7.20``, ``gmvapich2/2016a``, ``gompi/2016.04``, ``gompi/2016.06``, ``gompi/2016.07``, ``gompi/2016a``, ``gompi/2016b``, ``intel/2016a``, ``intel/2016b`` -``3.3.5`` | |``gompi/2016.07``, ``gompi/2016.09``, ``gompi/2016b``, ``intel/2016b`` -``3.3.6`` | |``gimpi/2017b``, ``gimpic/2017b``, ``gompi/2017a``, ``gompi/2017b``, ``gompic/2017b``, ``intel/2016b``, ``intel/2017a``, ``intel/2017b``, ``intelcuda/2017b`` -``3.3.7`` | |``gimkl/2017a``, ``gimpi/2018a``, ``gmpich/2017.08``, ``gompi/2018a``, ``gompic/2018a``, ``intel/2017b``, ``intel/2018.00``, ``intel/2018.01``, ``intel/2018a``, ``iomkl/2018a`` -``3.3.7`` |``-serial`` |``GCC/6.4.0-2.28`` -``3.3.8`` | |``gompi/2018.08``, ``gompi/2018b``, ``gompi/2019a``, ``gompi/2019b``, ``gompi/2020a``, ``gompi/2020b``, ``gompic/2018b``, ``gompic/2019a``, ``gompic/2019b``, ``gompic/2020a``, ``gompic/2020b``, ``iimpi/2020b``, ``intel/2018b``, ``intel/2019a``, ``intel/2019b``, ``intel/2020a``, ``intel/2020b``, ``iomkl/2018b``, ``iomkl/2020b``, ``iompi/2020b`` -``3.3.8`` |``-amd`` |``gompi/2020a`` -``3.3.8`` |``-serial`` |``GCC/9.3.0`` -``3.3.9`` | |``gompi/2021a``, ``intel/2021a`` -``3.3.10``| |``GCC/11.3.0``, ``GCC/12.2.0``, ``GCC/12.3.0``, ``GCC/13.2.0``, ``GCC/13.3.0``, ``NVHPC/22.7-CUDA-11.7.0``, ``gompi/2021b``, ``iimpi/2021b``, ``iimpi/2022a``, ``iimpi/2022b`` - -### FFTW.MPI - -FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) in one or more dimensions, of arbitrary input size, and of both real and complex data. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------ -``3.3.10``|``gompi/2022.05``, ``gompi/2022.10``, ``gompi/2022a``, ``gompi/2022b``, ``gompi/2023.09``, ``gompi/2023a``, ``gompi/2023b``, ``gompi/2024.05``, ``nvompi/2022.07`` - -### fgbio - -A set of tools to analyze genomic data with a focus on Next Generation Sequencing. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|---------- -``1.3.0``| |``system`` -``2.2.1``|``-Java-8`` |``system`` - -### FGSL - -FGSL: A Fortran interface to the GNU Scientific Library - -*homepage*: - -version |toolchain ----------|--------------- -``1.1.0``|``intel/2016b`` - -### FHI-aims - -FHI-aims is an efficient, accurate all-electron, full-potential electronic structure code package for computational molecular and materials science (non-periodic and periodic systems). The code supports DFT (semilocal and hybrid) and many-body perturbation theory. FHI-aims is particularly efficient for molecular systems and nanostructures, while maintaining high numerical accuracy for all production tasks. Production calculations handle up to several thousand atoms and can efficiently use (ten) thousands of cores. - -*homepage*: - -version |toolchain -------------|--------------- -``200112_2``|``intel/2019b`` -``221103`` |``intel/2022a`` - -### FIAT - -The FInite element Automatic Tabulator (FIAT) supports generation of arbitrary order instances of the Lagrange elements on lines, triangles, and tetrahedra. It is also capable of generating arbitrary order instances of Jacobi-type quadrature rules on the same element shapes. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|------------------------------- -``1.6.0`` |``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``2018.1.0``|``-Python-3.6.4`` |``foss/2018a`` -``2019.1.0``|``-Python-3.7.4`` |``foss/2019b`` - -### FIGARO - -FIGARO: An efficient and objective tool for optimizing microbiome rRNA gene trimming parameters. - -*homepage*: - -version |toolchain ----------|--------------- -``1.1.2``|``intel/2020b`` - -### FigureGen - -FigureGen is a Fortran program that creates images for ADCIRC files. It reads mesh files (fort.14, etc.), nodal attributes files (fort.13, etc.) and output files (fort.63, fort.64, maxele.63, etc.). It plots contours, contour lines, and vectors. Using FigureGen, you can go directly from the ADCIRC input and output files to a presentation-quality figure, for one or multiple time snaps. - -*homepage*: - -version |toolchain ----------------|-------------- -``51-20190516``|``foss/2019a`` - -### Fiji - -Fiji is an image processing package—a 'batteries-included' distribution of ImageJ, bundling a lot of plugins which facilitate scientific image analysis. This release is based on ImageJ-2.1.0 and Fiji-2.1.1 - -*homepage*: - -version |versionsuffix|toolchain ------------------|-------------|---------- -``2.9.0`` |``-Java-1.8``|``system`` -``2.9.0`` |``-Java-8`` |``system`` -``20170530`` | |``system`` -``20191119-2057``| |``system`` -``20201104-1356``| |``system`` - -### file - -The file command is 'a file type guesser', that is, a command-line tool that tells you in words what kind of data a file contains. - -*homepage*: - -version |toolchain ---------|---------------------------------------------------------- -``5.17``|``GCC/4.8.2`` -``5.25``|``intel/2016a`` -``5.28``|``foss/2016b`` -``5.30``|``intel/2017a`` -``5.33``|``GCCcore/6.4.0`` -``5.35``|``GCCcore/7.3.0`` -``5.38``|``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``5.39``|``GCCcore/10.2.0`` -``5.40``|``GCCcore/10.3.0`` -``5.41``|``GCCcore/11.2.0`` -``5.43``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### filevercmp - -filevercmp function as in sort --version-sort. - -*homepage*: - -version |toolchain -------------|-------------------------------------------------------------------------------------------------- -``20141119``|``GCCcore/9.3.0`` -``20191210``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### Filtlong - -Filtlong is a tool for filtering long reads by quality. It can take a set of long reads and produce a smaller, better subset. It uses both read length (longer is better) and read identity (higher is better) when choosing which reads pass the filter - -*homepage*: - -version |toolchain ----------|------------------------------ -``0.2.0``|``GCC/10.2.0``, ``foss/2016b`` -``0.2.1``|``GCC/10.3.0`` - -### find_circ - -circRNA detection from RNA-seq reads - -*homepage*: - -version |versionsuffix |toolchain -----------------|------------------|--------------- -``1.2-20170228``|``-Python-2.7.14``|``intel/2017b`` - -### finder - -finder is a gene annotator pipeline which automates the process of downloading short reads, aligning them and using the assembled transcripts to generate gene annotations. - -*homepage*: - -version |toolchain ----------|-------------- -``1.1.0``|``foss/2021b`` - -### findhap - -Find haplotypes and impute genotypes using multiple chip sets and sequence data - -*homepage*: - -version|toolchain --------|---------- -``4`` |``system`` - -### findutils - -findutils: The GNU find, locate, updatedb, and xargs utilities - -*homepage*: - -version |toolchain ----------|------------- -``4.4.2``|``GCC/4.8.2`` - -### fineRADstructure - -A package for population structure inference from RAD-seq data - -*homepage*: - -version |toolchain -------------|--------------- -``20180709``|``intel/2018a`` -``20210514``|``GCC/12.3.0`` - -### fineSTRUCTURE - -fineSTRUCTURE is a fast and powerful algorithm for identifying population structure using dense sequencing data. - -*homepage*: - -version |toolchain ----------|--------------- -``2.1.3``|``intel/2017b`` - -### fio - -Flexible I/O tester - -*homepage*: - -version |toolchain ---------|------------------ -``3.30``|``GCCcore/10.3.0`` -``3.32``|``GCCcore/11.3.0`` -``3.34``|``GCCcore/12.2.0`` -``3.36``|``GCCcore/12.3.0`` - -### Fiona - -Fiona is designed to be simple and dependable. It focuses on reading and writing data in standard Python IO style and relies upon familiar Python types and protocols such as files, dictionaries, mappings, and iterators instead of classes specific to OGR. Fiona can read and write real-world data using multi-layered GIS formats and zipped virtual file systems and integrates readily with other Python GIS packages such as pyproj, Rtree, and Shapely. - -*homepage*: - -version |versionsuffix |toolchain -----------------|-----------------|--------------------------------------------------- -``1.8.13`` |``-Python-3.7.4``|``foss/2019b``, ``fosscuda/2019b``, ``intel/2019b`` -``1.8.13.post1``|``-Python-3.7.2``|``foss/2019a`` -``1.8.16`` |``-Python-3.8.2``|``foss/2020a`` -``1.8.20`` | |``foss/2020b``, ``foss/2021a``, ``intel/2020b`` -``1.8.21`` | |``foss/2021b``, ``foss/2022a`` -``1.9.2`` | |``foss/2022b`` -``1.9.5`` | |``foss/2023a`` - -### Firefox - -Firefox is a free, open source Web browser for Windows, Linux and Mac OS X. It is based on the Mozilla code base and offers customization options and features such as its capability to block pop-up windows, tabbed browsing, privacy and security measures, smart searching, and RSS live bookmarks. - -*homepage*: - -version |toolchain -----------|---------- -``44.0.2``|``system`` - -### FIRESTARTER - -FIRESTARTER: A Processor Stress Test Utility. FIRESTARTER maximizes the energy consumption of 64-Bit x86 processors by generating heavy load on the execution units as well as transferring data between the cores and multiple levels of the memory hierarchy. - -*homepage*: - -version|toolchain --------|------------------------------------ -``2.0``|``gcccuda/2020a``, ``gcccuda/2020b`` - -### FireWorks - -FireWorks helps run calculation workflows, with a centralized workflow server controlling many worker nodes. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``1.4.2``|``-Python-2.7.13``|``intel/2017a`` - -### FIt-SNE - -t-distributed stochastic neighbor embedding (t-SNE) is widely used for visualizing single-cell RNA-sequencing (scRNA-seq) data, but it scales poorly to large datasets. We dramatically accelerate t-SNE, obviating the need for data downsampling, and hence allowing visualization of rare cell populations. Furthermore, we implement a heatmap-style visualization for scRNA-seq based on one-dimensional t-SNE for simultaneously visualizing the expression patterns of thousands of genes. - -*homepage*: - -version |toolchain ----------|--------------- -``1.1.0``|``gompi/2018b`` - -### FIX - -FIX attempts to auto-classify ICA components into "good" vs "bad" components, so that the bad components can be removed from the 4D FMRI data. - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------------|-------------- -``1.06.12``|``-Octave-Python-3.7.2``|``foss/2019a`` - -### fixesproto - -X.org FixesProto protocol headers. - -*homepage*: - -version|toolchain --------|------------------------------------------------- -``5.0``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` - -### FLAC - -FLAC stands for Free Lossless Audio Codec, an audio format similar to MP3, but lossless, meaning that audio is compressed in FLAC without any loss in quality. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------- -``1.3.3``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``1.3.4``|``GCCcore/11.3.0`` -``1.4.2``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### FLAIR - -FLAIR (Full-Length Alternative Isoform analysis of RNA) for the correction, isoform definition, and alternative splicing analysis of noisy reads. FLAIR has primarily been used for nanopore cDNA, native RNA, and PacBio sequencing reads. - -*homepage*: - -version |versionsuffix |toolchain -------------------|-----------------|-------------- -``1.5`` |``-Python-3.7.4``|``foss/2019b`` -``1.5.1-20200630``|``-Python-3.7.4``|``foss/2019b`` - -### flair-NLP - -A very simple framework for state-of-the-art NLP - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|-------------- -``0.11.3``| |``foss/2021a`` -``0.11.3``|``-CUDA-11.3.1``|``foss/2021a`` - -### FLANN - -FLANN is a library for performing fast approximate nearest neighbor searches in high dimensional spaces. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``1.8.4``|``-Python-2.7.11``|``intel/2016a`` -``1.8.4``|``-Python-2.7.14``|``intel/2017b`` -``1.8.4``|``-Python-3.8.2`` |``foss/2020a`` -``1.9.1``|``-Python-3.8.2`` |``foss/2020a`` - -### FLASH - -FLASH (Fast Length Adjustment of SHort reads) is a very fast and accurate software tool to merge paired-end reads from next-generation sequencing experiments. FLASH is designed to merge pairs of reads when the original DNA fragments are shorter than twice the length of reads. The resulting longer reads can significantly improve genome assemblies. They can also improve transcriptome assembly when FLASH is used to merge RNA-seq data. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------ -``1.2.11``|``GCC/8.3.0``, ``foss/2016a``, ``foss/2018a``, ``foss/2018b`` -``2.2.00``|``GCC/11.2.0``, ``GCCcore/12.2.0``, ``foss/2018b``, ``foss/2020b`` - -### Flask - -Flask is a lightweight WSGI web application framework. It is designed to make getting started quick and easy, with the ability to scale up to complex applications. This module includes the Flask extensions: Flask-Cors - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------ -``1.0.2``|``-Python-3.6.6``|``foss/2018b`` -``1.1.2``| |``GCCcore/10.2.0`` -``1.1.2``|``-Python-3.7.4``|``GCCcore/8.3.0`` -``1.1.2``|``-Python-3.8.2``|``GCCcore/9.3.0`` -``1.1.4``| |``GCCcore/10.3.0`` -``2.0.2``| |``GCCcore/11.2.0`` -``2.2.2``| |``GCCcore/11.3.0`` -``2.2.3``| |``GCCcore/12.2.0`` -``2.3.3``| |``GCCcore/12.3.0`` -``3.0.0``| |``GCCcore/13.2.0`` - -### flatbuffers - -FlatBuffers: Memory Efficient Serialization Library - -*homepage*: - -version |toolchain ------------|---------------------------------------------------------- -``1.12.0`` |``GCCcore/10.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``2.0.0`` |``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``2.0.7`` |``GCCcore/11.3.0`` -``23.1.4`` |``GCCcore/12.2.0`` -``23.5.26``|``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### flatbuffers-python - -Python Flatbuffers runtime library. - -*homepage*: - -version |versionsuffix |toolchain ------------|-----------------|---------------------------------------------------------- -``1.12`` | |``GCCcore/10.2.0`` -``1.12`` |``-Python-3.7.4``|``GCCcore/8.3.0`` -``2.0`` | |``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``23.1.4`` | |``GCCcore/12.2.0`` -``23.5.26``| |``GCCcore/12.3.0`` - -### FLEUR - -FLEUR is a feature-full, freely available FLAPW (full potential linearized augmented planewave) code, based on density-functional theory. - -*homepage*: - -version |toolchain ----------|--------------- -``0.26e``|``intel/2016a`` - -### flex - -Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner, sometimes called a tokenizer, is a program which recognizes lexical patterns in text. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.5.35``|``system`` -``2.5.38``|``GCC/4.8.2`` -``2.5.39``|``GCC/4.9.2``, ``GCC/4.9.2-binutils-2.25``, ``GCC/4.9.3``, ``GCC/4.9.3-binutils-2.25``, ``GCC/5.1.0-binutils-2.25``, ``GCCcore/4.9.2``, ``GCCcore/4.9.3``, ``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GNU/4.9.3-2.25``, ``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016.02-GCC-4.9``, ``intel/2016a``, ``intel/2016b``, ``system`` -``2.6.0`` |``GCC/4.9.2``, ``GCCcore/4.9.3``, ``GCCcore/4.9.4``, ``GCCcore/5.3.0``, ``GCCcore/5.4.0``, ``GCCcore/6.1.0``, ``GCCcore/6.2.0``, ``foss/2016a``, ``foss/2016b``, ``gimkl/2.11.5``, ``intel/2016a``, ``intel/2016b``, ``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25``, ``system`` -``2.6.2`` |``intel/2016b`` -``2.6.3`` |``GCCcore/5.4.0``, ``GCCcore/6.3.0``, ``GCCcore/7.1.0``, ``gimkl/2017a``, ``system`` -``2.6.4`` |``FCC/4.5.0``, ``GCCcore/10.1.0``, ``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.1.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/11.4.0``, ``GCCcore/12.1.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.1.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0``, ``GCCcore/14.1.0``, ``GCCcore/5.5.0``, ``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.2.0``, ``GCCcore/7.3.0``, ``GCCcore/7.4.0``, ``GCCcore/8.1.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/8.4.0``, ``GCCcore/9.1.0``, ``GCCcore/9.2.0``, ``GCCcore/9.3.0``, ``GCCcore/9.4.0``, ``GCCcore/9.5.0``, ``GCCcore/system``, ``system`` - -### Flexbar - -The program Flexbar preprocesses high-throughput sequencing data efficiently - -*homepage*: - -version |toolchain ----------|-------------- -``3.5.0``|``foss/2018b`` - -### FlexiBLAS - -FlexiBLAS is a wrapper library that enables the exchange of the BLAS and LAPACK implementation used by a program without recompiling or relinking it. - -*homepage*: - -version |toolchain ----------|------------------------------------------ -``3.0.4``|``GCC/10.3.0``, ``GCC/11.2.0`` -``3.1.3``|``GCC/11.2.0`` -``3.2.0``|``GCC/11.3.0``, ``NVHPC/22.7-CUDA-11.7.0`` -``3.2.1``|``GCC/12.2.0`` -``3.3.1``|``GCC/12.3.0``, ``GCC/13.2.0`` -``3.4.4``|``GCC/13.3.0`` - -### FlexiDot - -Highly customizable, ambiguity-aware dotplots for visual sequence analyses - -*homepage*: - -version |versionsuffix |toolchain ---------|------------------|-------------- -``1.06``|``-Python-2.7.15``|``foss/2018b`` - -### Flink - -Apache Flink is a framework and distributed processing engine for stateful computations over unbounded and bounded data streams. Flink has been designed to run in all common cluster environments, perform computations at in-memory speed and at any scale. - -*homepage*: - -version |versionsuffix |toolchain -----------|-------------------|---------- -``1.11.2``|``-bin-scala_2.11``|``system`` - -### FLINT - -FLINT (Fast Library for Number Theory) is a C library in support of computations in number theory. Operations that can be performed include conversions, arithmetic, computing GCDs, factoring, solving linear systems, and evaluating special functions. In addition, FLINT provides various low-level routines for fast arithmetic. FLINT is extensively documented and tested. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------------------------- -``2.5.2``|``GCC/7.3.0-2.30``, ``GCC/8.2.0-2.31.1``, ``GCC/8.3.0``, ``iccifort/2018.3.222-GCC-7.3.0-2.30`` -``2.7.1``|``GCC/10.3.0`` -``2.8.4``|``foss/2021b`` -``2.9.0``|``gfbf/2022a``, ``gfbf/2022b`` -``3.1.1``|``gfbf/2023b`` - -### flit - -A simple packaging tool for simple packages. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``3.9.0``|``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### flook - -The fortran-Lua-hook library. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------------------------------------------------------------------------------- -``0.8.1``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``iccifort/2020.4.304``, ``intel-compilers/2021.2.0``, ``intel-compilers/2021.4.0`` - -### flowFDA - -R package for analysing flow cytometry experiments with model based clustering, functional principal component analysis - -*homepage*: - -version |versionsuffix|toolchain ------------------|-------------|-------------- -``0.99-20220602``|``-R-4.2.1`` |``foss/2022a`` - -### FLTK - -FLTK is a cross-platform C++ GUI toolkit for UNIX/Linux (X11), Microsoft Windows, and MacOS X. FLTK provides modern GUI functionality without the bloat and supports 3D graphics via OpenGL and its built-in GLUT emulation. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.3.3``|``foss/2016a``, ``foss/2016b``, ``intel/2016a``, ``intel/2016b`` -``1.3.4``|``foss/2017b``, ``foss/2018a``, ``foss/2018b``, ``fosscuda/2017b``, ``fosscuda/2018a``, ``fosscuda/2018b``, ``intel/2017a``, ``intel/2017b``, ``intel/2018a``, ``intel/2018b``, ``intelcuda/2017b`` -``1.3.5``|``GCC/8.2.0-2.31.1``, ``GCC/8.3.0``, ``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``1.3.6``|``GCCcore/10.3.0`` -``1.3.7``|``GCCcore/11.2.0`` -``1.3.8``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``1.3.9``|``GCCcore/13.2.0`` - -### FLUENT - -ANSYS FLUENT software contains the broad physical modeling capabilities needed to model flow, turbulence, heat transfer, and reactions for industrial applications ranging from air flow over an aircraft wing to combustion in a furnace, from bubble columns to oil platforms, from blood flow to semiconductor manufacturing, and from clean room design to wastewater treatment plants. - -*homepage*: - -version |toolchain -----------|---------- -``14.5`` |``system`` -``15.0.7``|``system`` -``16.0`` |``system`` -``17.1`` |``system`` -``18.0`` |``system`` -``18.1`` |``system`` -``18.2`` |``system`` -``2019R3``|``system`` -``2021R1``|``system`` -``2021R2``|``system`` - -### Flye - -Flye is a de novo assembler for long and noisy reads, such as those produced by PacBio and Oxford Nanopore Technologies. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------------------------------------- -``2.4`` |``-Python-2.7.15``|``intel/2018b`` -``2.6`` |``-Python-3.7.2`` |``foss/2019a`` -``2.6`` |``-Python-3.7.4`` |``intel/2019b`` -``2.8.1``|``-Python-3.8.2`` |``intel/2020a`` -``2.8.2``|``-Python-3.8.2`` |``foss/2020a`` -``2.8.3``| |``GCC/10.2.0``, ``iccifort/2020.4.304`` -``2.9`` | |``GCC/10.3.0``, ``intel-compilers/2021.2.0`` -``2.9.1``| |``GCC/11.2.0`` -``2.9.2``| |``GCC/11.3.0`` -``2.9.3``| |``GCC/10.3.0``, ``GCC/12.3.0`` - -### FMILibrary - -FMI library is intended as a foundation for applications interfacing FMUs (Functional Mockup Units) that follow FMI Standard. This version of the library supports FMI 1.0 and FMI2.0. See http://www.fmi-standard.org/ - -*homepage*: - -version |toolchain ----------|--------------- -``2.0.3``|``intel/2018b`` - -### FMM3D - -Flatiron Institute Fast Multipole Libraries: a set of libraries to compute N-body interactions governed by the Laplace and Helmholtz equations, to a specified precision, in three dimensions, on a multi-core shared-memory machine. - -*homepage*: - -version |toolchain -------------|-------------- -``1.0.4`` |``foss/2023a`` -``20211018``|``foss/2020b`` - -### FMPy - -FMPy is a free Python library to simulate Functional Mock-up Units (FMUs). - -*homepage*: - -version |toolchain ----------|-------------- -``0.3.2``|``foss/2021a`` - -### FMRIprep - -FMRIprep is a functional magnetic resonance imaging (fMRI) data preprocessing pipeline that is designed to provide an easily accessible, state-of-the-art interface that is robust to variations in scan acquisition protocols and that requires minimal user input, while providing easily interpretable and comprehensive error and output reporting. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``1.1.8``|``-Python-3.6.6``|``foss/2018b`` -``1.4.1``|``-Python-3.6.6``|``foss/2018b`` - -### FMS - -The Flexible Modeling System (FMS) is a software framework for supporting the efficient development, construction, execution, and scientific interpretation of atmospheric, oceanic, and climate system models. - -*homepage*: - -version |toolchain ------------|-------------------------------- -``2022.02``|``gompi/2022a``, ``iimpi/2022a`` - -### fmt - -fmt (formerly cppformat) is an open-source formatting library. - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``3.0.1`` |``foss/2016b``, ``intel/2016b`` -``3.0.2`` |``GCCcore/6.4.0``, ``intel/2017a`` -``5.3.0`` |``GCCcore/7.3.0``, ``GCCcore/8.2.0`` -``6.2.1`` |``GCCcore/9.3.0`` -``7.0.3`` |``GCCcore/9.3.0`` -``7.1.1`` |``GCCcore/11.2.0`` -``8.1.1`` |``GCCcore/11.2.0`` -``9.1.0`` |``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``10.0.0``|``GCCcore/12.3.0`` -``10.1.0``|``GCCcore/12.3.0`` -``10.2.0``|``GCCcore/13.2.0`` - -### FoBiS - -A Fortran Building System for automatic building modern Fortran projects - -*homepage*: - -version |toolchain ----------|------------------ -``3.0.5``|``GCCcore/10.3.0`` - -### FoldX - -FoldX is used to provide a fast and quantitative estimation of the importance of the interactions contributing to the stability of proteins and protein complexes. - -*homepage*: - -version |toolchain ----------------|---------- -``2.5.2`` |``system`` -``3.0-beta5.1``|``system`` -``3.0-beta6`` |``system`` -``3.0-beta6.1``|``system`` - -### fontconfig - -Fontconfig is a library designed to provide system-wide font configuration, customization and application access. - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|-------------------------------------------------------------------------------------- -``2.11.94``| |``foss/2016a``, ``intel/2016a`` -``2.11.95``| |``foss/2016a``, ``intel/2016a`` -``2.12.1`` | |``GCCcore/5.4.0``, ``GCCcore/6.3.0``, ``foss/2016b``, ``gimkl/2017a``, ``intel/2016b`` -``2.12.1`` |``-libpng-1.6.29``|``GCCcore/6.3.0`` -``2.12.4`` | |``GCCcore/6.4.0`` -``2.12.6`` | |``GCCcore/6.4.0`` -``2.13.0`` | |``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``2.13.1`` | |``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``2.13.92``| |``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``2.13.93``| |``GCCcore/10.3.0`` -``2.13.94``| |``GCCcore/11.2.0`` -``2.14.0`` | |``GCCcore/11.3.0`` -``2.14.1`` | |``GCCcore/12.2.0`` -``2.14.2`` | |``GCCcore/12.3.0``, ``GCCcore/13.2.0`` -``2.15.0`` | |``GCCcore/13.3.0`` - -### fontsproto - -X11 font extension wire protocol - -*homepage*: - -version |toolchain ----------|------------------------------------------------- -``2.1.3``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` - -### forbear - -A Fortran Library for building and running fancy progress bar - -*homepage*: - -version |toolchain ----------|-------------- -``1.2.0``|``GCC/10.3.0`` - -### FORD - -FORD is an automatic documentation generator for modern Fortran programs - -*homepage*: - -version |toolchain -----------|------------------ -``6.1.1`` |``GCCcore/10.2.0`` -``6.1.6`` |``GCCcore/10.3.0`` -``6.1.15``|``GCCcore/11.3.0`` - -### foss - -GNU Compiler Collection (GCC) based compiler toolchain, including OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. - -*homepage*: - -version |toolchain ------------|---------- -``2016.04``|``system`` -``2016.06``|``system`` -``2016.07``|``system`` -``2016.09``|``system`` -``2016a`` |``system`` -``2016b`` |``system`` -``2017a`` |``system`` -``2017b`` |``system`` -``2018.08``|``system`` -``2018a`` |``system`` -``2018b`` |``system`` -``2019a`` |``system`` -``2019b`` |``system`` -``2020a`` |``system`` -``2020b`` |``system`` -``2021a`` |``system`` -``2021b`` |``system`` -``2022.05``|``system`` -``2022.10``|``system`` -``2022a`` |``system`` -``2022b`` |``system`` -``2023.09``|``system`` -``2023a`` |``system`` -``2023b`` |``system`` -``2024.05``|``system`` - -### fosscuda - -GCC based compiler toolchain __with CUDA support__, and including OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. - -*homepage*: <(none)> - -version |toolchain ----------|---------- -``2017b``|``system`` -``2018a``|``system`` -``2018b``|``system`` -``2019a``|``system`` -``2019b``|``system`` -``2020a``|``system`` -``2020b``|``system`` - -### FoX - -FoX is an XML library written in Fortran 95. It allows software developers to read, write and modify XML documents from Fortran applications without the complications of dealing with multi-language development. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------- -``4.1.2``|``GCC/11.2.0``, ``GCC/9.3.0``, ``intel/2017b``, ``intel/2018a`` - -### FOX-Toolkit - -FOX is a C++ based Toolkit for developing Graphical User Interfaces easily and effectively. It offers a wide, and growing, collection of Controls, and provides state of the art facilities such as drag and drop, selection, as well as OpenGL widgets for 3D graphical manipulation. FOX also implements icons, images, and user-convenience features such as status line help, and tooltips. - -*homepage*: - -version |toolchain -----------|------------------------------------- -``1.6.57``|``GCCcore/11.2.0``, ``GCCcore/9.3.0`` - -### fplll - -fplll contains implementations of several lattice algorithms. The implementation relies on floating-point orthogonalization, and the 1982 paper from Lenstra, Lenstra Jr. and Lovasz (LLL) is central to the code, hence the name. - -*homepage*: - -version |toolchain ----------|------------------ -``5.4.5``|``GCCcore/11.3.0`` - -### FPM - -Effing package management! Build packages for multiple platforms (deb, rpm, etc) with great ease and sanity. - -*homepage*: - -version |versionsuffix |toolchain -----------|---------------|------------------ -``1.3.3`` |``-Ruby-2.1.6``|``system`` -``1.15.1``| |``GCCcore/12.2.0`` - -### fpocket - -The fpocket suite of programs is a very fast open source protein pocket detection algorithm based on Voronoi tessellation. The platform is suited for the scientific community willing to develop new scoring functions and extract pocket descriptors on a large scale level. - -*homepage*: - -version |toolchain ------------|--------------- -``3.1.4.2``|``gompi/2020a`` - -### fpylll - -A Python wrapper for fplll. - -*homepage*: - -version |toolchain ----------|-------------- -``0.5.9``|``foss/2022a`` - -### fqtrim - -fqtrim is a versatile stand-alone utility that can be used to trim adapters, poly-A tails, terminal unknown bases (Ns) and low quality 3' regions in reads from high-throughput next-generation sequencing machines. - -*homepage*: - -version |toolchain ----------|--------------- -``0.9.4``|``intel/2016b`` -``0.9.5``|``intel/2017a`` - -### fqzcomp - -Fqzcomp is a basic fastq compressor, designed primarily for high performance. Despite that it is comparable to bzip2 for compression levels. - -*homepage*: - -version|toolchain --------|------------- -``4.6``|``GCC/4.8.2`` - -### FragGeneScan - -FragGeneScan is an application for finding (fragmented) genes in short reads. - -*homepage*: - -version |toolchain ---------|----------------------------------------------------------------------------------------------------------------- -``1.31``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/8.2.0``, ``foss/2018b`` - -### FragPipe - -FragPipe is a Java Graphical User Interface (GUI) for a suite of computational tools enabling comprehensive analysis of mass spectrometry-based proteomics data. - -*homepage*: - -version |versionsuffix|toolchain ---------|-------------|---------- -``20.0``|``-Java-11`` |``system`` - -### FRANz - -A fast and flexible parentage inference program for natural populations. - -*homepage*: - -version |toolchain ----------|-------------- -``2.0.0``|``foss/2018a`` - -### FreeBarcodes - -A package for the generation and decoding of FREE divergence error-correcting DNA barcodes - -*homepage*: - -version |toolchain -----------|-------------- -``3.0.a5``|``foss/2021b`` - -### freebayes - -Bayesian haplotype-based genetic polymorphism discovery and genotyping. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``1.3.5``| |``GCC/10.2.0`` -``1.3.5``|``-Python-3.8.2``|``GCC/9.3.0`` -``1.3.6``|``-R-4.1.0`` |``foss/2021a`` -``1.3.6``|``-R-4.1.2`` |``foss/2021b`` -``1.3.7``|``-R-4.3.2`` |``gfbf/2023a`` - -### FreeFEM - -FreeFEM offers a fast interpolation algorithm and a language for the manipulation of data on multiple meshes. - -*homepage*: - -version|versionsuffix |toolchain --------|-----------------|-------------- -``4.5``|``-Python-3.7.4``|``foss/2019b`` - -### FreeFem++ - -FreeFem++ is a partial differential equation solver. It has its own language. freefem scripts can solve multiphysics non linear systems in 2D and 3D. - -*homepage*: - -version |versionsuffix |toolchain -----------|--------------------|--------------- -``3.58`` |``-downloaded-deps``|``foss/2017b`` -``3.60`` |``-downloaded-deps``|``intel/2018a`` -``3.61-1``|``-downloaded-deps``|``intel/2018a`` - -### freeglut - -freeglut is a completely OpenSourced alternative to the OpenGL Utility Toolkit (GLUT) library. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``3.0.0``| |``GCCcore/8.2.0``, ``foss/2016a``, ``foss/2016b``, ``foss/2017b``, ``foss/2018a``, ``foss/2018b``, ``intel/2016a``, ``intel/2016b``, ``intel/2017a``, ``intel/2017b``, ``intel/2018a`` -``3.0.0``|``-Mesa-11.2.1``|``foss/2016a``, ``intel/2016a`` -``3.2.1``| |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``3.2.2``| |``GCCcore/11.3.0`` -``3.4.0``| |``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### FreeImage - -FreeImage is an Open Source library project for developers who would like to support popular graphics image formats like PNG, BMP, JPEG, TIFF and others as needed by today's multimedia applications. FreeImage is easy to use, fast, multithreading safe. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``3.18.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/7.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` - -### FreeSASA - -FreeSASA is a command line tool, C-library and Python module for calculating solvent accessible surface areas (SASA). - -*homepage*: - -version |toolchain ----------|------------- -``2.0.3``|``GCC/8.3.0`` - -### FreeSurfer - -FreeSurfer is a set of tools for analysis and visualization of structural and functional brain imaging data. FreeSurfer contains a fully automatic structural imaging stream for processing cross sectional and longitudinal data. - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------|---------- -``5.3.0``|``-centos4_x86_64``|``system`` -``5.3.0``|``-centos6_x86_64``|``system`` -``6.0.0``|``-centos6_x86_64``|``system`` -``6.0.1``|``-centos6_x86_64``|``system`` -``7.1.1``|``-centos6_x86_64``|``system`` -``7.1.1``|``-centos7_x86_64``|``system`` -``7.1.1``|``-centos8_x86_64``|``system`` -``7.2.0``|``-centos7_x86_64``|``system`` -``7.2.0``|``-centos8_x86_64``|``system`` -``7.2.0``|``-ubuntu18_amd64``|``system`` -``7.3.2``|``-centos7_x86_64``|``system`` -``7.3.2``|``-centos8_x86_64``|``system`` -``7.4.0``|``-centos8_x86_64``|``system`` -``7.4.0``|``-ubuntu20_amd64``|``system`` -``7.4.0``|``-ubuntu22_amd64``|``system`` -``7.4.1``|``-centos7_x86_64``|``system`` -``7.4.1``|``-centos8_x86_64``|``system`` -``7.4.1``|``-ubuntu20_amd64``|``system`` -``7.4.1``|``-ubuntu22_amd64``|``system`` - -### FreeTDS - -FreeTDS is a set of libraries for Unix and Linux that allows your programs to natively talk to Microsoft SQL Server and Sybase databases. - -*homepage*: - -version |toolchain ----------|------------------ -``1.3.3``|``GCCcore/10.3.0`` - -### freetype - -FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display servers, font conversion tools, text image generation tools, and many other products as well. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|---------------------------------------------------------------------- -``2.6.2`` | |``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` -``2.6.3`` | |``foss/2016a``, ``intel/2016a`` -``2.6.5`` | |``GCCcore/4.9.3``, ``GCCcore/5.4.0``, ``foss/2016b``, ``intel/2016b`` -``2.7`` | |``foss/2016b``, ``intel/2016b`` -``2.7.1`` | |``GCCcore/5.4.0``, ``GCCcore/6.3.0``, ``gimkl/2017a``, ``intel/2016b`` -``2.7.1`` |``-libpng-1.6.29``|``GCCcore/6.3.0`` -``2.8`` | |``GCCcore/6.4.0`` -``2.8.1`` | |``GCCcore/6.4.0`` -``2.9`` | |``GCCcore/6.4.0`` -``2.9.1`` | |``GCCcore/7.3.0``, ``GCCcore/8.2.0`` -``2.10.1``| |``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``2.10.3``| |``GCCcore/10.2.0`` -``2.10.4``| |``GCCcore/10.3.0`` -``2.11.0``| |``GCCcore/11.2.0`` -``2.12.1``| |``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``2.13.0``| |``GCCcore/12.3.0`` -``2.13.2``| |``GCCcore/13.2.0``, ``GCCcore/13.3.0`` - -### freetype-py - -Python binding for the freetype library - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------ -``2.2.0``|``-Python-3.7.4``|``GCCcore/8.3.0`` -``2.4.0``| |``GCCcore/11.3.0`` - -### FreeXL - -FreeXL is an open source library to extract valid data from within an Excel (.xls) spreadsheet. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------- -``1.0.2``|``foss/2016b``, ``intel/2016b`` -``1.0.3``|``GCCcore/6.4.0`` -``1.0.5``|``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``1.0.6``|``GCCcore/11.2.0`` - -### freud-analysis - -The freud Python library provides a simple, flexible, powerful set of tools for analyzing trajectories obtained from molecular dynamics or Monte Carlo simulations. High performance, parallelized C++ is used to compute standard tools such as radial distribution functions, correlation functions, order parameters, and clusters, as well as original analysis methods including potentials of mean force and torque (PMFTs) and local environment matching. The freud library supports many input formats and outputs NumPy arrays, enabling integration with the scientific Python ecosystem for many typical materials science workflows. - -*homepage*: - -version |toolchain ----------|-------------- -``2.6.2``|``foss/2020b`` - -### FriBidi - -The Free Implementation of the Unicode Bidirectional Algorithm. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------- -``1.0.1`` |``foss/2018a``, ``intel/2018a`` -``1.0.2`` |``GCCcore/6.4.0`` -``1.0.5`` |``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``1.0.9`` |``GCCcore/9.3.0`` -``1.0.10``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``1.0.12``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``1.0.13``|``GCCcore/13.2.0`` - -### FRUIT - -FORTRAN Unit Test Framework (FRUIT) - -*homepage*: - -version |versionsuffix |toolchain ----------|---------------|------------------------------- -``3.4.3``|``-Ruby-2.5.1``|``foss/2018a``, ``intel/2018a`` - -### FRUIT_processor - -FORTRAN Unit Test Framework (FRUIT) - -*homepage*: - -version |versionsuffix |toolchain ----------|---------------|------------------------------- -``3.4.3``|``-Ruby-2.5.1``|``foss/2018a``, ``intel/2018a`` - -### FSL - -FSL is a comprehensive library of analysis tools for FMRI, MRI and DTI brain imaging data. - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------------------|------------------------------------------------ -``5.0.9`` | |``intel/2016a`` -``5.0.9`` |``-Mesa-11.2.1`` |``intel/2016a`` -``5.0.9`` |``-centos6_64`` |``system`` -``5.0.10`` | |``foss/2017b``, ``intel/2017a``, ``intel/2017b`` -``5.0.11`` | |``foss/2018b`` -``5.0.11`` |``-Python-3.6.6`` |``foss/2018b`` -``6.0.1`` |``-Python-2.7.15`` |``foss/2019a`` -``6.0.1`` |``-Python-3.7.2`` |``foss/2019a`` -``6.0.2`` |``-Python-2.7.15`` |``foss/2018b``, ``foss/2019a`` -``6.0.2`` |``-Python-2.7.15-CUDA-9.2.88``|``foss/2018b`` -``6.0.2`` |``-Python-3.7.2`` |``foss/2019a`` -``6.0.3`` |``-Python-3.7.4`` |``foss/2019b`` -``6.0.4`` |``-Python-3.7.4`` |``foss/2019b`` -``6.0.5.1``| |``foss/2021a`` - -### FSLeyes - -FSLeyes is the FSL image viewer. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``0.15.0``|``-Python-2.7.13``|``intel/2017a`` - -### fsom - -A tiny C library for managing SOM (Self-Organizing Maps) neural networks. - -*homepage*: - -version |toolchain -------------|----------------------------------------------------------------------------- -``20141119``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/9.3.0`` -``20151117``|``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### FSON - -Fortran 95 JSON Parser - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.5``|``GCC/10.2.0`` - -### ftfy - -ftfy (fixes text for you) fixes Unicode that’s broken in various ways. The goal of ftfy is to take in bad Unicode and output good Unicode, for use in your Unicode-aware code. This is different from taking in non-Unicode and outputting Unicode, which is not a goal of ftfy. It also isn’t designed to protect you from having to write Unicode-aware code. ftfy helps those who help themselves. - -*homepage*: - -version |toolchain ----------|------------------ -``6.1.1``|``GCCcore/11.3.0`` - -### FTGL - -FTGL is a free open source library to enable developers to use arbitrary fonts in their OpenGL (www.opengl.org) applications. - -*homepage*: - -version |toolchain --------------|---------------------------------------------------------------------------------------------------------- -``2.1.3-rc5``|``GCCcore/10.2.0``, ``GCCcore/8.2.0``, ``foss/2017b``, ``foss/2018a``, ``fosscuda/2018b``, ``intel/2017b`` -``2.4.0`` |``GCCcore/11.3.0`` - -### fugue - -Fugue is a unified interface for distributed computing that lets users execute Python, Pandas, and SQL code on Spark, Dask, and Ray with minimal rewrites. Fugue is most commonly used for: Parallelizing or scaling existing Python and Pandas code by bringing it to Spark, Dask, or Ray with minimal rewrites. Using FugueSQL to define end-to-end workflows on top of Pandas, Spark, and Dask DataFrames. FugueSQL is an enhanced SQL interface that can invoke Python code. - -*homepage*: - -version |toolchain ----------|-------------- -``0.8.7``|``foss/2022a`` - -### Fujitsu - -Toolchain using Fujitsu compilers and libraries. - -*homepage*: <(none)> - -version |toolchain ----------|---------- -``21.05``|``system`` - -### fullrmc - -Reverse Monte Carlo (RMC) is probably best known for its applications in condensed matter physics and solid state chemistry. fullrmc which stands for FUndamental Library Language for Reverse Monte Carlo is different than traditional RMC but a stochastic modelling method to solve an inverse problem whereby an atomic/molecular model is adjusted until its atoms position havei the greatest consistency with a set of experimental data. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``3.2.0``|``-Python-2.7.14``|``intel/2018a`` - -### fumi_tools - -This tool is intended to deduplicate UMIs from single-end and paired-end sequencing data. Reads are considered identical when their UMIs have the same sequence, they have the same length and map at the same position. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------------------ -``0.18.2``| |``GCC/10.3.0``, ``GCC/11.2.0`` -``0.18.2``|``-Python-3.6.6``|``foss/2018b`` - -### funannotate - -funannotate is a pipeline for genome annotation (built specifically for fungi, but will also work with higher eukaryotes) - -*homepage*: - -version |toolchain -----------|-------------- -``1.8.13``|``foss/2021b`` - -### FunGAP - -Fungal Genome Annotation Pipeline using evidence-based gene model evaluation. - -*homepage*: - -version |toolchain ----------|-------------- -``1.1.1``|``foss/2022a`` - -### FUNWAVE-TVD - -FUNWAVE–TVD is the TVD version of the fully nonlinear Boussinesq wave model (FUNWAVE) initially developed by Kirby et al. - -*homepage*: - -version |versionsuffix|toolchain -----------------|-------------|--------------- -``3.1-20170525``| |``intel/2017a`` -``3.1-20170525``|``-no-storm``|``intel/2017a`` - -### FUSE - -The reference implementation of the Linux FUSE (Filesystem in Userspace) interface - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``3.2.6`` |``intel/2018a`` -``3.4.1`` |``foss/2018a`` -``3.14.1``|``GCCcore/11.3.0``, ``GCCcore/12.2.0`` - -### FuSeq - -FuSeq is a novel method to discover fusion genes from paired-end RNA sequencing data. - -*homepage*: - -version |toolchain ----------|--------------- -``1.1.2``|``gompi/2019b`` - -### FusionCatcher - -FusionCatcher searches for novel/known somatic fusion genes, translocations, and chimeras in RNA-seq data (paired-end or single-end reads from Illumina NGS platforms like Solexa/HiSeq/NextSeq/MiSeq/MiniSeq) from diseased samples. - -*homepage*: - -version |versionsuffix |toolchain ---------|------------------|-------------- -``1.20``|``-Python-2.7.16``|``foss/2019b`` -``1.30``|``-Python-2.7.16``|``foss/2019b`` - -### futhark - -Futhark is a small programming language designed to be compiled to efficient parallel code. It is a statically typed, data-parallel, and purely functional array language in the ML family, and comes with a heavily optimising ahead-of-time compiler that presently generates GPU code via CUDA and OpenCL, although the language itself is hardware-agnostic and can also run on multicore CPUs - -*homepage*: - -version |toolchain -----------|---------- -``0.19.5``|``system`` - -### futile - -The FUTILE project (Fortran Utilities for the Treatment of Innermost Level of Executables) is a set of modules and wrapper that encapsulate the most common low-level operations of a Fortran code. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------------------------------------------- -``1.8.3``|``foss/2020b``, ``foss/2021a``, ``foss/2021b``, ``foss/2022a``, ``intel/2020b``, ``intel/2021a``, ``intel/2021b`` - -### future - -python-future is the missing compatibility layer between Python 2 and Python 3. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------------------------ -``0.16.0``|``-Python-2.7.14``|``foss/2018a``, ``intel/2017b``, ``intel/2018a`` -``0.16.0``|``-Python-2.7.15``|``foss/2018b``, ``intel/2018b`` -``0.16.0``|``-Python-3.6.3`` |``intel/2017b`` -``0.16.0``|``-Python-3.6.6`` |``foss/2018b`` - -### fxtract - -Extract sequences from a fastx (fasta or fastq) file given a subsequence. - -*homepage*: - -version|toolchain --------|----------------- -``2.3``|``GCCcore/8.2.0`` - -## G - - -[G-PhoCS](#g-phocs) - [g2clib](#g2clib) - [g2lib](#g2lib) - [g2log](#g2log) - [Gaia](#gaia) - [GAMESS-US](#gamess-us) - [gap](#gap) - [GapCloser](#gapcloser) - [GapFiller](#gapfiller) - [gappa](#gappa) - [GAPPadder](#gappadder) - [GARLI](#garli) - [garnett](#garnett) - [GAT](#gat) - [GATB-Core](#gatb-core) - [GATE](#gate) - [GATK](#gatk) - [Gaussian](#gaussian) - [gawk](#gawk) - [gbasis](#gbasis) - [Gblocks](#gblocks) - [GBprocesS](#gbprocess) - [gbs2ploidy](#gbs2ploidy) - [gc](#gc) - [GC3Pie](#gc3pie) - [GCC](#gcc) - [GCCcore](#gcccore) - [gcccuda](#gcccuda) - [gcloud](#gcloud) - [GConf](#gconf) - [gcsfs](#gcsfs) - [GCTA](#gcta) - [Gctf](#gctf) - [GD](#gd) - [GDAL](#gdal) - [GDB](#gdb) - [gdbgui](#gdbgui) - [gdbm](#gdbm) - [gdc-client](#gdc-client) - [GDCHART](#gdchart) - [GDCM](#gdcm) - [GDGraph](#gdgraph) - [gdist](#gdist) - [Gdk-Pixbuf](#gdk-pixbuf) - [GDRCopy](#gdrcopy) - [Gdspy](#gdspy) - [Geant4](#geant4) - [Geant4-data](#geant4-data) - [gearshifft](#gearshifft) - [GEGL](#gegl) - [GEM](#gem) - [GEM-library](#gem-library) - [gemelli](#gemelli) - [GEMMA](#gemma) - [gemmi](#gemmi) - [gencore_variant_detection](#gencore_variant_detection) - [GeneMark-ET](#genemark-et) - [GenerativeModels](#generativemodels) - [gengetopt](#gengetopt) - [GenMap](#genmap) - [Genome_Profiler](#genome_profiler) - [GenomeComb](#genomecomb) - [GenomeMapper](#genomemapper) - [genomepy](#genomepy) - [GenomeTester4](#genometester4) - [GenomeThreader](#genomethreader) - [GenomeTools](#genometools) - [GenomeWorks](#genomeworks) - [GenotypeHarmonizer](#genotypeharmonizer) - [genozip](#genozip) - [gensim](#gensim) - [geocube](#geocube) - [geopandas](#geopandas) - [geopy](#geopy) - [georges](#georges) - [GEOS](#geos) - [geosphere](#geosphere) - [Gerris](#gerris) - [GETORB](#getorb) - [GetOrganelle](#getorganelle) - [gettext](#gettext) - [gexiv2](#gexiv2) - [gfbf](#gfbf) - [GFF3-toolkit](#gff3-toolkit) - [GffCompare](#gffcompare) - [gffread](#gffread) - [gffutils](#gffutils) - [gflags](#gflags) - [GFOLD](#gfold) - [gh](#gh) - [GHC](#ghc) - [Ghostscript](#ghostscript) - [GI-DocGen](#gi-docgen) - [giac](#giac) - [Gibbs2](#gibbs2) - [giflib](#giflib) - [gifsicle](#gifsicle) - [GIMIC](#gimic) - [gimkl](#gimkl) - [GimmeMotifs](#gimmemotifs) - [GIMP](#gimp) - [gimpi](#gimpi) - [gimpic](#gimpic) - [GIMPS](#gimps) - [giolf](#giolf) - [giolfc](#giolfc) - [Giotto-Suite](#giotto-suite) - [git](#git) - [git-annex](#git-annex) - [git-extras](#git-extras) - [git-lfs](#git-lfs) - [GitPython](#gitpython) - [Givaro](#givaro) - [Giza](#giza) - [GKeyll](#gkeyll) - [GKlib-METIS](#gklib-metis) - [gkmSVM](#gkmsvm) - [GL2PS](#gl2ps) - [Glade](#glade) - [glew](#glew) - [GLFW](#glfw) - [GLI](#gli) - [GLib](#glib) - [glib-networking](#glib-networking) - [glibc](#glibc) - [GLibmm](#glibmm) - [GLIMMER](#glimmer) - [GlimmerHMM](#glimmerhmm) - [GLIMPSE](#glimpse) - [GLM](#glm) - [GLM-AED](#glm-aed) - [GlobalArrays](#globalarrays) - [Globus-CLI](#globus-cli) - [GlobusConnectPersonal](#globusconnectpersonal) - [glog](#glog) - [GLPK](#glpk) - [glproto](#glproto) - [Glucose](#glucose) - [GMAP-GSNAP](#gmap-gsnap) - [GMP](#gmp) - [GMP-ECM](#gmp-ecm) - [gmpich](#gmpich) - [gmpolf](#gmpolf) - [gmpy2](#gmpy2) - [gmsh](#gmsh) - [GMT](#gmt) - [gmvapich2](#gmvapich2) - [gmvolf](#gmvolf) - [GNU](#gnu) - [gnupg-bundle](#gnupg-bundle) - [gnuplot](#gnuplot) - [GnuTLS](#gnutls) - [Go](#go) - [goalign](#goalign) - [GOATOOLS](#goatools) - [gobff](#gobff) - [GObject-Introspection](#gobject-introspection) - [goblf](#goblf) - [GOBNILP](#gobnilp) - [Godon](#godon) - [gofasta](#gofasta) - [golf](#golf) - [gomkl](#gomkl) - [gompi](#gompi) - [gompic](#gompic) - [google-java-format](#google-java-format) - [googletest](#googletest) - [gotree](#gotree) - [GP2C](#gp2c) - [GPAW](#gpaw) - [GPAW-setups](#gpaw-setups) - [gperf](#gperf) - [gperftools](#gperftools) - [gpustat](#gpustat) - [GPy](#gpy) - [GPyOpt](#gpyopt) - [GPyTorch](#gpytorch) - [Grace](#grace) - [Gradle](#gradle) - [gradunwarp](#gradunwarp) - [graph-tool](#graph-tool) - [GraphDB](#graphdb) - [Graphene](#graphene) - [GraphicsMagick](#graphicsmagick) - [graphite2](#graphite2) - [GraPhlAn](#graphlan) - [GraphMap](#graphmap) - [GraphMap2](#graphmap2) - [Graphviz](#graphviz) - [graphviz-python](#graphviz-python) - [GRASP](#grasp) - [GRASP-suite](#grasp-suite) - [GRASS](#grass) - [Greenlet](#greenlet) - [Grep](#grep) - [gretl](#gretl) - [grib_api](#grib_api) - [grid](#grid) - [GRIDSS](#gridss) - [GRIT](#grit) - [GRNBoost](#grnboost) - [groff](#groff) - [GroIMP](#groimp) - [GROMACS](#gromacs) - [GromacsWrapper](#gromacswrapper) - [Groovy](#groovy) - [gRPC](#grpc) - [grpcio](#grpcio) - [GSD](#gsd) - [GSEA](#gsea) - [gsettings-desktop-schemas](#gsettings-desktop-schemas) - [GSL](#gsl) - [gSOAP](#gsoap) - [gspell](#gspell) - [gsport](#gsport) - [GST-plugins-bad](#gst-plugins-bad) - [GST-plugins-base](#gst-plugins-base) - [GStreamer](#gstreamer) - [gsutil](#gsutil) - [gsw](#gsw) - [GTDB-Tk](#gtdb-tk) - [GTK+](#gtk+) - [GTK2](#gtk2) - [GTK3](#gtk3) - [GTK4](#gtk4) - [GtkSourceView](#gtksourceview) - [GTOOL](#gtool) - [GTS](#gts) - [gubbins](#gubbins) - [guenomu](#guenomu) - [GUIDANCE](#guidance) - [Guile](#guile) - [GULP](#gulp) - [Gurobi](#gurobi) - [GUSHR](#gushr) - [gzip](#gzip) - - -### G-PhoCS - -G-PhoCS is a software package for inferring ancestral population sizes, population divergence times, and migration rates from individual genome sequences. G-PhoCS accepts as input a set of multiple sequence alignments from separate neutrally evolving loci along the genome. Parameter inference is done in a Bayesian manner, using a Markov Chain Monte Carlo (MCMC) to jointly sample model parameters and genealogies at the input loci. - -*homepage*: - -version |toolchain ----------|---------------------------------------- -``1.2.3``|``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` - -### g2clib - -Library contains GRIB2 encoder/decoder ('C' version). - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------------------------------ -``1.6.0``|``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``foss/2018b``, ``intel/2017a``, ``intel/2017b``, ``intel/2018a``, ``intel/2018b`` -``1.6.3``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``1.7.0``|``GCCcore/11.3.0`` - -### g2lib - -Library contains GRIB2 encoder/decoder and search/indexing routines. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------- -``1.4.0``|``intel/2017a``, ``intel/2017b``, ``intel/2018a`` -``3.1.0``|``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``foss/2018b``, ``intel/2018b`` -``3.2.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0`` - -### g2log - -g2log, efficient asynchronous logger using C++11 - -*homepage*: - -version|toolchain --------|--------------------------------- -``1.0``|``GCCcore/8.3.0``, ``foss/2016b`` - -### Gaia - -Gaia is a C++ library with python bindings which implements similarity measures and classifications on the results of audio analysis, and generates classification models that Essentia can use to compute high-level description of music. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|----------------- -``2.4.5``|``-Python-2.7.15``|``GCCcore/8.2.0`` - -### GAMESS-US - -The General Atomic and Molecular Electronic Structure System (GAMESS) is a general ab initio quantum chemistry package. This module can be used on a maximum of 1 nodes and 1024 CPUs per node. - -*homepage*: - -version |versionsuffix|toolchain ----------------|-------------|--------------------------------------------- -``20141205-R1``| |``intel/2016a`` -``20170420-R1``| |``intel/2016b`` -``20170420-R1``|``-sockets`` |``intel/2016b`` -``20180214-R1``| |``foss/2016b`` -``20180214-R1``|``-sockets`` |``foss/2016b`` -``20220930-R2``| |``gompi/2022a`` -``20230930-R2``| |``gompi/2022a``, ``intel-compilers/2022.1.0`` - -### gap - -GAP is a system for computational discrete algebra, with particular emphasis on Computational Group Theory. - -*homepage*: - -version |toolchain -----------|--------------- -``4.9.3`` |``intel/2018b`` -``4.11.0``|``foss/2019a`` -``4.12.2``|``foss/2022a`` - -### GapCloser - -GapCloser is designed to close the gaps emerging during the scaffolding process by SOAPdenovo or other assembler, using the abundant pair relationships of short reads. - -*homepage*: - -version |toolchain ------------|------------------------------- -``1.12-r6``|``foss/2018a``, ``intel/2017b`` - -### GapFiller - -GapFiller is a seed-and-extend local assembler to fill the gap within paired reads. It can be used for both DNA and RNA and it has been tested on Illumina data. - -*homepage*: - -version |toolchain ----------|--------------- -``2.1.1``|``intel/2017a`` -``2.1.2``|``GCC/11.3.0`` - -### gappa - -gappa is a collection of commands for working with phylogenetic data. Its main focus are evolutionary placements of short environmental sequences on a reference phylogenetic tree. Such data is typically produced by tools like EPA-ng, RAxML-EPA or pplacer and usually stored in jplace files. - -*homepage*: - -version |toolchain ----------|-------------- -``0.7.1``|``GCC/10.3.0`` - -### GAPPadder - -GAPPadder is tool for closing gaps on draft genomes with short sequencing data - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|-------------- -``20170601``|``-Python-2.7.18``|``foss/2021b`` - -### GARLI - -GARLI, Genetic Algorithm for Rapid Likelihood Inference is a program for inferring phylogenetic trees. Using an approach similar to a classical genetic algorithm, it rapidly searches the space of evolutionary trees and model parameters to find the solution maximizing the likelihood score. It implements nucleotide, amino acid and codon-based models of sequence evolution, and runs on all platforms. - -*homepage*: - -version |toolchain ---------|--------------- -``2.01``|``gompi/2019a`` - -### garnett - -Garnett is a software package that faciliates automated cell type classification from single-cell expression data. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|-------------- -``0.1.20``|``-R-4.0.3`` |``foss/2020b`` - -### GAT - -The Genomic Association Tester (GAT) is a tool for computing the significance of overlap between multiple sets of genomic intervals. GAT estimates significance based on simulation. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``1.2.2``|``-Python-2.7.11``|``foss/2016a`` - -### GATB-Core - -GATB-Core is a high-performance and low memory footprint C++ library that provides a set of highly efficient algorithms to analyse NGS data sets - -*homepage*: - -version |toolchain ----------|--------------- -``1.4.2``|``gompi/2022a`` - -### GATE - -GATE is an advanced opensource software developed by the international OpenGATE collaboration and dedicated to the numerical simulations in medical imaging. It currently supports simulations of Emission Tomography (Positron Emission Tomography - PET and Single Photon Emission Computed Tomography - SPECT), and Computed Tomography - -*homepage*: - -version |versionsuffix |toolchain ------------|-------------------------------|------------------------------- -``6.2`` |``-Python-2.7.11`` |``intel/2016a`` -``7.1`` |``-Python-2.7.11`` |``intel/2016a`` -``7.2`` |``-Python-2.7.11`` |``intel/2016a`` -``8.0`` |``-Python-2.7.14`` |``foss/2017b``, ``intel/2017b`` -``8.0`` |``-Python-2.7.14-Geant4-10.04``|``intel/2017b`` -``8.1.p01``|``-Python-2.7.15`` |``foss/2018b`` -``8.2`` |``-Python-2.7.14`` |``foss/2017b``, ``intel/2017b`` -``8.2`` |``-Python-2.7.15`` |``foss/2018b`` -``9.0`` |``-Python-3.7.4`` |``foss/2019b`` -``9.1`` | |``foss/2021b`` -``9.2`` | |``foss/2021b``, ``foss/2022a`` - -### GATK - -The Genome Analysis Toolkit or GATK is a software package developed at the Broad Institute to analyse next-generation resequencing data. The toolkit offers a wide variety of tools, with a primary focus on variant discovery and genotyping as well as strong emphasis on data quality assurance. Its robust architecture, powerful processing engine and high-performance computing features make it capable of taking on projects of any size. - -*homepage*: - -version |versionsuffix |toolchain -------------|-------------------|-------------------------------------- -``1.0.5083``| |``system`` -``2.5-2`` |``-Java-1.7.0_10`` |``system`` -``2.6-5`` |``-Java-1.7.0_10`` |``system`` -``2.7-4`` | |``system`` -``2.7-4`` |``-Java-1.7.0_10`` |``system`` -``2.8-1`` |``-Java-1.7.0_10`` |``system`` -``3.0-0`` |``-Java-1.7.0_10`` |``system`` -``3.3-0`` |``-Java-1.7.0_21`` |``system`` -``3.3-0`` |``-Java-1.7.0_80`` |``system`` -``3.3-0`` |``-Java-1.8.0_66`` |``system`` -``3.5`` |``-Java-1.8.0_66`` |``system`` -``3.5`` |``-Java-1.8.0_74`` |``system`` -``3.6`` |``-Java-1.8.0_92`` |``system`` -``3.7`` |``-Java-1.8.0_112``|``system`` -``3.8-0`` |``-Java-1.8.0_144``|``system`` -``4.0.1.2`` |``-Java-1.8`` |``system`` -``4.0.4.0`` |``-Python-2.7.14`` |``intel/2018a`` -``4.0.4.0`` |``-Python-3.6.4`` |``intel/2018a`` -``4.0.5.1`` |``-Python-3.6.4`` |``foss/2018a`` -``4.0.7.0`` |``-Python-2.7.14`` |``intel/2018a`` -``4.0.7.0`` |``-Python-3.6.4`` |``intel/2018a`` -``4.0.8.1`` |``-Python-2.7.15`` |``foss/2018b`` -``4.0.8.1`` |``-Python-3.6.6`` |``foss/2018b`` -``4.0.10.0``|``-Python-3.6.6`` |``foss/2018b`` -``4.0.12.0``|``-Python-3.6.6`` |``foss/2018b`` -``4.1.0.0`` |``-Python-3.6.6`` |``foss/2018b`` -``4.1.2.0`` |``-Java-1.8`` |``GCCcore/8.2.0`` -``4.1.3.0`` |``-Java-1.8`` |``GCCcore/8.3.0`` -``4.1.4.1`` |``-Java-1.8`` |``GCCcore/8.3.0`` -``4.1.4.1`` |``-Java-11`` |``GCCcore/8.3.0`` -``4.1.5.0`` |``-Java-1.8`` |``GCCcore/9.3.0`` -``4.1.5.0`` |``-Java-11`` |``GCCcore/9.3.0`` -``4.1.8.1`` |``-Java-1.8`` |``GCCcore/9.3.0`` -``4.2.0.0`` |``-Java-1.8`` |``GCCcore/10.2.0`` -``4.2.0.0`` |``-Java-11`` |``GCCcore/10.2.0`` -``4.2.3.0`` |``-Java-11`` |``GCCcore/11.2.0`` -``4.2.5.0`` |``-Java-11`` |``GCCcore/11.2.0`` -``4.2.6.1`` |``-Java-11`` |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``4.3.0.0`` |``-Java-11`` |``GCCcore/11.3.0`` -``4.4.0.0`` |``-Java-17`` |``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``4.5.0.0`` |``-Java-17`` |``GCCcore/12.3.0`` - -### Gaussian - -Gaussian provides state-of-the-art capabilities for electronic structure modeling. Gaussian 09 is licensed for a wide variety of computer systems. All versions of Gaussian 09 contain every scientific/modeling feature, and none imposes any artificial limitations on calculations other than your computing resources and patience. This is the official gaussian AVX2 build. - -*homepage*: - -version |versionsuffix|toolchain ------------|-------------|---------- -``09.e.01``|``-AVX`` |``system`` -``16.A.03``|``-AVX2`` |``system`` - -### gawk - -The awk utility interprets a special-purpose programming language that makes it possible to handle simple data-reformatting jobs with just a few lines of code. - -*homepage*: - -version |toolchain ----------|---------------------------------------------- -``5.1.0``|``GCC/10.2.0`` -``5.1.1``|``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0`` -``5.3.0``|``GCC/12.2.0``, ``GCC/13.2.0`` - -### gbasis - -Python library for analytical evaluation and integration of Gaussian-type basis functions and related quantities. - -*homepage*: - -version |toolchain -------------|--------------- -``20210904``|``intel/2022a`` - -### Gblocks - -Selection of conserved blocks from multiple alignments for their use in phylogenetic analysis - -*homepage*: - -version |toolchain ----------|---------- -``0.91b``|``system`` - -### GBprocesS - -GBprocesS allows for the extraction of genomic inserts from NGS data for GBS experiments. Preprocessing is performed in different stages that are part of a linear pipeline where the steps are performed in order. GBprocesS provides a flexible way to adjust the functionality to your needs, as the operations required and the execution order vary depending on the GBS protocol used. - -*homepage*: - -version |versionsuffix |toolchain ----------------|-----------------|--------------- -``2.3`` |``-Python-3.8.2``|``intel/2020a`` -``4.0.0.post1``| |``foss/2022a`` - -### gbs2ploidy - -Inference of Ploidy from (Genotyping-by-Sequencing) GBS Data - -*homepage*: - -version|versionsuffix|toolchain --------|-------------|--------------- -``1.0``|``-R-3.4.3`` |``intel/2017b`` - -### gc - -The Boehm-Demers-Weiser conservative garbage collector can be used as a garbage collecting replacement for C malloc or C++ new. - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``7.4.4`` |``GCC/4.9.3-2.25``, ``foss/2016a`` -``7.6.0`` |``GCCcore/6.4.0`` -``7.6.4`` |``GCCcore/7.3.0`` -``7.6.10``|``GCCcore/8.2.0`` -``7.6.12``|``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``8.0.4`` |``GCCcore/10.3.0`` -``8.2.0`` |``GCCcore/11.2.0`` -``8.2.2`` |``GCCcore/10.2.0``, ``GCCcore/11.3.0`` -``8.2.4`` |``GCCcore/12.3.0`` -``8.2.6`` |``GCCcore/13.2.0`` - -### GC3Pie - -GC3Pie is a Python package for running large job campaigns on diverse batch-oriented execution environments. - -*homepage*: - -version |toolchain ----------|---------- -``2.4.2``|``system`` -``2.5.0``|``system`` -``2.5.2``|``system`` - -### GCC - -The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...). - -*homepage*: - -version |versionsuffix |toolchain -----------|-------------------|---------- -``4.8.1`` | |``system`` -``4.8.1`` |``-CLooG`` |``system`` -``4.8.2`` | |``system`` -``4.8.2`` |``-CLooG`` |``system`` -``4.8.2`` |``-CLooG-multilib``|``system`` -``4.8.2`` |``-multilib`` |``system`` -``4.8.3`` | |``system`` -``4.8.3`` |``-CLooG-multilib``|``system`` -``4.8.4`` | |``system`` -``4.8.4`` |``-CLooG`` |``system`` -``4.8.4`` |``-CLooG-multilib``|``system`` -``4.8.5`` | |``system`` -``4.9.0`` | |``system`` -``4.9.0`` |``-CLooG`` |``system`` -``4.9.0`` |``-CLooG-multilib``|``system`` -``4.9.1`` | |``system`` -``4.9.1`` |``-CLooG`` |``system`` -``4.9.1`` |``-CLooG-multilib``|``system`` -``4.9.2`` | |``system`` -``4.9.2`` |``-CLooG`` |``system`` -``4.9.2`` |``-CLooG-multilib``|``system`` -``4.9.2`` |``-binutils-2.25`` |``system`` -``4.9.3`` | |``system`` -``4.9.3`` |``-2.25`` |``system`` -``4.9.3`` |``-binutils-2.25`` |``system`` -``4.9.4`` |``-2.25`` |``system`` -``5.1.0`` | |``system`` -``5.1.0`` |``-binutils-2.25`` |``system`` -``5.2.0`` | |``system`` -``5.3.0`` | |``system`` -``5.3.0`` |``-2.26`` |``system`` -``5.4.0`` |``-2.26`` |``system`` -``5.5.0`` |``-2.26`` |``system`` -``6.1.0`` |``-2.27`` |``system`` -``6.2.0`` |``-2.27`` |``system`` -``6.3.0`` |``-2.27`` |``system`` -``6.3.0`` |``-2.28`` |``system`` -``6.4.0`` |``-2.28`` |``system`` -``7.1.0`` |``-2.28`` |``system`` -``7.2.0`` |``-2.29`` |``system`` -``7.3.0`` |``-2.30`` |``system`` -``7.4.0`` |``-2.31.1`` |``system`` -``8.1.0`` |``-2.30`` |``system`` -``8.2.0`` |``-2.31.1`` |``system`` -``8.3.0`` | |``system`` -``8.3.0`` |``-2.32`` |``system`` -``8.4.0`` | |``system`` -``9.1.0`` |``-2.32`` |``system`` -``9.2.0`` | |``system`` -``9.2.0`` |``-2.32`` |``system`` -``9.3.0`` | |``system`` -``9.4.0`` | |``system`` -``9.5.0`` | |``system`` -``10.1.0``| |``system`` -``10.2.0``| |``system`` -``10.3.0``| |``system`` -``11.1.0``| |``system`` -``11.2.0``| |``system`` -``11.3.0``| |``system`` -``11.4.0``| |``system`` -``12.1.0``| |``system`` -``12.2.0``| |``system`` -``12.3.0``| |``system`` -``13.1.0``| |``system`` -``13.2.0``| |``system`` -``13.3.0``| |``system`` -``14.1.0``| |``system`` -``system``| |``system`` -``system``|``-2.29`` |``system`` - -### GCCcore - -The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...). - -*homepage*: - -version |toolchain -----------|---------- -``4.9.2`` |``system`` -``4.9.3`` |``system`` -``4.9.4`` |``system`` -``5.3.0`` |``system`` -``5.4.0`` |``system`` -``5.5.0`` |``system`` -``6.1.0`` |``system`` -``6.2.0`` |``system`` -``6.3.0`` |``system`` -``6.4.0`` |``system`` -``6.5.0`` |``system`` -``7.1.0`` |``system`` -``7.2.0`` |``system`` -``7.3.0`` |``system`` -``7.4.0`` |``system`` -``8.1.0`` |``system`` -``8.2.0`` |``system`` -``8.3.0`` |``system`` -``8.4.0`` |``system`` -``9.1.0`` |``system`` -``9.2.0`` |``system`` -``9.3.0`` |``system`` -``9.4.0`` |``system`` -``9.5.0`` |``system`` -``10.1.0``|``system`` -``10.2.0``|``system`` -``10.3.0``|``system`` -``11.1.0``|``system`` -``11.2.0``|``system`` -``11.3.0``|``system`` -``11.4.0``|``system`` -``12.1.0``|``system`` -``12.2.0``|``system`` -``12.3.0``|``system`` -``13.1.0``|``system`` -``13.2.0``|``system`` -``13.3.0``|``system`` -``14.1.0``|``system`` -``system``|``system`` - -### gcccuda - -GNU Compiler Collection (GCC) based compiler toolchain, along with CUDA toolkit. - -*homepage*: <(none)> - -version |toolchain ------------|---------- -``2016.08``|``system`` -``2017b`` |``system`` -``2018a`` |``system`` -``2018b`` |``system`` -``2019a`` |``system`` -``2019b`` |``system`` -``2020a`` |``system`` -``2020b`` |``system`` - -### gcloud - -Libraries and tools for interacting with Google Cloud products and services. - -*homepage*: - -version |toolchain ------------|---------- -``382.0.0``|``system`` -``472.0.0``|``system`` - -### GConf - -GConf is a system for storing application preferences. It is intended for user preferences; not configuration of something like Apache, or arbitrary data storage. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``3.2.6``|``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``foss/2016a``, ``foss/2018b``, ``intel/2016a``, ``intel/2016b``, ``intel/2017a``, ``intel/2017b`` - -### gcsfs - -Pythonic file-system interface for Google Cloud Storage. - -*homepage*: - -version |toolchain --------------------|-------------- -``2023.12.2.post1``|``foss/2023a`` - -### GCTA - -GCTA (Genome-wide Complex Trait Analysis) is a software package, which was initially developed to estimate the proportion of phenotypic variance explained by all genome-wide SNPs for a complex trait but has been extensively extended for many other analyses of data from genome-wide association studies (GWASs). - -*homepage*: - -version |toolchain ---------------|------------------------------ -``1.94.0beta``|``foss/2021b``, ``gfbf/2022a`` -``1.94.1`` |``gfbf/2022a``, ``gfbf/2023a`` - -### Gctf - -Gctf: real-time CTF determination and correction, Kai Zhang, 2016 - -*homepage*: - -version |toolchain ---------|---------- -``1.06``|``system`` - -### GD - -GD.pm - Interface to Gd Graphics Library - -*homepage*: - -version |versionsuffix |toolchain ---------|----------------|------------------ -``2.66``|``-Perl-5.24.0``|``foss/2016b`` -``2.68``|``-Perl-5.26.1``|``GCCcore/6.4.0`` -``2.69``|``-Perl-5.28.0``|``GCCcore/7.3.0`` -``2.71``| |``GCCcore/9.3.0`` -``2.73``| |``GCCcore/10.3.0`` -``2.75``| |``GCCcore/11.3.0`` - -### GDAL - -GDAL is a translator library for raster geospatial data formats that is released under an X/MIT style Open Source license by the Open Source Geospatial Foundation. As a library, it presents a single abstract data model to the calling application for all supported formats. It also comes with a variety of useful commandline utilities for data translation and processing. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------------------|---------------------------------------------------------------- -``2.0.2``| |``foss/2016a``, ``intel/2016a`` -``2.1.0``| |``foss/2016a``, ``foss/2016b``, ``intel/2016b`` -``2.1.1``| |``foss/2016a`` -``2.1.1``|``-Python-2.7.12`` |``intel/2016b`` -``2.1.2``|``-Python-2.7.12`` |``intel/2016b`` -``2.1.3``|``-Python-2.7.12`` |``foss/2016b``, ``intel/2016b`` -``2.1.3``|``-Python-2.7.13`` |``intel/2017a`` -``2.1.3``|``-Python-3.6.1`` |``intel/2017a`` -``2.2.0``|``-Python-2.7.13-HDF5-1.8.18``|``intel/2017a`` -``2.2.0``|``-Python-2.7.13-HDF5-HDF`` |``intel/2017a`` -``2.2.0``|``-Python-3.6.1`` |``intel/2017a`` -``2.2.2``|``-Python-2.7.14`` |``intel/2017b`` -``2.2.2``|``-Python-2.7.14-HDF5-1.8.19``|``intel/2017b`` -``2.2.3``|``-Python-2.7.14`` |``foss/2017b``, ``foss/2018a``, ``intel/2017b``, ``intel/2018a`` -``2.2.3``|``-Python-2.7.15`` |``foss/2018b`` -``2.2.3``|``-Python-3.6.3`` |``foss/2017b`` -``2.2.3``|``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a``, ``iomkl/2018a`` -``2.2.3``|``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``2.4.4``| |``foss/2021b``, ``intel/2021b`` -``3.0.0``|``-Python-2.7.15`` |``foss/2019a``, ``intel/2019a`` -``3.0.0``|``-Python-3.7.2`` |``foss/2019a``, ``intel/2019a`` -``3.0.2``|``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b``, ``intel/2019b`` -``3.0.4``|``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``3.2.1``| |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b`` -``3.3.0``| |``foss/2021a`` -``3.3.2``| |``foss/2021b`` -``3.5.0``| |``foss/2022a`` -``3.6.2``| |``foss/2022b`` -``3.7.1``| |``foss/2023a`` - -### GDB - -The GNU Project Debugger - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|---------------------------------------------------------- -``7.8.2`` | |``GCC/4.9.2`` -``7.9`` | |``GCC/4.9.2`` -``7.10.1``|``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``7.11`` |``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``7.11.1``|``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``8.0.1`` |``-Python-2.7.14``|``foss/2017b`` -``8.0.1`` |``-Python-3.6.3`` |``foss/2017b`` -``8.1`` |``-Python-2.7.14``|``foss/2018a`` -``8.1.1`` |``-Python-2.7.14``|``intel/2018a`` -``8.3`` |``-Python-3.7.2`` |``GCCcore/8.2.0`` -``9.1`` |``-Python-3.7.4`` |``GCCcore/8.3.0`` -``10.1`` | |``GCCcore/10.2.0`` -``10.2`` | |``GCCcore/10.3.0`` -``10.2`` |``-Python-3.8.2`` |``GCCcore/9.3.0`` -``11.1`` | |``GCCcore/11.2.0`` -``12.1`` | |``GCCcore/11.3.0`` -``13.2`` | |``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` -``14.2`` | |``GCCcore/13.3.0`` - -### gdbgui - -Browser-based frontend to gdb (gnu debugger). Add breakpoints, view the stack, visualize data structures, and more in C, C++, Go, Rust, and Fortran. Run gdbgui from the terminal and a new tab will open in your browser. - -*homepage*: - -version |versionsuffix |toolchain -------------|-----------------|----------------- -``0.13.1.2``|``-Python-3.7.2``|``GCCcore/8.2.0`` - -### gdbm - -GNU dbm (or GDBM, for short) is a library of database functions that use extensible hashing and work similar to the standard UNIX dbm. These routines are provided to a programmer needing to create and manipulate a hashed database. - -*homepage*: - -version |toolchain -----------|------------------ -``1.18.1``|``foss/2020a`` -``1.21`` |``GCCcore/10.2.0`` - -### gdc-client - -The gdc-client provides several convenience functions over the GDC API which provides general download/upload via HTTPS. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``1.0.1``|``-Python-2.7.12``|``intel/2016b`` -``1.3.0``|``-Python-2.7.14``|``foss/2018a``, ``intel/2017b`` -``1.3.0``|``-Python-2.7.15``|``foss/2018b`` -``1.6.0``| |``GCCcore/10.2.0`` - -### GDCHART - -Easy to use C API, high performance library to create charts and graphs in PNG, GIF and WBMP format. - -*homepage*: - -version |toolchain --------------|----------------- -``0.11.5dev``|``GCCcore/8.2.0`` - -### GDCM - -Grassroots DICOM: Cross-platform DICOM implementation - -*homepage*: - -version |toolchain -----------|------------------------------------- -``2.8.8`` |``GCCcore/6.4.0`` -``2.8.9`` |``GCCcore/7.3.0`` -``3.0.4`` |``GCCcore/8.2.0`` -``3.0.5`` |``GCCcore/8.3.0`` -``3.0.8`` |``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``3.0.20``|``GCCcore/11.3.0`` -``3.0.21``|``GCCcore/12.2.0`` - -### GDGraph - -GDGraph is a Perl package to generate charts - -*homepage*: - -version |versionsuffix |toolchain ---------|----------------|------------------ -``1.54``|``-Perl-5.26.1``|``intel/2018a`` -``1.54``|``-Perl-5.28.0``|``foss/2018b`` -``1.56``| |``GCCcore/11.3.0`` - -### gdist - -The gdist module is a Cython interface to a C++ library (http://code.google.com/p/geodesic/) for computing geodesic distance which is the length of shortest line between two vertices on a triangulated mesh in three dimensions, such that the line lies on the surface. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``1.0.3``|``-Python-2.7.11``|``intel/2016a`` - -### Gdk-Pixbuf - -The Gdk Pixbuf is a toolkit for image loading and pixel buffer manipulation. It is used by GTK+ 2 and GTK+ 3 to load and manipulate images. In the past it was distributed as part of GTK+ 2 but it was split off into a separate package in preparation for the change to GTK+ 3. - -*homepage*: - -version |toolchain ------------|------------------------------------------------------------------------------------ -``2.32.3`` |``intel/2016a`` -``2.35.1`` |``foss/2016a``, ``intel/2016a`` -``2.36.0`` |``foss/2016b``, ``intel/2016b`` -``2.36.8`` |``intel/2017a`` -``2.36.10``|``intel/2017a`` -``2.36.11``|``foss/2017b``, ``foss/2018a``, ``fosscuda/2018b``, ``intel/2017b``, ``intel/2018a`` -``2.36.12``|``foss/2018b``, ``fosscuda/2018b`` -``2.38.1`` |``GCCcore/8.2.0`` -``2.38.2`` |``GCCcore/8.3.0`` -``2.40.0`` |``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``2.42.6`` |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``2.42.8`` |``GCCcore/11.3.0`` -``2.42.10``|``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### GDRCopy - -A low-latency GPU memory copy library based on NVIDIA GPUDirect RDMA technology. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|---------------------------------------------------------- -``2.1`` |``-CUDA-11.0.2``|``GCCcore/9.3.0`` -``2.1`` |``-CUDA-11.1.1``|``GCCcore/10.2.0`` -``2.1`` |``-CUDA-11.2.1``|``GCCcore/10.2.0`` -``2.2`` | |``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``2.3`` | |``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``2.3.1``| |``GCCcore/12.3.0`` -``2.4`` | |``GCCcore/13.2.0`` -``2.4.1``| |``GCCcore/13.3.0`` - -### Gdspy - -Gdspy is a Python module for creation and manipulation of GDSII stream files. - -*homepage*: - -version |toolchain -----------|-------------- -``1.6.13``|``foss/2022a`` - -### Geant4 - -Geant4 is a toolkit for the simulation of the passage of particles through matter. Its areas of application include high energy, nuclear and accelerator physics, as well as studies in medical and space science. - -*homepage*: - -version |toolchain --------------|---------------------------------------------------------------- -``9.5.p02`` |``intel/2016a`` -``9.6.p04`` |``intel/2016a`` -``10.01.p03``|``intel/2016a`` -``10.02.p01``|``intel/2016a`` -``10.03.p03``|``foss/2017b``, ``intel/2017b`` -``10.04`` |``intel/2017b`` -``10.5`` |``foss/2017b``, ``foss/2018b``, ``intel/2017b``, ``intel/2018b`` -``10.6`` |``foss/2019b`` -``10.6.2`` |``foss/2020a`` -``10.7.1`` |``GCC/10.2.0``, ``GCC/11.2.0`` -``11.0.0`` |``GCC/11.2.0`` -``11.0.1`` |``GCC/11.2.0`` -``11.0.2`` |``GCC/11.2.0``, ``GCC/11.3.0`` -``11.1.2`` |``GCC/11.3.0`` - -### Geant4-data - -Datasets for Geant4. - -*homepage*: - -version |toolchain -------------|---------- -``11.1`` |``system`` -``20201103``|``system`` -``20210510``|``system`` - -### gearshifft - -Benchmark Suite for Heterogenuous FFT Implementations - -*homepage*: - -version |toolchain ----------|-------------- -``0.4.0``|``foss/2019a`` - -### GEGL - -GEGL (Generic Graphics Library) is a data flow based image processing framework, providing floating point processing and non-destructive image processing capabilities to GNU Image Manipulation Program (GIMP) and other projects. - -*homepage*: - -version |toolchain -----------|------------------ -``0.4.30``|``GCCcore/10.3.0`` - -### GEM - -GEM (Gene-Environment interaction analysis for Millions of samples) is a software program for large-scale gene-environment interaction testing in samples from unrelated individuals. It enables genome-wide association studies in up to millions of samples while allowing for multiple exposures, control for genotype-covariate interactions, and robust inference. - -*homepage*: - -version |toolchain ----------|------------------------------ -``1.5.1``|``foss/2022a``, ``foss/2022b`` - -### GEM-library - -Next-generation sequencing platforms (Illumina/Solexa, ABI/SOLiD, etc.) call for powerful and very optimized tools to index/analyze huge genomes. The GEM library strives to be a true "next-generation" tool for handling any kind of sequence data, offering state-of-the-art algorithms and data structures specifically tailored to this demanding task. At the moment, efficient indexing and searching algorithms based on the Burrows-Wheeler transform (BWT) have been implemented. The library core is written in C for maximum speed, with concise interfaces to higher-level programming languages like OCaml and Python. Many high-performance standalone programs (mapper, splice mapper, etc.) are provided along with the library; in general, new algorithms and tools can be easily implemented on the top of it. - -*homepage*: - -version |versionsuffix |toolchain --------------------|-------------------------------|---------- -``20130406-045632``|``_pre-release-3_Linux-x86_64``|``system`` - -### gemelli - -Gemelli is a tool box for running both Robust Aitchison PCA (RPCA) and Compositional Tensor Factorization (CTF) on sparse compositional omics datasets. - -*homepage*: - -version |toolchain ----------|-------------- -``0.0.9``|``foss/2022a`` - -### GEMMA - -Genome-wide Efficient Mixed Model Association - -*homepage*: - -version |toolchain -----------|---------------------------------------------- -``0.97`` |``foss/2016b``, ``foss/2017a`` -``0.98.1``|``foss/2018b`` -``0.98.5``|``foss/2020a``, ``foss/2021b``, ``foss/2022b`` - -### gemmi - -Gemmi is a library, accompanied by a set of programs, developed primarily for use in macromolecular crystallography (MX). For working with: macromolecular models (content of PDB, PDBx/mmCIF and mmJSON files), refinement restraints (CIF files), reflection data (MTZ and mmCIF formats), data on a 3D grid (electron density maps, masks, MRC/CCP4 format) crystallographic symmetry. Parts of this library can be useful in structural bioinformatics (for symmetry- aware analysis of protein models), and in other molecular-structure sciences that use CIF files (we have the fastest open-source CIF parser). - -*homepage*: - -version |toolchain ----------|------------------ -``0.4.5``|``GCCcore/10.2.0`` -``0.6.5``|``GCCcore/12.3.0`` - -### gencore_variant_detection - -This is a bundled install of many software packages for doing variant detection analysis. - -*homepage*: - -version|toolchain --------|---------- -``1.0``|``system`` - -### GeneMark-ET - -Eukaryotic gene prediction suite with automatic training - -*homepage*: - -version |toolchain ---------|-------------------------------------- -``4.38``|``GCCcore/8.2.0`` -``4.57``|``GCCcore/8.3.0`` -``4.65``|``GCCcore/10.2.0`` -``4.71``|``GCCcore/11.2.0``, ``GCCcore/11.3.0`` - -### GenerativeModels - - - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``0.2.1``|``-CUDA-11.7.0``|``foss/2022a`` - -### gengetopt - -Gengetopt is a tool to write command line option parsing code for C programs. - -*homepage*: - -version |toolchain ---------|------------------------------------------------------------------------------------------------- -``2.23``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.3.0``, ``GCCcore/13.2.0``, ``GCCcore/9.3.0`` - -### GenMap - -GenMap - Fast and Exact Computation of Genome Mappability - -*homepage*: - -version |toolchain ----------|------------------ -``1.3.0``|``GCCcore/11.2.0`` - -### Genome_Profiler - -Genome Profiler (GeP) is a program to perform whole-genome multilocus sequence typing (wgMLST) analysis for bacterial isolates - -*homepage*: - -version|versionsuffix |toolchain --------|----------------|-------------- -``2.1``|``-Perl-5.24.0``|``foss/2016b`` - -### GenomeComb - -Genomecomb is a package designed to analyze, combine, annotate and query genome as well as transcriptome sequencing data. - -*homepage*: - -version |versionsuffix|toolchain ------------|-------------|---------- -``0.106.0``|``-x86_64`` |``system`` - -### GenomeMapper - -GenomeMapper is a short read mapping tool designed for accurate read alignments. It quickly aligns millions of reads either with ungapped or gapped alignments. This version is used to align against a single reference. If you are unsure which one is the appropriate GenomeMapper, you might want to use this one. - -*homepage*: - -version |toolchain ----------|-------------- -``0.4.4``|``foss/2016a`` - -### genomepy - -genomepy is designed to provide a simple and straightforward way to download and use genomic data - -*homepage*: - -version |toolchain -----------|-------------- -``0.15.0``|``foss/2022a`` - -### GenomeTester4 - -A toolkit for performing set operations - union, intersection and complement - on k-mer lists. - -*homepage*: - -version|toolchain --------|--------------- -``4.0``|``intel/2018a`` - -### GenomeThreader - -GenomeThreader is a software tool to compute gene structure predictions. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------------|---------- -``1.7.1``|``-Linux_x86_64-64bit``|``system`` -``1.7.3``|``-Linux_x86_64-64bit``|``system`` - -### GenomeTools - -A comprehensive software library for efficient processing of structured genome annotations. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|---------------------------------------------- -``1.5.10``| |``foss/2018b`` -``1.5.10``|``-Python-2.7.15``|``foss/2018b`` -``1.6.1`` | |``GCC/10.2.0``, ``GCC/8.3.0``, ``GCC/9.3.0`` -``1.6.1`` |``-Python-2.7.16``|``GCC/8.3.0`` -``1.6.2`` | |``GCC/10.3.0``, ``GCC/11.3.0``, ``GCC/12.2.0`` - -### GenomeWorks - -SDK for GPU accelerated genome assembly and analysis - -*homepage*: - -version |toolchain --------------|------------------ -``2021.02.2``|``fosscuda/2020b`` - -### GenotypeHarmonizer - -The Genotype Harmonizer is an easy to use command-line tool that allows harmonization of genotype data stored using different file formats with different and potentially unknown strands. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|---------- -``1.4.14``|``-Java-1.7.0_80``|``system`` - -### genozip - -Genozip is a compressor for genomic files - it compresses FASTQ, SAM/BAM/CRAM, VCF, FASTA and others. - -*homepage*: - -version |toolchain -----------|------------------ -``13.0.5``|``GCCcore/11.2.0`` - -### gensim - -Gensim is a Python library for topic modelling, document indexing and similarity retrieval with large corpora. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------- -``0.13.2``|``-Python-2.7.11``|``foss/2016a`` -``3.8.3`` | |``foss/2020b``, ``intel/2020b`` -``4.2.0`` | |``foss/2021a`` - -### geocube - -Tool to convert geopandas vector data into rasterized xarray data. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``0.0.14``|``-Python-3.8.2``|``foss/2020a`` -``0.4.3`` | |``foss/2023a`` - -### geopandas - -GeoPandas is a project to add support for geographic data to pandas objects. It currently implements GeoSeries and GeoDataFrame types which are subclasses of pandas.Series and pandas.DataFrame respectively. GeoPandas objects can act on shapely geometry objects and perform geometric operations. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|---------------------------------- -``0.7.0`` |``-Python-3.7.4``|``foss/2019b``, ``fosscuda/2019b`` -``0.8.0`` |``-Python-3.7.2``|``foss/2019a`` -``0.8.1`` |``-Python-3.7.4``|``intel/2019b`` -``0.8.1`` |``-Python-3.8.2``|``foss/2020a`` -``0.10.2``| |``foss/2021a`` -``0.11.0``| |``foss/2021b`` -``0.12.2``| |``foss/2022a``, ``foss/2022b`` -``0.14.2``| |``foss/2023a`` - -### geopy - -geopy is a Python client for several popular geocoding web services. geopy makes it easy for Python developers to locate the coordinates of addresses, cities, countries, and landmarks across the globe using third-party geocoders and other data sources. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------ -``1.11.0``|``-Python-3.6.1``|``intel/2017a`` -``2.1.0`` | |``GCCcore/10.2.0`` -``2.4.1`` | |``GCCcore/12.3.0`` - -### georges - -Georges the lemur opinionated particle accelerator modeling Python package. Also a thin wrapper over MAD-X/PTC, BDSim and G4Beamline. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``2019.2``| |``foss/2021a`` -``2019.2``|``-Python-3.7.4``|``foss/2019b`` - -### GEOS - -GEOS (Geometry Engine - Open Source) is a C++ port of the Java Topology Suite (JTS) - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|----------------------------------------------------------------------------------------------------- -``3.5.0`` |``-Python-2.7.11``|``intel/2016a`` -``3.5.0`` |``-Python-2.7.12``|``intel/2016b`` -``3.6.1`` |``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``3.6.1`` |``-Python-2.7.13``|``intel/2017a`` -``3.6.1`` |``-Python-3.6.1`` |``intel/2017a`` -``3.6.2`` |``-Python-2.7.14``|``foss/2017b``, ``foss/2018a``, ``intel/2017b``, ``intel/2018a`` -``3.6.2`` |``-Python-2.7.15``|``foss/2018b`` -``3.6.2`` |``-Python-3.6.2`` |``foss/2017b`` -``3.6.2`` |``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b``, ``intel/2018.01`` -``3.6.2`` |``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a``, ``iomkl/2018a`` -``3.6.2`` |``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``3.7.2`` |``-Python-2.7.15``|``foss/2019a``, ``intel/2019a`` -``3.7.2`` |``-Python-3.7.2`` |``foss/2019a``, ``intel/2019a`` -``3.8.0`` | |``GCC/8.3.0`` -``3.8.0`` |``-Python-3.7.4`` |``GCC/8.3.0``, ``iccifort/2019.5.281`` -``3.8.1`` |``-Python-3.8.2`` |``GCC/9.3.0``, ``iccifort/2020.1.217`` -``3.9.1`` | |``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``iccifort/2020.4.304``, ``intel-compilers/2021.4.0`` -``3.10.3``| |``GCC/11.3.0`` -``3.11.1``| |``GCC/12.2.0`` -``3.12.0``| |``GCC/12.3.0`` - -### geosphere - -Spherical trigonometry for geographic applications. That is, compute distances and related measures for angular (longitude/latitude) locations. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|-------------- -``1.5-18``|``-R-4.2.1`` |``foss/2022a`` - -### Gerris - -Gerris is a Free Software program for the solution of the partial differential equations describing fluid flow - -*homepage*: - -version |toolchain -------------|------------------------------- -``20131206``|``foss/2017b``, ``gompi/2023a`` - -### GETORB - -GETORB software package contains programs to handle the orbital data records (ODRs) - -*homepage*: - -version |toolchain ----------|--------------- -``2.3.2``|``intel/2017a`` - -### GetOrganelle - -This toolkit assemblies organelle genome from genomic skimming data. - -*homepage*: - -version |versionsuffix |toolchain ---------------|-----------------|-------------- -``1.7.2`` |``-Python-3.8.2``|``foss/2020a`` -``1.7.4-pre2``| |``foss/2020b`` -``1.7.5.3`` | |``foss/2021b`` -``1.7.6.1`` | |``foss/2021b`` -``1.7.7.0`` | |``foss/2022a`` - -### gettext - -GNU 'gettext' is an important step for the GNU Translation Project, as it is an asset on which we may build many other steps. This package offers to programmers, translators, and even users, a well integrated set of tools and documentation - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|--------------------------------------------------------------------------------------------------- -``0.18.2`` | |``system`` -``0.19.4`` | |``GCC/4.9.2``, ``system`` -``0.19.6`` | |``GNU/4.9.3-2.25``, ``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a``, ``system`` -``0.19.7`` | |``foss/2016a``, ``intel/2016a``, ``system`` -``0.19.8`` | |``GCCcore/4.9.3``, ``GCCcore/5.4.0``, ``foss/2016.04``, ``foss/2016b``, ``intel/2016b``, ``system`` -``0.19.8.1``| |``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``system`` -``0.19.8.1``|``-libxml2-2.9.7``|``GCCcore/6.4.0`` -``0.20.1`` | |``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``system`` -``0.21`` | |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``system`` -``0.21.1`` | |``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``system`` -``0.22`` | |``GCCcore/13.2.0``, ``system`` -``0.22.5`` | |``GCCcore/13.3.0``, ``system`` - -### gexiv2 - -gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. - -*homepage*: - -version |toolchain -----------|------------------ -``0.12.2``|``GCCcore/10.3.0`` - -### gfbf - -GNU Compiler Collection (GCC) based compiler toolchain, including FlexiBLAS (BLAS and LAPACK support) and (serial) FFTW. - -*homepage*: <(none)> - -version |toolchain ------------|---------- -``2022a`` |``system`` -``2022b`` |``system`` -``2023.09``|``system`` -``2023a`` |``system`` -``2023b`` |``system`` -``2024.05``|``system`` - -### GFF3-toolkit - -Python programs for processing GFF3 files - -*homepage*: - -version |toolchain ----------|-------------- -``2.1.0``|``foss/2022a`` - -### GffCompare - -GffCompare provides classification and reference annotation mapping and matching statistics for RNA-Seq assemblies (transfrags) or other generic GFF/GTF files. - -*homepage*: - -version |toolchain -----------|------------------------------------ -``0.10.1``|``foss/2016b`` -``0.10.6``|``GCCcore/7.3.0`` -``0.11.6``|``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``0.12.2``|``GCC/10.3.0`` -``0.12.6``|``GCC/11.2.0`` - -### gffread - -GFF/GTF parsing utility providing format conversions, region filtering, FASTA sequence extraction and more. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------- -``0.9.12``|``foss/2016b`` -``0.10.6``|``GCCcore/7.3.0`` -``0.11.6``|``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``0.12.7``|``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/12.2.0`` - -### gffutils - -Gffutils is a Python package for working with and manipulating the GFF and GTF format files typically used for genomic annotations. - -*homepage*: - -version |toolchain ---------|-------------- -``0.12``|``foss/2022b`` - -### gflags - -The gflags package contains a C++ library that implements commandline flags processing. It includes built-in support for standard types such as string and the ability to define flags in the source file in which they are used. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.1.2``|``foss/2016a`` -``2.2.1``|``GCCcore/6.4.0``, ``intel/2017a``, ``intel/2017b`` -``2.2.2``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` - -### GFOLD - -Generalized fold change for ranking differentially expressed genes from RNA-seq data - -*homepage*: - -version |toolchain ----------|--------------- -``1.1.4``|``intel/2016a`` - -### gh - -gh is GitHub on the command line. - -*homepage*: - -version |toolchain -----------|---------- -``1.3.1`` |``system`` -``2.20.2``|``system`` - -### GHC - -The Glorious/Glasgow Haskell Compiler - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|---------- -``6.12.3``| |``system`` -``8.6.5`` |``-x86_64`` |``system`` -``9.2.2`` |``-x86_64`` |``system`` -``9.4.6`` |``-x86_64`` |``system`` - -### Ghostscript - -Ghostscript is a versatile processor for PostScript data with the ability to render PostScript to different targets. It used to be part of the cups printing stack, but is no longer used for that. - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|-------------------------------------------------- -``9.19`` | |``intel/2016a``, ``intel/2016b`` -``9.20`` | |``foss/2016b``, ``intel/2016b`` -``9.21`` | |``intel/2017a`` -``9.22`` | |``GCCcore/6.4.0``, ``foss/2017b``, ``intel/2017b`` -``9.22`` |``-cairo-1.14.12``|``GCCcore/6.4.0`` -``9.23`` | |``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``9.23`` |``-cairo-1.14.12``|``GCCcore/6.4.0`` -``9.27`` | |``GCCcore/8.2.0`` -``9.50`` | |``GCCcore/8.3.0`` -``9.52`` | |``GCCcore/9.3.0`` -``9.53.3`` | |``GCCcore/10.2.0`` -``9.54.0`` | |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``9.56.1`` | |``GCCcore/11.3.0`` -``10.0.0`` | |``GCCcore/12.2.0`` -``10.01.2``| |``GCCcore/12.3.0`` -``10.02.1``| |``GCCcore/13.2.0`` - -### GI-DocGen - -GI-DocGen is a document generator for GObject-based libraries. GObject is the base type system of the GNOME project. GI-Docgen reuses the introspection data generated by GObject-based libraries to generate the API reference of these libraries, as well as other ancillary documentation. - -*homepage*: - -version |toolchain -----------|------------------ -``2023.3``|``GCCcore/12.3.0`` - -### giac - -Giac is a C++ library, it is the CAS computing kernel. It may be used inside other C++ programs, and also Python, Java and Javascript programs. - -*homepage*: - -version |toolchain -------------|-------------- -``1.9.0-69``|``gfbf/2022a`` -``1.9.0-99``|``gfbf/2023b`` - -### Gibbs2 - -Gibbs2 is a program for the calculation of thermodynamic properties in periodic solids under arbitrary conditions of temperature and pressure. Gibbs2 uses the results of periodic solid-state quantum-mechanical calculations, specifically the energy-volume curve and possibly the harmonic phonon frequencies, to compute the thermodynamic properties of the solid within the framework of the quasiharmonic approximation. - -*homepage*: - -version|toolchain --------|-------------- -``1.0``|``GCC/10.3.0`` - -### giflib - -giflib is a library for reading and writing gif images. It is API and ABI compatible with libungif which was in wide use while the LZW compression algorithm was patented. - -*homepage*: - -version |toolchain ----------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``5.1.4``|``GCCcore/7.3.0``, ``GCCcore/8.2.0`` -``5.2.1``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` - -### gifsicle - -Gifsicle is a command-line tool for creating, editing, and getting information about GIF images and animations. Making a GIF animation with gifsicle is easy. - -*homepage*: - -version |toolchain ---------|------------------ -``1.92``|``GCCcore/8.2.0`` -``1.93``|``GCCcore/11.3.0`` - -### GIMIC - -The GIMIC program calculates magnetically induced currents in molecules. You need to provide this program with a density matrix in atomic-orbital (AO) basis and three (effective) magnetically perturbed AO density matrices in the proper format. Currently ACES2, Turbomole, G09, QChem, FERMION++, and LSDalton can produce these matrices. - -*homepage*: - -version |versionsuffix |toolchain ---------------|------------------|--------------- -``2.2.1`` | |``foss/2022a`` -``2018.04.20``|``-Python-2.7.14``|``intel/2018a`` - -### gimkl - -GNU Compiler Collection (GCC) based compiler toolchain with Intel MPI and MKL - -*homepage*: <(none)> - -version |toolchain -----------|---------- -``2.11.5``|``system`` -``2017a`` |``system`` -``2018b`` |``system`` - -### GimmeMotifs - -Suite of motif tools, including a motif prediction pipeline for ChIP-seq experiments - -*homepage*: - -version |toolchain -----------|-------------- -``0.17.2``|``foss/2022a`` - -### GIMP - -GIMP is a cross-platform image editor available for GNU/Linux, OS X, Windows and more operating systems. - -*homepage*: - -version |toolchain ------------|-------------- -``2.10.24``|``GCC/10.3.0`` - -### gimpi - -GNU Compiler Collection (GCC) based compiler toolchain with Intel MPI. - -*homepage*: <(none)> - -version |toolchain -----------|---------- -``2.11.5``|``system`` -``2017a`` |``system`` -``2017b`` |``system`` -``2018a`` |``system`` -``2018b`` |``system`` - -### gimpic - -GNU Compiler Collection (GCC) based compiler toolchain along with CUDA toolkit, including IntelMPI for MPI support with CUDA features enabled. - -*homepage*: <(none)> - -version |toolchain ----------|---------- -``2017b``|``system`` - -### GIMPS - -GIMPS: Great Internet Mersenne Prime Search; it can be useful for limited stress testing of nodes, in user space - -*homepage*: - -version |toolchain --------------------|------------- -``p95v279`` |``GCC/4.8.2`` -``p95v279.linux64``|``system`` - -### giolf - -GNU Compiler Collection (GCC) based compiler toolchain, including IntelMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. - -*homepage*: <(none)> - -version |toolchain ----------|---------- -``2017b``|``system`` -``2018a``|``system`` - -### giolfc - -GCC based compiler toolchain __with CUDA support__, and including IntelMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. - -*homepage*: <(none)> - -version |toolchain ----------|---------- -``2017b``|``system`` - -### Giotto-Suite - -Giotto Suite is focused on building a modular platform for analyzing spatial-omics technologies and strives to be interoperable with other popular spatial analysis tools and classes. Using established packages optimized for large(r) data, Giotto Suite adopts fast and memory efficient methods to create an interactive analysis. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``3.0.1``|``-R-4.2.1`` |``foss/2022a`` - -### git - -Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. - -*homepage*: - -version |versionsuffix|toolchain ------------|-------------|------------------------------------ -``1.8.5.6``| |``GCC/4.9.2`` -``2.2.2`` | |``GCC/4.9.2`` -``2.4.1`` | |``GCC/4.9.2`` -``2.8.0`` | |``foss/2016a`` -``2.12.2`` | |``foss/2016b`` -``2.13.1`` | |``foss/2016b`` -``2.14.1`` | |``GCCcore/6.4.0`` -``2.16.1`` | |``foss/2018a`` -``2.18.0`` | |``GCCcore/7.3.0`` -``2.19.1`` | |``GCCcore/7.3.0`` -``2.21.0`` | |``GCCcore/8.2.0`` -``2.21.0`` |``-nodocs`` |``GCCcore/8.2.0`` -``2.23.0`` | |``GCCcore/8.3.0`` -``2.23.0`` |``-nodocs`` |``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``2.28.0`` |``-nodocs`` |``GCCcore/10.2.0`` -``2.32.0`` |``-nodocs`` |``GCCcore/10.3.0`` -``2.33.1`` |``-nodocs`` |``GCCcore/11.2.0`` -``2.36.0`` |``-nodocs`` |``GCCcore/11.3.0`` -``2.38.1`` |``-nodocs`` |``GCCcore/12.2.0`` -``2.41.0`` |``-nodocs`` |``GCCcore/12.3.0`` -``2.42.0`` | |``GCCcore/13.2.0`` -``2.45.1`` | |``GCCcore/13.3.0`` - -### git-annex - -git-annex allows managing large files with git, without storing the file contents in git. It can sync, backup, and archive your data, offline and online. Checksums and encryption keep your data safe and secure. Bring the power and distributed nature of git to bear on your large files with git-annex. - -*homepage*: - -version |toolchain ----------------|-------------------------------------- -``10.20230802``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### git-extras - -Extra useful scripts for git - -*homepage*: - -version |toolchain ----------|-------------- -``5.1.0``|``foss/2016a`` - -### git-lfs - -Git Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com - -*homepage*: - -version |toolchain -----------|---------- -``1.1.1`` |``system`` -``2.7.1`` |``system`` -``2.11.0``|``system`` -``3.2.0`` |``system`` -``3.4.0`` |``system`` -``3.4.1`` |``system`` -``3.5.1`` |``system`` - -### GitPython - -GitPython is a python library used to interact with Git repositories - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------------------- -``2.1.11``|``-Python-3.6.6``|``foss/2018b``, ``intel/2018b`` -``2.1.15``| |``system`` -``3.0.3`` |``-Python-3.7.2``|``GCCcore/8.2.0`` -``3.1.0`` |``-Python-3.7.4``|``GCCcore/8.3.0`` -``3.1.9`` |``-Python-3.8.2``|``GCCcore/9.3.0`` -``3.1.14``| |``GCCcore/10.2.0`` -``3.1.18``| |``GCCcore/10.3.0`` -``3.1.24``| |``GCCcore/11.2.0`` -``3.1.27``| |``GCCcore/11.3.0`` -``3.1.31``| |``GCCcore/12.2.0`` -``3.1.40``| |``GCCcore/12.3.0`` -``3.1.42``| |``GCCcore/13.2.0`` - -### Givaro - -C++ library for arithmetic and algebraic computations - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``4.0.1``|``foss/2016a`` -``4.2.0``|``GCCcore/11.3.0``, ``GCCcore/13.2.0`` - -### Giza - -Giza is an open, lightweight scientific plotting library built on top of cairo that provides uniform output to multiple devices. - -*homepage*: - -version |toolchain ----------|------------------ -``1.1.0``|``foss/2018b`` -``1.4.1``|``GCCcore/13.2.0`` - -### GKeyll - -Gkeyll v2.0 (pronounced as in the book “The Strange Case of Dr. Jekyll and Mr. Hyde”) is a computational plasma physics code mostly written in C/C++ and LuaJIT. Gkeyll contains solvers for gyrokinetic equations, Vlasov-Maxwell equations, and multi-fluid equations. Gkeyll contains ab-initio and novel implementations of a number of algorithms, and perhaps is unique in using a JIT compiled typeless dynamic language for as its main implementation language. - -*homepage*: - -version |versionsuffix |toolchain -------------|-----------------|-------------- -``20220803``|``-Python-3.8.2``|``foss/2020a`` - -### GKlib-METIS - -A library of various helper routines and frameworks used by many of the lab's software - -*homepage*: - -version |toolchain ----------|------------------ -``5.1.1``|``GCCcore/11.3.0`` - -### gkmSVM - -Gapped-Kmer Support Vector Machine. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|-------------- -``0.82.0``|``-R-4.2.1`` |``foss/2022a`` - -### GL2PS - -GL2PS: an OpenGL to PostScript printing library - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|----------------------------------------------------------------------------------------------------------------------------------------- -``1.3.9``| |``foss/2016a``, ``foss/2016b``, ``intel/2016a``, ``intel/2016b`` -``1.3.9``|``-Mesa-11.2.1``|``foss/2016a``, ``intel/2016a`` -``1.4.0``| |``GCCcore/8.3.0``, ``foss/2017b``, ``foss/2018a``, ``foss/2018b``, ``foss/2019a``, ``intel/2017a``, ``intel/2017b``, ``intel/2018a`` -``1.4.2``| |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/9.3.0`` - -### Glade - -Glade is a RAD tool to enable quick & easy development of user interfaces for the GTK+ toolkit and the GNOME desktop environment. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``3.8.5``|``-Python-2.7.11``|``intel/2016a`` -``3.8.5``|``-Python-2.7.14``|``intel/2017b`` -``3.8.6``|``-Python-2.7.14``|``intel/2018a`` -``3.8.6``|``-Python-2.7.15``|``foss/2018b`` - -### glew - -The OpenGL Extension Wrangler Library (GLEW) is a cross-platform open-source C/C++ extension loading library. GLEW provides efficient run-time mechanisms for determining which OpenGL extensions are supported on the target platform. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|--------------------------------------------------------------------------------------------------------------- -``2.1.0``| |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``foss/2018b`` -``2.2.0``|``-egl`` |``GCCcore/10.2.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0`` -``2.2.0``|``-glx`` |``GCCcore/10.2.0``, ``GCCcore/11.2.0`` -``2.2.0``|``-osmesa`` |``GCCcore/10.2.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### GLFW - -GLFW is an Open Source, multi-platform library for OpenGL, OpenGL ES and Vulkan development on the desktop - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``3.2.1``|``intel/2018a`` -``3.3.2``|``GCCcore/9.3.0`` -``3.3.3``|``GCCcore/10.2.0`` -``3.3.4``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``3.3.8``|``GCCcore/11.3.0`` -``3.4`` |``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### GLI - -Graphics Language Interpreter - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``4.5.31``|``GCCcore/10.2.0``, ``GCCcore/12.2.0`` - -### GLib - -GLib is one of the base libraries of the GTK+ project - -*homepage*: - -version |toolchain -----------|------------------------------------------------- -``2.42.1``|``GCC/4.9.2`` -``2.44.0``|``GCC/4.9.2`` -``2.47.5``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` -``2.48.0``|``foss/2016a``, ``intel/2016a`` -``2.49.5``|``foss/2016b``, ``intel/2016b`` -``2.52.0``|``foss/2017a``, ``intel/2017a`` -``2.53.5``|``GCCcore/6.3.0``, ``GCCcore/6.4.0`` -``2.54.2``|``GCCcore/6.4.0`` -``2.54.3``|``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``2.60.1``|``GCCcore/8.2.0`` -``2.62.0``|``GCCcore/8.3.0`` -``2.64.1``|``GCCcore/9.3.0`` -``2.66.1``|``GCCcore/10.2.0`` -``2.68.2``|``GCCcore/10.3.0`` -``2.69.1``|``GCCcore/11.2.0`` -``2.72.1``|``GCCcore/11.3.0`` -``2.75.0``|``GCCcore/12.2.0`` -``2.77.1``|``GCCcore/12.3.0`` -``2.78.1``|``GCCcore/13.2.0`` - -### glib-networking - -Network extensions for GLib - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``2.68.1``|``GCCcore/10.3.0`` -``2.72.1``|``GCCcore/11.2.0``, ``GCCcore/11.3.0`` - -### glibc - -The GNU C Library project provides the core libraries for the GNU system and GNU/Linux systems, as well as many other systems that use Linux as the kernel. - -*homepage*: - -version |toolchain ---------|----------------- -``2.17``|``GCCcore/6.4.0`` -``2.26``|``GCCcore/6.4.0`` -``2.30``|``GCCcore/8.3.0`` - -### GLibmm - -C++ bindings for Glib - -*homepage*: - -version |toolchain -----------|------------------------------------------------------- -``2.49.7``|``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``2.66.4``|``GCCcore/10.3.0`` - -### GLIMMER - -Glimmer is a system for finding genes in microbial DNA, especially the genomes of bacteria, archaea, and viruses. - -*homepage*: - -version |toolchain ----------|------------------------------ -``3.02b``|``foss/2016b``, ``foss/2018b`` - -### GlimmerHMM - -GlimmerHMM is a new gene finder based on a Generalized Hidden Markov Model. Although the gene finder conforms to the overall mathematical framework of a GHMM, additionally it incorporates splice site models adapted from the GeneSplicer program and a decision tree adapted from GlimmerM. It also utilizes Interpolated Markov Models for the coding and noncoding models. - -*homepage*: - -version |toolchain -----------|--------------------------------------------- -``3.0.4`` |``foss/2016b``, ``foss/2018b`` -``3.0.4c``|``GCC/10.2.0``, ``GCC/11.2.0``, ``GCC/8.3.0`` - -### GLIMPSE - -GLIMPSE2 is a set of tools for phasing and imputation for low-coverage sequencing datasets - -*homepage*: - -version |toolchain ----------|---------------------------------------------- -``2.0.0``|``GCC/10.3.0``, ``GCC/11.3.0``, ``GCC/12.2.0`` - -### GLM - -OpenGL Mathematics (GLM) is a header only C++ mathematics library for graphics software based on the OpenGL Shading Language (GLSL) specifications. - -*homepage*: - -version |toolchain ------------|----------------------------------------------------------------------------------------------------------------------------------------- -``0.9.7.6``|``intel/2016a`` -``0.9.8.3``|``GCCcore/5.4.0``, ``GCCcore/7.3.0`` -``0.9.9.0``|``GCCcore/6.4.0`` -``0.9.9.8``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/8.3.0`` - -### GLM-AED - -The General Lake Model (GLM) is a water balance and one-dimensional vertical stratification hydrodynamic model, which is dynamically coupled with the AED water quality modelling library. GLM-AED is suitable for simulating conditions in a wide range of natural and engineered lakes, including shallow (well-mixed) and deep (stratified) systems. The model has been successfully applied to systems from the scale of individual ponds and wetlands, to actively operated reservoirs, upto the scale of the Great Lakes. - -*homepage*: - -version |toolchain ------------|--------------- -``3.3.0a5``|``gompi/2021b`` - -### GlobalArrays - -Global Arrays (GA) is a Partitioned Global Address Space (PGAS) programming model - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|------------------------------------------------- -``5.7`` | |``intel/2018b`` -``5.7`` |``-peigs`` |``intel/2019a`` -``5.7.2``| |``intel/2019b`` -``5.7.2``|``-peigs`` |``intel/2019b`` -``5.8`` | |``intel/2020a``, ``intel/2021a``, ``iomkl/2021a`` -``5.8.1``| |``intel/2022a`` -``5.8.2``| |``intel/2022a``, ``intel/2023a`` - -### Globus-CLI - -A Command Line Wrapper over the Globus SDK for Python, which provides an interface to Globus services from the shell, and is suited to both interactive and simple scripting use cases. - -*homepage*: - -version |toolchain -----------|------------------ -``1.11.0``|``GCCcore/8.3.0`` -``3.1.1`` |``GCCcore/10.2.0`` -``3.2.0`` |``GCCcore/10.3.0`` -``3.6.0`` |``GCCcore/11.2.0`` - -### GlobusConnectPersonal - -Globus Connect Personal turns your laptop or other personal computer into a Globus endpoint with a just a few clicks. With Globus Connect Personal you can share and transfer files to/from a local machine—campus server, desktop computer or laptop—even if it's behind a firewall and you don't have administrator privileges. - -*homepage*: - -version |toolchain ----------|---------- -``2.3.6``|``system`` - -### glog - -A C++ implementation of the Google logging module. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------- -``0.3.4``|``foss/2016a`` -``0.3.5``|``GCCcore/6.4.0``, ``intel/2017a``, ``intel/2017b`` -``0.4.0``|``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``0.5.0``|``GCCcore/10.2.0`` -``0.6.0``|``GCCcore/11.3.0`` - -### GLPK - -The GLPK (GNU Linear Programming Kit) package is intended for solving large-scale linear programming (LP), mixed integer programming (MIP), and other related problems. It is a set of routines written in ANSI C and organized in the form of a callable library. - -*homepage*: - -version |toolchain ---------|---------------------------------------------------------------------------------------------------------------------- -``4.58``|``foss/2016a``, ``intel/2016a`` -``4.60``|``GCCcore/5.4.0``, ``intel/2016b`` -``4.61``|``intel/2017a`` -``4.65``|``GCCcore/10.2.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``5.0`` |``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### glproto - -X protocol and ancillary headers - -*homepage*: - -version |toolchain -----------|------------------------------------------------- -``1.4.17``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` - -### Glucose - -Glucose is based on a new scoring scheme (well, not so new now, it was introduced in 2009) for the clause learning mechanism of so called Modern SAT solvers (it is based on our IJCAI'09 paper). It is designed to be parallel, since v4.0. - -*homepage*: - -version|toolchain --------|------------- -``4.1``|``GCC/9.3.0`` - -### GMAP-GSNAP - -GMAP: A Genomic Mapping and Alignment Program for mRNA and EST Sequences GSNAP: Genomic Short-read Nucleotide Alignment Program - -*homepage*: - -version |toolchain ---------------|------------------------------ -``2016-05-01``|``foss/2016a`` -``2016-11-07``|``foss/2016b`` -``2018-05-11``|``intel/2018a`` -``2018-07-04``|``intel/2018a`` -``2019-03-15``|``foss/2018b`` -``2019-09-12``|``GCC/8.3.0`` -``2020-12-17``|``GCC/9.3.0`` -``2021-12-17``|``GCC/11.2.0`` -``2023-02-17``|``GCC/11.3.0`` -``2023-04-20``|``GCC/10.3.0``, ``GCC/12.2.0`` - -### GMP - -GMP is a free library for arbitrary precision arithmetic, operating on signed integers, rational numbers, and floating point numbers. - -*homepage*: - -version |toolchain -----------|----------------------------------------------------------------------------------------------------------------------------------------------------- -``4.3.2`` |``system`` -``5.1.3`` |``GCC/4.8.2`` -``6.0.0`` |``GCC/4.9.2`` -``6.0.0a``|``GCC/4.8.4``, ``GCC/4.9.2``, ``GNU/4.9.3-2.25`` -``6.1.0`` |``GCC/4.9.3-2.25``, ``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016.02-GCC-4.9``, ``intel/2016a``, ``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25`` -``6.1.1`` |``GCC/5.4.0-2.26``, ``GCCcore/5.4.0``, ``GCCcore/6.3.0``, ``foss/2016.04``, ``foss/2016a``, ``foss/2016b``, ``intel/2016b`` -``6.1.2`` |``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``foss/2016b`` -``6.2.0`` |``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``6.2.1`` |``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``6.3.0`` |``GCCcore/13.2.0``, ``GCCcore/13.3.0`` - -### GMP-ECM - -Yet another implementation of the Elliptic Curve Method. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``7.0.5``|``GCCcore/11.3.0``, ``GCCcore/13.2.0`` - -### gmpich - -gcc and GFortran based compiler toolchain, including MPICH for MPI support. - -*homepage*: <(none)> - -version |toolchain ------------|---------- -``2016a`` |``system`` -``2017.08``|``system`` - -### gmpolf - -gcc and GFortran based compiler toolchain, MPICH for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. - -*homepage*: <(none)> - -version |toolchain ------------|---------- -``2016a`` |``system`` -``2017.10``|``system`` - -### gmpy2 - -GMP/MPIR, MPFR, and MPC interface to Python 2.6+ and 3.x - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|------------------------------------------------------------------------------------------ -``2.0.8`` |``-Python-2.7.13``|``intel/2017a`` -``2.0.8`` |``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``2.0.8`` |``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``2.1.0b1``|``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``2.1.0b1``|``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``2.1.0b4``| |``GCC/8.3.0`` -``2.1.0b5``| |``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/9.3.0``, ``iccifort/2020.4.304`` -``2.1.2`` | |``GCC/11.2.0``, ``GCC/11.3.0``, ``intel-compilers/2021.4.0``, ``intel-compilers/2022.1.0`` -``2.1.5`` | |``GCC/12.2.0``, ``GCC/12.3.0``, ``GCC/13.2.0`` - -### gmsh - -Gmsh is a 3D finite element grid generator with a build-in CAD engine and post-processor. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------- -``3.0.6`` |``-Python-2.7.14``|``foss/2017b`` -``3.0.6`` |``-Python-3.6.6`` |``foss/2018b`` -``4.2.2`` |``-Python-3.6.6`` |``foss/2018b`` -``4.5.6`` |``-Python-2.7.16``|``intel/2019b`` -``4.5.6`` |``-Python-3.7.4`` |``foss/2019b`` -``4.7.1`` |``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``4.8.4`` |``-Python-3.6.4`` |``foss/2018a`` -``4.9.0`` | |``foss/2021a`` -``4.11.1``| |``foss/2022a`` -``4.12.2``| |``foss/2023a`` - -### GMT - -GMT is an open source collection of about 80 command-line tools for manipulating geographic and Cartesian data sets (including filtering, trend fitting, gridding, projecting, etc.) and producing PostScript illustrations ranging from simple x-y plots via contour maps to artificially illuminated surfaces and 3D perspective views; the GMT supplements add another 40 more specialized and discipline-specific tools. - -*homepage*: - -version |toolchain -----------|------------------------------- -``4.5.17``|``foss/2018a`` -``5.4.1`` |``intel/2017a`` -``5.4.3`` |``foss/2018a``, ``intel/2017b`` -``5.4.5`` |``foss/2019a`` -``6.2.0`` |``foss/2019b``, ``foss/2020b`` - -### gmvapich2 - -GNU Compiler Collection (GCC) based compiler toolchain, including MVAPICH2 for MPI support. - -*homepage*: <(none)> - -version |toolchain -----------|---------- -``1.7.20``|``system`` -``2016a`` |``system`` - -### gmvolf - -GNU Compiler Collection (GCC) based compiler toolchain, including MVAPICH2 for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. - -*homepage*: <(none)> - -version |toolchain -----------|---------- -``1.7.20``|``system`` -``2016a`` |``system`` - -### GNU - -Compiler-only toolchain with GCC and binutils. - -*homepage*: - -version |toolchain ---------------|---------- -``4.9.2-2.25``|``system`` -``4.9.3-2.25``|``system`` -``5.1.0-2.25``|``system`` - -### gnupg-bundle - -GnuPG — The Universal Crypto Engine - -*homepage*: - -version |toolchain -------------|------------------ -``20240306``|``GCCcore/13.2.0`` - -### gnuplot - -Portable interactive, function plotting utility - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------------- -``5.0.3``|``foss/2016a``, ``intel/2016a`` -``5.0.5``|``foss/2016b``, ``intel/2016b`` -``5.0.6``|``intel/2017a`` -``5.2.2``|``foss/2017b``, ``foss/2018a``, ``intel/2017b``, ``intel/2018a`` -``5.2.5``|``foss/2018b`` -``5.2.6``|``GCCcore/8.2.0``, ``foss/2018b``, ``fosscuda/2018b`` -``5.2.8``|``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``5.4.1``|``GCCcore/10.2.0`` -``5.4.2``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``5.4.4``|``GCCcore/11.3.0`` -``5.4.6``|``GCCcore/12.2.0`` -``5.4.8``|``GCCcore/12.3.0`` - -### GnuTLS - -GnuTLS is a secure communications library implementing the SSL, TLS and DTLS protocols and technologies around them. It provides a simple C language application programming interface (API) to access the secure communications protocols as well as APIs to parse and write X.509, PKCS #12, OpenPGP and other required structures. It is aimed to be portable and efficient with focus on security and interoperability. - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``3.3.21``|``intel/2016a`` -``3.4.7`` |``GNU/4.9.3-2.25`` -``3.4.11``|``foss/2016a`` -``3.7.2`` |``GCCcore/10.3.0`` -``3.7.3`` |``GCCcore/11.2.0`` -``3.7.8`` |``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### Go - -Go is an open source programming language that makes it easy to build simple, reliable, and efficient software. - -*homepage*: - -version |toolchain -----------|----------------- -``1.2.1`` |``GCC/4.8.2`` -``1.4.2`` |``GCC/4.8.4`` -``1.5`` |``GCC/4.8.4`` -``1.8.1`` |``system`` -``1.11.5``|``system`` -``1.12`` |``system`` -``1.12.1``|``GCCcore/7.3.0`` -``1.13.1``|``system`` -``1.14`` |``system`` -``1.14.1``|``system`` -``1.16.3``|``system`` -``1.16.5``|``system`` -``1.16.6``|``system`` -``1.17.3``|``system`` -``1.17.6``|``system`` -``1.18.1``|``system`` -``1.18.3``|``system`` -``1.20.4``|``system`` -``1.21.1``|``system`` -``1.21.2``|``system`` -``1.21.6``|``system`` -``1.22.1``|``system`` - -### goalign - -Goalign is a set of command line tools to manipulate multiple alignments. - -*homepage*: - -version |toolchain ----------|---------- -``0.3.2``|``system`` - -### GOATOOLS - -A Python library for Gene Ontology analyses - -*homepage*: - -version |toolchain ----------|------------------------------ -``1.1.6``|``foss/2020b`` -``1.3.1``|``foss/2021b``, ``foss/2022a`` -``1.4.5``|``foss/2023a`` - -### gobff - -GCC and GFortran based compiler toolchain with OpenMPI, BLIS, libFLAME, ScaLAPACK and FFTW. - -*homepage*: <(none)> - -version |versionsuffix|toolchain ------------|-------------|---------- -``2020.06``|``-amd`` |``system`` -``2020.11``| |``system`` -``2020b`` | |``system`` -``2021a`` | |``system`` - -### GObject-Introspection - -GObject introspection is a middleware layer between C libraries (using GObject) and language bindings. The C library can be scanned at compile time and generate a metadata file, in addition to the actual native C library. Then at runtime, language bindings can read this metadata and automatically provide bindings to call into the C library. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|-------------------------------------- -``1.47.1``| |``foss/2016a``, ``intel/2016a`` -``1.48.0``| |``foss/2016a``, ``intel/2016a`` -``1.49.1``| |``foss/2016b``, ``intel/2016b`` -``1.52.0``| |``intel/2017a`` -``1.53.5``|``-Python-2.7.13``|``intel/2017a`` -``1.53.5``|``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``1.53.5``|``-Python-3.6.1`` |``intel/2017a`` -``1.54.1``|``-Python-2.7.14``|``foss/2018a``, ``intel/2018a`` -``1.54.1``|``-Python-2.7.15``|``foss/2018b``, ``fosscuda/2018b`` -``1.54.1``|``-Python-3.6.6`` |``fosscuda/2018b`` -``1.58.3``|``-Python-2.7.16``|``GCCcore/8.3.0`` -``1.60.1``|``-Python-3.7.2`` |``GCCcore/8.2.0`` -``1.63.1``|``-Python-3.7.4`` |``GCCcore/8.3.0`` -``1.64.0``|``-Python-3.8.2`` |``GCCcore/9.3.0`` -``1.66.1``| |``GCCcore/10.2.0`` -``1.68.0``| |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``1.72.0``| |``GCCcore/11.3.0`` -``1.74.0``| |``GCCcore/12.2.0`` -``1.76.1``| |``GCCcore/12.3.0`` -``1.78.1``| |``GCCcore/13.2.0`` - -### goblf - -GNU Compiler Collection (GCC) based compiler toolchain, including OpenMPI for MPI support, BLIS (BLAS support), LAPACK, FFTW and ScaLAPACK. - -*homepage*: <(none)> - -version |toolchain ----------|---------- -``2018b``|``system`` -``2020b``|``system`` - -### GOBNILP - -GOBNILP (Globally Optimal Bayesian Network learning using Integer Linear Programming) is a C program which learns Bayesian networks from complete discrete data or from local scores. - -*homepage*: - -version |toolchain ----------|-------------- -``1.6.3``|``GCC/11.3.0`` - -### Godon - -Godon is codon models software written in Go. - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|---------- -``20210913``|``-x86_64`` |``system`` - -### gofasta - -Some functions for dealing with alignments, developed to handle SARS-CoV-2 data as part of the COG-UK project. - -*homepage*: - -version |toolchain ----------|---------- -``0.0.5``|``system`` - -### golf - -GNU Compiler Collection (GCC) based compiler toolchain, including OpenBLAS (BLAS and LAPACK support) and FFTW. - -*homepage*: <(none)> - -version |toolchain ----------|---------- -``2018a``|``system`` -``2020a``|``system`` - -### gomkl - -GNU Compiler Collection (GCC) based compiler toolchain with OpenMPI and MKL - -*homepage*: <(none)> - -version |toolchain ----------|---------- -``2018b``|``system`` -``2019a``|``system`` -``2020a``|``system`` -``2020b``|``system`` -``2021a``|``system`` -``2021b``|``system`` -``2022a``|``system`` -``2023a``|``system`` - -### gompi - -GNU Compiler Collection (GCC) based compiler toolchain, including OpenMPI for MPI support. - -*homepage*: <(none)> - -version |versionsuffix|toolchain ------------|-------------|---------- -``2016.04``| |``system`` -``2016.06``| |``system`` -``2016.07``| |``system`` -``2016.09``| |``system`` -``2016a`` | |``system`` -``2016b`` | |``system`` -``2017a`` | |``system`` -``2017b`` | |``system`` -``2018.08``| |``system`` -``2018a`` | |``system`` -``2018b`` | |``system`` -``2019a`` | |``system`` -``2019b`` | |``system`` -``2020a`` | |``system`` -``2020b`` | |``system`` -``2021a`` | |``system`` -``2021b`` | |``system`` -``2022.05``| |``system`` -``2022.10``| |``system`` -``2022a`` | |``system`` -``2022b`` | |``system`` -``2023.09``| |``system`` -``2023a`` | |``system`` -``2023b`` | |``system`` -``2024.05``| |``system`` -``system`` |``-2.29`` |``system`` - -### gompic - -GNU Compiler Collection (GCC) based compiler toolchain along with CUDA toolkit, including OpenMPI for MPI support with CUDA features enabled. - -*homepage*: <(none)> - -version |toolchain ----------|---------- -``2017b``|``system`` -``2018a``|``system`` -``2018b``|``system`` -``2019a``|``system`` -``2019b``|``system`` -``2020a``|``system`` -``2020b``|``system`` - -### google-java-format - -Reformats Java source code to comply with Google Java Style. - -*homepage*: - -version|versionsuffix|toolchain --------|-------------|---------- -``1.7``|``-Java-1.8``|``system`` - -### googletest - -Google's framework for writing C++ tests on a variety of platforms - -*homepage*: - -version |toolchain -----------|--------------------------------------------------------------------- -``1.8.0`` |``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``foss/2016b``, ``intel/2016b`` -``1.8.1`` |``GCCcore/8.2.0`` -``1.10.0``|``GCCcore/10.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.11.0``|``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``1.12.1``|``GCCcore/12.2.0`` -``1.13.0``|``GCCcore/12.3.0`` -``1.14.0``|``GCCcore/13.2.0`` - -### gotree - -GoTree is a set of command line tools to manipulate phylogenetic trees. - -*homepage*: - -version |toolchain ----------|---------- -``0.4.0``|``system`` - -### GP2C - -The gp2c compiler is a package for translating GP routines into the C programming language, so that they can be compiled and used with the PARI system or the GP calculator. - -*homepage*: - -version |toolchain -------------|-------------- -``0.0.9pl5``|``foss/2016a`` - -### GPAW - -GPAW is a density-functional theory (DFT) Python code based on the projector-augmented wave (PAW) method and the atomic simulation environment (ASE). It uses real-space uniform grids and multigrid methods or atom-centered basis-functions. - -*homepage*: - -version |versionsuffix |toolchain ------------|----------------------------|---------------------------------------------------------------- -``1.4.0`` |``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``19.8.1`` |``-ASE-3.18.0-Python-3.6.6``|``foss/2018b``, ``intel/2018b`` -``19.8.1`` |``-Python-3.7.2`` |``foss/2019a``, ``intel/2019a`` -``20.1.0`` |``-Python-3.7.4`` |``foss/2019b``, ``intel/2019b`` -``20.10.0``| |``foss/2020b``, ``intel/2020b`` -``20.10.0``|``-ASE-3.20.1-Python-3.7.4``|``foss/2019b``, ``intel/2019b`` -``21.1.0`` |``-ASE-3.21.1`` |``foss/2020b``, ``intel/2020b`` -``21.6.0`` | |``foss/2021a`` -``21.6.0`` |``-ASE-3.22.0`` |``foss/2020b``, ``intel/2020b`` -``22.8.0`` | |``foss/2021b``, ``foss/2022a``, ``intel/2021b``, ``intel/2022a`` -``23.9.1`` | |``foss/2022a``, ``foss/2023a``, ``intel/2022a`` -``24.1.0`` | |``foss/2022a``, ``foss/2023a``, ``intel/2022a``, ``intel/2023a`` - -### GPAW-setups - -PAW setups for the GPAW Density Functional Theory package. Users can install setups manually using 'gpaw install-data' or use setups from this package. The versions of GPAW and GPAW-setups can be intermixed. Compared to version 0.9.20000, version 24.1.0 contains an new improved Cr setup with 14 electrons, which can be manually selected. Otherwise no changes are made, so no results will change. - -*homepage*: - -version |toolchain --------------|---------- -``0.8.7929`` |``system`` -``0.9.9672`` |``system`` -``0.9.11271``|``system`` -``0.9.20000``|``system`` -``24.1.0`` |``system`` - -### gperf - -GNU gperf is a perfect hash function generator. For a given list of strings, it produces a hash function and hash table, in form of C or C++ code, for looking up a value depending on the input string. The hash function is perfect, which means that the hash table has no collisions, and the hash table lookup needs a single string comparison only. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``3.0.4``|``GCCcore/4.9.3``, ``GCCcore/5.4.0``, ``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a``, ``intel/2016b``, ``intel/2017a`` -``3.1`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` - -### gperftools - -gperftools is a collection of a high-performance multi-threaded malloc() implementation, plus some pretty nifty performance analysis tools. Includes TCMalloc, heap-checker, heap-profiler and cpu-profiler. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------- -``2.5`` |``foss/2016a``, ``intel/2016b`` -``2.6.3`` |``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``2.7.90``|``GCCcore/8.3.0`` -``2.8`` |``GCCcore/9.3.0`` -``2.9.1`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``2.10`` |``GCCcore/11.3.0`` -``2.12`` |``GCCcore/12.3.0`` -``2.13`` |``GCCcore/13.2.0`` -``2.14`` |``GCCcore/12.2.0`` - -### gpustat - -A simple command-line utility for querying and monitoring GPU status - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|------------------------------------- -``0.5.0`` |``-Python-2.7.15``|``fosscuda/2018b`` -``0.6.0`` | |``GCCcore/10.3.0``, ``gcccuda/2020b`` -``0.6.0`` |``-Python-3.7.4`` |``fosscuda/2019b`` -``1.0.0b1``| |``GCCcore/11.2.0`` -``1.1`` | |``GCCcore/11.3.0`` - -### GPy - -GPy is a Gaussian Process (GP) framework written in Python - -*homepage*: - -version |toolchain -----------|-------------- -``1.10.0``|``foss/2021b`` - -### GPyOpt - -GPyOpt is a Python open-source library for Bayesian Optimization - -*homepage*: - -version |toolchain ----------|--------------- -``1.2.6``|``intel/2020b`` - -### GPyTorch - -GPyTorch is a Gaussian process library implemented using PyTorch. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``1.3.0``| |``foss/2020b`` -``1.9.1``|``-CUDA-11.3.1``|``foss/2021a`` -``1.10`` |``-CUDA-11.7.0``|``foss/2022a`` - -### Grace - -Grace is a WYSIWYG tool to make two-dimensional plots of numerical data. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|----------------------------------------------------------------------------------------------------------------- -``5.1.25``| |``foss/2016a``, ``foss/2021a``, ``foss/2021b``, ``intel/2016a`` -``5.1.25``|``-5build1`` |``foss/2017b``, ``foss/2018a``, ``foss/2019a``, ``foss/2019b``, ``intel/2017b``, ``intel/2019a``, ``intel/2019b`` - -### Gradle - -Complete Gradle install. From mobile apps to microservices, from small startups to big enterprises, Gradle helps teams build, automate and deliver better software, faster. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|---------- -``4.5.1``| |``system`` -``6.1.1``| |``system`` -``6.9.1``| |``system`` -``8.6`` |``-Java-17`` |``system`` - -### gradunwarp - -Gradient Unwarping. This is the Human Connectome Project fork of the no longer maintained original. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------------|-------------- -``1.1.0``|``-HCP-Python-2.7.15``|``foss/2019a`` -``1.2.0``|``-HCP-Python-2.7.15``|``foss/2019a`` -``1.2.0``|``-HCP-Python-3.7.2`` |``foss/2019a`` - -### graph-tool - -Graph-tool is an efficient Python module for manipulation and statistical analysis of graphs (a.k.a. networks). Contrary to most other python modules with similar functionality, the core data structures and algorithms are implemented in C++, making extensive use of template metaprogramming, based heavily on the Boost Graph Library. This confers it a level of performance that is comparable (both in memory usage and computation time) to that of a pure C/C++ library. - -*homepage*: - -version |versionsuffix |toolchain ---------|-----------------|-------------- -``2.26``|``-Python-3.6.3``|``foss/2017b`` -``2.27``|``-Python-3.6.6``|``foss/2018b`` -``2.55``| |``foss/2022a`` - -### GraphDB - -GraphDB is an enterprise ready Semantic Graph Database, compliant with W3C Standards. Semantic graph databases (also called RDF triplestores) provide the core infrastructure for solutions where modelling agility, data integration, relationship exploration and cross-enterprise data publishing and consumption are important. - -*homepage*: - -version |toolchain -----------|---------- -``10.1.5``|``system`` - -### Graphene - -Graphene is a a thin layer of types for graphic libraries - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------ -``1.6.0`` |``intel/2017a`` -``1.10.8``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### GraphicsMagick - -GraphicsMagick is the swiss army knife of image processing. - -*homepage*: - -version |toolchain -----------|---------------------------------- -``1.3.23``|``foss/2016a``, ``intel/2016a`` -``1.3.25``|``intel/2016b``, ``intel/2017a`` -``1.3.28``|``foss/2018a`` -``1.3.31``|``foss/2018b`` -``1.3.34``|``foss/2019a``, ``foss/2019b`` -``1.3.36``|``GCCcore/11.2.0``, ``foss/2020b`` - -### graphite2 - -Graphite is a "smart font" system developed specifically to handle the complexities of lesser-known languages of the world. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.3.14``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/8.3.0`` - -### GraPhlAn - -GraPhlAn is a software tool for producing high-quality circular representations of taxonomic and phylogenetic trees. It focuses on concise, integrative, informative, and publication-ready representations of phylogenetically- and taxonomically-driven investigation. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``1.1.3``|``-Python-2.7.16``|``foss/2019b`` - -### GraphMap - -A highly sensitive and accurate mapper for long, error-prone reads - -*homepage*: - -version |toolchain ----------|-------------- -``0.5.2``|``foss/2019b`` - -### GraphMap2 - -A highly sensitive and accurate mapper for long, error-prone reads - -*homepage*: - -version |toolchain ----------|-------------- -``0.6.4``|``foss/2019b`` - -### Graphviz - -Graphviz is open source graph visualization software. Graph visualization is a way of representing structural information as diagrams of abstract graphs and networks. It has important applications in networking, bioinformatics, software engineering, database and web design, machine learning, and in visual interfaces for other technical domains. - -*homepage*: - -version |versionsuffix |toolchain -----------|-------------------------|-------------------------------------- -``2.38.0``| |``foss/2016b``, ``intel/2016b`` -``2.40.1``| |``foss/2018b``, ``intel/2018a`` -``2.40.1``|``-Python-2.7.15`` |``foss/2018b`` -``2.42.2``| |``foss/2019b`` -``2.42.2``|``-Java-11`` |``GCCcore/8.3.0`` -``2.42.2``|``-Python-3.7.4`` |``foss/2019b`` -``2.44.1``|``-Java-11`` |``GCCcore/9.3.0`` -``2.44.1``|``-Java-11-Python-3.8.2``|``GCCcore/9.3.0`` -``2.47.0``|``-Java-11`` |``GCCcore/10.2.0`` -``2.47.2``| |``GCCcore/10.3.0`` -``2.50.0``| |``GCCcore/11.2.0`` -``5.0.0`` | |``GCCcore/11.3.0`` -``8.1.0`` | |``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### graphviz-python - -Simple Python interface for Graphviz - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|-------------------------------------- -``0.5.1`` |``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``0.5.1`` |``-Python-3.5.2`` |``intel/2016b`` -``0.8.2`` |``-Python-3.6.4`` |``intel/2018a`` -``0.20.1``| |``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### GRASP - -The General Relativistic Atomic Structure Package (GRASP) is a set of Fortran 90 programs for performing fully-relativistic electron structure calculations of atoms. - -*homepage*: - -version |toolchain ---------|-------------- -``2018``|``foss/2019b`` - -### GRASP-suite - -GRASP-suite is a collection of tools and tutorials to perform and analyse ancestral sequence reconstruction. - -*homepage*: - -version |versionsuffix|toolchain ---------------|-------------|---------- -``2023-05-09``|``-Java-17`` |``system`` - -### GRASS - -The Geographic Resources Analysis Support System - used for geospatial data management and analysis, image processing, graphics and maps production, spatial modeling, and visualization - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------ -``7.6.0``|``-Python-2.7.15``|``foss/2018b`` -``7.8.3``|``-Python-3.7.4`` |``fosscuda/2019b`` -``8.2.0``| |``foss/2021b`` - -### Greenlet - -The greenlet package is a spin-off of Stackless, a version of CPython that supports micro-threads called "tasklets". Tasklets run pseudo-concurrently (typically in a single or a few OS-level threads) and are synchronized with data exchanges on "channels". A "greenlet", on the other hand, is a still more primitive notion of micro-thread with no implicit scheduling; coroutines, in other words. This is useful when you want to control exactly when your code runs. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|---------------------------------------------------------- -``0.4.9`` |``-Python-2.7.11``|``intel/2016a`` -``0.4.9`` |``-Python-3.5.1`` |``intel/2016a`` -``0.4.11``|``-Python-2.7.12``|``intel/2016b`` -``0.4.12``|``-Python-2.7.14``|``intel/2017b`` -``2.0.2`` | |``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``3.0.2`` | |``GCCcore/12.3.0`` -``3.0.3`` | |``GCCcore/13.2.0`` - -### Grep - -The grep command searches one or more input files for lines containing a match to a specified pattern. By default, grep prints the matching lines. - -*homepage*: - -version |toolchain ---------|------------- -``2.21``|``GCC/4.9.2`` - -### gretl - -A cross-platform software package for econometric analysis - -*homepage*: - -version |toolchain ----------|-------------- -``2020a``|``foss/2019a`` - -### grib_api - -The ECMWF GRIB API is an application program interface accessible from C, FORTRAN and Python programs developed for encoding and decoding WMO FM-92 GRIB edition 1 and edition 2 messages. A useful set of command line tools is also provided to give quick access to GRIB messages. - -*homepage*: - -version |toolchain -----------|------------------------------------------------ -``1.16.0``|``intel/2016a`` -``1.21.0``|``foss/2017a`` -``1.24.0``|``foss/2017b``, ``intel/2017a``, ``intel/2017b`` - -### grid - -Grid is a free and open-source Python library for numerical integration, interpolation and differentiation of interest for the quantum chemistry community. - -*homepage*: - -version |toolchain -------------|--------------- -``20220610``|``intel/2022a`` - -### GRIDSS - -GRIDSS is a module software suite containing tools useful for the detection of genomic rearrangements. GRIDSS includes a genome-wide break-end assembler, as well as a structural variation caller for Illumina sequencing data. GRIDSS calls variants based on alignment-guided positional de Bruijn graph genome-wide break-end assembly, split read, and read pair evidence. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|-------------- -``2.13.2``|``-Java-11`` |``foss/2021b`` - -### GRIT - -GRIT - A tool for the integrative analysis of RNA-seq type assays - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``2.0.5``|``-Python-2.7.12``|``intel/2016b`` - -### GRNBoost - -XGBoost is an optimized distributed gradient boosting library designed to be highly efficient, flexible and portable. - -*homepage*: - -version |versionsuffix |toolchain -------------|-------------------|--------------- -``20171009``|``-Java-1.8.0_152``|``intel/2017b`` - -### groff - -Groff (GNU troff) is a typesetting system that reads plain text mixed with formatting commands and produces formatted output. - -*homepage*: - -version |toolchain -----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.22.4``|``FCC/4.5.0``, ``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.1.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.23.0``|``GCCcore/13.2.0`` - -### GroIMP - -GroIMP (Growth Grammar-related Interactive Modelling Platform) is a 3D-modelling platform. - -*homepage*: - -version|toolchain --------|---------- -``1.5``|``system`` - -### GROMACS - -GROMACS is a versatile package to perform molecular dynamics, i.e. simulate the Newtonian equations of motion for systems with hundreds to millions of particles. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------------------|------------------------------------------------------------------------------------------------------------ -``5.1.2`` |``-hybrid`` |``foss/2016a``, ``intel/2016a`` -``5.1.2`` |``-hybrid-dp`` |``intel/2016a`` -``5.1.2`` |``-mt`` |``foss/2016a`` -``5.1.4`` |``-hybrid`` |``foss/2016b`` -``5.1.4`` |``-mt`` |``foss/2016b`` -``2016`` |``-hybrid`` |``foss/2016b`` -``2016`` |``-mt`` |``foss/2016b`` -``2016.1``|``-PLUMED`` |``foss/2017a`` -``2016.2``| |``foss/2017a`` -``2016.3``| |``foss/2017a``, ``intel/2017a`` -``2016.3``|``-GPU-enabled`` |``foss/2016b`` -``2016.4``| |``foss/2017b``, ``fosscuda/2017b``, ``giolf/2017b``, ``intel/2017a``, ``intel/2017b``, ``intelcuda/2017b`` -``2016.5``| |``intel/2018a`` -``2018`` | |``foss/2018a`` -``2018.1``|``-PLUMED`` |``foss/2018b`` -``2018.2``| |``foss/2017b``, ``foss/2018b``, ``fosscuda/2017b``, ``fosscuda/2018b``, ``intel/2017b``, ``intelcuda/2017b`` -``2018.3``| |``foss/2018b``, ``fosscuda/2018b`` -``2018.4``|``-PLUMED-2.5.0`` |``foss/2018b``, ``fosscuda/2018b`` -``2019`` | |``foss/2018b``, ``fosscuda/2018b`` -``2019.2``| |``fosscuda/2019a`` -``2019.3``| |``foss/2019a``, ``foss/2019b``, ``fosscuda/2019a``, ``fosscuda/2019b`` -``2019.4``| |``foss/2019b``, ``fosscuda/2019b`` -``2019.4``|``-PLUMED-2.5.4`` |``foss/2019b``, ``fosscuda/2019b`` -``2019.6``| |``fosscuda/2019b`` -``2020`` | |``foss/2019b``, ``fosscuda/2019b`` -``2020.1``|``-Python-3.8.2`` |``foss/2020a`` -``2020.3``| |``fosscuda/2019b`` -``2020.4``|``-Python-3.8.2`` |``foss/2020a`` -``2020.5``|``-Python-3.8.2`` |``fosscuda/2020a`` -``2021`` | |``foss/2020b``, ``fosscuda/2020b`` -``2021.2``| |``fosscuda/2020b`` -``2021.3``| |``foss/2021a`` -``2021.3``|``-CUDA-11.3.1`` |``foss/2021a`` -``2021.3``|``-CUDA-11.3.1-PLUMED-2.7.2``|``foss/2021a`` -``2021.3``|``-PLUMED-2.7.2`` |``foss/2021a`` -``2021.5``| |``foss/2021b`` -``2021.5``|``-CUDA-11.4.1`` |``foss/2021b`` -``2021.5``|``-CUDA-11.4.1-PLUMED-2.8.0``|``foss/2021b`` -``2021.5``|``-PLUMED-2.8.0`` |``foss/2021b`` -``2023.1``| |``foss/2022a`` -``2023.1``|``-CUDA-11.7.0`` |``foss/2022a`` -``2023.3``| |``foss/2022a``, ``foss/2023a`` -``2023.3``|``-CUDA-11.7.0`` |``foss/2022a`` -``2023.3``|``-CUDA-12.1.1-PLUMED-2.9.0``|``foss/2023a`` -``2024.1``| |``foss/2023b`` - -### GromacsWrapper - -GromacsWrapper is a python package that wraps system calls to Gromacs tools into thin classes. This allows for fairly seamless integration of the gromacs tools into python scripts. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------ -``0.8.0``|``-Python-3.7.2``|``fosscuda/2019a`` - -### Groovy - -Groovy is a powerful, optionally typed and dynamic language, with static-typing and static compilation capabilities, for the Java platform aimed at improving developer productivity thanks to a concise, familiar and easy to learn syntax. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|---------- -``2.5.9``|``-Java-11`` |``system`` -``4.0.3``|``-Java-11`` |``system`` - -### gRPC - -gRPC is a modern, open source, high-performance remote procedure call (RPC) framework that can run anywhere. gRPC enables client and server applications to communicate transparently, and simplifies the building of connected systems. - -*homepage*: - -version |toolchain -----------|------------------ -``1.44.0``|``GCCcore/11.2.0`` -``1.57.0``|``GCCcore/12.3.0`` -``1.62.1``|``GCCcore/13.2.0`` - -### grpcio - -gRPC is a modern, open source, high-performance remote procedure call (RPC) framework that can run anywhere. gRPC enables client and server applications to communicate transparently, and simplifies the building of connected systems. - -*homepage*: - -version |toolchain -----------|------------------ -``1.57.0``|``GCCcore/12.3.0`` - -### GSD - -The GSD file format is the native file format for HOOMD-blue. GSD files store trajectories of the HOOMD-blue system state in a binary file with efficient random access to frames. GSD allows all particle and topology properties to vary from one frame to the next. Use the GSD Python API to specify the initial condition for a HOOMD-blue simulation or analyze trajectory output with a script. Read a GSD trajectory with a visualization tool to explore the behavior of the simulation. - -*homepage*: - -version |toolchain ----------|-------------- -``3.2.0``|``foss/2022a`` - -### GSEA - -Gene Set Enrichment Analysis (GSEA) is a computational method that determines whether an a priori defined set of genes shows statistically significant, concordant differences between two biological states (e.g. phenotypes). - -*homepage*: - -version |toolchain ----------|---------- -``4.0.3``|``system`` - -### gsettings-desktop-schemas - -gsettings-desktop-schemas contains a collection of GSettings schemas for settings shared by various components of a desktop. - -*homepage*: - -version |toolchain -----------|----------------- -``3.34.0``|``GCCcore/8.2.0`` - -### GSL - -The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers. The library provides a wide range of mathematical routines such as random number generators, special functions and least-squares fitting. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.16`` |``foss/2016a``, ``intel/2016a`` -``2.1`` |``GCC/5.4.0-2.26``, ``foss/2016a``, ``foss/2016b``, ``iccifort/2016.3.210-GCC-5.4.0-2.26``, ``intel/2016a``, ``intel/2016b`` -``2.2.1``|``intel/2016a``, ``intel/2016b`` -``2.3`` |``foss/2016b``, ``foss/2017a``, ``intel/2016b``, ``intel/2017a`` -``2.4`` |``GCCcore/6.4.0`` -``2.5`` |``GCC/7.3.0-2.30``, ``GCC/8.2.0-2.31.1``, ``iccifort/2018.3.222-GCC-7.3.0-2.30``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -``2.6`` |``GCC/10.2.0``, ``GCC/8.3.0``, ``GCC/9.3.0``, ``iccifort/2019.5.281``, ``iccifort/2020.1.217``, ``iccifort/2020.4.304`` -``2.7`` |``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0``, ``GCC/12.3.0``, ``GCC/13.2.0``, ``intel-compilers/2021.2.0``, ``intel-compilers/2021.4.0``, ``intel-compilers/2022.1.0`` - -### gSOAP - -The gSOAP toolkit is a C and C++ software development toolkit for SOAP and REST XML Web services and generic C/C++ XML data bindings. The toolkit analyzes WSDLs and XML schemas (separately or as a combined set) and maps the XML schema types and the SOAP/REST XML messaging protocols to easy-to-use and efficient C and C++ code. It also supports exposing (legacy) C and C++ applications as XML Web services by auto-generating XML serialization code and WSDL specifications. Or you can simply use it to automatically convert XML to/from C and C++ data. The toolkit supports options to generate pure ANSI C or C++ with or without STL. - -*homepage*: - -version |toolchain ------------|----------------- -``2.8.48`` |``GCCcore/6.3.0`` -``2.8.100``|``GCCcore/8.3.0`` - -### gspell - -gspell provides a flexible API to add spell-checking to a GTK application. - -*homepage*: - -version |toolchain -----------|------------------ -``1.12.2``|``GCCcore/12.3.0`` - -### gsport - -GSPORT command-line tool for accessing GenomeScan Customer Portal - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|----------------- -``1.4.2``|``-Python-3.7.4``|``GCCcore/8.3.0`` - -### GST-plugins-bad - -GStreamer is a library for constructing graphs of media-handling components. The applications it supports range from simple Ogg/Vorbis playback, audio/video streaming to complex audio (mixing) and video (non-linear editing) processing. - -*homepage*: - -version |toolchain -----------|------------------------------ -``1.20.2``|``GCC/11.3.0`` -``1.22.5``|``GCC/12.2.0``, ``GCC/12.3.0`` - -### GST-plugins-base - -GStreamer is a library for constructing graphs of media-handling components. The applications it supports range from simple Ogg/Vorbis playback, audio/video streaming to complex audio (mixing) and video (non-linear editing) processing. - -*homepage*: - -version |toolchain ------------|------------------------------------------------------------------------------------------------------------------ -``0.10.36``|``foss/2016a``, ``foss/2017b``, ``foss/2018b``, ``intel/2016a``, ``intel/2016b``, ``intel/2017a``, ``intel/2017b`` -``1.6.4`` |``foss/2016a`` -``1.8.3`` |``foss/2016a`` -``1.16.0`` |``GCC/8.2.0-2.31.1`` -``1.16.2`` |``GCC/8.3.0`` -``1.18.4`` |``GCC/10.2.0``, ``GCC/10.3.0`` -``1.18.5`` |``GCC/11.2.0`` -``1.20.2`` |``GCC/11.3.0`` -``1.22.1`` |``GCC/12.2.0`` -``1.22.5`` |``GCC/12.3.0`` - -### GStreamer - -GStreamer is a library for constructing graphs of media-handling components. The applications it supports range from simple Ogg/Vorbis playback, audio/video streaming to complex audio (mixing) and video (non-linear editing) processing. - -*homepage*: - -version |toolchain ------------|------------------------------------------------------------------------------------------------------------------ -``0.10.36``|``foss/2016a``, ``foss/2017b``, ``foss/2018b``, ``intel/2016a``, ``intel/2016b``, ``intel/2017a``, ``intel/2017b`` -``1.6.4`` |``foss/2016a`` -``1.8.3`` |``foss/2016a`` -``1.15.1`` |``fosscuda/2018b`` -``1.16.0`` |``GCC/8.2.0-2.31.1`` -``1.16.2`` |``GCC/8.3.0`` -``1.18.4`` |``GCC/10.2.0``, ``GCC/10.3.0`` -``1.18.5`` |``GCC/11.2.0`` -``1.20.2`` |``GCC/11.3.0`` -``1.22.1`` |``GCC/12.2.0`` -``1.22.5`` |``GCC/12.3.0`` - -### gsutil - -gsutil is a Python application that lets you access Cloud Storage from the command line. - -*homepage*: - -version |toolchain ---------|------------------ -``5.10``|``GCCcore/11.2.0`` -``5.29``|``GCCcore/13.2.0`` - -### gsw - -This Python implementation of the Thermodynamic Equation of Seawater 2010 (TEOS-10) is based primarily on numpy ufunc wrappers of the GSW-C implementation. This library replaces the original python-gsw pure-python implementation.. The primary reasons for this change are that by building on the C implementation we reduce code duplication and we gain an immediate update to the 75-term equation. Additional benefits include a major increase in speed, a reduction in memory usage, and the inclusion of more functions. The penalty is that a C (or MSVC C++ for Windows) compiler is required to build the package from source. - -*homepage*: - -version |toolchain -----------|-------------- -``3.6.16``|``foss/2022a`` - -### GTDB-Tk - -A toolkit for assigning objective taxonomic classifications to bacterial and archaeal genomes. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|----------------------------------------------- -``0.2.2``|``-Python-2.7.15``|``intel/2018b`` -``0.3.2``|``-Python-2.7.15``|``foss/2019a``, ``intel/2019a`` -``1.0.2``|``-Python-3.7.4`` |``intel/2019b`` -``1.3.0``|``-Python-3.8.2`` |``intel/2020a`` -``1.5.0``| |``intel/2020b`` -``1.7.0``| |``foss/2020b``, ``foss/2021a``, ``intel/2020b`` -``2.0.0``| |``foss/2021a``, ``intel/2021b`` -``2.1.1``| |``foss/2021b`` -``2.3.2``| |``foss/2022a``, ``foss/2023a`` -``2.4.0``| |``foss/2023a`` - -### GTK+ - -The GTK+ 2 package contains libraries used for creating graphical user interfaces for applications. - -*homepage*: - -version |toolchain ------------|-------------------------------------------------------------------------------- -``2.24.28``|``intel/2016a`` -``2.24.30``|``foss/2016a``, ``intel/2016a`` -``2.24.31``|``foss/2016b``, ``intel/2016b``, ``intel/2017a`` -``2.24.32``|``foss/2017b``, ``foss/2018a``, ``foss/2018b``, ``intel/2017b``, ``intel/2018a`` -``2.24.33``|``GCCcore/10.3.0`` -``3.22.30``|``fosscuda/2018b`` -``3.24.8`` |``GCCcore/8.2.0`` -``3.24.13``|``GCCcore/8.3.0`` -``3.24.17``|``GCCcore/9.3.0`` -``3.24.23``|``GCCcore/10.2.0`` - -### GTK2 - -The GTK+ 2 package contains libraries used for creating graphical user interfaces for applications. - -*homepage*: - -version |toolchain ------------|-------------------------------------- -``2.24.33``|``GCCcore/10.3.0``, ``GCCcore/11.3.0`` - -### GTK3 - -GTK+ is the primary library used to construct user interfaces in GNOME. It provides all the user interface controls, or widgets, used in a common graphical application. Its object-oriented API allows you to construct user interfaces without dealing with the low-level details of drawing and device interaction. - -*homepage*: - -version |toolchain ------------|------------------ -``3.24.29``|``GCCcore/10.3.0`` -``3.24.31``|``GCCcore/11.2.0`` -``3.24.33``|``GCCcore/11.3.0`` -``3.24.35``|``GCCcore/12.2.0`` -``3.24.37``|``GCCcore/12.3.0`` -``3.24.39``|``GCCcore/13.2.0`` - -### GTK4 - -GTK+ is the primary library used to construct user interfaces in GNOME. It provides all the user interface controls, or widgets, used in a common graphical application. Its object-oriented API allows you to construct user interfaces without dealing with the low-level details of drawing and device interaction. - -*homepage*: - -version |toolchain -----------|-------------- -``4.7.0`` |``GCC/11.3.0`` -``4.11.3``|``GCC/12.2.0`` -``4.13.1``|``GCC/12.3.0`` - -### GtkSourceView - -GtkSourceView is a GNOME library that extends GtkTextView, the standard GTK+ widget for multiline text editing. GtkSourceView adds support for syntax highlighting, undo/redo, file loading and saving, search and replace, a completion system, printing, displaying line numbers, and other features typical of a source code editor. - -*homepage*: - -version |toolchain ------------|------------------------------------- -``3.24.11``|``GCCcore/10.2.0``, ``GCCcore/8.2.0`` -``4.4.0`` |``GCCcore/8.2.0`` - -### GTOOL - -GTOOL is a program for transforming sets of genotype data for use with the programs SNPTEST and IMPUTE. - -*homepage*: - -version |toolchain ----------|---------- -``0.7.5``|``system`` - -### GTS - -GTS stands for the GNU Triangulated Surface Library. It is an Open Source Free Software Library intended to provide a set of useful functions to deal with 3D surfaces meshed with interconnected triangles. - -*homepage*: - -version |toolchain -------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``0.7.6`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``foss/2016a``, ``foss/2016b``, ``foss/2018b``, ``foss/2019b``, ``foss/2020a``, ``intel/2016a``, ``intel/2016b``, ``intel/2018a`` -``20121130``|``foss/2017b`` - -### gubbins - -Gubbins (Genealogies Unbiased By recomBinations In Nucleotide Sequences) is an algorithm that iteratively identifies loci containing elevated densities of base substitutions while concurrently constructing a phylogeny based on the putative point mutations outside of these regions. Simulations demonstrate the algorithm generates highly accurate reconstructions under realistic models of short-term bacterial evolution, and can be run in only a few hours on alignments of hundreds of bacterial genome sequences. - -*homepage*: - -version |toolchain ----------|---------- -``2.4.0``|``system`` - -### guenomu - -guenomu is a software written in C that estimates the species tree for a given set of gene families. - -*homepage*: - -version |versionsuffix|toolchain ---------------|-------------|--------------- -``2019.07.05``|``-mpi`` |``iimpi/2019a`` - -### GUIDANCE - -GUIDANCE is a software package for aligning biological sequences (DNA or amino acids) using either MAFFT, PRANK, or CLUSTALW, and calculating confidence scores for each column, sequence and residue in the alignment. - -*homepage*: - -version |toolchain ---------|-------------- -``2.02``|``GCC/12.3.0`` - -### Guile - -Guile is a programming language, designed to help programmers create flexible applications that can be extended by users or other programmers with plug-ins, modules, or scripts. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.8.8`` |``GCCcore/5.4.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``GNU/4.9.3-2.25``, ``foss/2016a``, ``foss/2016b``, ``foss/2017a``, ``intel/2016a``, ``intel/2016b`` -``2.0.11``|``GCC/4.9.3-2.25``, ``foss/2016a`` -``2.2.2`` |``GCCcore/6.4.0`` -``2.2.4`` |``GCCcore/7.3.0``, ``GCCcore/9.3.0`` -``2.2.7`` |``GCCcore/10.3.0`` -``3.0.7`` |``GCCcore/11.2.0`` -``3.0.8`` |``GCCcore/11.3.0`` -``3.0.9`` |``GCCcore/10.2.0``, ``GCCcore/12.3.0`` - -### GULP - -GULP is a program for performing a variety of types of simulation on materials using boundary conditions of 0-D (molecules and clusters), 1-D (polymers), 2-D (surfaces, slabs and grain boundaries), or 3-D (periodic solids)Band Unfolding code for Plane-wave based calculations - -*homepage*: - -version|toolchain --------|--------------- -``5.1``|``intel/2019a`` -``6.1``|``foss/2021b`` - -### Gurobi - -The Gurobi Optimizer is a state-of-the-art solver for mathematical programming. The solvers in the Gurobi Optimizer were designed from the ground up to exploit modern architectures and multi-core processors, using the most advanced implementations of the latest algorithms. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------------------------------------------- -``6.5.1`` | |``system`` -``6.5.2`` | |``system`` -``7.0.1`` | |``system`` -``7.5.2`` | |``system`` -``7.5.2`` |``-Python-3.6.4``|``intel/2018a`` -``8.1.1`` | |``system`` -``9.0.0`` | |``system`` -``9.0.0`` |``-Python-3.6.6``|``foss/2018b``, ``intel/2018b`` -``9.0.0`` |``-Python-3.7.4``|``GCCcore/8.3.0`` -``9.0.1`` | |``system`` -``9.0.1`` |``-Python-3.8.2``|``GCCcore/9.3.0`` -``9.0.3`` | |``GCCcore/10.2.0``, ``system`` -``9.1.0`` | |``system`` -``9.1.1`` | |``GCCcore/10.2.0`` -``9.1.2`` | |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``system`` -``9.5.0`` | |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``9.5.2`` | |``GCCcore/11.3.0`` -``10.0.1``| |``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``11.0.0``| |``GCCcore/12.3.0`` - -### GUSHR - -Assembly-free construction of UTRs from short read RNA-Seq data on the basis of coding sequence annotation. - -*homepage*: - -version |toolchain ---------------|-------------- -``2020-09-28``|``foss/2021b`` - -### gzip - -gzip (GNU zip) is a popular data compression program as a replacement for compress - -*homepage*: - -version |toolchain ---------|------------------------------------------------------------------------------------------------------------------- -``1.8`` |``GCCcore/5.4.0``, ``GCCcore/6.3.0``, ``GCCcore/6.4.0`` -``1.9`` |``GCCcore/7.3.0`` -``1.10``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.12``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``1.13``|``GCCcore/13.2.0``, ``GCCcore/13.3.0`` - -## H - - -[h4toh5](#h4toh5) - [H5hut](#h5hut) - [h5netcdf](#h5netcdf) - [h5py](#h5py) - [Hadoop](#hadoop) - [HAL](#hal) - [hampel](#hampel) - [hanythingondemand](#hanythingondemand) - [HAPGEN2](#hapgen2) - [HarfBuzz](#harfbuzz) - [Harminv](#harminv) - [harmony](#harmony) - [hatch-jupyter-builder](#hatch-jupyter-builder) - [hatchling](#hatchling) - [HBase](#hbase) - [HD-BET](#hd-bet) - [HDBSCAN](#hdbscan) - [HDDM](#hddm) - [HDF](#hdf) - [HDF-EOS](#hdf-eos) - [HDF-EOS2](#hdf-eos2) - [HDF-EOS5](#hdf-eos5) - [HDF5](#hdf5) - [hdf5storage](#hdf5storage) - [HDFView](#hdfview) - [hdWGCNA](#hdwgcna) - [HEALPix](#healpix) - [Health-GPS](#health-gps) - [heaptrack](#heaptrack) - [hector](#hector) - [HeFFTe](#heffte) - [Hello](#hello) - [help2man](#help2man) - [HepMC](#hepmc) - [HepMC3](#hepmc3) - [hevea](#hevea) - [HF-Datasets](#hf-datasets) - [HH-suite](#hh-suite) - [HiC-Pro](#hic-pro) - [hic-straw](#hic-straw) - [HiCExplorer](#hicexplorer) - [HiCMatrix](#hicmatrix) - [hierfstat](#hierfstat) - [hifiasm](#hifiasm) - [HighFive](#highfive) - [HiGHS](#highs) - [Highway](#highway) - [HIP](#hip) - [hipify-clang](#hipify-clang) - [HIPS](#hips) - [hipSYCL](#hipsycl) - [hiredis](#hiredis) - [HISAT2](#hisat2) - [histolab](#histolab) - [hivtrace](#hivtrace) - [hl7apy](#hl7apy) - [HLAminer](#hlaminer) - [hmmcopy_utils](#hmmcopy_utils) - [HMMER](#hmmer) - [HMMER2](#hmmer2) - [hmmlearn](#hmmlearn) - [HOME](#home) - [HOMER](#homer) - [HOOMD-blue](#hoomd-blue) - [Horovod](#horovod) - [horton](#horton) - [how_are_we_stranded_here](#how_are_we_stranded_here) - [HPCC](#hpcc) - [HPCG](#hpcg) - [HPCX](#hpcx) - [HPDBSCAN](#hpdbscan) - [HPL](#hpl) - [htop](#htop) - [HTSeq](#htseq) - [HTSlib](#htslib) - [HTSplotter](#htsplotter) - [hub](#hub) - [humann](#humann) - [hunspell](#hunspell) - [hwloc](#hwloc) - [Hybpiper](#hybpiper) - [Hydra](#hydra) - [Hyperopt](#hyperopt) - [HyperQueue](#hyperqueue) - [hyperspy](#hyperspy) - [HyPhy](#hyphy) - [HyPo](#hypo) - [hypothesis](#hypothesis) - [Hypre](#hypre) - - -### h4toh5 - -The h4toh5 software consists of the h4toh5 and h5toh4 command-line utilities, as well as a conversion library for converting between individual HDF4 and HDF5 objects. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------------|------------------------------------------------ -``2.2.2``|``-linux-x86_64-static``|``system`` -``2.2.3``| |``foss/2018b``, ``gompi/2019b``, ``gompi/2020b`` -``2.2.5``| |``gompi/2022a`` - -### H5hut - -HDF5 Utility Toolkit: High-Performance I/O Library for Particle-based Simulations - -*homepage*: - -version |toolchain ------------|--------------- -``1.99.13``|``intel/2016b`` - -### h5netcdf - -A Python interface for the netCDF4 file-format that reads and writes local or remote HDF5 files directly via h5py or h5pyd, without relying on the Unidata netCDF library. - -*homepage*: - -version |toolchain ----------|------------------------------ -``1.1.0``|``foss/2021b`` -``1.2.0``|``foss/2022a``, ``foss/2023a`` - -### h5py - -HDF5 for Python (h5py) is a general-purpose Python interface to the Hierarchical Data Format library, version 5. HDF5 is a versatile, mature scientific software library designed for the fast, flexible storage of enormous amounts of data. - -*homepage*: - -version |versionsuffix |toolchain -----------|-------------------------------------|------------------------------------------------------------------------------------ -``2.5.0`` |``-Python-2.7.11-HDF5-1.8.16`` |``foss/2016a``, ``intel/2016a`` -``2.5.0`` |``-Python-2.7.11-HDF5-1.8.16-serial``|``foss/2016a``, ``intel/2016a`` -``2.5.0`` |``-Python-3.5.1-HDF5-1.8.16`` |``foss/2016a`` -``2.6.0`` |``-Python-2.7.11`` |``intel/2016a`` -``2.6.0`` |``-Python-2.7.12-HDF5-1.10.0-patch1``|``foss/2016b``, ``intel/2016b`` -``2.6.0`` |``-Python-2.7.12-HDF5-1.8.17`` |``foss/2016b``, ``intel/2016b`` -``2.6.0`` |``-Python-2.7.12-HDF5-1.8.18`` |``foss/2016b``, ``intel/2016b`` -``2.6.0`` |``-Python-3.5.2-HDF5-1.10.0-patch1`` |``foss/2016b``, ``intel/2016b`` -``2.6.0`` |``-Python-3.5.2-HDF5-1.8.17`` |``intel/2016b`` -``2.6.0`` |``-Python-3.5.2-HDF5-1.8.18`` |``foss/2016b``, ``intel/2016b`` -``2.7.0`` |``-Python-2.7.12`` |``intel/2016b`` -``2.7.0`` |``-Python-2.7.13`` |``intel/2017a`` -``2.7.0`` |``-Python-2.7.13-HDF5-1.10.1`` |``foss/2017a`` -``2.7.0`` |``-Python-2.7.13-HDF5-1.8.19`` |``foss/2017a`` -``2.7.0`` |``-Python-3.6.1`` |``intel/2017a`` -``2.7.0`` |``-Python-3.6.1-HDF5-1.10.0-patch1`` |``intel/2017a`` -``2.7.0`` |``-Python-3.6.1-HDF5-1.10.1`` |``foss/2017a`` -``2.7.0`` |``-Python-3.6.1-HDF5-1.8.19`` |``foss/2017a`` -``2.7.1`` |``-Python-2.7.13`` |``intel/2017a`` -``2.7.1`` |``-Python-2.7.14`` |``foss/2017b``, ``foss/2018a``, ``fosscuda/2017b``, ``intel/2017b``, ``intel/2018a`` -``2.7.1`` |``-Python-2.7.14-serial`` |``intel/2018a`` -``2.7.1`` |``-Python-3.6.1`` |``intel/2017a`` -``2.7.1`` |``-Python-3.6.3`` |``foss/2017b``, ``fosscuda/2017b``, ``intel/2017b`` -``2.7.1`` |``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``2.8.0`` |``-Python-2.7.15`` |``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b`` -``2.8.0`` |``-Python-2.7.15-serial`` |``intel/2018b`` -``2.8.0`` |``-Python-3.6.6`` |``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b`` -``2.9.0`` | |``foss/2019a``, ``fosscuda/2019a``, ``intel/2019a``, ``intelcuda/2019a`` -``2.10.0``|``-Python-2.7.18`` |``intel/2020a`` -``2.10.0``|``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b``, ``intel/2019b``, ``intelcuda/2019b`` -``2.10.0``|``-Python-3.8.2`` |``foss/2020a``, ``fosscuda/2020a``, ``intel/2020a``, ``intelcuda/2020a`` -``2.10.0``|``-serial-Python-3.7.4`` |``foss/2019b`` -``3.1.0`` | |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b``, ``intelcuda/2020b`` -``3.2.1`` | |``foss/2021a``, ``gomkl/2021a`` -``3.6.0`` | |``foss/2021b``, ``intel/2021b`` -``3.7.0`` | |``foss/2022a``, ``intel/2022a`` -``3.8.0`` | |``foss/2022b`` -``3.9.0`` | |``foss/2023a`` -``3.11.0``| |``foss/2023b`` - -### Hadoop - -Hadoop MapReduce by Cloudera - -*homepage*: - -version |versionsuffix |toolchain --------------------|--------------------------|------------------ -``2.4.0`` |``-seagate-722af1-native``|``system`` -``2.5.0-cdh5.3.1`` |``-native`` |``system`` -``2.6.0-cdh5.4.5`` |``-native`` |``system`` -``2.6.0-cdh5.7.0`` |``-native`` |``system`` -``2.6.0-cdh5.8.0`` |``-native`` |``system`` -``2.6.0-cdh5.12.0``|``-native`` |``system`` -``2.9.2`` |``-native`` |``GCCcore/7.3.0`` -``2.10.0`` |``-native`` |``GCCcore/8.3.0`` -``2.10.0`` |``-native-Java-1.8`` |``GCCcore/10.2.0`` - -### HAL - -HAL is a structure to efficiently store and index multiple genome alignments and ancestral reconstructions. HAL is a graph-based representation which provides several advantages over matrix/block-based formats such as MAF, such as improved scalability and the ability to perform queries with respect to an arbitrary reference or subtree. This package includes the HAL API and several analysis and conversion tools which are described below. HAL files are presently stored in either HDF5 or mmap format, but we note that the tools and most of the API are format-independent, so other databases could be implemented in the future. - -*homepage*: - -version|toolchain --------|-------------- -``2.1``|``foss/2020b`` - -### hampel - -The Hampel filter is generally used to detect anomalies in data with a timeseries structure. It basically consists of a sliding window of a parameterizable size. For each window, each observation will be compared with the Median Absolute Deviation (MAD). The observation will be considered an outlier in the case in which it exceeds the MAD by n times (the parameter n is also parameterizable). - -*homepage*: - -version |toolchain ----------|-------------- -``0.0.5``|``foss/2022a`` - -### hanythingondemand - -HanythingOnDemand (HOD) is a system for provisioning virtual Hadoop clusters over a large physical cluster. It uses the Torque resource manager to do node allocation. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``3.0.0``|``-cli`` |``system`` -``3.0.1``|``-cli`` |``system`` -``3.0.2``|``-cli`` |``system`` -``3.0.3``|``-cli`` |``system`` -``3.0.4``|``-cli`` |``system`` -``3.1.0``|``-Python-2.7.11``|``intel/2016a`` -``3.1.0``|``-cli`` |``system`` -``3.1.1``|``-Python-2.7.11``|``intel/2016a`` -``3.1.1``|``-cli`` |``system`` -``3.1.2``|``-Python-2.7.11``|``intel/2016a`` -``3.1.2``|``-cli`` |``system`` -``3.1.3``|``-Python-2.7.12``|``intel/2016b`` -``3.1.3``|``-cli`` |``system`` -``3.1.4``|``-Python-2.7.12``|``intel/2016b`` -``3.1.4``|``-cli`` |``system`` -``3.2.0``|``-Python-2.7.12``|``intel/2016b`` -``3.2.0``|``-cli`` |``system`` -``3.2.2``|``-Python-2.7.12``|``intel/2016b`` -``3.2.2``|``-cli`` |``system`` - -### HAPGEN2 - -'HAPGEN2' simulates case control datasets at SNP markers. - -*homepage*: - -version |toolchain ----------|---------- -``2.2.0``|``system`` - -### HarfBuzz - -HarfBuzz is an OpenType text shaping engine. - -*homepage*: - -version |toolchain ----------|------------------------------------------------ -``1.1.3``|``foss/2016a``, ``intel/2016a`` -``1.2.7``|``foss/2016a``, ``intel/2016a`` -``1.3.1``|``foss/2016b``, ``intel/2016b``, ``intel/2017a`` -``1.5.1``|``intel/2017a`` -``1.7.1``|``foss/2017b``, ``intel/2017b`` -``1.7.5``|``foss/2018a``, ``intel/2018a`` -``1.9.0``|``fosscuda/2018b`` -``2.2.0``|``foss/2018b``, ``fosscuda/2018b`` -``2.4.0``|``GCCcore/8.2.0`` -``2.6.4``|``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``2.6.7``|``GCCcore/10.2.0`` -``2.8.1``|``GCCcore/10.3.0`` -``2.8.2``|``GCCcore/11.2.0`` -``4.2.1``|``GCCcore/11.3.0`` -``5.3.1``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``8.2.2``|``GCCcore/13.2.0`` - -### Harminv - -Harminv is a free program (and accompanying library) to solve the problem of harmonic inversion - given a discrete-time, finite-length signal that consists of a sum of finitely-many sinusoids (possibly exponentially decaying) in a given bandwidth, it determines the frequencies, decay constants, amplitudes, and phases of those sinusoids. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------------- -``1.4`` |``foss/2016a`` -``1.4.1``|``foss/2017b``, ``foss/2018a``, ``intel/2018a``, ``intel/2020a`` -``1.4.2``|``foss/2020b`` - -### harmony - -Harmony is a general-purpose R package with an efficient algorithm for integrating multiple data sets. - -*homepage*: - -version |versionsuffix|toolchain -------------------|-------------|-------------- -``0.1.0-20210528``|``-R-4.0.3`` |``foss/2020b`` -``1.0.0-20200224``|``-R-4.0.0`` |``foss/2020a`` - -### hatch-jupyter-builder - -Hatch Jupyter Builder is a plugin for the hatchling Python build backend. It is primarily targeted for package authors who are providing JavaScript as part of their Python packages. Typical use cases are Jupyter Lab Extensions and Jupyter Widgets. - -*homepage*: - -version |toolchain ----------|------------------ -``0.9.1``|``GCCcore/13.2.0`` - -### hatchling - -Extensible, standards compliant build backend used by Hatch, a modern, extensible Python project manager. - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``1.18.0``|``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### HBase - -Apache HBase. is the Hadoop database, a distributed, scalable, big data store. - -*homepage*: - -version |toolchain ----------|---------- -``1.0.2``|``system`` - -### HD-BET - -Tool for brain extraction. - -*homepage*: - -version |versionsuffix |toolchain -------------|----------------|-------------- -``20220318``| |``foss/2021a`` -``20220318``|``-CUDA-11.3.1``|``foss/2021a`` - -### HDBSCAN - -The hdbscan library is a suite of tools to use unsupervised learning to find clusters, or dense regions, of a dataset. The primary algorithm is HDBSCAN* as proposed by Campello, Moulavi, and Sander. The library provides a high performance implementation of this algorithm, along with tools for analysing the resulting clustering. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``0.8.24``|``-Python-3.7.4``|``foss/2019b`` -``0.8.27``| |``foss/2021a`` -``0.8.29``| |``foss/2022a`` - -### HDDM - -HDDM is a Python toolbox for hierarchical Bayesian parameter estimation of the Drift Diffusion Model (via PyMC). - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``0.6.1``|``-Python-3.6.6`` |``intel/2018b`` -``0.7.5``|``-Python-2.7.16``|``intel/2019b`` -``0.7.5``|``-Python-3.7.4`` |``intel/2019b`` -``0.9.9``| |``foss/2021b``, ``intel/2021b`` - -### HDF - -HDF (also known as HDF4) is a library and multi-object file format for storing and managing data between machines. - -*homepage*: - -version |versionsuffix |toolchain -------------|--------------|--------------------------------------------------------------------------------------------------------------------- -``4.2.11`` | |``intel/2016a`` -``4.2.12`` | |``intel/2017a`` -``4.2.13`` | |``GCCcore/6.4.0`` -``4.2.13`` |``-no-netcdf``|``intel/2017a`` -``4.2.14`` | |``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``4.2.15`` | |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/9.3.0`` -``4.2.16`` | |``GCCcore/12.3.0`` -``4.2.16-2``| |``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### HDF-EOS - -HDF-EOS libraries are software libraries built on HDF libraries. It supports three data structures for remote sensing data: Grid, Point and Swath. - -*homepage*: - -version |toolchain ---------|-------------------------------------------------------- -``2.20``|``GCCcore/10.2.0``, ``GCCcore/7.3.0``, ``GCCcore/8.3.0`` - -### HDF-EOS2 - -HDF-EOS libraries are software libraries built on HDF libraries. It supports three data structures for remote sensing data: Grid, Point and Swath. - -*homepage*: - -version|toolchain --------|------------------ -``3.0``|``GCCcore/11.3.0`` - -### HDF-EOS5 - -HDF-EOS libraries are software libraries built on HDF libraries. It supports three data structures for remote sensing data: Grid, Point and Swath. - -*homepage*: - -version |toolchain ---------|------------------------------------------------ -``1.16``|``foss/2018b``, ``gompi/2019b``, ``gompi/2020b`` - -### HDF5 - -HDF5 is a data model, library, and file format for storing and managing data. It supports an unlimited variety of datatypes, and is designed for flexible and efficient I/O and for high volume and complex data. - -*homepage*: - -version |versionsuffix|toolchain ------------------|-------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ -``1.8.10`` |``-serial`` |``GCC/4.8.1`` -``1.8.11`` |``-serial`` |``GCC/4.8.1`` -``1.8.12`` | |``foss/2018b``, ``intel/2016b`` -``1.8.13`` | |``foss/2018b`` -``1.8.16`` | |``foss/2016a``, ``intel/2016.02-GCC-4.9``, ``intel/2016a``, ``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25`` -``1.8.16`` |``-serial`` |``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` -``1.8.17`` | |``foss/2016a``, ``foss/2016b``, ``intel/2016a``, ``intel/2016b`` -``1.8.17`` |``-serial`` |``GCC/5.4.0-2.26``, ``foss/2016a``, ``intel/2016b`` -``1.8.18`` | |``foss/2016b``, ``foss/2017a``, ``gimkl/2017a``, ``intel/2016b``, ``intel/2017.01``, ``intel/2017a`` -``1.8.18`` |``-serial`` |``intel/2017a`` -``1.8.19`` | |``foss/2017a``, ``foss/2017b``, ``intel/2017a``, ``intel/2017b`` -``1.8.20`` | |``foss/2018a``, ``gmpolf/2017.10``, ``intel/2017b``, ``intel/2018a`` -``1.10.0-patch1``| |``foss/2016b``, ``intel/2016b``, ``intel/2017.01``, ``intel/2017a`` -``1.10.1`` | |``foss/2017a``, ``foss/2017b``, ``foss/2018a``, ``fosscuda/2017b``, ``intel/2017a``, ``intel/2017b``, ``intel/2018.00``, ``intel/2018.01``, ``intel/2018a``, ``intelcuda/2017b``, ``iomkl/2017b``, ``iomkl/2018a`` -``1.10.2`` | |``PGI/18.4-GCC-6.4.0-2.28``, ``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b``, ``iomkl/2018b`` -``1.10.5`` | |``gompi/2019a``, ``gompi/2019b``, ``gompic/2019a``, ``gompic/2019b``, ``iimpi/2019a``, ``iimpi/2019b``, ``iimpic/2019a``, ``iimpic/2019b``, ``iompi/2019b`` -``1.10.5`` |``-serial`` |``GCC/8.3.0`` -``1.10.6`` | |``gompi/2020a``, ``gompic/2020a``, ``iimpi/2020a``, ``iimpic/2020a``, ``iompi/2020a`` -``1.10.7`` | |``gompi/2020b``, ``gompi/2021a``, ``gompic/2020b``, ``iimpi/2020b``, ``iimpi/2021a``, ``iimpic/2020b``, ``iompi/2021a`` -``1.10.8`` | |``gompi/2021b``, ``gompi/2022a`` -``1.12.0`` | |``gompi/2020a``, ``iimpi/2020a`` -``1.12.1`` | |``gompi/2021a``, ``gompi/2021b``, ``iimpi/2021b`` -``1.12.2`` | |``gompi/2022a``, ``iimpi/2022a``, ``nvompi/2022.07`` -``1.12.2`` |``-serial`` |``GCC/11.3.0``, ``NVHPC/22.7-CUDA-11.7.0`` -``1.13.1`` | |``gompi/2022a``, ``iimpi/2022a`` -``1.13.1`` |``-serial`` |``GCC/11.3.0`` -``1.14.0`` | |``gompi/2022b``, ``gompi/2023a``, ``iimpi/2022b``, ``iimpi/2023a`` -``1.14.3`` | |``gompi/2023b``, ``iimpi/2023b`` - -### hdf5storage - -This Python package provides high level utilities to read/write a variety of Python types to/from HDF5 (Heirarchal Data Format) formatted files. This package also provides support for MATLAB MAT v7.3 formatted files, which are just HDF5 files with a different extension and some extra meta-data. All of this is done without pickling data. Pickling is bad for security because it allows arbitrary code to be executed in the interpreter. One wants to be able to read possibly HDF5 and MAT files from untrusted sources, so pickling is avoided in this package. - -*homepage*: - -version |toolchain -----------|---------------------------------- -``0.1.15``|``foss/2019a``, ``fosscuda/2019a`` - -### HDFView - -HDFView is a visual tool for browsing and editing HDF4 and HDF5 files. - -*homepage*: - -version |versionsuffix |toolchain ---------|---------------------------|---------- -``2.14``|``-Java-1.8.0_152-centos6``|``system`` -``2.14``|``-Java-1.8.0_152-centos7``|``system`` - -### hdWGCNA - -hdWGCNA is an R package for performing weighted gene co-expression network analysis (WGCNA) in high dimensional transcriptomics data such as single-cell RNA-seq or spatial transcriptomics. hdWGCNA is highly modular and can construct context-specific co-expression networks across cellular and spatial hierarchies. hdWGNCA identifies modules of highly co-expressed genes and provides context for these modules via statistical testing and biological knowledge sources. hdWGCNA uses datasets formatted as Seurat objects. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|-------------- -``0.3.00``|``-R-4.3.2`` |``foss/2023a`` - -### HEALPix - -Hierarchical Equal Area isoLatitude Pixelation of a sphere. - -*homepage*: - -version |toolchain ---------|------------------------------------ -``3.50``|``GCCcore/7.3.0``, ``GCCcore/8.2.0`` - -### Health-GPS - -Health-GPS microsimulation is part of the STOP project, and supports researchers and policy makers in the analysis of the health and economic impacts of alternative measures to tackle chronic diseases and obesity in children. The model reproduces the characteristics of a population and simulates key individual event histories associated with key components of relevant behaviours, such as physical activity, and diseases such as diabetes or cancer. To run the test-jobs with HealthGPS.Tests the data-directory, found in your installation folder, must be in the current path. - -*homepage*: - -version |toolchain ------------|------------------ -``1.1.3.0``|``GCCcore/11.3.0`` -``1.2.2.0``|``GCCcore/11.3.0`` - -### heaptrack - -A heap memory profiler for Linux. - -*homepage*: - -version |toolchain ----------|-------------- -``1.1.0``|``foss/2016b`` - -### hector - -This is the repository for Hector, an open source, object-oriented, simple global climate carbon-cycle model. It runs essentially instantaneously while still representing the most critical global scale earth system processes, and is one of a class of models heavily used for for emulating complex climate models and uncertainty analyses. - -*homepage*: - -version |toolchain ----------|-------------- -``2.5.0``|``GCC/11.2.0`` - -### HeFFTe - -Highly Efficient FFT for Exascale (HeFFTe) library - -*homepage*: - -version |toolchain ----------|-------------- -``1.0`` |``foss/2020a`` -``2.4.0``|``foss/2023b`` - -### Hello - -The GNU Hello program produces a familiar, friendly greeting. Yes, this is another implementation of the classic program that prints "Hello, world!" when you run it. However, unlike the minimal version often seen, GNU Hello processes its argument list to modify its behavior, supports greetings in many languages, and so on. - -*homepage*: - -version |toolchain ---------|----------------- -``2.10``|``GCCcore/8.2.0`` - -### help2man - -help2man produces simple manual pages from the '--help' and '--version' output of other commands. - -*homepage*: - -version |toolchain ------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.47.4`` |``GCCcore/5.4.0``, ``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.1.0``, ``GCCcore/7.2.0``, ``GCCcore/7.3.0``, ``GCCcore/system``, ``gimkl/2017a``, ``intel/2016b``, ``system`` -``1.47.5`` |``GCCcore/5.5.0`` -``1.47.6`` |``GCCcore/8.1.0`` -``1.47.7`` |``GCCcore/8.2.0`` -``1.47.8`` |``GCCcore/7.4.0``, ``GCCcore/8.3.0``, ``GCCcore/8.4.0`` -``1.47.10``|``GCCcore/9.1.0``, ``GCCcore/9.2.0`` -``1.47.12``|``GCCcore/9.3.0`` -``1.47.15``|``GCCcore/10.1.0`` -``1.47.16``|``GCCcore/10.2.0`` -``1.48.3`` |``FCC/4.5.0``, ``GCCcore/10.3.0``, ``GCCcore/11.1.0``, ``GCCcore/11.2.0``, ``GCCcore/9.4.0`` -``1.49.2`` |``GCCcore/11.3.0``, ``GCCcore/12.1.0``, ``GCCcore/12.2.0``, ``GCCcore/9.5.0`` -``1.49.3`` |``GCCcore/11.4.0``, ``GCCcore/12.3.0``, ``GCCcore/13.1.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0``, ``GCCcore/14.1.0`` - -### HepMC - -HepMC is a standard for storing Monte Carlo event data. - -*homepage*: - -version |toolchain ------------|--------------- -``2.06.11``|``gompi/2022a`` - -### HepMC3 - -HepMC is a standard for storing Monte Carlo event data. - -*homepage*: - -version |toolchain ----------|-------------- -``3.2.5``|``GCC/11.3.0`` -``3.2.6``|``GCC/12.3.0`` - -### hevea - -A quite complete and fast LATEX to HTML translator - -*homepage*: - -version |toolchain ---------|-------------- -``2.36``|``GCC/13.2.0`` - -### HF-Datasets - -The largest hub of ready-to-use datasets for ML models with fast, easy-to-use and efficient data manipulation tools. - -*homepage*: - -version |toolchain -----------|-------------- -``2.18.0``|``gfbf/2023a`` - -### HH-suite - -The HH-suite is an open-source software package for sensitive protein sequence searching based on the pairwise alignment of hidden Markov models (HMMs). - -*homepage*: - -version |versionsuffix |toolchain ---------------|-----------------|--------------------------------------------------------------------------------------------------------------------- -``3.0-beta.3``| |``intel/2018a`` -``3.2.0`` | |``foss/2019b``, ``fosscuda/2019b`` -``3.3.0`` | |``foss/2020a``, ``gompi/2020b``, ``gompi/2021a``, ``gompi/2021b``, ``gompi/2022a``, ``gompi/2023a``, ``gompic/2020b`` -``3.3.0`` |``-Python-3.7.4``|``gompic/2019b`` - -### HiC-Pro - -HiC-Pro was designed to process Hi-C data, from raw fastq files (paired-end Illumina data) to the normalized contact maps. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``2.9.0``|``-Python-2.7.12``|``foss/2016b`` -``3.1.0``|``-R-4.2.1`` |``foss/2022a`` - -### hic-straw - -Straw is a library which allows rapid streaming of contact data from .hic files. - -*homepage*: - -version |toolchain ----------|-------------- -``1.3.1``|``foss/2022a`` - -### HiCExplorer - -HiCexplorer addresses the common tasks of Hi-C analysis from processing to visualization. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``2.1.1``|``-Python-3.6.4``|``foss/2018a`` -``3.7.2``| |``foss/2022a`` - -### HiCMatrix - -This library implements the central class of HiCExplorer to manage Hi-C interaction matrices. - -*homepage*: - -version|toolchain --------|-------------- -``17`` |``foss/2022a`` - -### hierfstat - -Estimates hierarchical F-statistics from haploid or diploid genetic data with any numbers of levels in the hierarchy. - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------------|-------------- -``0.5-7``|``-R-4.0.0-Python-3.8.2``|``foss/2020a`` - -### hifiasm - -Hifiasm: a haplotype-resolved assembler for accurate Hifi reads. - -*homepage*: - -version |toolchain -----------|------------------------------------- -``0.15.2``|``GCCcore/10.3.0``, ``GCCcore/9.3.0`` -``0.16.1``|``GCCcore/10.3.0`` -``0.19.5``|``GCCcore/11.2.0`` -``0.19.7``|``GCCcore/12.2.0`` - -### HighFive - -HighFive is a modern header-only C++11 friendly interface for libhdf5. - -*homepage*: - -version |toolchain ----------|-------------------------------- -``2.6.2``|``gompi/2021a``, ``gompi/2022a`` -``2.7.1``|``gompi/2023a`` - -### HiGHS - -Open source serial and parallel solvers for large-scale sparse linear programming (LP), mixed-integer programming (MIP), and quadratic programming (QP) models. - -*homepage*: - -version |toolchain ----------|-------------- -``1.7.0``|``gfbf/2023b`` - -### Highway - -Highway is a C++ library for SIMD (Single Instruction, Multiple Data), i.e. applying the same operation to 'lanes'. - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``0.12.2``|``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``1.0.3`` |``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``1.0.4`` |``GCCcore/11.3.0``, ``GCCcore/12.3.0`` -``1.0.7`` |``GCCcore/13.2.0`` - -### HIP - -HIP is a C++ Runtime API and Kernel Language that allows developers to create portable applications for AMD and NVIDIA GPUs from single source code. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|------------------ -``4.5.0``|``-amd`` |``GCCcore/11.2.0`` - -### hipify-clang - -Hipify-clang is a clang-based tool for translating CUDA sources into HIP sources. It translates CUDA source into an abstract syntax tree, which is traversed by transformation matchers. After applying all the matchers, the output HIP source is produced. - -*homepage*: - -version |toolchain ----------|----------------- -``4.2.0``|``gcccuda/2020b`` - -### HIPS - -HIPS (Hierarchical Iterative Parallel Solver) is a scientific library that provides an efficient parallel iterative solver for very large sparse linear systems. - -*homepage*: - -version |toolchain -------------|-------------- -``1.2b-rc5``|``foss/2017b`` - -### hipSYCL - -hipSYCL is a modern SYCL implementation targeting CPUs and GPUs, with a focus on leveraging existing toolchains such as CUDA or HIP - -*homepage*: - -version |toolchain ----------|--------------------------------- -``0.9.1``|``GCC/10.2.0``, ``gcccuda/2020b`` - -### hiredis - -Hiredis is a minimalistic C client library for the Redis database. It is minimalistic because it just adds minimal support for the protocol, but at the same time it uses a high level printf-alike API in order to make it much higher level than otherwise suggested by its minimal code base and the lack of explicit bindings for every Redis command. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------- -``1.0.2``|``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``1.2.0``|``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### HISAT2 - -HISAT2 is a fast and sensitive alignment program for mapping next-generation sequencing reads (both DNA and RNA) against the general human population (as well as against a single reference genome). - -*homepage*: - -version |toolchain ---------------|------------------------------------------------------------------------------------------------------------------- -``2.0.3-beta``|``intel/2016a`` -``2.0.4`` |``foss/2016b`` -``2.0.5`` |``intel/2017a`` -``2.1.0`` |``foss/2017b``, ``foss/2018b``, ``intel/2017a``, ``intel/2017b``, ``intel/2018a`` -``2.2.0`` |``foss/2018b`` -``2.2.1`` |``foss/2019b``, ``foss/2020a``, ``gompi/2020b``, ``gompi/2021a``, ``gompi/2021b``, ``gompi/2022a``, ``gompi/2022b`` - -### histolab - -Library for Digital Pathology Image Processing - -*homepage*: - -version |toolchain ----------|------------------------------ -``0.4.1``|``foss/2021a``, ``foss/2021b`` - -### hivtrace - -HIV-TRACE is an application that identifies potential transmission clusters within a supplied FASTA file with an option to find potential links against the Los Alamos HIV Sequence Database. - -*homepage*: - -version |toolchain ----------|-------------- -``0.6.2``|``foss/2021a`` - -### hl7apy - -Python library to parse, create and handle HL7 v2 messages. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|----------------- -``1.3.3``|``-Python-3.7.4``|``GCCcore/8.3.0`` - -### HLAminer - -HLAminer is a software for HLA predictions from next-generation shotgun (NGS) sequence read data and supports direct read alignment and targeted de novo assembly of sequence reads. - -*homepage*: - -version|versionsuffix |toolchain --------|----------------|-------------- -``1.4``|``-Perl-5.28.0``|``foss/2018b`` - -### hmmcopy_utils - -Tools for extracting read counts and gc and mappability statistics in preparation for running HMMCopy. - -*homepage*: - -version |toolchain -------------|------------------ -``20210728``|``GCCcore/12.3.0`` - -### HMMER - -HMMER is used for searching sequence databases for homologs of protein sequences, and for making protein sequence alignments. It implements methods using probabilistic models called profile hidden Markov models (profile HMMs). Compared to BLAST, FASTA, and other sequence alignment and database search tools based on older scoring methodology, HMMER aims to be significantly more accurate and more able to detect remote homologs because of the strength of its underlying mathematical models. In the past, this strength came at significant computational expense, but in the new HMMER3 project, HMMER is now essentially as fast as BLAST. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``3.1b2``|``GCC/6.4.0-2.28``, ``foss/2016a``, ``foss/2016b``, ``foss/2018a``, ``iccifort/2017.4.196-GCC-6.4.0-2.28``, ``intel/2017a``, ``intel/2018a`` -``3.2.1``|``GCC/8.2.0-2.31.1``, ``foss/2018b``, ``gompi/2019b``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1``, ``iimpi/2019b``, ``intel/2018b`` -``3.3.1``|``gompi/2020a``, ``iimpi/2020a`` -``3.3.2``|``gompi/2019b``, ``gompi/2020a``, ``gompi/2020b``, ``gompi/2021a``, ``gompi/2021b``, ``gompi/2022a``, ``gompi/2022b``, ``gompic/2020b``, ``iimpi/2020b``, ``iimpi/2021b`` -``3.4`` |``gompi/2023a`` - -### HMMER2 - -HMMER is used for searching sequence databases for sequence homologs, and for making sequence alignments. - -*homepage*: - -version |toolchain ----------|--------------------------------------------- -``2.3.2``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/8.3.0`` - -### hmmlearn - -hmmlearn is a set of algorithms for unsupervised learning and inference of Hidden Markov Models - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------ -``0.2.0``|``-Python-2.7.14``|``intel/2017b`` -``0.2.0``|``-Python-3.6.4`` |``intel/2018a`` -``0.3.0``| |``foss/2022b``, ``gfbf/2023a`` - -### HOME - -HOME (histogram of methylation) is a python package for differential methylation region (DMR) identification. The method uses histogram of methylation features and the linear Support Vector Machine (SVM) to identify DMRs from whole genome bisulfite sequencing (WGBS) data. - -*homepage*: - -version|versionsuffix |toolchain --------|------------------|-------------- -``0.9``|``-Python-2.7.13``|``foss/2017a`` - -### HOMER - -HOMER (Hypergeometric Optimization of Motif EnRichment) is a suite of tools for Motif Discovery and next-gen sequencing analysis. It is a collection of command line programs for unix-style operating systems written in Perl and C++. HOMER was primarily written as a de novo motif discovery algorithm and is well suited for finding 8-20 bp motifs in large scale genomics data. HOMER contains many useful tools for analyzing ChIP-Seq, GRO-Seq, RNA-Seq, DNase-Seq, Hi-C and numerous other types of functional genomics sequencing data sets. - -*homepage*: - -version |versionsuffix|toolchain ---------|-------------|-------------- -``4.11``|``-R-4.3.2`` |``foss/2023a`` - -### HOOMD-blue - -HOOMD-blue is a general-purpose particle simulation toolkit, implementing molecular dynamics and hard particle Monte Carlo optimized for fast execution on both GPUs and CPUs. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``4.0.1``| |``foss/2022a`` -``4.0.1``|``-CUDA-11.7.0``|``foss/2022a`` - -### Horovod - -Horovod is a distributed training framework for TensorFlow. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------------------------|---------------------------------- -``0.9.10``|``-Python-3.6.3`` |``intel/2017b`` -``0.18.1``|``-Python-3.7.2`` |``foss/2019a`` -``0.18.2``|``-TensorFlow-1.15.0-Python-3.7.4``|``fosscuda/2019b`` -``0.18.2``|``-TensorFlow-1.15.2-Python-3.7.4``|``fosscuda/2019b`` -``0.18.2``|``-TensorFlow-2.0.0-Python-3.7.4`` |``fosscuda/2019b`` -``0.19.1``|``-TensorFlow-2.1.0-Python-3.7.4`` |``fosscuda/2019b`` -``0.19.5``|``-TensorFlow-2.2.0-Python-3.7.4`` |``fosscuda/2019b`` -``0.20.3``|``-TensorFlow-2.3.1-Python-3.7.4`` |``fosscuda/2019b`` -``0.21.1``|``-PyTorch-1.7.1-Python-3.7.4`` |``fosscuda/2019b`` -``0.21.1``|``-TensorFlow-2.4.1`` |``fosscuda/2020b`` -``0.21.1``|``-TensorFlow-2.4.1-Python-3.7.4`` |``fosscuda/2019b`` -``0.21.3``|``-PyTorch-1.7.1`` |``fosscuda/2020b`` -``0.21.3``|``-TensorFlow-2.3.1-Python-3.8.2`` |``foss/2020a``, ``fosscuda/2020a`` -``0.22.0``|``-PyTorch-1.8.1`` |``fosscuda/2020b`` -``0.22.1``|``-CUDA-11.3.1-TensorFlow-2.5.3`` |``foss/2021a`` -``0.22.1``|``-CUDA-11.3.1-TensorFlow-2.6.0`` |``foss/2021a`` -``0.22.1``|``-TensorFlow-2.5.0`` |``fosscuda/2020b`` -``0.22.1``|``-TensorFlow-2.5.0-Python-3.7.4`` |``fosscuda/2019b`` -``0.23.0``|``-CUDA-11.3.1-PyTorch-1.10.0`` |``foss/2021a`` -``0.23.0``|``-TensorFlow-2.5.0`` |``fosscuda/2020b`` -``0.25.0``|``-CUDA-11.3.1-PyTorch-1.10.0`` |``foss/2021a`` -``0.28.1``|``-CUDA-11.3.1-PyTorch-1.11.0`` |``foss/2021a`` -``0.28.1``|``-CUDA-11.3.1-PyTorch-1.12.1`` |``foss/2021a`` -``0.28.1``|``-CUDA-11.4.1-TensorFlow-2.7.1`` |``foss/2021b`` -``0.28.1``|``-CUDA-11.4.1-TensorFlow-2.8.4`` |``foss/2021b`` -``0.28.1``|``-CUDA-11.5.2-PyTorch-1.12.1`` |``foss/2021b`` -``0.28.1``|``-CUDA-11.7.0-PyTorch-1.12.0`` |``foss/2022a`` -``0.28.1``|``-CUDA-11.7.0-PyTorch-1.12.1`` |``foss/2022a`` -``0.28.1``|``-CUDA-11.7.0-PyTorch-1.13.1`` |``foss/2022a`` -``0.28.1``|``-CUDA-11.7.0-TensorFlow-2.11.0`` |``foss/2022a`` -``0.28.1``|``-CUDA-11.7.0-TensorFlow-2.9.1`` |``foss/2022a`` -``0.28.1``|``-PyTorch-1.12.0`` |``foss/2022a`` -``0.28.1``|``-PyTorch-1.9.0`` |``fosscuda/2020b`` - -### horton - -HORTON is a Helpful Open-source Research TOol for N-fermion systems, written primarily in the Python programming language. (HORTON is named after the helpful pachyderm, not the Canadian caffeine supply store.) The ultimate goal of HORTON is to provide a platform for testing new ideas on the quantum many-body problem at a reasonable computational cost. Although HORTON is primarily designed to be a quantum-chemistry program, it can perform computations involving model Hamiltonians, and could be extended for computations in nuclear physics. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``2.1.1``|``-Python-2.7.15``|``foss/2018b``, ``intel/2018b`` -``2.1.1``|``-Python-2.7.18``|``intel/2020a`` - -### how_are_we_stranded_here - -Python package for testing strandedness of RNA-Seq fastq files - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.1``|``foss/2021b`` - -### HPCC - -HPC Challenge is a benchmark suite that measures a range memory access patterns. The HPC Challenge benchmark consists of basically 7 tests: HPL, DGEMM, STREAM, PTRANS, RandomAccess, FFT, Communication bandwidth and latency - -*homepage*: - -version |toolchain ----------|-------------- -``1.5.0``|``foss/2022a`` - -### HPCG - -The HPCG Benchmark project is an effort to create a more relevant metric for ranking HPC systems than the High Performance LINPACK (HPL) benchmark, that is currently used by the TOP500 benchmark. - -*homepage*: - -version|toolchain --------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``3.0``|``foss/2016b``, ``foss/2018b``, ``intel/2018b`` -``3.1``|``foss/2018b``, ``foss/2021a``, ``foss/2021b``, ``foss/2022a``, ``foss/2022b``, ``foss/2023a``, ``intel/2018b``, ``intel/2021a``, ``intel/2021b``, ``intel/2022a``, ``intel/2022b``, ``intel/2023a`` - -### HPCX - -The Mellanox HPC-X Toolkit is a comprehensive MPI and SHMEM/PGAS software suite for high performance computing environments - -*homepage*: - -version |toolchain ----------|-------------------- -``2.3.0``|``GCC/8.2.0-2.31.1`` - -### HPDBSCAN - -Highly parallel density based spatial clustering for application with noise - -*homepage*: - -version |toolchain -------------|-------------- -``20171110``|``foss/2017b`` -``20210826``|``foss/2020b`` - -### HPL - -HPL is a software package that solves a (random) dense linear system in double precision (64 bits) arithmetic on distributed-memory computers. It can thus be regarded as a portable as well as freely available implementation of the High Performance Computing Linpack Benchmark. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.0.15``|``-CUDA-11.7.0``|``intel/2022a`` -``2.1`` | |``foss/2016.04``, ``foss/2016.06``, ``foss/2016a``, ``foss/2016b``, ``gimkl/2.11.5``, ``gmpolf/2016a``, ``gmvolf/1.7.20``, ``gmvolf/2016a``, ``intel/2016.00``, ``intel/2016.01``, ``intel/2016.02-GCC-4.9``, ``intel/2016.02-GCC-5.3``, ``intel/2016.03-GCC-4.9``, ``intel/2016.03-GCC-5.3``, ``intel/2016.03-GCC-5.4``, ``intel/2016a``, ``intel/2016b``, ``iomkl/2016.07``, ``pomkl/2016.03``, ``pomkl/2016.04``, ``pomkl/2016.09`` -``2.2`` | |``foss/2016.07``, ``foss/2016.09``, ``foss/2017a``, ``foss/2017b``, ``foss/2018.08``, ``foss/2018a``, ``foss/2018b``, ``fosscuda/2017b``, ``fosscuda/2018a``, ``fosscuda/2018b``, ``gimkl/2018b``, ``giolf/2017b``, ``giolf/2018a``, ``giolfc/2017b``, ``gmpolf/2017.10``, ``goblf/2018b``, ``gomkl/2018b``, ``intel/2017.00``, ``intel/2017.01``, ``intel/2017.02``, ``intel/2017.09``, ``intel/2017a``, ``intel/2017b``, ``intel/2018.00``, ``intel/2018.01``, ``intel/2018.02``, ``intel/2018.04``, ``intel/2018a``, ``intel/2018b``, ``intel/2019.00``, ``intel/2019.01``, ``intelcuda/2016.10``, ``intelcuda/2017b``, ``iomkl/2016.09-GCC-4.9.3-2.25``, ``iomkl/2016.09-GCC-5.4.0-2.26``, ``iomkl/2017.01``, ``iomkl/2017a``, ``iomkl/2017b``, ``iomkl/2018.02``, ``iomkl/2018a``, ``iomkl/2018b``, ``pomkl/2016.09`` -``2.3`` | |``CrayCCE/19.06``, ``CrayGNU/19.06``, ``CrayIntel/19.06``, ``Fujitsu/21.05``, ``foss/2019a``, ``foss/2019b``, ``foss/2020a``, ``foss/2020b``, ``foss/2021a``, ``foss/2021b``, ``foss/2022.05``, ``foss/2022.10``, ``foss/2022a``, ``foss/2022b``, ``foss/2023.09``, ``foss/2023a``, ``foss/2023b``, ``foss/2024.05``, ``fosscuda/2019b``, ``fosscuda/2020a``, ``gobff/2020.06-amd``, ``gobff/2020.11``, ``gobff/2020b``, ``gobff/2021a``, ``goblf/2020b``, ``gomkl/2019a``, ``gomkl/2020b``, ``gomkl/2021a``, ``gomkl/2022a``, ``iibff/2020b``, ``intel/2019.02``, ``intel/2019.03``, ``intel/2019a``, ``intel/2019b``, ``intel/2020.00``, ``intel/2020.06-impi-18.5``, ``intel/2020.12``, ``intel/2020a``, ``intel/2020b``, ``intel/2021a``, ``intel/2021b``, ``intel/2022.00``, ``intel/2022.09``, ``intel/2022.11``, ``intel/2022.12``, ``intel/2022a``, ``intel/2022b``, ``intel/2023.03``, ``intel/2023.07``, ``intel/2023a``, ``intel/2023b``, ``intelcuda/2019b``, ``intelcuda/2020a``, ``iomkl/2019.01``, ``iomkl/2021a``, ``iomkl/2021b`` - -### htop - -An interactive process viewer for Unix - -*homepage*: - -version |toolchain ----------|------------------ -``2.0.0``|``system`` -``2.0.1``|``system`` -``3.2.1``|``system`` -``3.2.2``|``GCCcore/11.3.0`` - -### HTSeq - -HTSeq is a Python library to facilitate processing and analysis of data from high-throughput sequencing (HTS) experiments. - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|------------------------------------------------ -``0.6.1p1``|``-Python-2.7.11``|``foss/2016a`` -``0.6.1p1``|``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``0.9.1`` |``-Python-2.7.12``|``foss/2016b`` -``0.9.1`` |``-Python-2.7.13``|``intel/2017a`` -``0.9.1`` |``-Python-2.7.14``|``foss/2017b``, ``intel/2017b``, ``intel/2018a`` -``0.9.1`` |``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``0.10.0`` |``-Python-2.7.14``|``foss/2018a`` -``0.11.0`` |``-Python-2.7.15``|``foss/2018b``, ``intel/2018b`` -``0.11.2`` |``-Python-3.6.6`` |``foss/2018b`` -``0.11.2`` |``-Python-3.7.2`` |``foss/2019a`` -``0.11.2`` |``-Python-3.7.4`` |``foss/2019b`` -``0.11.3`` | |``foss/2020b``, ``foss/2021b`` -``2.0.2`` | |``foss/2022a`` - -### HTSlib - -PacBio fork of C library for reading/writing high-throughput sequencing data. This package includes the utilities bgzip and tabix - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|----------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.2.1`` | |``foss/2016b`` -``1.3`` | |``foss/2016a``, ``intel/2016a`` -``1.3.1`` | |``foss/2016a``, ``foss/2016b``, ``intel/2016b`` -``1.3.2`` | |``intel/2016b`` -``1.4`` | |``foss/2016b``, ``intel/2016b`` -``1.4.1`` | |``foss/2016a``, ``intel/2017a`` -``1.6`` | |``foss/2016b``, ``foss/2017b``, ``intel/2017b`` -``1.7`` | |``intel/2018a`` -``1.8`` | |``GCC/6.4.0-2.28``, ``foss/2018a``, ``intel/2018a`` -``1.9`` | |``GCC/6.4.0-2.28``, ``GCC/8.2.0-2.31.1``, ``foss/2018b``, ``iccifort/2017.4.196-GCC-6.4.0-2.28``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1``, ``intel/2018b`` -``1.10.2`` | |``GCC/8.3.0``, ``GCC/9.3.0``, ``iccifort/2019.5.281`` -``1.11`` | |``GCC/10.2.0``, ``iccifort/2020.4.304`` -``1.12`` | |``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/9.3.0`` -``1.14`` | |``GCC/11.2.0`` -``1.15.1`` | |``GCC/11.3.0`` -``1.17`` | |``GCC/12.2.0`` -``1.18`` | |``GCC/12.3.0`` -``1.19.1`` | |``GCC/13.2.0`` -``20160107``|``-PacBio`` |``intel/2017a`` - -### HTSplotter - -HTSplotter allows an end-to-end data processing and analysis of chemical and genetic in vitro perturbation screens. - -*homepage*: - -version |toolchain ---------|-------------- -``0.15``|``foss/2022a`` -``2.11``|``foss/2022b`` - -### hub - -hub is a command-line wrapper for git that makes you better at GitHub. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|---------- -``2.2.2``|``-linux-amd64``|``system`` - -### humann - -HUMAnN v3 is a pipeline for efficiently and accurately determining the coverage and abundance of microbial pathways in a community from metagenomic data. Sequencing a metagenome typically produces millions of short DNA/RNA reads. This process, referred to as functional profiling, aims to describe the metabolic potential of a microbial community and its members. More generally, functional profiling answers the question: What are the microbes in my community-of-interest doing (or capable of doing)? - -*homepage*: - -version|toolchain --------|-------------- -``3.6``|``foss/2022a`` - -### hunspell - -Hunspell is a spell checker and morphological analyzer library and program designed for languages with rich morphology and complex word compounding or character encoding. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``1.6.1``|``intel/2017a`` -``1.7.0``|``GCCcore/8.2.0`` -``1.7.1``|``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``1.7.2``|``GCCcore/12.3.0`` - -### hwloc - -The Portable Hardware Locality (hwloc) software package provides a portable abstraction (across OS, versions, architectures, ...) of the hierarchical topology of modern architectures, including NUMA memory nodes, sockets, shared caches, cores and simultaneous multithreading. It also gathers various system attributes such as cache and memory information as well as the locality of I/O devices such as network interfaces, InfiniBand HCAs or GPUs. It primarily aims at helping applications with gathering information about modern computing hardware so as to exploit it accordingly and efficiently. - -*homepage*: - -version |toolchain ------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.7.2`` |``GCC/4.8.2`` -``1.8.1`` |``GCC/4.8.2``, ``GCC/4.8.3`` -``1.9`` |``GCC/4.8.3`` -``1.10.0`` |``GCC/4.9.2`` -``1.10.1`` |``GCC/4.8.4``, ``GNU/4.9.2-2.25`` -``1.11.0`` |``GNU/4.9.3-2.25`` -``1.11.1`` |``GCC/4.9.3`` -``1.11.2`` |``GCC/4.9.3-2.25``, ``GNU/4.9.3-2.25`` -``1.11.3`` |``GCC/5.2.0``, ``GCC/5.3.0-2.26``, ``GCC/5.4.0-2.26``, ``GCC/6.1.0-2.27``, ``PGI/16.3-GCC-4.9.3-2.25``, ``PGI/16.4-GCC-5.3.0-2.26``, ``iccifort/2016.3.210-GCC-4.9.3-2.25``, ``iccifort/2016.3.210-GCC-5.4.0-2.26``, ``intel/2016a``, ``intel/2016b`` -``1.11.4`` |``GCC/6.2.0-2.27``, ``PGI/16.7-GCC-5.4.0-2.26``, ``iccifort/2017.1.132-GCC-5.4.0-2.26`` -``1.11.5`` |``GCC/5.4.0-2.26``, ``GCC/6.3.0-2.27``, ``iccifort/2017.1.132-GCC-6.3.0-2.27`` -``1.11.6`` |``GCC/6.3.0-2.28`` -``1.11.7`` |``GCCcore/5.4.0``, ``GCCcore/6.4.0`` -``1.11.8`` |``GCCcore/6.4.0``, ``GCCcore/7.2.0``, ``intel/2017a`` -``1.11.10``|``GCCcore/7.3.0`` -``1.11.11``|``GCCcore/8.2.0`` -``1.11.12``|``GCCcore/8.3.0`` -``2.0.2`` |``GCCcore/8.2.0`` -``2.0.3`` |``GCCcore/8.3.0`` -``2.1.0`` |``GCCcore/9.2.0`` -``2.2.0`` |``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``2.4.1`` |``GCCcore/10.3.0`` -``2.5.0`` |``GCCcore/11.2.0`` -``2.7.1`` |``GCCcore/11.3.0`` -``2.8.0`` |``GCCcore/12.2.0`` -``2.9.1`` |``GCCcore/12.3.0`` -``2.9.2`` |``GCCcore/13.2.0`` -``2.10.0`` |``GCCcore/13.3.0`` - -### Hybpiper - -HybPiper was designed for targeted sequence capture, in which DNA sequencing libraries are enriched for gene regions of interest, especially for phylogenetics. HybPiper is a suite of Python scripts/modules that wrap and connect bioinformatics tools in order to extract target sequences from high-throughput DNA sequencing reads. - -*homepage*: - -version |toolchain ----------|-------------- -``2.1.6``|``foss/2022b`` - -### Hydra - -Hydra is an open-source Python framework that simplifies the development of research and other complex applications. The key feature is the ability to dynamically create a hierarchical configuration by composition and override it through config files and the command line. The name Hydra comes from its ability to run multiple similar jobs - much like a Hydra with multiple heads. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``1.1.1``|``GCCcore/10.3.0`` -``1.3.2``|``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### Hyperopt - -hyperopt is a Python library for optimizing over awkward search spaces with real-valued, discrete, and conditional dimensions. - -*homepage*: - -version |versionsuffix |toolchain ----------|--------------------------|------------------------------ -``0.1`` |``-Python-2.7.14`` |``intel/2017b`` -``0.1.1``|``-Python-3.6.6`` |``intel/2018b`` -``0.2.4``|``-Python-3.7.4-Java-1.8``|``intel/2019b`` -``0.2.5``| |``fosscuda/2020b`` -``0.2.7``| |``foss/2021a``, ``foss/2022a`` - -### HyperQueue - -HyperQueue lets you build a computation plan consisting of a large amount of tasks and then execute it transparently over a system like SLURM/PBS. It dynamically groups jobs into SLURM/PBS jobs and distributes them to fully utilize allocated nodes. You thus do not have to manually aggregate your tasks into SLURM/PBS jobs. - -*homepage*: - -version |toolchain -----------|---------- -``0.13.0``|``system`` - -### hyperspy - -HyperSpy is an open source Python library which provides tools to facilitate the interactive data analysis of multi-dimensional datasets that can be described as multi-dimensional arrays of a given signal (e.g. a 2D array of spectra a.k.a spectrum image) - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``1.1.1``|``-Python-3.5.2``|``intel/2016b`` - -### HyPhy - -HyPhy (Hypothesis Testing using Phylogenies) is an open-source software package for the analysis of genetic sequences (in particular the inference of natural selection) using techniques in phylogenetics, molecular evolution, and machine learning - -*homepage*: - -version |toolchain -----------|--------------- -``2.3.13``|``foss/2016b`` -``2.5.1`` |``gompi/2019a`` -``2.5.33``|``gompi/2021a`` -``2.5.60``|``gompi/2022a`` - -### HyPo - -HyPo: Super Fast & Accurate Polisher for Long Read Genome Assemblies - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------- -``1.0.3``|``-Python-3.7.4``|``GCC/8.3.0`` - -### hypothesis - -Hypothesis is an advanced testing library for Python. It lets you write tests which are parametrized by a source of examples, and then generates simple and comprehensible examples that make your tests fail. This lets you find more bugs in your code with less work. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|---------------------------------- -``4.5.0`` |``-Python-3.6.6`` |``foss/2018b``, ``fosscuda/2018b`` -``4.23.4``| |``GCCcore/8.2.0`` -``4.39.3``|``-Python-3.6.4`` |``intel/2018a`` -``4.44.2``|``-Python-3.7.4`` |``GCCcore/8.3.0`` -``4.53.1``| |``GCCcore/10.2.0`` -``4.57.1``|``-Python-2.7.18``|``GCCcore/11.2.0`` -``5.6.0`` |``-Python-3.8.2`` |``GCCcore/9.3.0`` -``5.41.2``| |``GCCcore/10.2.0`` -``5.41.5``| |``GCCcore/10.2.0`` -``6.7.0`` | |``GCCcore/10.2.0`` -``6.13.1``| |``GCCcore/10.3.0`` -``6.14.6``| |``GCCcore/11.2.0`` -``6.46.7``| |``GCCcore/11.3.0`` -``6.68.2``| |``GCCcore/12.2.0`` -``6.82.0``| |``GCCcore/12.3.0`` -``6.90.0``| |``GCCcore/13.2.0`` - -### Hypre - -Hypre is a library for solving large, sparse linear systems of equations on massively parallel computers. The problems of interest arise in the simulation codes being developed at LLNL and elsewhere to study physical phenomena in the defense, environmental, energy, and biological sciences. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------------- -``2.11.1``|``foss/2016a``, ``intel/2016a`` -``2.14.0``|``foss/2018a``, ``intel/2018a`` -``2.15.1``|``foss/2019a``, ``intel/2019a`` -``2.18.2``|``foss/2019b``, ``foss/2020a``, ``intel/2019b``, ``intel/2020a`` -``2.20.0``|``foss/2020b``, ``intel/2020b`` -``2.21.0``|``foss/2021a``, ``fosscuda/2020b``, ``intel/2021a`` -``2.24.0``|``intel/2021b`` -``2.25.0``|``foss/2022a`` -``2.27.0``|``foss/2022b`` -``2.29.0``|``foss/2023a`` - -## I - - -[i-cisTarget](#i-cistarget) - [i-PI](#i-pi) - [I-TASSER](#i-tasser) - [i7z](#i7z) - [ICA-AROMA](#ica-aroma) - [icc](#icc) - [iccifort](#iccifort) - [iccifortcuda](#iccifortcuda) - [iced](#iced) - [ichorCNA](#ichorcna) - [icmake](#icmake) - [ICON](#icon) - [iCount](#icount) - [ICU](#icu) - [IDBA-UD](#idba-ud) - [idemux](#idemux) - [IDG](#idg) - [ieeg-cli](#ieeg-cli) - [ifort](#ifort) - [IgBLAST](#igblast) - [IGMPlot](#igmplot) - [igraph](#igraph) - [IGV](#igv) - [igv-reports](#igv-reports) - [igvShiny](#igvshiny) - [IGVTools](#igvtools) - [iibff](#iibff) - [iimkl](#iimkl) - [iimpi](#iimpi) - [iimpic](#iimpic) - [IJulia](#ijulia) - [ILAMB](#ilamb) - [IMa2](#ima2) - [IMa2p](#ima2p) - [imagecodecs](#imagecodecs) - [imageio](#imageio) - [ImageJ](#imagej) - [ImageMagick](#imagemagick) - [imake](#imake) - [Imath](#imath) - [IMB](#imb) - [imbalanced-learn](#imbalanced-learn) - [imgaug](#imgaug) - [imkl](#imkl) - [imkl-FFTW](#imkl-fftw) - [IML](#iml) - [Imlib2](#imlib2) - [immunedeconv](#immunedeconv) - [IMOD](#imod) - [impi](#impi) - [IMPUTE2](#impute2) - [imutils](#imutils) - [InChI](#inchi) - [indicators](#indicators) - [Inelastica](#inelastica) - [inferCNV](#infercnv) - [infercnvpy](#infercnvpy) - [Inferelator](#inferelator) - [Infernal](#infernal) - [inflection](#inflection) - [Infomap](#infomap) - [inih](#inih) - [inline](#inline) - [InParanoid](#inparanoid) - [inputproto](#inputproto) - [Inspector](#inspector) - [IntaRNA](#intarna) - [INTEGRATE](#integrate) - [INTEGRATE-Neo](#integrate-neo) - [intel](#intel) - [intel-compilers](#intel-compilers) - [IntelClusterChecker](#intelclusterchecker) - [intelcuda](#intelcuda) - [IntelDAAL](#inteldaal) - [IntelPython](#intelpython) - [InterOp](#interop) - [InterProScan](#interproscan) - [InterProScan_data](#interproscan_data) - [intervaltree](#intervaltree) - [intervaltree-python](#intervaltree-python) - [intltool](#intltool) - [io_lib](#io_lib) - [ioapi](#ioapi) - [iodata](#iodata) - [iomkl](#iomkl) - [iompi](#iompi) - [IonQuant](#ionquant) - [IOR](#ior) - [IOzone](#iozone) - [iperf](#iperf) - [IPM](#ipm) - [Ipopt](#ipopt) - [ipp](#ipp) - [IPy](#ipy) - [ipympl](#ipympl) - [ipyparallel](#ipyparallel) - [ipyrad](#ipyrad) - [IPython](#ipython) - [IQ-TREE](#iq-tree) - [Iris](#iris) - [IRkernel](#irkernel) - [irodsfs](#irodsfs) - [IronPython](#ironpython) - [ISA-L](#isa-l) - [ISL](#isl) - [isoCirc](#isocirc) - [IsoformSwitchAnalyzeR](#isoformswitchanalyzer) - [IsoNet](#isonet) - [IsoQuant](#isoquant) - [IsoSeq](#isoseq) - [ispc](#ispc) - [itac](#itac) - [ITK](#itk) - [itpp](#itpp) - [ITSTool](#itstool) - [ITSx](#itsx) - [iVar](#ivar) - - -### i-cisTarget - -An integrative genomics method for the prediction of regulatory features and cis-regulatory modules in Human, Mouse, and Fly - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|--------------- -``20160602``|``-Python-2.7.11``|``intel/2016a`` - -### i-PI - -A Python wrapper for (ab initio) (path integrals) molecular dynamics - -*homepage*: - -version |versionsuffix |toolchain -----------------|------------------|--------------- -``1.0-20160213``|``-Python-2.7.11``|``intel/2016a`` - -### I-TASSER - -I-TASSER is a set of pre-compiled binaries and scripts for protein structure and function modelling and comparison. - -*homepage*: - -version|toolchain --------|---------- -``4.0``|``system`` -``4.2``|``system`` -``5.1``|``system`` - -### i7z - -A better i7 (and now i3, i5) reporting tool for Linux - -*homepage*: - -version |toolchain -------------|------------------ -``20131012``|``GCCcore/11.2.0`` - -### ICA-AROMA - -ICA-AROMA (i.e. 'ICA-based Automatic Removal Of Motion Artifacts') concerns a data-driven method to identify and remove motion-related independent components from fMRI data. - -*homepage*: - -version |versionsuffix |toolchain ---------------|-----------------|-------------- -``0.4.4-beta``|``-Python-3.6.6``|``foss/2018b`` - -### icc - -C and C++ compiler from Intel - -*homepage*: - -version |versionsuffix |toolchain ---------------|---------------------|---------- -``2016.0.109``| |``system`` -``2016.0.109``|``-GCC-4.9.3-2.25`` |``system`` -``2016.1.150``|``-GCC-4.9.3-2.25`` |``system`` -``2016.2.181``|``-GCC-4.9.3-2.25`` |``system`` -``2016.2.181``|``-GCC-5.3.0-2.26`` |``system`` -``2016.3.210``|``-GCC-4.9.3-2.25`` |``system`` -``2016.3.210``|``-GCC-5.3.0-2.26`` |``system`` -``2016.3.210``|``-GCC-5.4.0-2.26`` |``system`` -``2017.0.098``|``-GCC-5.4.0-2.26`` |``system`` -``2017.1.132``|``-GCC-5.4.0-2.26`` |``system`` -``2017.1.132``|``-GCC-6.3.0-2.27`` |``system`` -``2017.2.174``|``-GCC-6.3.0-2.27`` |``system`` -``2017.4.196``|``-GCC-6.4.0-2.28`` |``system`` -``2017.5.239``|``-GCC-6.4.0-2.28`` |``system`` -``2017.6.256``|``-GCC-6.4.0-2.28`` |``system`` -``2017.7.259``|``-GCC-6.4.0-2.28`` |``system`` -``2018.0.128``|``-GCC-6.4.0-2.28`` |``system`` -``2018.1.163``|``-GCC-6.4.0-2.28`` |``system`` -``2018.2.199``|``-GCC-6.4.0-2.28`` |``system`` -``2018.3.222``|``-GCC-7.3.0-2.30`` |``system`` -``2018.5.274``|``-GCC-7.3.0-2.30`` |``system`` -``2019.0.117``|``-GCC-8.2.0-2.31.1``|``system`` -``2019.1.144``|``-GCC-8.2.0-2.31.1``|``system`` -``2019.2.187``|``-GCC-8.2.0-2.31.1``|``system`` -``2019.3.199``|``-GCC-8.3.0-2.32`` |``system`` -``system`` |``-GCC-system-2.29`` |``system`` - -### iccifort - -Intel C, C++ & Fortran compilers - -*homepage*: - -version |versionsuffix |toolchain ---------------|---------------------|---------- -``2016.0.109``| |``system`` -``2016.0.109``|``-GCC-4.9.3-2.25`` |``system`` -``2016.1.150``|``-GCC-4.9.3-2.25`` |``system`` -``2016.2.181``|``-GCC-4.9.3-2.25`` |``system`` -``2016.2.181``|``-GCC-5.3.0-2.26`` |``system`` -``2016.3.210``|``-GCC-4.9.3-2.25`` |``system`` -``2016.3.210``|``-GCC-5.3.0-2.26`` |``system`` -``2016.3.210``|``-GCC-5.4.0-2.26`` |``system`` -``2017.0.098``|``-GCC-5.4.0-2.26`` |``system`` -``2017.1.132``|``-GCC-5.4.0-2.26`` |``system`` -``2017.1.132``|``-GCC-6.3.0-2.27`` |``system`` -``2017.2.174``|``-GCC-6.3.0-2.27`` |``system`` -``2017.4.196``|``-GCC-6.4.0-2.28`` |``system`` -``2017.5.239``|``-GCC-6.4.0-2.28`` |``system`` -``2018.0.128``|``-GCC-6.4.0-2.28`` |``system`` -``2018.1.163``|``-GCC-6.4.0-2.28`` |``system`` -``2018.2.199``|``-GCC-6.4.0-2.28`` |``system`` -``2018.3.222``|``-GCC-7.3.0-2.30`` |``system`` -``2018.5.274``|``-GCC-7.3.0-2.30`` |``system`` -``2019.0.117``|``-GCC-8.2.0-2.31.1``|``system`` -``2019.1.144``|``-GCC-8.2.0-2.31.1``|``system`` -``2019.2.187``|``-GCC-8.2.0-2.31.1``|``system`` -``2019.3.199``|``-GCC-8.3.0-2.32`` |``system`` -``2019.4.243``| |``system`` -``2019.5.281``| |``system`` -``2020.0.166``| |``system`` -``2020.0.166``|``-GCC-9.2.0`` |``system`` -``2020.1.217``| |``system`` -``2020.4.304``| |``system`` -``system`` |``-GCC-system-2.29`` |``system`` - -### iccifortcuda - -Intel C, C++ & Fortran compilers with CUDA toolkit - -*homepage*: <(none)> - -version |versionsuffix |toolchain ---------------|-------------------|---------- -``2016.10`` | |``system`` -``2017.4.196``|``-GCC-6.4.0-2.28``|``system`` -``2019a`` | |``system`` -``2019b`` | |``system`` -``2020a`` | |``system`` -``2020b`` | |``system`` - -### iced - -Implements the ICE normalization of hic data. - -*homepage*: - -version |toolchain -----------|-------------- -``0.5.10``|``foss/2022a`` - -### ichorCNA - -ichorCNA is a tool for estimating the fraction of tumor in cell-free DNA from ultra-low-pass whole genome sequencing - -*homepage*: - -version |toolchain -------------------|-------------- -``0.2.0`` |``foss/2019b`` -``0.3.2-20191219``|``foss/2020a`` - -### icmake - -Icmake is a hybrid between a 'make' utility and a 'shell script' language. Originally, it was written to provide a useful tool for automatic program maintenance and system administrative tasks on old MS-DOS platforms. - -*homepage*: - -version |toolchain ------------|-------------- -``7.23.02``|``foss/2016a`` - -### ICON - -ICON is a flexible, scalable, high-performance modelling framework for weather, climate and environmental prediction that provides actionable information for society and advances our understanding of the Earth's climate system. - -*homepage*: - -version |toolchain ------------|-------------- -``2024.01``|``foss/2023a`` - -### iCount - -iCount: protein-RNA interaction analysis is a Python module and associated command-line interface (CLI), which provides all the commands needed to process iCLIP data on protein-RNA interactions. - -*homepage*: - -version |versionsuffix |toolchain -------------|-----------------|-------------- -``20180820``|``-Python-3.6.6``|``foss/2018b`` - -### ICU - -ICU is a mature, widely used set of C/C++ and Java libraries providing Unicode and Globalization support for software applications. - -*homepage*: - -version |toolchain ---------|-------------------------------------- -``61.1``|``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``64.2``|``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``65.1``|``GCCcore/8.3.0`` -``66.1``|``GCCcore/9.3.0`` -``67.1``|``GCCcore/10.2.0`` -``69.1``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``71.1``|``GCCcore/11.3.0`` -``72.1``|``GCCcore/12.2.0`` -``73.2``|``GCCcore/12.3.0`` -``74.1``|``GCCcore/13.2.0`` -``75.1``|``GCCcore/13.3.0`` - -### IDBA-UD - -IDBA-UD is a iterative De Bruijn Graph De Novo Assembler for Short Reads Sequencing data with Highly Uneven Sequencing Depth. It is an extension of IDBA algorithm. IDBA-UD also iterates from small k to a large k. In each iteration, short and low-depth contigs are removed iteratively with cutoff threshold from low to high to reduce the errors in low-depth and high-depth regions. Paired-end reads are aligned to contigs and assembled locally to generate some missing k-mers in low-depth regions. With these technologies, IDBA-UD can iterate k value of de Bruijn graph to a very large value with less gaps and less branches to form long contigs in both low-depth and high-depth regions. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------------------------------------------------------------------------------- -``1.1.3``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/8.2.0-2.31.1``, ``GCC/8.3.0``, ``GCC/9.3.0``, ``foss/2018a``, ``foss/2018b`` - -### idemux - -idemux - inline barcode demultiplexing Idemux is a command line tool designed to demultiplex paired-end FASTQ files from QuantSeq-Pool. - -*homepage*: - -version |toolchain ----------|------------------ -``0.1.6``|``GCCcore/10.2.0`` - -### IDG - -Image Domain Gridding (IDG) is a fast method for convolutional resampling (gridding/degridding) of radio astronomical data (visibilities). Direction dependent effects (DDEs) or A-tems can be applied in the gridding process. The algorithm is described in "Image Domain Gridding: a fast method for convolutional resampling of visibilities", Van der Tol (2018). The implementation is described in "Radio-astronomical imaging on graphics processors", Veenboer (2020). Please cite these papers in publications using IDG. - -*homepage*: - -version |toolchain ----------|-------------- -``1.2.0``|``foss/2023b`` - -### ieeg-cli - -IEEG.ORG is a collaborative initiative funded by the National Institutes of Neurological Disorders and Stroke. This initiative seeks to advance research towards the understanding of epilepsy by providing a platform for sharing data, tools and expertise between researchers. - -*homepage*: - -version |toolchain ------------|---------- -``1.14.56``|``system`` - -### ifort - -Fortran compiler from Intel - -*homepage*: - -version |versionsuffix |toolchain ---------------|---------------------|---------- -``2016.0.109``| |``system`` -``2016.0.109``|``-GCC-4.9.3-2.25`` |``system`` -``2016.1.150``|``-GCC-4.9.3-2.25`` |``system`` -``2016.2.181``|``-GCC-4.9.3-2.25`` |``system`` -``2016.2.181``|``-GCC-5.3.0-2.26`` |``system`` -``2016.3.210``|``-GCC-4.9.3-2.25`` |``system`` -``2016.3.210``|``-GCC-5.3.0-2.26`` |``system`` -``2016.3.210``|``-GCC-5.4.0-2.26`` |``system`` -``2017.0.098``|``-GCC-5.4.0-2.26`` |``system`` -``2017.1.132``|``-GCC-5.4.0-2.26`` |``system`` -``2017.1.132``|``-GCC-6.3.0-2.27`` |``system`` -``2017.2.174``|``-GCC-6.3.0-2.27`` |``system`` -``2017.4.196``|``-GCC-6.4.0-2.28`` |``system`` -``2017.5.239``|``-GCC-6.4.0-2.28`` |``system`` -``2017.6.256``|``-GCC-6.4.0-2.28`` |``system`` -``2017.7.259``|``-GCC-6.4.0-2.28`` |``system`` -``2018.0.128``|``-GCC-6.4.0-2.28`` |``system`` -``2018.1.163``|``-GCC-6.4.0-2.28`` |``system`` -``2018.2.199``|``-GCC-6.4.0-2.28`` |``system`` -``2018.3.222``|``-GCC-7.3.0-2.30`` |``system`` -``2018.5.274``|``-GCC-7.3.0-2.30`` |``system`` -``2019.0.117``|``-GCC-8.2.0-2.31.1``|``system`` -``2019.1.144``|``-GCC-8.2.0-2.31.1``|``system`` -``2019.2.187``|``-GCC-8.2.0-2.31.1``|``system`` -``2019.3.199``|``-GCC-8.3.0-2.32`` |``system`` -``system`` |``-GCC-system-2.29`` |``system`` - -### IgBLAST - -IgBLAST faclilitates the analysis of immunoglobulin and T cell receptor variable domain sequences. - -*homepage*: - -version |versionsuffix |toolchain -----------|--------------|---------- -``1.15.0``|``-x64-linux``|``system`` -``1.18.0``|``-x64-linux``|``system`` -``1.21.0``|``-x64-linux``|``system`` - -### IGMPlot - -IGMPlot is a free open-source program developed to identify molecular interactions and prepare data to build 2D and 3D representations of them in the molecular environment. - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``2.4.2`` |``GCC/8.3.0``, ``iccifort/2019.5.281`` -``2.6.9b``|``GCC/11.2.0`` - -### igraph - -igraph is a collection of network analysis tools with the emphasis on efficiency, portability and ease of use. igraph is open source and free. igraph can be programmed in R, Python and C/C++. - -*homepage*: - -version |toolchain ------------|------------------------------------------------ -``0.7.1`` |``foss/2018b``, ``intel/2016b``, ``intel/2017b`` -``0.8.0`` |``foss/2019b`` -``0.8.2`` |``foss/2020a`` -``0.8.5`` |``foss/2020b`` -``0.9.1`` |``foss/2020b``, ``fosscuda/2020b`` -``0.9.4`` |``foss/2021a`` -``0.9.5`` |``foss/2021b`` -``0.10.3`` |``foss/2022a`` -``0.10.6`` |``foss/2022b`` -``0.10.10``|``foss/2023a`` - -### IGV - -This package contains command line utilities for preprocessing, computing feature count density (coverage), sorting, and indexing data files. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|---------- -``2.3.68``|``-Java-1.7.0_80``|``system`` -``2.3.80``|``-Java-1.7.0_80``|``system`` -``2.5.0`` |``-Java-11`` |``system`` -``2.8.0`` |``-Java-11`` |``system`` -``2.9.4`` |``-Java-11`` |``system`` -``2.12.3``|``-Java-11`` |``system`` -``2.16.0``|``-Java-11`` |``system`` - -### igv-reports - -Python application to generate self-contained igv.js pages that can be opened within a browser with "file" protocol. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------- -``0.9.8``|``-Python-3.7.4``|``GCC/8.3.0`` - -### igvShiny - -An htmlwidget version of igv, for RStudio and Shiny apps - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|-------------- -``20240112``|``-R-4.2.1`` |``foss/2022a`` - -### IGVTools - -This package contains command line utilities for preprocessing, computing feature count density (coverage), sorting, and indexing data files. See also http://www.broadinstitute.org/software/igv/igvtools_commandline. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|---------- -``2.3.68``|``-Java-1.7.0_80``|``system`` -``2.3.72``|``-Java-1.7.0_80``|``system`` -``2.3.75``|``-Java-1.7.0_80``|``system`` -``2.4.18``|``-Java-1.8`` |``system`` - -### iibff - -GCC and GFortran based compiler toolchain with OpenMPI, BLIS, libFLAME, ScaLAPACK and FFTW. - -*homepage*: <(none)> - -version |toolchain ----------|---------- -``2020b``|``system`` - -### iimkl - -Intel C/C++ and Fortran compilers, alongside Intel Math Kernel Library (MKL). - -*homepage*: - -version |toolchain ----------|---------- -``2018a``|``system`` -``2022a``|``system`` -``2022b``|``system`` -``2023a``|``system`` -``2023b``|``system`` - -### iimpi - -Intel C/C++ and Fortran compilers, alongside Intel MPI. - -*homepage*: - -version |versionsuffix |toolchain ----------------------|--------------------|---------- -``8.1.5`` |``-GCC-4.9.3-2.25`` |``system`` -``2016.00`` |``-GCC-4.9.3-2.25`` |``system`` -``2016.01`` |``-GCC-4.9.3-2.25`` |``system`` -``2016.02`` |``-GCC-4.9.3-2.25`` |``system`` -``2016.02`` |``-GCC-5.3.0-2.26`` |``system`` -``2016.03`` |``-GCC-4.9.3-2.25`` |``system`` -``2016.03`` |``-GCC-5.3.0-2.26`` |``system`` -``2016.03`` |``-GCC-5.4.0-2.26`` |``system`` -``2016b`` | |``system`` -``2017.00`` |``-GCC-5.4.0-2.26`` |``system`` -``2017.01`` |``-GCC-5.4.0-2.26`` |``system`` -``2017.02`` |``-GCC-6.3.0-2.27`` |``system`` -``2017.09`` | |``system`` -``2017a`` | |``system`` -``2017b`` | |``system`` -``2018.00`` | |``system`` -``2018.01`` | |``system`` -``2018.02`` | |``system`` -``2018.04`` | |``system`` -``2018a`` | |``system`` -``2018b`` | |``system`` -``2019.00`` | |``system`` -``2019.01`` | |``system`` -``2019.02`` | |``system`` -``2019.03`` | |``system`` -``2019a`` | |``system`` -``2019b`` | |``system`` -``2020.00`` | |``system`` -``2020.06-impi-18.5``| |``system`` -``2020.12`` | |``system`` -``2020a`` | |``system`` -``2020b`` | |``system`` -``2021a`` | |``system`` -``2021b`` | |``system`` -``2022.00`` | |``system`` -``2022.05`` | |``system`` -``2022.09`` | |``system`` -``2022.11`` | |``system`` -``2022.12`` | |``system`` -``2022a`` | |``system`` -``2022b`` | |``system`` -``2023.03`` | |``system`` -``2023.07`` | |``system`` -``2023.11`` | |``system`` -``2023a`` | |``system`` -``2023b`` | |``system`` -``system`` |``-GCC-system-2.29``|``system`` - -### iimpic - -Intel C/C++ and Fortran compilers, alongside Intel MPI and CUDA. - -*homepage*: <(none)> - -version |toolchain ------------|---------- -``2016.10``|``system`` -``2017b`` |``system`` -``2019a`` |``system`` -``2019b`` |``system`` -``2020a`` |``system`` -``2020b`` |``system`` - -### IJulia - -Julia kernel for Jupyter - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|---------- -``1.23.3``|``-Julia-1.6.7``|``system`` -``1.24.0``|``-Julia-1.8.5``|``system`` - -### ILAMB - -The International Land Model Benchmarking (ILAMB) project is a model-data intercomparison and integration project designed to improve the performance of land models and, in parallel, improve the design of new measurement campaigns to reduce uncertainties associated with key land surface processes. - -*homepage*: - -version|versionsuffix |toolchain --------|-----------------|-------------- -``2.5``|``-Python-3.8.2``|``foss/2020a`` - -### IMa2 - -IMa2 is a progam for population genetic analysis that can handle two or more populations. - -*homepage*: - -version |toolchain ------------|-------------- -``8.27.12``|``foss/2016a`` - -### IMa2p - -IMa2p is a parallel implementation of IMa2, using OpenMPI-C++ - a Bayesian MCMC based method for inferring population demography under the IM (Isolation with Migration) model. http://dx.doi.org/10.1111/1755-0998.12437 - -*homepage*: - -version |toolchain -------------|--------------- -``20151123``|``foss/2016a`` -``20160804``|``intel/2016b`` - -### imagecodecs - -Imagecodecs is a Python library that provides block-oriented, in-memory buffer transformation, compression, and decompression functions for use in the tifffile, czifile, zarr, and other scientific image input/output modules. - -*homepage*: - -version |toolchain --------------|------------------------------ -``2021.8.26``|``foss/2020b`` -``2022.9.26``|``foss/2021a``, ``foss/2022a`` -``2024.1.1`` |``foss/2023a`` - -### imageio - -Imageio is a Python library that provides an easy interface to read and write a wide range of image data, including animated images, video, volumetric data, and scientific formats. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|---------------------------------- -``2.3.0`` |``-Python-3.6.4``|``intel/2018a`` -``2.5.0`` | |``foss/2019a`` -``2.9.0`` | |``foss/2020b``, ``fosscuda/2020b`` -``2.9.0`` |``-Python-3.7.4``|``foss/2019b``, ``intel/2019b`` -``2.10.5``| |``foss/2021a`` -``2.13.5``| |``foss/2021b`` -``2.22.2``| |``foss/2022a`` -``2.31.1``| |``foss/2022b`` -``2.33.1``| |``gfbf/2023a`` - -### ImageJ - -Image Processing and Analysis in Java - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|---------- -``1.51a``| |``system`` -``1.51i``| |``system`` -``1.51k``| |``system`` -``1.52q``|``-Java-1.8``|``system`` - -### ImageMagick - -ImageMagick is a software suite to create, edit, compose, or convert bitmap images - -*homepage*: - -version |versionsuffix |toolchain --------------|-----------------------------------|------------------------------- -``6.9.4-8`` | |``intel/2016a`` -``7.0.1-6`` | |``intel/2016a`` -``7.0.1-9`` | |``intel/2016a`` -``7.0.2-9`` | |``intel/2016a`` -``7.0.3-1`` | |``intel/2016b`` -``7.0.5-4`` | |``intel/2017a`` -``7.0.5-10`` | |``foss/2016b`` -``7.0.7-8`` |``-JasPer-1.900.1`` |``intel/2017a`` -``7.0.7-14`` | |``foss/2017b``, ``intel/2017b`` -``7.0.7-15`` | |``GCCcore/6.4.0`` -``7.0.7-26`` | |``foss/2018a`` -``7.0.7-30`` | |``GCCcore/6.4.0`` -``7.0.7-30`` |``-Ghostscript-9.22-cairo-1.14.12``|``GCCcore/6.4.0`` -``7.0.7-39`` |``-Ghostscript-9.23-cairo-1.14.12``|``GCCcore/6.4.0`` -``7.0.8-11`` | |``GCCcore/7.3.0`` -``7.0.8-46`` | |``GCCcore/8.2.0`` -``7.0.9-5`` | |``GCCcore/8.3.0`` -``7.0.10-1`` | |``GCCcore/9.3.0`` -``7.0.10-35``| |``GCCcore/10.2.0`` -``7.0.11-14``| |``GCCcore/10.3.0`` -``7.1.0-4`` | |``GCCcore/11.2.0`` -``7.1.0-37`` | |``GCCcore/11.3.0`` -``7.1.0-53`` | |``GCCcore/12.2.0`` -``7.1.1-15`` | |``GCCcore/12.3.0`` - -### imake - -imake is a Makefile-generator that is intended to make it easier to develop software portably for multiple systems. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------- -``1.0.7``|``intel/2016a`` -``1.0.8``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0`` - -### Imath - -Imath is a C++ and python library of 2D and 3D vector, matrix, and math operations for computer graphics - -*homepage*: - -version |toolchain ----------|------------------ -``3.1.5``|``GCCcore/11.3.0`` -``3.1.6``|``GCCcore/12.2.0`` -``3.1.7``|``GCCcore/12.3.0`` -``3.1.9``|``GCCcore/13.2.0`` - -### IMB - -The Intel MPI Benchmarks perform a set of MPI performance measurements for point-to-point and global communication operations for a range of message sizes - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------------------------------------------------- -``4.1`` |``foss/2016a``, ``foss/2017a``, ``intel/2017.02``, ``intel/2017a`` -``2018.1``|``intel/2017a`` -``2019.3``|``gompi/2019a``, ``iimpi/2019a`` -``2021.3``|``gompi/2020b``, ``gompi/2021b``, ``gompi/2022a``, ``gompi/2022b``, ``iimpi/2022a``, ``iimpi/2022b`` - -### imbalanced-learn - -imbalanced-learn is a Python package offering a number of re-sampling techniques commonly used in datasets showing strong between-class imbalance. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``0.2.1`` |``-Python-2.7.12``|``intel/2016b`` -``0.2.1`` |``-Python-3.5.2`` |``intel/2016b`` -``0.3.3`` |``-Python-3.6.4`` |``foss/2018a`` -``0.4.3`` |``-Python-3.6.6`` |``foss/2018b`` -``0.7.0`` | |``foss/2020b`` -``0.9.0`` | |``foss/2021b`` -``0.10.1``| |``foss/2022a`` - -### imgaug - -This python library helps you with augmenting images for your machine learning projects. It converts a set of input images into a new, much larger set of slightly altered images. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|---------------------------------------------- -``0.2.8``|``-Python-3.6.6``|``foss/2018b`` -``0.4.0``| |``foss/2021a``, ``foss/2021b``, ``foss/2022a`` -``0.4.0``|``-CUDA-11.3.1`` |``foss/2021a`` -``0.4.0``|``-CUDA-11.4.1`` |``foss/2021b`` -``0.4.0``|``-CUDA-11.7.0`` |``foss/2022a`` -``0.4.0``|``-Python-3.7.4``|``foss/2019b`` -``0.4.1``|``-CUDA-12.1.1`` |``foss/2023a`` - -### imkl - -Intel oneAPI Math Kernel Library - -*homepage*: - -version |versionsuffix|toolchain ---------------|-------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``11.2.3.187``| |``gimpi/2.11.5`` -``11.3.0.109``| |``iimpi/2016.00-GCC-4.9.3-2.25`` -``11.3.1.150``| |``iimpi/2016.01-GCC-4.9.3-2.25``, ``iimpi/8.1.5-GCC-4.9.3-2.25`` -``11.3.2.181``| |``iimpi/2016.02-GCC-4.9.3-2.25``, ``iimpi/2016.02-GCC-5.3.0-2.26``, ``pompi/2016.03`` -``11.3.3.210``| |``iimpi/2016.03-GCC-4.9.3-2.25``, ``iimpi/2016.03-GCC-5.3.0-2.26``, ``iimpi/2016.03-GCC-5.4.0-2.26``, ``iimpi/2016b``, ``iimpic/2016.10``, ``iompi/2016.07``, ``iompi/2016.09-GCC-4.9.3-2.25``, ``iompi/2016.09-GCC-5.4.0-2.26``, ``pompi/2016.04``, ``pompi/2016.09`` -``2017.0.098``| |``iimpi/2017.00-GCC-5.4.0-2.26`` -``2017.1.132``| |``gimpi/2017a``, ``iimpi/2017.01-GCC-5.4.0-2.26``, ``iimpi/2017a``, ``iompi/2017.01``, ``iompi/2017a`` -``2017.2.174``| |``iimpi/2017.02-GCC-6.3.0-2.27`` -``2017.3.196``| |``gompi/2017b``, ``iimpi/2017b``, ``iimpic/2017b``, ``iompi/2017b`` -``2017.4.239``| |``iimpi/2017.09`` -``2018.0.128``| |``iimpi/2018.00`` -``2018.1.163``| |``iimpi/2018.01``, ``iimpi/2018a``, ``iompi/2018a`` -``2018.1.163``|``-serial`` |``iccifort/2018.1.163-GCC-6.4.0-2.28`` -``2018.2.199``| |``iimpi/2018.02``, ``iompi/2018.02`` -``2018.3.222``| |``gimpi/2018b``, ``gompi/2018b``, ``iimpi/2018b``, ``iompi/2018b`` -``2018.4.274``| |``iimpi/2018.04`` -``2019.0.117``| |``iimpi/2019.00`` -``2019.1.144``| |``gompi/2019a``, ``iimpi/2019.01``, ``iimpi/2019a``, ``iimpic/2019a``, ``iompi/2019.01`` -``2019.2.187``| |``iimpi/2019.02`` -``2019.3.199``| |``iimpi/2019.03`` -``2019.5.281``| |``gompi/2019b``, ``gompic/2019b``, ``iimpi/2019b``, ``iimpic/2019b``, ``iompi/2019b`` -``2020.0.166``| |``iimpi/2020.00`` -``2020.1.217``| |``gompi/2020a``, ``iimpi/2020.06-impi-18.5``, ``iimpi/2020a``, ``iimpic/2020a``, ``iompi/2020a`` -``2020.4.304``| |``NVHPC/21.2``, ``gompi/2020b``, ``gompic/2020b``, ``iimpi/2020b``, ``iimpic/2020b``, ``iompi/2020b`` -``2021.1.1`` | |``iimpi/2020.12`` -``2021.2.0`` | |``gompi/2021a``, ``iimpi/2021a``, ``iompi/2021a`` -``2021.3.0`` | |``gompi/2021a`` -``2021.4.0`` | |``iompi/2021b``, ``system`` -``2022.0.1`` | |``system`` -``2022.1.0`` | |``gompi/2022a``, ``system`` -``2022.2.0`` | |``system`` -``2022.2.1`` | |``system`` -``2023.0.0`` | |``system`` -``2023.1.0`` | |``gompi/2023a``, ``system`` -``2023.2.0`` | |``system`` -``2024.0.0`` | |``system`` - -### imkl-FFTW - -FFTW interfaces using Intel oneAPI Math Kernel Library - -*homepage*: - -version |toolchain -------------|---------------------------------- -``2021.4.0``|``gompi/2021b``, ``iimpi/2021b`` -``2022.0.1``|``iimpi/2022.00`` -``2022.1.0``|``iimpi/2022.05``, ``iimpi/2022a`` -``2022.2.0``|``iimpi/2022.09`` -``2022.2.1``|``iimpi/2022.11``, ``iimpi/2022b`` -``2023.0.0``|``iimpi/2022.12`` -``2023.1.0``|``iimpi/2023.03``, ``iimpi/2023a`` -``2023.2.0``|``iimpi/2023.07``, ``iimpi/2023b`` -``2024.0.0``|``iimpi/2023.11`` - -### IML - -IML is a free library of C source code which implements algorithms for computing exact solutions to dense systems of linear equations over the integers. - -*homepage*: - -version |toolchain ----------|------------------------------ -``1.0.5``|``gfbf/2022a``, ``gfbf/2023b`` - -### Imlib2 - -This is the Imlib 2 library - a library that does image file loading and saving as well as rendering, manipulation, arbitrary polygon support, etc. It does ALL of these operations FAST. Imlib2 also tries to be highly intelligent about doing them, so writing naive programs can be done easily, without sacrificing speed. - -*homepage*: - -version |toolchain ----------|----------------- -``1.5.1``|``GCCcore/6.4.0`` - -### immunedeconv - -immunedeconv is an R package for unified access to computational methods for estimating immune cell fractions from bulk RNA sequencing data. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``2.0.2``|``-R-4.0.0`` |``foss/2020a`` - -### IMOD - -IMOD is a set of image processing, modeling and display programs used for tomographic reconstruction and for 3D reconstruction of EM serial sections and optical sections. The package contains tools for assembling and aligning data within multiple types and sizes of image stacks, viewing 3-D data from any orientation, and modeling and display of the image files. IMOD was developed primarily by David Mastronarde, Rick Gaudette, Sue Held, Jim Kremer, Quanren Xiong, and John Heumann at the University of Colorado. - -*homepage*: - -version |versionsuffix |toolchain -----------|---------------------|---------------------------------- -``4.7.15``|``_RHEL6-64_CUDA6.0``|``system`` -``4.11.5``| |``foss/2020b``, ``fosscuda/2020b`` - -### impi - -The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification. - -*homepage*: - -version |versionsuffix|toolchain ----------------|-------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``3.2.2.006`` | |``system`` -``4.0.0.028`` | |``system`` -``4.0.0.028`` |``-32bit`` |``system`` -``4.0.2.003`` | |``system`` -``4.1.0.027`` | |``system`` -``4.1.0.030`` | |``system`` -``4.1.1.036`` | |``system`` -``4.1.2.040`` | |``system`` -``4.1.3.045`` | |``system`` -``4.1.3.049`` | |``GCC/4.8.3``, ``system`` -``5.0.3.048`` | |``GCC/4.9.3`` -``5.1.1.109`` | |``iccifort/2016.0.109-GCC-4.9.3-2.25`` -``5.1.2.150`` | |``iccifort/2016.1.150-GCC-4.9.3-2.25`` -``5.1.3.181`` | |``iccifort/2016.2.181-GCC-4.9.3-2.25``, ``iccifort/2016.2.181-GCC-5.3.0-2.26``, ``iccifort/2016.3.210-GCC-4.9.3-2.25``, ``iccifort/2016.3.210-GCC-5.3.0-2.26``, ``iccifort/2016.3.210-GCC-5.4.0-2.26``, ``iccifortcuda/2016.10`` -``2017.0.098`` | |``iccifort/2017.0.098-GCC-5.4.0-2.26`` -``2017.1.132`` | |``GCC/5.4.0-2.26``, ``iccifort/2017.1.132-GCC-5.4.0-2.26``, ``iccifort/2017.1.132-GCC-6.3.0-2.27`` -``2017.2.174`` | |``iccifort/2017.2.174-GCC-6.3.0-2.27`` -``2017.3.196`` | |``GCC/6.4.0-2.28``, ``gcccuda/2017b``, ``iccifort/2017.4.196-GCC-6.4.0-2.28``, ``iccifortcuda/2017.4.196-GCC-6.4.0-2.28`` -``2017.4.239`` | |``iccifort/2017.5.239-GCC-6.4.0-2.28`` -``2018.0.128`` | |``iccifort/2018.0.128-GCC-6.4.0-2.28`` -``2018.1.163`` | |``GCC/6.4.0-2.28``, ``iccifort/2018.1.163-GCC-6.4.0-2.28`` -``2018.2.199`` | |``iccifort/2018.2.199-GCC-6.4.0-2.28`` -``2018.3.222`` | |``GCC/7.3.0-2.30``, ``iccifort/2018.3.222-GCC-7.3.0-2.30`` -``2018.4.274`` | |``iccifort/2018.5.274-GCC-7.3.0-2.30``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1``, ``iccifortcuda/2019a`` -``2018.5.288`` | |``iccifort/2019.5.281``, ``iccifort/2020.1.217``, ``iccifortcuda/2019b`` -``2019.0.117`` | |``iccifort/2019.0.117-GCC-8.2.0-2.31.1`` -``2019.1.144`` | |``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -``2019.2.187`` | |``iccifort/2019.2.187-GCC-8.2.0-2.31.1`` -``2019.3.199`` | |``iccifort/2019.3.199-GCC-8.3.0-2.32`` -``2019.6.166`` | |``iccifort/2020.0.166-GCC-9.2.0`` -``2019.7.217`` | |``iccifort/2020.1.217``, ``iccifortcuda/2020a`` -``2019.9.304`` | |``iccifort/2020.4.304``, ``iccifortcuda/2020b`` -``2019.12.320``| |``iccifort/2020.4.304`` -``2021.1.1`` | |``intel-compilers/2021.1.2`` -``2021.2.0`` | |``intel-compilers/2021.2.0`` -``2021.3.0`` | |``intel-compilers/2021.3.0`` -``2021.4.0`` | |``intel-compilers/2021.4.0`` -``2021.5.0`` | |``intel-compilers/2022.0.1`` -``2021.6.0`` | |``intel-compilers/2022.1.0`` -``2021.7.0`` | |``intel-compilers/2022.2.0`` -``2021.7.1`` | |``intel-compilers/2022.2.1`` -``2021.8.0`` | |``intel-compilers/2023.0.0`` -``2021.9.0`` | |``intel-compilers/2023.1.0`` -``2021.10.0`` | |``intel-compilers/2023.2.1`` -``2021.11.0`` | |``intel-compilers/2024.0.0`` -``system`` | |``iccifort/system-GCC-system-2.29`` - -### IMPUTE2 - -IMPUTE version 2 (also known as IMPUTE2) is a genotype imputation and haplotype phasing program based on ideas from Howie et al. 2009 - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------|---------- -``2.3.0``|``_x86_64_dynamic``|``system`` -``2.3.0``|``_x86_64_static`` |``system`` -``2.3.2``|``_x86_64_dynamic``|``system`` -``2.3.2``|``_x86_64_static`` |``system`` - -### imutils - -A series of convenience functions to make basic image processing operations such as translation, rotation, resizing, skeletonization, and displaying Matplotlib images easier with OpenCV and Python. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|------------------ -``0.5.4``| |``fosscuda/2020b`` -``0.5.4``|``-CUDA-11.7.0``|``foss/2022a`` - -### InChI - -The IUPAC International Chemical Identifier (InChI TM) is a non-proprietary identifier for chemical substances that can be used in printed and electronic data sources thus enabling easier linking of diverse data compilations. - -*homepage*: - -version |toolchain ---------|-------------- -``1.06``|``GCC/10.3.0`` - -### indicators - -- Thread-safe progress bars and spinners - Header-only library. Grab a copy of include/indicators. - Single-header version in single_include/indicators. - -*homepage*: - -version|toolchain --------|-------------------------------------- -``2.2``|``GCCcore/11.2.0``, ``GCCcore/11.3.0`` - -### Inelastica - -Python package for eigenchannels, vibrations and inelastic electron transport based on SIESTA/TranSIESTA DFT. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``1.3.5``|``-Python-2.7.15``|``intel/2018b`` - -### inferCNV - -InferCNV is used to explore tumor single cell RNA-Seq data to identify evidence for somatic large-scale chromosomal copy number alterations, such as gains or deletions of entire chromosomes or large segments of chromosomes. - -*homepage*: - -version |versionsuffix |toolchain -----------|-------------------------|------------------------------ -``1.0.4`` |``-Python-3.7.2-R-3.6.0``|``foss/2019a`` -``1.2.1`` |``-Python-3.7.4`` |``foss/2019b`` -``1.3.3`` | |``foss/2020b``, ``foss/2021a`` -``1.3.3`` |``-Python-3.8.2`` |``foss/2020a`` -``1.10.1``|``-R-4.1.2`` |``foss/2021b`` -``1.12.0``|``-R-4.2.1`` |``foss/2022a`` -``1.14.2``|``-R-4.2.2`` |``foss/2022b`` - -### infercnvpy - -Infer copy number variation (CNV) from scRNA-seq data. Plays nicely with Scanpy. - -*homepage*: - -version |toolchain ----------|-------------- -``0.4.0``|``foss/2021b`` -``0.4.2``|``foss/2022a`` -``0.4.3``|``foss/2023a`` - -### Inferelator - -Inferelator 3.0 is a package for gene regulatory network inference that is based on regularized regression. - -*homepage*: - -version |toolchain ----------|-------------- -``0.6.1``|``foss/2022a`` - -### Infernal - -Infernal ("INFERence of RNA ALignment") is for searching DNA sequence databases for RNA structure and sequence similarities. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------ -``1.1.2``|``foss/2016b``, ``foss/2018b``, ``intel/2017a``, ``intel/2018b`` -``1.1.4``|``foss/2020b``, ``foss/2021a``, ``foss/2021b``, ``foss/2022a``, ``foss/2022b`` - -### inflection - -inflection is a package that finds the inflection point of a planar curve which is given as a data frame of discrete (xi,yi) points - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``1.3.5``|``-R-4.3.2`` |``foss/2023a`` - -### Infomap - -Multi-level network clustering based on the Map equation. - -*homepage*: - -version |toolchain -------------|-------------------- -``20190308``|``GCC/8.2.0-2.31.1`` - -### inih - -Direct Rendering Manager runtime library. - -*homepage*: - -version|toolchain --------|------------------ -``57`` |``GCCcore/12.3.0`` - -### inline - -Functionality to dynamically define R functions and S4 methods with 'inlined' C, C++ or Fortran code supporting the .C and .Call calling conventions. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|-------------- -``0.3.19``|``-R-4.0.4`` |``foss/2020b`` - -### InParanoid - -InParanoid: ortholog groups with inparalogs. - -*homepage*: - -version |toolchain -----------------|-------------- -``5.0-20220607``|``GCC/10.3.0`` - -### inputproto - -X.org InputProto protocol headers. - -*homepage*: - -version |toolchain ----------|------------------------------------------------- -``2.3.1``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` -``2.3.2``|``intel/2016a`` - -### Inspector - -Intel Inspector is a dynamic memory and threading error checking tool for users developing serial and parallel applications - -*homepage*: - -version |toolchain -----------------|---------- -``2013_update6``|``system`` -``2013_update7``|``system`` -``2016_update3``|``system`` -``2017_update1``|``system`` -``2017_update2``|``system`` -``2018_update1``|``system`` -``2018_update2``|``system`` -``2018_update3``|``system`` -``2019_update2``|``system`` -``2019_update5``|``system`` -``2021.4.0`` |``system`` -``2022.0.0`` |``system`` -``2022.1.0`` |``system`` -``2023.2.0`` |``system`` - -### IntaRNA - -Efficient RNA-RNA interaction prediction incorporating accessibility and seeding of interaction sites - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``2.3.1``|``-Python-2.7.15``|``foss/2018b`` - -### INTEGRATE - -INTEGRATE is a tool calling gene fusions with exact fusion junctions and genomic breakpoints by combining RNA-Seq and WGS data. It is highly sensitive and accurate by applying a fast split-read mapping algorithm based on Burrow-Wheeler transform. - -*homepage*: - -version |toolchain ----------|----------------- -``0.2.6``|``GCCcore/8.2.0`` - -### INTEGRATE-Neo - -INTEGRATE-Neo is a gene fusion neoantigen discovering tool using next-generation sequencing data. It is written in C++ and Python. - -*homepage*: <> - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``1.2.1``|``-Python-3.6.6``|``foss/2018b`` - -### intel - -Compiler toolchain including Intel compilers, Intel MPI and Intel Math Kernel Library (MKL). - -*homepage*: - -version |versionsuffix|toolchain ----------------------|-------------|---------- -``2016.00`` | |``system`` -``2016.01`` | |``system`` -``2016.02`` |``-GCC-4.9`` |``system`` -``2016.02`` |``-GCC-5.3`` |``system`` -``2016.03`` |``-GCC-4.9`` |``system`` -``2016.03`` |``-GCC-5.3`` |``system`` -``2016.03`` |``-GCC-5.4`` |``system`` -``2016a`` | |``system`` -``2016b`` | |``system`` -``2017.00`` | |``system`` -``2017.01`` | |``system`` -``2017.02`` | |``system`` -``2017.09`` | |``system`` -``2017a`` | |``system`` -``2017b`` | |``system`` -``2018.00`` | |``system`` -``2018.01`` | |``system`` -``2018.02`` | |``system`` -``2018.04`` | |``system`` -``2018a`` | |``system`` -``2018b`` | |``system`` -``2019.00`` | |``system`` -``2019.01`` | |``system`` -``2019.02`` | |``system`` -``2019.03`` | |``system`` -``2019a`` | |``system`` -``2019b`` | |``system`` -``2020.00`` | |``system`` -``2020.06-impi-18.5``| |``system`` -``2020.12`` | |``system`` -``2020a`` | |``system`` -``2020b`` | |``system`` -``2021a`` | |``system`` -``2021b`` | |``system`` -``2022.00`` | |``system`` -``2022.05`` | |``system`` -``2022.09`` | |``system`` -``2022.11`` | |``system`` -``2022.12`` | |``system`` -``2022a`` | |``system`` -``2022b`` | |``system`` -``2023.03`` | |``system`` -``2023.07`` | |``system`` -``2023.11`` | |``system`` -``2023a`` | |``system`` -``2023b`` | |``system`` - -### intel-compilers - -Intel C, C++ & Fortran compilers (classic and oneAPI) - -*homepage*: - -version |toolchain -------------|---------- -``2021.1.2``|``system`` -``2021.2.0``|``system`` -``2021.3.0``|``system`` -``2021.4.0``|``system`` -``2022.0.1``|``system`` -``2022.0.2``|``system`` -``2022.1.0``|``system`` -``2022.2.0``|``system`` -``2022.2.1``|``system`` -``2023.0.0``|``system`` -``2023.1.0``|``system`` -``2023.2.1``|``system`` -``2024.0.0``|``system`` - -### IntelClusterChecker - -Intel Cluster Checker verifies the configuration and performance of Linux OS-based clusters. Anomalies and performance differences can be identified and practical resolutions provided. - -*homepage*: - -version |toolchain ---------------|---------- -``2017.1.016``|``system`` -``2021.5.0`` |``system`` - -### intelcuda - -Intel Cluster Toolkit Compiler Edition provides Intel C/C++ and Fortran compilers, Intel MPI & Intel MKL, with CUDA toolkit - -*homepage*: <(none)> - -version |toolchain ------------|---------- -``2016.10``|``system`` -``2017b`` |``system`` -``2019a`` |``system`` -``2019b`` |``system`` -``2020a`` |``system`` -``2020b`` |``system`` - -### IntelDAAL - -Intel® Data Analytics Acceleration Library (Intel® DAAL) is the library of Intel® architecture optimized building blocks covering all stages of data analytics: data acquisition from a data source, preprocessing, transformation, data mining, modeling, validation, and decision making. - -*homepage*: - -version |toolchain ---------------|---------- -``2019.4.007``|``system`` - -### IntelPython - -Intel® Distribution for Python. Powered by Anaconda. Accelerating Python* performance on modern architectures from Intel. - -*homepage*: - -version |versionsuffix |toolchain -----------|---------------|---------- -``2.7.15``|``-2019.2.066``|``system`` -``3.6.8`` |``-2019.2.066``|``system`` - -### InterOp - -The Illumina InterOp libraries are a set of common routines used for reading InterOp metric files produced by Illumina sequencers including NextSeq 1k/2k and NovaSeqX. These libraries are backwards compatible and capable of supporting prior releases of the software, with one exception: GA systems have been excluded. - -*homepage*: - -version |toolchain ----------|-------------- -``1.2.4``|``foss/2021a`` - -### InterProScan - -InterProScan is a sequence analysis application (nucleotide and protein sequences) that combines different protein signature recognition methods into one resource [code only: libraries and external binaries but no data]. - -*homepage*: - -version |toolchain --------------|------------------ -``5.26-65.0``|``intel/2017b`` -``5.27-66.0``|``intel/2017b`` -``5.28-67.0``|``intel/2018a`` -``5.52-86.0``|``GCCcore/10.3.0`` -``5.55-88.0``|``foss/2021a`` -``5.62-94.0``|``foss/2022b`` - -### InterProScan_data - -InterProScan is a sequence analysis application (nucleotide and protein sequences) that combines different protein signature recognition methods into one resource [data only]. - -*homepage*: - -version |toolchain --------------|-------------- -``5.55-88.0``|``foss/2021a`` - -### intervaltree - -An interval tree can be used to efficiently find a set of numeric intervals overlapping or containing another interval. This library provides a basic implementation of an interval tree using C++ templates, allowing the insertion of arbitrary types into the tree. - -*homepage*: - -version|toolchain --------|--------------------------------------------------------------------------------------------------------------------- -``0.1``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0``, ``GCCcore/9.3.0`` - -### intervaltree-python - -A mutable, self-balancing interval tree. Queries may be by point, by range overlap, or by range containment. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------------------------------------------------------------------------------------------- -``3.0.2``|``-Python-3.6.6``|``foss/2018b`` -``3.1.0``| |``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### intltool - -intltool is a set of tools to centralize translation of many different file formats using GNU gettext-compatible PO files. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``0.51.0``| |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``0.51.0``|``-Perl-5.20.3``|``intel/2016a`` -``0.51.0``|``-Perl-5.22.1``|``foss/2016a``, ``intel/2016a`` -``0.51.0``|``-Perl-5.24.0``|``GCCcore/4.9.3``, ``GCCcore/5.4.0``, ``foss/2016b``, ``gimkl/2017a``, ``intel/2016b`` -``0.51.0``|``-Perl-5.24.1``|``GCCcore/6.3.0``, ``intel/2017a`` -``0.51.0``|``-Perl-5.26.0``|``GCCcore/6.4.0`` -``0.51.0``|``-Perl-5.26.1``|``GCCcore/6.4.0`` -``0.51.0``|``-Perl-5.28.0``|``GCCcore/7.3.0`` - -### io_lib - -Io_lib is a library of file reading and writing code to provide a general purpose trace file (and Experiment File) reading interface. The programmer simply calls the (eg) read_reading to create a "Read" C structure with the data loaded into memory. It has been compiled and tested on a variety of unix systems, MacOS X and MS Windows. - -*homepage*: - -version |toolchain -----------|-------------- -``1.14.8``|``foss/2016a`` - -### ioapi - -The Models-3/EDSS Input/Output Applications Programming Interface (I/O API) provides the environmental model developer with an easy-to-learn, easy-to-use programming library for data storage and access, available from both Fortran and C. The same routines can be used for both file storage (using netCDF files) and model coupling (using PVM mailboxes). It is the standard data access library for both the NCSC/CMAS's EDSS project and EPA's Models-3, CMAQ, and SMOKE, as well as various other atmospheric and hydrological modeling systems. - -*homepage*: - -version |versionsuffix|toolchain ----------------|-------------|--------------- -``3.2-2020111``|``-nocpl`` |``gompi/2019b`` - -### iodata - -Python library for reading, writing, and converting computational chemistry file formats and generating input files. - -*homepage*: - -version |toolchain ------------|--------------- -``1.0.0a2``|``intel/2022a`` - -### iomkl - -Compiler toolchain including Intel compilers, Open MPI and Intel Math Kernel Library (MKL). - -*homepage*: - -version |toolchain ---------------------------|---------- -``2016.07`` |``system`` -``2016.09-GCC-4.9.3-2.25``|``system`` -``2016.09-GCC-5.4.0-2.26``|``system`` -``2017.01`` |``system`` -``2017a`` |``system`` -``2017b`` |``system`` -``2018.02`` |``system`` -``2018a`` |``system`` -``2018b`` |``system`` -``2019.01`` |``system`` -``2019b`` |``system`` -``2020a`` |``system`` -``2020b`` |``system`` -``2021a`` |``system`` -``2021b`` |``system`` - -### iompi - -Intel C/C++ and Fortran compilers, alongside Open MPI. - -*homepage*: - -version |toolchain ---------------------------|---------- -``2016.07`` |``system`` -``2016.09-GCC-4.9.3-2.25``|``system`` -``2016.09-GCC-5.4.0-2.26``|``system`` -``2017.01`` |``system`` -``2017a`` |``system`` -``2017b`` |``system`` -``2018.02`` |``system`` -``2018a`` |``system`` -``2018b`` |``system`` -``2019.01`` |``system`` -``2019b`` |``system`` -``2020a`` |``system`` -``2020b`` |``system`` -``2021a`` |``system`` -``2021b`` |``system`` - -### IonQuant - -IonQuant is a fast and comprehensive tool for MS1 precursor intensity-based quantification for timsTOF PASEF DDA and non-timsTOF (e.g., Orbitrap) data. It enables label-free quantification with false discovery (FDR) controlled match-between-runs (MBR). It can also be used for quantification in labelling-based experiments such as those involving SILAC, dimethyl, or similar labelling strategies. IonQuant is available as part of FragPipe. - -*homepage*: - -version |versionsuffix|toolchain ------------|-------------|---------- -``1.10.12``|``-Java-11`` |``system`` - -### IOR - -The IOR software is used for benchmarking parallel file systems using POSIX, MPIIO, or HDF5 interfaces. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|------------------------------------------------- -``3.0.1``|``-mpiio`` |``foss/2016a`` -``3.2.1``| |``gompi/2019b`` -``3.3.0``| |``gompi/2020b``, ``gompi/2021a``, ``gompi/2022a`` -``4.0.0``| |``gompi/2023b`` - -### IOzone - -IOzone is a filesystem benchmark tool. The benchmark generates and measures a variety of file operations. Iozone has been ported to many machines and runs under many operating systems. - -*homepage*: - -version |toolchain ----------|-------------- -``3.434``|``foss/2016a`` - -### iperf - -iperf is a tool for active measurements of the maximum achievable bandwidth on IP networks. - -*homepage*: - -version |toolchain ----------|------------------ -``2.1.9``|``GCCcore/10.2.0`` -``3.15`` |``system`` -``3.16`` |``system`` - -### IPM - -IPM is a portable profiling infrastructure for parallel codes. It provides a low-overhead profile of application performance and resource utilization in a parallel program. Communication, computation, and IO are the primary focus. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------------- -``2.0.6``|``gompi/2019b``, ``gompi/2020a``, ``iimpi/2019b``, ``iimpi/2020a``, ``iompi/2020a`` - -### Ipopt - -IPOPT (Interior Point Optimizer, pronounced Eye-Pea-Opt) is an open source software package for large-scale nonlinear optimization. - -*homepage*: - -version |toolchain ------------|--------------- -``3.12.9`` |``foss/2017b`` -``3.12.13``|``intel/2019a`` - -### ipp - -Intel Integrated Performance Primitives (Intel IPP) is an extensive library of multicore-ready, highly optimized software functions for multimedia, data processing, and communications applications. Intel IPP offers thousands of optimized functions covering frequently used fundamental algorithms. - -*homepage*: - -version |toolchain ---------------|---------- -``7.0.5.233`` |``system`` -``8.1.0.144`` |``system`` -``9.0.1.150`` |``system`` -``2017.1.132``|``system`` - -### IPy - -Class and tools for handling of IPv4 and IPv6 addresses and networks - -*homepage*: - -version |toolchain ---------|---------- -``0.83``|``system`` - -### ipympl - -Leveraging the Jupyter interactive widgets framework, ipympl enables the interactive features of matplotlib in the Jupyter notebook and in JupyterLab. Besides, the figure canvas element is a proper Jupyter interactive widget which can be positioned in interactive widget layouts. - -*homepage*: - -version |toolchain ----------|------------------------------ -``0.9.3``|``foss/2022a``, ``gfbf/2023a`` -``0.9.4``|``gfbf/2023b`` - -### ipyparallel - -ipyparallel is a Python package and collection of CLI scripts for controlling clusters for Jupyter - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``6.2.2``|``-Python-3.6.4``|``foss/2018a`` - -### ipyrad - -ipyrad is an interactive toolkit for assembly and analysis of restriction-site associated genomic data sets (e.g., RAD, ddRAD, GBS) for population genetic and phylogenetic studies. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``0.6.15``|``-Python-2.7.13``|``intel/2017a`` - -### IPython - -IPython provides a rich architecture for interactive computing with: Powerful interactive shells (terminal and Qt-based). A browser-based notebook with support for code, text, mathematical expressions, inline plots and other rich media. Support for interactive data visualization and use of GUI toolkits. Flexible, embeddable interpreters to load into your own projects. Easy to use, high performance tools for parallel computing. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------------------------------------------------------------------------------- -``3.2.3`` |``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``4.2.0`` |``-Python-2.7.11``|``intel/2016a`` -``5.0.0`` |``-Python-2.7.11``|``foss/2016a`` -``5.0.0`` |``-Python-3.5.1`` |``foss/2016a`` -``5.1.0`` |``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``5.1.0`` |``-Python-3.5.2`` |``intel/2016b`` -``5.2.2`` |``-Python-2.7.12``|``intel/2016b`` -``5.3.0`` |``-Python-2.7.13``|``intel/2017a`` -``5.7.0`` |``-Python-2.7.14``|``foss/2018a``, ``intel/2018a`` -``5.8.0`` |``-Python-2.7.14``|``foss/2017b``, ``fosscuda/2017b``, ``intel/2017b``, ``intelcuda/2017b`` -``5.8.0`` |``-Python-2.7.15``|``foss/2018b``, ``foss/2019a``, ``fosscuda/2018b``, ``fosscuda/2019a``, ``intel/2018b`` -``5.8.0`` |``-Python-3.6.3`` |``foss/2017b``, ``fosscuda/2017b``, ``intel/2017b``, ``intelcuda/2017b`` -``5.10.0``|``-Python-2.7.18``|``foss/2021b`` -``6.2.1`` |``-Python-3.6.4`` |``foss/2017a`` -``6.3.1`` |``-Python-3.6.4`` |``intel/2018a`` -``6.4.0`` |``-Python-3.6.4`` |``foss/2018a`` -``7.2.0`` |``-Python-3.6.6`` |``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b`` -``7.7.0`` |``-Python-3.7.2`` |``foss/2019a``, ``fosscuda/2019a``, ``intel/2019a`` -``7.9.0`` |``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b``, ``intel/2019b`` -``7.13.0``|``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``7.15.0``|``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``7.18.1``| |``GCCcore/10.2.0`` -``7.25.0``| |``GCCcore/10.3.0`` -``7.26.0``| |``GCCcore/11.2.0`` -``8.5.0`` | |``GCCcore/11.3.0`` -``8.14.0``| |``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``8.17.2``| |``GCCcore/13.2.0`` - -### IQ-TREE - -Efficient phylogenomic software by maximum likelihood - -*homepage*: - -version |versionsuffix|toolchain ------------|-------------|----------------------------------------------- -``1.5.5`` |``-omp-mpi`` |``foss/2016a`` -``1.6.6`` | |``intel/2018a`` -``1.6.12`` | |``foss/2018b``, ``foss/2020a``, ``intel/2019b`` -``2.1.2`` | |``foss/2020a``, ``gompi/2020b`` -``2.1.3`` | |``gompi/2021a`` -``2.2.1`` | |``gompi/2021b`` -``2.2.2.3``| |``gompi/2022a`` -``2.2.2.6``| |``gompi/2022a``, ``gompi/2022b`` -``2.2.2.7``| |``gompi/2023a`` - -### Iris - -A module for improving the insertion sequences of structural variant calls - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``1.0.5``|``-Java-15`` |``GCC/11.2.0`` - -### IRkernel - -The R kernel for the 'Jupyter' environment executes R code which the front-end (Jupyter Notebook or other front-ends) submits to the kernel via the network. - -*homepage*: - -version |versionsuffix |toolchain -----------|--------------------------|---------------------------------- -``0.8.15``|``-R-3.4.3-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``1.1`` |``-R-3.6.2-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b`` -``1.1`` |``-R-3.6.3-Python-3.8.2`` |``foss/2020a`` -``1.2`` |``-R-4.0.0-Python-3.8.2`` |``foss/2020a`` -``1.2`` |``-R-4.1.0`` |``foss/2021a`` -``1.3`` |``-R-4.2.0`` |``foss/2021b`` -``1.3.2`` |``-R-4.2.1`` |``foss/2022a`` -``1.3.2`` |``-R-4.3.2`` |``gfbf/2023a`` - -### irodsfs - -FUSE implementation of iRODS Client written in Golang. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|---------- -``0.8.9`` |``-linux-amd64``|``system`` -``0.8.11``|``-linux-amd64``|``system`` -``0.8.12``|``-linux-amd64``|``system`` - -### IronPython - -IronPython is an open-source implementation of the Python programming language which is tightly integrated with the .NET Framework. IronPython can use the .NET Framework and Python libraries, and other .NET languages can use Python code just as easily. - -*homepage*: - -version|toolchain --------|--------------- -``2.7``|``intel/2016b`` - -### ISA-L - -Intelligent Storage Acceleration Library - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------------------------------------------------------------------- -``2.30.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``2.31.0``|``GCCcore/13.2.0`` - -### ISL - -isl is a library for manipulating sets and relations of integer points bounded by linear constraints. - -*homepage*: - -version |toolchain ---------|------------------------------------------------------------------------------ -``0.14``|``GCC/4.9.2`` -``0.15``|``GCC/4.9.3-2.25``, ``GNU/4.9.3-2.25``, ``foss/2016a`` -``0.16``|``GCC/4.9.3-2.25`` -``0.17``|``foss/2016a`` -``0.23``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/9.3.0`` -``0.24``|``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``0.26``|``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0`` - -### isoCirc - -isoCirc: computational pipeline to identify high-confidence BSJs and full-length circRNA isoforms from isoCirc long-read data - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.4``|``foss/2020b`` - -### IsoformSwitchAnalyzeR - -Analysis of alternative splicing and isoform switches with predicted functional consequences (e.g. gain/loss of protein domains etc.) from quantification of all types of RNASeq by tools such as Kallisto, Salmon, StringTie, Cufflinks/Cuffdiff etc. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|-------------- -``1.18.0``|``-R-4.2.1`` |``foss/2022a`` - -### IsoNet - -IsoNet stands for for ISOtropic reconstructioN of Electron Tomography. It trains deep convolutional neural networks to reconstruct meaningful contents in the mis sing wedge for electron tomography, and to increase signal-to-noise ratio, using the information learned from the original tomogram. The software requires tomograms as input. Observing at about 30A resolution, the IsoNet generated tomograms are largely isotropic. - -*homepage*: - -version |toolchain ----------------------------|------------------ -``0.1_20210822_04_674f67f``|``fosscuda/2020b`` - -### IsoQuant - -IsoQuant is a tool for the genome-based analysis of long RNA reads, such as PacBio or Oxford Nanopores. IsoQuant allows to reconstruct and quantify transcript models with high precision and decent recall. If the reference annotation is given, IsoQuant also assigns reads to the annotated isoforms based on their intron and exon structure. IsoQuant further performs annotated gene, isoform, exon and intron quantification. If reads are grouped (e.g. according to cell type), counts are reported according to the provided grouping. - -*homepage*: - -version |toolchain ----------|-------------- -``3.3.0``|``foss/2022b`` - -### IsoSeq - -IsoSeq v3 contains the newest tools to identify transcripts in PacBio single-molecule sequencing data. Starting in SMRT Link v6.0.0, those tools power the IsoSeq GUI-based analysis application. A composable workflow of existing tools and algorithms, combined with a new clustering technique, allows to process the ever-increasing yield of PacBio machines with similar performance to IsoSeq versions 1 and 2. Starting with version 3.4, support for UMI and cell barcode based deduplication has been added. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|---------- -``3.8.2``|``-linux-x86_64``|``system`` -``4.0.0``|``-linux-x86_64``|``system`` - -### ispc - -Intel SPMD Program Compilers; An open-source compiler for high-performance SIMD programming on the CPU. ispc is a compiler for a variant of the C programming language, with extensions for 'single program, multiple data' (SPMD) programming. Under the SPMD model, the programmer writes a program that generally appears to be a regular serial program, though the execution model is actually that a number of program instances execute in parallel on the hardware. - -*homepage*: - -version |toolchain -----------|---------- -``1.6.0`` |``system`` -``1.10.0``|``system`` -``1.12.0``|``system`` -``1.16.0``|``system`` - -### itac - -The Intel Trace Collector is a low-overhead tracing library that performs event-based tracing in applications. The Intel Trace Analyzer provides a convenient way to monitor application activities gathered by the Intel Trace Collector through graphical displays. - -*homepage*: - -version |toolchain ---------------|---------- -``8.0.0.011`` |``system`` -``8.1.4.045`` |``system`` -``9.0.3.051`` |``system`` -``2017.1.024``|``system`` -``2018.1.017``|``system`` -``2018.3.022``|``system`` -``2019.2.026``|``system`` -``2019.4.036``|``system`` -``2021.2.0`` |``system`` -``2021.5.0`` |``system`` -``2021.6.0`` |``system`` -``2021.10.0`` |``system`` - -### ITK - -Insight Segmentation and Registration Toolkit (ITK) provides an extensive suite of software tools for registering and segmenting multidimensional imaging data. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|---------------------------------------------------------------------------------- -``4.12.2``|``-Python-2.7.12``|``foss/2016b`` -``4.13.0``|``-Python-2.7.14``|``foss/2018a`` -``4.13.0``|``-Python-3.6.4`` |``foss/2018a`` -``4.13.1``|``-Python-2.7.14``|``foss/2018a`` -``4.13.1``|``-Python-2.7.15``|``foss/2018b`` -``4.13.1``|``-Python-3.6.4`` |``foss/2018a`` -``4.13.1``|``-Python-3.6.6`` |``foss/2018b`` -``4.13.1``|``-Python-3.7.4`` |``foss/2019b`` -``5.0.1`` |``-Python-3.7.2`` |``foss/2019a`` -``5.0.1`` |``-Python-3.7.4`` |``foss/2019b`` -``5.0b01``|``-Python-3.6.6`` |``foss/2018b`` -``5.1.2`` | |``foss/2020a``, ``fosscuda/2020a`` -``5.1.2`` |``-Python-3.8.2`` |``foss/2020a``, ``fosscuda/2020a`` -``5.2.1`` | |``foss/2020b``, ``foss/2021a``, ``foss/2021b``, ``foss/2022a``, ``fosscuda/2020b`` -``5.3.0`` | |``foss/2023a`` - -### itpp - -IT++ is a C++ library of mathematical, signal processing and communication classes and functions. Its main use is in simulation of communication systems and for performing research in the area of communications. - -*homepage*: - -version |toolchain ----------|-------------- -``4.3.1``|``foss/2019b`` - -### ITSTool - -ITS Tool allows you to translate your XML documents with PO files - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------------------------------- -``2.0.5``|``-Python-2.7.14``|``intel/2018a`` -``2.0.5``|``-Python-2.7.15``|``foss/2018b`` -``2.0.6``|``-Python-3.7.2`` |``GCCcore/8.2.0`` -``2.0.7``| |``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### ITSx - -ITSx: Improved software detection and extraction of ITS1 and ITS2 from ribosomal ITS sequences of fungi and other eukaryotes for use in environmental sequencing. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``1.1.2``|``GCCcore/9.3.0`` -``1.1.3``|``GCCcore/10.3.0``, ``GCCcore/11.3.0`` - -### iVar - -iVar is a computational package that contains functions broadly useful for viral amplicon-based sequencing. - -*homepage*: - -version |toolchain ----------|----------------------------- -``1.0.1``|``foss/2018b`` -``1.3.1``|``GCC/10.2.0``, ``GCC/9.3.0`` - -## J - - -[JAGS](#jags) - [Jansson](#jansson) - [Jasmine](#jasmine) - [JasPer](#jasper) - [Java](#java) - [JavaFX](#javafx) - [jax](#jax) - [JAXFrontCE](#jaxfrontce) - [jbigkit](#jbigkit) - [Jblob](#jblob) - [jedi](#jedi) - [jedi-language-server](#jedi-language-server) - [Jellyfish](#jellyfish) - [jemalloc](#jemalloc) - [jhbuild](#jhbuild) - [JiTCODE](#jitcode) - [jiter](#jiter) - [jModelTest](#jmodeltest) - [Jmol](#jmol) - [Jorg](#jorg) - [joypy](#joypy) - [jq](#jq) - [json-c](#json-c) - [json-fortran](#json-fortran) - [JSON-GLib](#json-glib) - [JsonCpp](#jsoncpp) - [JUBE](#jube) - [Judy](#judy) - [Julia](#julia) - [JUnit](#junit) - [Jupyter-bundle](#jupyter-bundle) - [jupyter-contrib-nbextensions](#jupyter-contrib-nbextensions) - [jupyter-matlab-proxy](#jupyter-matlab-proxy) - [jupyter-resource-usage](#jupyter-resource-usage) - [jupyter-rsession-proxy](#jupyter-rsession-proxy) - [jupyter-server](#jupyter-server) - [jupyter-server-proxy](#jupyter-server-proxy) - [JupyterHub](#jupyterhub) - [JupyterLab](#jupyterlab) - [jupyterlab-lmod](#jupyterlab-lmod) - [jupyterlmod](#jupyterlmod) - [JupyterNotebook](#jupyternotebook) - [JWM](#jwm) - [jxrlib](#jxrlib) - - -### JAGS - -JAGS is Just Another Gibbs Sampler. It is a program for analysis of Bayesian hierarchical models using Markov Chain Monte Carlo (MCMC) simulation - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``4.2.0``|``foss/2016a``, ``intel/2016a``, ``intel/2017a`` -``4.3.0``|``foss/2017b``, ``foss/2018b``, ``foss/2019a``, ``foss/2019b``, ``foss/2020a``, ``foss/2020b``, ``foss/2021a``, ``foss/2021b``, ``fosscuda/2020b``, ``intel/2017b`` -``4.3.1``|``foss/2022a`` -``4.3.2``|``foss/2022b``, ``foss/2023a`` - -### Jansson - -Jansson is a C library for encoding, decoding and manipulating JSON data. Its main features and design principles are: * Simple and intuitive API and data model * Comprehensive documentation * No dependencies on other libraries * Full Unicode support (UTF-8) * Extensive test suite - -*homepage*: - -version |toolchain -----------|------------------------------ -``2.6`` |``GCC/4.8.3`` -``2.13.1``|``GCC/10.2.0``, ``GCC/11.2.0`` -``2.14`` |``GCC/11.3.0``, ``GCC/12.3.0`` - -### Jasmine - -SV Merging Across Samples - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``1.1.4``|``-Java-15`` |``GCC/11.2.0`` - -### JasPer - -The JasPer Project is an open-source initiative to provide a free software-based reference implementation of the codec specified in the JPEG-2000 Part-1 standard. - -*homepage*: - -version |toolchain ------------|---------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.900.1``|``GCCcore/5.4.0``, ``GCCcore/6.4.0``, ``GCCcore/8.2.0``, ``foss/2016a``, ``foss/2016b``, ``foss/2017a``, ``intel/2016a``, ``intel/2016b``, ``intel/2017a`` -``2.0.10`` |``intel/2016b`` -``2.0.12`` |``GCCcore/6.4.0``, ``foss/2016b``, ``intel/2017a`` -``2.0.14`` |``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``2.0.16`` |``GCCcore/9.3.0`` -``2.0.24`` |``GCCcore/10.2.0`` -``2.0.28`` |``GCCcore/10.3.0`` -``2.0.33`` |``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``4.0.0`` |``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### Java - -Java Platform, Standard Edition (Java SE) lets you develop and deploy Java applications on desktops and servers. - -*homepage*: - -version |versionsuffix |toolchain --------------|------------------------|---------- -``1.6.0_24`` | |``system`` -``1.7.0_10`` | |``system`` -``1.7.0_15`` | |``system`` -``1.7.0_21`` | |``system`` -``1.7.0_40`` | |``system`` -``1.7.0_45`` | |``system`` -``1.7.0_60`` | |``system`` -``1.7.0_75`` | |``system`` -``1.7.0_76`` | |``system`` -``1.7.0_79`` | |``system`` -``1.7.0_80`` | |``system`` -``1.8`` | |``system`` -``1.8.0_20`` | |``system`` -``1.8.0_25`` | |``system`` -``1.8.0_31`` | |``system`` -``1.8.0_40`` | |``system`` -``1.8.0_45`` | |``system`` -``1.8.0_60`` | |``system`` -``1.8.0_65`` | |``system`` -``1.8.0_66`` | |``system`` -``1.8.0_72`` | |``system`` -``1.8.0_74`` | |``system`` -``1.8.0_77`` | |``system`` -``1.8.0_92`` | |``system`` -``1.8.0_112``| |``system`` -``1.8.0_121``| |``system`` -``1.8.0_131``| |``system`` -``1.8.0_141``| |``system`` -``1.8.0_144``| |``system`` -``1.8.0_152``| |``system`` -``1.8.0_162``| |``system`` -``1.8.0_172``| |``system`` -``1.8.0_181``| |``system`` -``1.8.0_192``| |``system`` -``1.8.0_202``| |``system`` -``1.8.0_212``| |``system`` -``1.8.0_221``| |``system`` -``1.8.0_231``| |``system`` -``1.8.0_241``| |``system`` -``1.8.0_271``| |``system`` -``1.8.0_281``| |``system`` -``1.8.0_292``|``-OpenJDK`` |``system`` -``1.8.0_311``| |``system`` -``1.8_191`` |``-b26-OpenJDK`` |``system`` -``1.8_265`` |``-b01-OpenJDK-aarch64``|``system`` -``1.9.0.4`` | |``system`` -``8`` | |``system`` -``8.345`` | |``system`` -``8.362`` | |``system`` -``8.402`` | |``system`` -``11`` | |``system`` -``11.0.2`` | |``system`` -``11.0.6`` |``-ppc64le`` |``system`` -``11.0.8`` |``-aarch64`` |``system`` -``11.0.16`` | |``system`` -``11.0.18`` | |``system`` -``11.0.20`` | |``system`` -``13`` | |``system`` -``13.0.2`` | |``system`` -``15`` | |``system`` -``15.0.1`` | |``system`` -``16`` | |``system`` -``16.0.1`` | |``system`` -``17`` | |``system`` -``17.0.1`` | |``system`` -``17.0.2`` | |``system`` -``17.0.4`` | |``system`` -``17.0.6`` | |``system`` -``19`` | |``system`` -``19.0.2`` | |``system`` -``21`` | |``system`` -``21.0.2`` | |``system`` - -### JavaFX - -OpenJFX is an open source, next generation client application platform for desktop, mobile and embedded systems built on Java - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------------|---------- -``11.0.2``|``_linux-x64_bin-sdk``|``system`` - -### jax - -Composable transformations of Python+NumPy programs: differentiate, vectorize, JIT to GPU/TPU, and more - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|---------------------------------- -``0.2.19``| |``foss/2020b``, ``fosscuda/2020b`` -``0.2.20``| |``foss/2021a`` -``0.2.24``| |``foss/2021a`` -``0.2.24``|``-CUDA-11.3.1``|``foss/2021a`` -``0.3.9`` | |``foss/2021a`` -``0.3.9`` |``-CUDA-11.3.1``|``foss/2021a`` -``0.3.14``|``-CUDA-11.7.0``|``foss/2022a`` -``0.3.23``| |``foss/2022a`` -``0.3.23``|``-CUDA-11.4.1``|``foss/2021b`` -``0.3.25``| |``foss/2022a`` -``0.3.25``|``-CUDA-11.7.0``|``foss/2022a`` -``0.4.4`` | |``foss/2022a`` -``0.4.4`` |``-CUDA-11.7.0``|``foss/2022a`` - -### JAXFrontCE - -JAXFront is a technology to generate graphical user interfaces on multiple channels (Java Swing, HTML, PDF) on the basis of an XML schema. - -*homepage*: - -version |toolchain ---------|---------- -``2.75``|``system`` - -### jbigkit - -JBIG-KIT is a software implementation of the JBIG1 data compression standard (ITU-T T.82), which was designed for bi-level image data, such as scanned documents. - -*homepage*: - -version|toolchain --------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ -``2.1``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` - -### Jblob - -Jblob - WDC Climate dataset download - -*homepage*: - -version|toolchain --------|---------- -``3.0``|``system`` - -### jedi - -Jedi - an awesome autocompletion, static analysis and refactoring library for Python. - -*homepage*: - -version |toolchain -----------|------------------ -``0.18.1``|``GCCcore/11.3.0`` -``0.19.1``|``GCCcore/13.2.0`` - -### jedi-language-server - -A Python Language Server powered by Jedi. - -*homepage*: - -version |toolchain -----------|------------------ -``0.39.0``|``GCCcore/11.3.0`` - -### Jellyfish - -Jellyfish is a tool for fast, memory-efficient counting of k-mers in DNA. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------------------------------------------- -``1.1.11``|``foss/2016a``, ``foss/2016b`` -``1.1.12``|``foss/2018b``, ``intel/2018a`` -``2.2.6`` |``foss/2016b``, ``intel/2017a`` -``2.2.10``|``foss/2018b``, ``intel/2018a`` -``2.3.0`` |``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0``, ``GCC/8.2.0-2.31.1``, ``GCC/8.3.0`` - -### jemalloc - -jemalloc is a general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support. - -*homepage*: - -version |toolchain ----------|-------------------------------------------------------------------------------------------------------------------- -``4.1.0``|``intel/2016a`` -``4.2.0``|``foss/2016a``, ``intel/2016a`` -``4.2.1``|``intel/2016b`` -``4.5.0``|``intel/2017a`` -``5.0.1``|``GCCcore/6.4.0`` -``5.1.0``|``GCCcore/7.3.0`` -``5.2.0``|``GCCcore/8.2.0`` -``5.2.1``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``5.3.0``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### jhbuild - -JHBuild allows you to automatically download and compile “modules” (i.e. source code packages). Modules are listed in “module set” files, which also include dependency information so that JHBuild can discover what modules need to be built and in what order. - -*homepage*: - -version |toolchain ------------|----------------- -``3.15.92``|``GCCcore/4.9.3`` - -### JiTCODE - -Just-in-time compilation for ordinary/delay/stochastic differential equations (DDEs) - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``1.3.2``|``-Python-3.6.4``|``intel/2018a`` -``1.4.0``|``-Python-3.7.2``|``foss/2019a`` - -### jiter - -Fast iterable JSON parser - -*homepage*: - -version |toolchain ----------|------------------ -``0.4.1``|``GCCcore/12.3.0`` - -### jModelTest - -jModelTest is a tool to carry out statistical selection of best-fit models of nucleotide substitution. - -*homepage*: - -version |versionsuffix |toolchain --------------------|------------------|---------- -``2.1.10r20160303``|``-Java-1.8.0_92``|``system`` - -### Jmol - -Jmol: an open-source Java viewer for chemical structures in 3D - -*homepage*: - -version |versionsuffix|toolchain ------------|-------------|---------- -``16.1.41``|``-Java-11`` |``system`` - -### Jorg - -A MAG Circularization Method By Lauren Lui, Torben Nielsen, and Adam Arkin - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.1``|``foss/2020b`` - -### joypy - -Joyplots in Python with matplotlib & pandas - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``0.2.2``|``-Python-3.7.4``|``intel/2019b`` -``0.2.4``| |``intel/2020b`` - -### jq - -jq is a lightweight and flexible command-line JSON processor. - -*homepage*: - -version|toolchain --------|------------------------------------------------------------------------------ -``1.5``|``GCCcore/10.2.0``, ``GCCcore/6.4.0`` -``1.6``|``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### json-c - -JSON-C implements a reference counting object model that allows you to easily construct JSON objects in C, output them as JSON formatted strings and parse JSON formatted strings back into the C representation of JSON objects. - -*homepage*: - -version |toolchain ---------|---------------------------------------------------------- -``0.15``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``0.16``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``0.17``|``GCCcore/13.2.0`` - -### json-fortran - -JSON-Fortran: A Modern Fortran JSON API - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``8.3.0``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0``, ``iccifort/2020.4.304``, ``intel-compilers/2022.0.1``, ``intel-compilers/2022.1.0``, ``intel-compilers/2022.2.1`` - -### JSON-GLib - -JSON-GLib implements a full JSON parser and generator using GLib and GObject, and integrates JSON with GLib data types. - -*homepage*: - -version |toolchain ----------|------------------ -``1.6.2``|``GCCcore/10.3.0`` - -### JsonCpp - -JsonCpp is a C++ library that allows manipulating JSON values, including serialization and deserialization to and from strings. It can also preserve existing comment in unserialization/serialization steps, making it a convenient format to store user input files. - -*homepage*: - -version |toolchain -----------|----------------------------------------------------------------------------- -``0.10.7``|``GCCcore/8.2.0`` -``1.9.3`` |``GCCcore/8.3.0`` -``1.9.4`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/9.3.0`` -``1.9.5`` |``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### JUBE - -The JUBE benchmarking environment provides a script based framework to easily create benchmark sets, run those sets on different computer systems and evaluate the results. - -*homepage*: - -version |toolchain ----------|---------- -``2.0.3``|``system`` -``2.0.4``|``system`` -``2.0.5``|``system`` -``2.4.0``|``system`` -``2.4.1``|``system`` -``2.4.2``|``system`` - -### Judy - -A C library that implements a dynamic array. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------------------------------------------------------------------------------------- -``1.0.5``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0`` - -### Julia - -Julia is a high-level, high-performance dynamic programming language for numerical computing - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|---------- -``1.1.1`` |``-linux-x86_64`` |``system`` -``1.2.0`` |``-linux-x86_64`` |``system`` -``1.3.1`` |``-linux-x86_64`` |``system`` -``1.4.0`` |``-linux-x86_64`` |``system`` -``1.4.1`` |``-linux-x86_64`` |``system`` -``1.4.2`` |``-linux-x86_64`` |``system`` -``1.5.1`` |``-linux-x86_64`` |``system`` -``1.5.3`` |``-linux-x86_64`` |``system`` -``1.6.0`` |``-linux-aarch64``|``system`` -``1.6.1`` |``-linux-x86_64`` |``system`` -``1.6.2`` |``-linux-x86_64`` |``system`` -``1.6.4`` |``-linux-x86_64`` |``system`` -``1.6.5`` |``-linux-x86_64`` |``system`` -``1.6.6`` |``-linux-x86_64`` |``system`` -``1.6.7`` |``-linux-x86_64`` |``system`` -``1.7.0`` |``-linux-x86_64`` |``system`` -``1.7.1`` |``-linux-x86_64`` |``system`` -``1.7.2`` |``-linux-x86_64`` |``system`` -``1.7.3`` |``-linux-x86_64`` |``system`` -``1.8.0`` |``-linux-x86_64`` |``system`` -``1.8.2`` |``-linux-x86_64`` |``system`` -``1.8.5`` |``-linux-x86_64`` |``system`` -``1.9.0`` |``-linux-x86_64`` |``system`` -``1.9.2`` |``-linux-x86_64`` |``system`` -``1.9.3`` |``-linux-x86_64`` |``system`` -``1.10.0``|``-linux-x86_64`` |``system`` - -### JUnit - -A programmer-oriented testing framework for Java. - -*homepage*: - -version |versionsuffix |toolchain ---------|-------------------|---------- -``4.10``|``-Java-1.7.0_10`` |``system`` -``4.10``|``-Java-1.7.0_21`` |``system`` -``4.11``|``-Java-1.7.0_15`` |``system`` -``4.11``|``-Java-1.7.0_21`` |``system`` -``4.11``|``-Java-1.7.0_60`` |``system`` -``4.11``|``-Java-1.7.0_75`` |``system`` -``4.11``|``-Java-1.7.0_79`` |``system`` -``4.12``|``-Java-1.7.0_80`` |``system`` -``4.12``|``-Java-1.8`` |``system`` -``4.12``|``-Java-1.8.0_112``|``system`` -``4.12``|``-Java-1.8.0_121``|``system`` -``4.12``|``-Java-1.8.0_144``|``system`` -``4.12``|``-Java-1.8.0_152``|``system`` -``4.12``|``-Java-1.8.0_162``|``system`` -``4.12``|``-Java-1.8.0_66`` |``system`` -``4.12``|``-Java-1.8.0_72`` |``system`` -``4.12``|``-Java-1.8.0_77`` |``system`` -``4.12``|``-Java-1.8.0_92`` |``system`` - -### Jupyter-bundle - -This bundle collects a range of Jupyter interfaces (Lab, Notebook and nbclassic), extensions (Jupyter Server Proxy, Jupyter Resource Monitor, Jupyter Lmod) and the JupyterHub. - -*homepage*: - -version |toolchain -------------|------------------ -``20230823``|``GCCcore/12.3.0`` -``20240522``|``GCCcore/13.2.0`` - -### jupyter-contrib-nbextensions - -A collection of various notebook extensions for Jupyter - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``0.7.0``|``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### jupyter-matlab-proxy - -MATLAB Integration for Jupyter - -*homepage*: - -version |toolchain -----------|------------------ -``0.3.4`` |``GCCcore/10.3.0`` -``0.5.0`` |``GCCcore/11.3.0`` -``0.12.2``|``GCCcore/12.3.0`` - -### jupyter-resource-usage - -Jupyter Notebook Extension for monitoring your own Resource Usage (memory and/or CPU) - -*homepage*: - -version |toolchain ----------|------------------ -``0.6.1``|``GCCcore/10.3.0`` -``0.6.2``|``GCCcore/10.3.0`` -``0.6.3``|``GCCcore/11.3.0`` -``1.0.0``|``GCCcore/12.3.0`` -``1.0.2``|``GCCcore/13.2.0`` - -### jupyter-rsession-proxy - -Jupyter extensions for running an RStudio rsession proxy - -*homepage*: - -version |toolchain ----------|------------------ -``2.1.0``|``GCCcore/11.3.0`` -``2.2.0``|``GCCcore/12.3.0`` - -### jupyter-server - -The Jupyter Server provides the backend (i.e. the core services, APIs, and REST endpoints) for Jupyter web applications like Jupyter notebook, JupyterLab, and Voila. - -*homepage*: - -version |toolchain -----------|------------------ -``1.21.0``|``GCCcore/11.3.0`` -``2.7.0`` |``GCCcore/12.2.0`` -``2.7.2`` |``GCCcore/12.3.0`` -``2.14.0``|``GCCcore/13.2.0`` - -### jupyter-server-proxy - -Jupyter Server Proxy lets you run arbitrary external processes (such as RStudio, Shiny Server, Syncthing, PostgreSQL, Code Server, etc) alongside your notebook server and provide authenticated web access to them using a path like /rstudio next to others like /lab. Alongside the python package that provides the main functionality, the JupyterLab extension (@jupyterlab/server-proxy) provides buttons in the JupyterLab launcher window to get to RStudio for example. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``3.2.1``|``GCCcore/10.3.0`` -``3.2.2``|``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``4.0.0``|``GCCcore/12.3.0`` -``4.1.2``|``GCCcore/13.2.0`` - -### JupyterHub - -JupyterHub is a multiuser version of the Jupyter (IPython) notebook designed for centralized deployments in companies, university classrooms and research labs. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------ -``0.6.1``|``-Python-3.5.1``|``foss/2016a`` -``0.8.1``|``-Python-3.6.4``|``foss/2017a`` -``1.1.0``| |``GCCcore/10.2.0`` -``1.4.1``| |``GCCcore/10.3.0`` -``3.0.0``| |``GCCcore/11.3.0`` -``4.0.1``| |``GCCcore/12.2.0`` -``4.0.2``| |``GCCcore/12.3.0`` -``4.1.5``| |``GCCcore/13.2.0`` - -### JupyterLab - -JupyterLab is the next-generation user interface for Project Jupyter offering all the familiar building blocks of the classic Jupyter Notebook (notebook, terminal, text editor, file browser, rich outputs, etc.) in a flexible and powerful user interface. JupyterLab will eventually replace the classic Jupyter Notebook. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|---------------------------------- -``1.2.5`` |``-Python-3.7.4``|``foss/2019b``, ``fosscuda/2019b`` -``2.2.8`` | |``GCCcore/10.2.0`` -``3.0.16``| |``GCCcore/10.3.0`` -``3.1.6`` | |``GCCcore/11.2.0`` -``3.2.8`` | |``GCCcore/10.3.0`` -``3.5.0`` | |``GCCcore/11.3.0`` -``4.0.3`` | |``GCCcore/12.2.0`` -``4.0.5`` | |``GCCcore/12.3.0`` -``4.2.0`` | |``GCCcore/13.2.0`` - -### jupyterlab-lmod - -JupyterLab extension that allows user to interact with environment modules before launching kernels. The extension use Lmod's Python interface to accomplish module related task like loading, unloading, saving collection, etc. - -*homepage*: - -version |toolchain ----------|------------------ -``1.0.2``|``GCCcore/11.3.0`` - -### jupyterlmod - -Jupyter interactive notebook server extension that allows users to interact with environment modules before launching kernels. The extension uses Lmod's Python interface to accomplish module-related tasks like loading, unloading, saving collections, etc. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``3.0.0``|``GCCcore/11.3.0`` -``4.0.3``|``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### JupyterNotebook - -The Jupyter Notebook is the original web application for creating and sharing computational documents. It offers a simple, streamlined, document-centric experience. - -*homepage*: - -version |toolchain ----------|------------------ -``7.0.2``|``GCCcore/12.3.0`` -``7.0.3``|``GCCcore/12.2.0`` -``7.2.0``|``GCCcore/13.2.0`` - -### JWM - -JWM is a light-weight window manager for the X11 Window System. - -*homepage*: - -version |toolchain ----------|--------------- -``2.3.5``|``intel/2016a`` - -### jxrlib - -Open source implementation of jpegxr - -*homepage*: - -version|toolchain --------|------------------------------------------------------------------------------ -``1.1``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -## K - - -[KaHIP](#kahip) - [Kaiju](#kaiju) - [Kaleido](#kaleido) - [Kalign](#kalign) - [kallisto](#kallisto) - [KAT](#kat) - [kb-python](#kb-python) - [kbproto](#kbproto) - [kedro](#kedro) - [Kent_tools](#kent_tools) - [Keras](#keras) - [KerasTuner](#kerastuner) - [khmer](#khmer) - [kim-api](#kim-api) - [kineto](#kineto) - [king](#king) - [KITE](#kite) - [kma](#kma) - [KMC](#kmc) - [KMCP](#kmcp) - [KmerGenie](#kmergenie) - [kneaddata](#kneaddata) - [KNIME](#knime) - [kpcalg](#kpcalg) - [Kraken](#kraken) - [Kraken2](#kraken2) - [KrakenUniq](#krakenuniq) - [Kratos](#kratos) - [krbalancing](#krbalancing) - [KronaTools](#kronatools) - [kwant](#kwant) - [KWIML](#kwiml) - [kWIP](#kwip) - [KyotoCabinet](#kyotocabinet) - - -### KaHIP - -The graph partitioning framework KaHIP -- Karlsruhe High Quality Partitioning. - -*homepage*: - -version |toolchain ---------|-------------------------------- -``3.14``|``gompi/2022a``, ``gompi/2022b`` -``3.16``|``gompi/2023a`` - -### Kaiju - -Kaiju is a program for sensitive taxonomic classification of high-throughput sequencing reads from metagenomic whole genome sequencing experiments - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``1.5.0``| |``intel/2016b`` -``1.7.2``|``-Python-3.7.2``|``iimpi/2019a`` -``1.7.3``|``-Python-3.7.4``|``gompi/2019b`` - -### Kaleido - -Fast static image export for web-based visualization libraries with zero dependencies - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------ -``0.1.0``|``GCCcore/10.2.0`` -``0.2.1``|``GCCcore/10.3.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/13.2.0`` - -### Kalign - -Kalign is a fast multiple sequence alignment program for biological sequences. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``2.0.4``|``GCCcore/10.2.0`` -``3.3.1``|``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``3.3.2``|``GCCcore/11.2.0`` -``3.3.5``|``GCCcore/11.3.0`` -``3.4.0``|``GCCcore/12.3.0`` - -### kallisto - -kallisto is a program for quantifying abundances of transcripts from RNA-Seq data, or more generally of target sequences using high-throughput sequencing reads. - -*homepage*: - -version |toolchain -----------|------------------------------------------------- -``0.42.5``|``foss/2016a`` -``0.43.0``|``intel/2016b`` -``0.43.1``|``foss/2016b``, ``intel/2017a``, ``intel/2017b`` -``0.44.0``|``foss/2016b``, ``intel/2018a`` -``0.45.0``|``foss/2018b`` -``0.45.1``|``foss/2019a`` -``0.46.0``|``intel/2019a`` -``0.46.1``|``foss/2019b``, ``iimpi/2020a``, ``iimpi/2020b`` -``0.46.2``|``foss/2020b`` -``0.48.0``|``gompi/2021a``, ``gompi/2021b``, ``gompi/2022a`` -``0.50.1``|``gompi/2022b`` - -### KAT - -The K-mer Analysis Toolkit (KAT) contains a number of tools that analyse and compare K-mer spectra. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``2.4.2``|``-Python-3.6.4``|``foss/2018a`` -``2.4.2``|``-Python-3.7.2``|``foss/2019a`` - -### kb-python - -kallisto | bustools is a workflow for pre-processing single-cell RNA-seq data. Pre-processing single-cell RNA-seq involves: (1) association of reads with their cells of origin, (2) collapsing of reads according to unique molecular identifiers (UMIs), and (3) generation of gene or feature counts from the reads to generate a cell x gene matrix. - -*homepage*: - -version |toolchain -----------|------------------------------ -``0.27.3``|``foss/2021b``, ``foss/2022a`` - -### kbproto - -X.org KBProto protocol headers. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------ -``1.0.7``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a``, ``intel/2017b`` - -### kedro - -Kedro is an open-source Python framework that applies software engineering best-practice to data and machine-learning pipelines. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``0.16.5``|``-Python-3.8.2``|``foss/2020a`` - -### Kent_tools - -Kent utilities: collection of tools used by the UCSC genome browser. - -*homepage*: - -version |versionsuffix |toolchain -------------|-----------------|--------------- -``401`` | |``gompi/2019b`` -``411`` | |``GCC/10.2.0`` -``418`` | |``GCC/10.3.0`` -``422`` | |``GCC/11.2.0`` -``442`` | |``GCC/11.3.0`` -``457`` | |``GCC/12.2.0`` -``20130806``|``-linux.x86_64``|``system`` -``20171107``|``-linux.x86_64``|``system`` -``20180716``|``-linux.x86_64``|``system`` -``20190326``|``-linux.x86_64``|``system`` - -### Keras - -Keras is a deep learning API written in Python, running on top of the machine learning platform TensorFlow. - -*homepage*: - -version |versionsuffix |toolchain ----------|---------------------|---------------------------------- -``1.0.8``|``-Python-3.5.2`` |``intel/2016b`` -``1.1.0``|``-Python-3.5.2`` |``intel/2016b`` -``2.0.4``|``-Python-2.7.13`` |``intel/2017a`` -``2.0.4``|``-Python-3.6.1`` |``intel/2017a`` -``2.0.5``|``-Python-3.6.1`` |``intel/2017a`` -``2.0.8``|``-Python-3.6.1`` |``intel/2017a`` -``2.1.1``|``-Python-2.7.14`` |``intel/2017b`` -``2.1.1``|``-Python-3.6.3`` |``intel/2017b`` -``2.1.2``|``-Python-2.7.14`` |``intel/2017b`` -``2.1.2``|``-Python-3.6.3`` |``foss/2017b`` -``2.1.3``|``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``2.2.0``|``-Python-2.7.14`` |``fosscuda/2017b`` -``2.2.0``|``-Python-3.6.3`` |``fosscuda/2017b`` -``2.2.0``|``-Python-3.6.4`` |``foss/2018a`` -``2.2.2``|``-Python-2.7.15`` |``fosscuda/2018b`` -``2.2.4``|``-Python-3.6.4`` |``intel/2018a`` -``2.2.4``|``-Python-3.6.6`` |``foss/2018b``, ``fosscuda/2018b`` -``2.2.4``|``-Python-3.7.2`` |``foss/2019a``, ``fosscuda/2019a`` -``2.3.1``|``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b`` -``2.3.1``|``-Python-3.8.2`` |``foss/2020a`` -``2.4.3``| |``foss/2020b``, ``fosscuda/2020b`` -``2.4.3``|``-TensorFlow-2.5.0``|``fosscuda/2020b`` - -### KerasTuner - -KerasTuner is an easy-to-use, scalable hyperparameter optimization framework that solves the pain points of hyperparameter search. - -*homepage*: - -version |toolchain ----------|-------------- -``1.3.5``|``foss/2022a`` - -### khmer - -In-memory nucleotide sequence k-mer counting, filtering, graph traversal and more - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``1.4.1``|``-Python-2.7.12``|``foss/2016b`` -``2.1.1``|``-Python-2.7.13``|``intel/2017a`` - -### kim-api - -Open Knowledgebase of Interatomic Models. KIM is an API and OpenKIM is a collection of interatomic models (potentials) for atomistic simulations. This is a library that can be used by simulation programs to get access to the models in the OpenKIM database. This EasyBuild only installs the API, the models can be installed with the package openkim-models, or the user can install them manually by running kim-api-collections-management install user MODELNAME or kim-api-collections-management install user OpenKIM to install them all. - -*homepage*: - -version |toolchain ----------|-------------------------------------------------------------------------------------------- -``2.1.2``|``foss/2019a``, ``intel/2019a`` -``2.1.3``|``foss/2019b``, ``foss/2020a``, ``intel/2019b``, ``intel/2020a`` -``2.2.1``|``GCC/10.2.0``, ``GCC/10.3.0``, ``iccifort/2020.4.304`` -``2.3.0``|``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0``, ``GCC/12.3.0``, ``intel-compilers/2023.1.0`` - -### kineto - -A CPU+GPU Profiling library that provides access to timeline traces and hardware performance counters - -*homepage*: - -version |toolchain ----------|-------------- -``0.4.0``|``GCC/11.3.0`` - -### king - -KING is a toolset that makes use of high-throughput SNP data typically seen in a genome-wide association study (GWAS) or a sequencing project. Applications of KING include family relationship inference and pedigree error checking, quality control, population substructure identification, forensics, gene mapping, etc. - -*homepage*: - -version |toolchain ----------|---------- -``2.2.4``|``system`` -``2.2.7``|``system`` - -### KITE - -KITE is an open-source Python/C++ software suite for efficient real-space tight-binding (TB) simulations of electronic structure and bulk quantum transport properties of disordered systems scalable to multi billions of atomic orbitals. - -*homepage*: - -version|toolchain --------|--------------- -``1.1``|``gompi/2022a`` - -### kma - -KMA is a mapping method designed to map raw reads directly against redundant databases, in an ultra-fast manner using seed and extend. - -*homepage*: - -version |toolchain ------------|--------------- -``1.2.22`` |``intel/2019b`` -``1.4.12a``|``GCC/12.2.0`` - -### KMC - -KMC is a disk-based programm for counting k-mers from (possibly gzipped) FASTQ/FASTA files. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|------------------------------ -``3.1.0`` | |``foss/2018a``, ``foss/2018b`` -``3.1.1`` |``-Python-3.7.2`` |``GCC/8.2.0-2.31.1`` -``3.1.2rc1``|``-Python-3.7.4`` |``GCC/8.3.0`` -``3.2.1`` | |``GCC/11.2.0`` -``3.2.1`` |``-Python-2.7.18``|``GCC/11.2.0`` -``3.2.2`` | |``GCC/12.2.0`` - -### KMCP - -KMCP: accurate metagenomic profiling of both prokaryotic and viral populations by pseudo-mapping - -*homepage*: - -version |toolchain ----------|---------- -``0.9.1``|``system`` - -### KmerGenie - -KmerGenie estimates the best k-mer length for genome de novo assembly. - -*homepage*: - -version |toolchain -----------|--------------- -``1.7044``|``intel/2017a`` -``1.7048``|``intel/2018a`` - -### kneaddata - -KneadData is a tool designed to perform quality control on metagenomic and metatranscriptomic sequencing data, especially data from microbiome experiments. - -*homepage*: - -version |toolchain -----------|-------------- -``0.12.0``|``foss/2022a`` - -### KNIME - -KNIME Analytics Platform is the open source software for creating data science applications and services. KNIME stands for KoNstanz Information MinEr. - -*homepage*: - -version |toolchain ----------|---------- -``3.6.2``|``system`` - -### kpcalg - -Kernel PC (kPC) algorithm for causal structure learning and causal inference using graphical models. kPC is a version of PC algorithm that uses kernel based independence criteria in order to be able to deal with non-linear relationships and non-Gaussian noise. Includes pcalg: Functions for causal structure learning and causal inference using graphical models. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``1.0.1``|``-R-3.5.1`` |``foss/2018b`` - -### Kraken - -Kraken is a system for assigning taxonomic labels to short DNA sequences, usually obtained through metagenomic studies. Previous attempts by other bioinformatics software to accomplish this task have often used sequence alignment or machine learning techniques that were quite slow, leading to the development of less sensitive but much faster abundance estimation programs. Kraken aims to achieve high sensitivity and high speed by utilizing exact alignments of k-mers and a novel classification algorithm. - -*homepage*: - -version |versionsuffix |toolchain ----------------|----------------|----------------------------------------------------------------------------- -``0.10.5-beta``|``-Perl-5.22.1``|``foss/2016a`` -``0.10.5-beta``|``-Perl-5.24.0``|``foss/2016b`` -``1.0`` |``-Perl-5.26.1``|``intel/2018a`` -``1.1`` |``-Perl-5.28.0``|``foss/2018b`` -``1.1.1`` | |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.3.0``, ``GCCcore/9.3.0`` -``1.1.1`` |``-Perl-5.28.1``|``GCCcore/8.2.0`` - -### Kraken2 - -Kraken is a system for assigning taxonomic labels to short DNA sequences, usually obtained through metagenomic studies. Previous attempts by other bioinformatics software to accomplish this task have often used sequence alignment or machine learning techniques that were quite slow, leading to the development of less sensitive but much faster abundance estimation programs. Kraken aims to achieve high sensitivity and high speed by utilizing exact alignments of k-mers and a novel classification algorithm. - -*homepage*: - -version |versionsuffix |toolchain ---------------|----------------|------------------------------------------------- -``2.0.6-beta``|``-Perl-5.26.1``|``foss/2018a`` -``2.0.7-beta``|``-Perl-5.28.0``|``foss/2018b`` -``2.0.8-beta``|``-Perl-5.30.0``|``gompi/2019b`` -``2.0.9-beta``|``-Perl-5.28.0``|``foss/2018b`` -``2.0.9-beta``|``-Perl-5.30.2``|``gompi/2020a`` -``2.1.1`` | |``gompi/2020b`` -``2.1.2`` | |``gompi/2021a``, ``gompi/2021b``, ``gompi/2022a`` - -### KrakenUniq - -KrakenUniq: confident and fast metagenomics classification using unique k-mer counts - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.3``|``GCC/11.3.0`` -``1.0.4``|``GCC/12.2.0`` - -### Kratos - -Kratos Multiphysics (A.K.A Kratos) is a framework for building parallel multi-disciplinary simulation software. - -*homepage*: - -version|versionsuffix |toolchain --------|-----------------|------------------------------- -``6.0``|``-Python-3.6.4``|``foss/2018a``, ``intel/2018a`` - -### krbalancing - -A C++ extension for Python which computes K.R. balanced matrices. - -*homepage*: - -version |toolchain ------------|------------------ -``0.5.0b0``|``GCCcore/11.3.0`` - -### KronaTools - -Krona Tools is a set of scripts to create Krona charts from several Bioinformatics tools as well as from text and XML files. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------ -``2.7`` |``GCCcore/7.3.0`` -``2.7.1``|``GCCcore/8.2.0`` -``2.8`` |``GCC/10.3.0``, ``GCCcore/10.2.0`` -``2.8.1``|``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### kwant - -Kwant is a free (open source), powerful, and easy to use Python package for numerical calculations on tight-binding models with a strong focus on quantum transport. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------------------- -``1.4.1``|``-Python-3.7.2``|``foss/2019a``, ``intel/2019a`` - -### KWIML - -The Kitware Information Macro Library - -*homepage*: - -version |toolchain -------------|----------------- -``20180201``|``GCCcore/6.4.0`` - -### kWIP - -This software implements a de novo, alignment free measure of sample genetic dissimilarity which operates upon raw sequencing reads. It is able to calculate the genetic dissimilarity between samples without any reference genome, and without assembling one. - -*homepage*: - -version |toolchain ----------|----------------- -``0.2.0``|``GCCcore/6.4.0`` - -### KyotoCabinet - -Kyoto Cabinet is a library of routines for managing a database. - -*homepage*: - -version |toolchain -----------|------------------------------------ -``1.2.77``|``GCCcore/7.3.0``, ``GCCcore/8.2.0`` -``1.2.80``|``GCCcore/11.3.0`` - -## L - - -[L_RNA_scaffolder](#l_rna_scaffolder) - [Lab-Streaming-Layer](#lab-streaming-layer) - [Lace](#lace) - [LADR](#ladr) - [lagrangian-filtering](#lagrangian-filtering) - [LAME](#lame) - [LAMMPS](#lammps) - [lancet](#lancet) - [LangChain](#langchain) - [langchain-anthropic](#langchain-anthropic) - [LAPACK](#lapack) - [LASSO-Python](#lasso-python) - [LAST](#last) - [LASTZ](#lastz) - [lavaan](#lavaan) - [LayoutParser](#layoutparser) - [LBFGS++](#lbfgs++) - [lcalc](#lcalc) - [LCov](#lcov) - [LDC](#ldc) - [lDDT](#lddt) - [LeadIT](#leadit) - [leafcutter](#leafcutter) - [leidenalg](#leidenalg) - [LEMON](#lemon) - [Leptonica](#leptonica) - [LERC](#lerc) - [less](#less) - [LevelDB](#leveldb) - [Levenshtein](#levenshtein) - [lftp](#lftp) - [LHAPDF](#lhapdf) - [LIANA](#liana) - [libabigail](#libabigail) - [libaec](#libaec) - [libaed2](#libaed2) - [libaio](#libaio) - [libarchive](#libarchive) - [libav](#libav) - [libavif](#libavif) - [libbaseencode](#libbaseencode) - [libBigWig](#libbigwig) - [libbitmask](#libbitmask) - [libbraiding](#libbraiding) - [libcdms](#libcdms) - [libcerf](#libcerf) - [libcint](#libcint) - [libcircle](#libcircle) - [libcmaes](#libcmaes) - [libconfig](#libconfig) - [libcotp](#libcotp) - [libcpuset](#libcpuset) - [libcroco](#libcroco) - [libctl](#libctl) - [libdap](#libdap) - [libde265](#libde265) - [libdeflate](#libdeflate) - [libdivsufsort](#libdivsufsort) - [libdrm](#libdrm) - [libdrs](#libdrs) - [libdwarf](#libdwarf) - [libedit](#libedit) - [libelf](#libelf) - [libemf](#libemf) - [libepoxy](#libepoxy) - [libev](#libev) - [libevent](#libevent) - [libexif](#libexif) - [libfabric](#libfabric) - [libfdf](#libfdf) - [libffcall](#libffcall) - [libffi](#libffi) - [libFLAME](#libflame) - [libfontenc](#libfontenc) - [libfyaml](#libfyaml) - [libgcrypt](#libgcrypt) - [libgd](#libgd) - [libgdiplus](#libgdiplus) - [libGDSII](#libgdsii) - [libgeotiff](#libgeotiff) - [libgit2](#libgit2) - [libglade](#libglade) - [libGLU](#libglu) - [libglvnd](#libglvnd) - [libgpg-error](#libgpg-error) - [libgpuarray](#libgpuarray) - [libGridXC](#libgridxc) - [libgtextutils](#libgtextutils) - [libgxps](#libgxps) - [libhandy](#libhandy) - [libharu](#libharu) - [libheif](#libheif) - [libhomfly](#libhomfly) - [libibmad](#libibmad) - [libibumad](#libibumad) - [libICE](#libice) - [libiconv](#libiconv) - [libidn](#libidn) - [libidn2](#libidn2) - [Libint](#libint) - [LiBis](#libis) - [libjpeg-turbo](#libjpeg-turbo) - [libjxl](#libjxl) - [libleidenalg](#libleidenalg) - [LibLZF](#liblzf) - [libmad](#libmad) - [libmatheval](#libmatheval) - [libmaus2](#libmaus2) - [libmbd](#libmbd) - [libMemcached](#libmemcached) - [libmicrohttpd](#libmicrohttpd) - [libmo_unpack](#libmo_unpack) - [libmypaint](#libmypaint) - [libnsl](#libnsl) - [libobjcryst](#libobjcryst) - [libogg](#libogg) - [libopus](#libopus) - [libosmium](#libosmium) - [libpci](#libpci) - [libpciaccess](#libpciaccess) - [libplinkio](#libplinkio) - [libpng](#libpng) - [libpsl](#libpsl) - [libPSML](#libpsml) - [libpsortb](#libpsortb) - [libpspio](#libpspio) - [libpthread-stubs](#libpthread-stubs) - [libQGLViewer](#libqglviewer) - [libreadline](#libreadline) - [libRmath](#librmath) - [librosa](#librosa) - [librsb](#librsb) - [librsvg](#librsvg) - [librttopo](#librttopo) - [libsamplerate](#libsamplerate) - [libSBML](#libsbml) - [libsigc++](#libsigc++) - [libsigsegv](#libsigsegv) - [libSM](#libsm) - [libsndfile](#libsndfile) - [libsodium](#libsodium) - [LibSoup](#libsoup) - [libspatialindex](#libspatialindex) - [libspatialite](#libspatialite) - [libspectre](#libspectre) - [libssh](#libssh) - [libStatGen](#libstatgen) - [libsupermesh](#libsupermesh) - [LIBSVM](#libsvm) - [LIBSVM-MATLAB](#libsvm-matlab) - [LIBSVM-Python](#libsvm-python) - [libtar](#libtar) - [libtasn1](#libtasn1) - [libtecla](#libtecla) - [LibTIFF](#libtiff) - [libtirpc](#libtirpc) - [libtool](#libtool) - [libtree](#libtree) - [libunistring](#libunistring) - [libunwind](#libunwind) - [libutempter](#libutempter) - [LibUUID](#libuuid) - [libuv](#libuv) - [libvdwxc](#libvdwxc) - [libvorbis](#libvorbis) - [libvori](#libvori) - [libWallModelledLES](#libwallmodelledles) - [libwebp](#libwebp) - [libwpe](#libwpe) - [libX11](#libx11) - [libXau](#libxau) - [libxc](#libxc) - [libxcb](#libxcb) - [libXcursor](#libxcursor) - [libXdamage](#libxdamage) - [libXdmcp](#libxdmcp) - [libXext](#libxext) - [libXfixes](#libxfixes) - [libXfont](#libxfont) - [libXft](#libxft) - [libXi](#libxi) - [libXinerama](#libxinerama) - [libxkbcommon](#libxkbcommon) - [libxml++](#libxml++) - [libxml2](#libxml2) - [libxml2-python](#libxml2-python) - [libXmu](#libxmu) - [libXp](#libxp) - [libXpm](#libxpm) - [libXrandr](#libxrandr) - [libXrender](#libxrender) - [libxslt](#libxslt) - [libxsmm](#libxsmm) - [libXt](#libxt) - [libXxf86vm](#libxxf86vm) - [libyaml](#libyaml) - [libzeep](#libzeep) - [libzip](#libzip) - [lie_learn](#lie_learn) - [lifelines](#lifelines) - [Lighter](#lighter) - [Lightning](#lightning) - [liknorm](#liknorm) - [likwid](#likwid) - [lil-aretomo](#lil-aretomo) - [limix](#limix) - [LinBox](#linbox) - [line_profiler](#line_profiler) - [Lingeling](#lingeling) - [LISFLOOD-FP](#lisflood-fp) - [lit](#lit) - [LittleCMS](#littlecms) - [LLDB](#lldb) - [LLVM](#llvm) - [LMDB](#lmdb) - [LMfit](#lmfit) - [Lmod](#lmod) - [lmoments3](#lmoments3) - [LncLOOM](#lncloom) - [LocARNA](#locarna) - [LoFreq](#lofreq) - [Log-Log4perl](#log-log4perl) - [logaddexp](#logaddexp) - [LOHHLA](#lohhla) - [Loki](#loki) - [longestrunsubsequence](#longestrunsubsequence) - [longread_umi](#longread_umi) - [Longshot](#longshot) - [loompy](#loompy) - [loomR](#loomr) - [LoopTools](#looptools) - [LoRDEC](#lordec) - [LPeg](#lpeg) - [LPJmL](#lpjml) - [lpsolve](#lpsolve) - [lrslib](#lrslib) - [LS-PrePost](#ls-prepost) - [LSD2](#lsd2) - [LSMS](#lsms) - [LTR_retriever](#ltr_retriever) - [LtrDetector](#ltrdetector) - [Lua](#lua) - [LuaJIT](#luajit) - [LuaJIT2-OpenResty](#luajit2-openresty) - [LuaRocks](#luarocks) - [Lucene-Geo-Gazetteer](#lucene-geo-gazetteer) - [LUMPY](#lumpy) - [LUSCUS](#luscus) - [lwgrp](#lwgrp) - [lxml](#lxml) - [lynx](#lynx) - [lz4](#lz4) - [LZO](#lzo) - - -### L_RNA_scaffolder - -L_RNA_scaffolder is a genome scaffolding tool with long trancriptome reads - -*homepage*: - -version |versionsuffix |toolchain -------------|----------------|--------------- -``20141124``|``-Perl-5.24.0``|``intel/2016b`` -``20190530``| |``GCC/11.3.0`` - -### Lab-Streaming-Layer - -The lab streaming layer (LSL) is a system for the unified collection of measurement time series in research experiments that handles both the networking, time-synchronization, (near-) real-time access as well as optionally the centralized collection, viewing and disk recording of the data. - -*homepage*: - -version |toolchain -----------|------------------ -``1.16.2``|``GCCcore/12.3.0`` - -### Lace - -Building SuperTranscripts: A linear representation of transcriptome data - -*homepage*: - -version |toolchain -----------|-------------- -``1.14.1``|``foss/2022a`` - -### LADR - -Prover9, Mace4, and several related programs come packaged in a system called LADR (Library for Automated Deduction Research). - -*homepage*: - -version |toolchain -------------|------------------ -``2009-11A``|``GCCcore/10.2.0`` - -### lagrangian-filtering - -Temporal filtering of data in a Lagrangian frame of reference. - -*homepage*: - -version |toolchain ----------|-------------- -``0.8.3``|``foss/2022a`` - -### LAME - -LAME is a high quality MPEG Audio Layer III (MP3) encoder licensed under the LGPL. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``3.99.5``|``foss/2016b``, ``intel/2017a`` -``3.100`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``intel/2017b`` - -### LAMMPS - -LAMMPS is a classical molecular dynamics code, and an acronym for Large-scale Atomic/Molecular Massively Parallel Simulator. LAMMPS has potentials for solid-state materials (metals, semiconductors) and soft matter (biomolecules, polymers) and coarse-grained or mesoscopic systems. It can be used to model atoms or, more generically, as a parallel particle simulator at the atomic, meso, or continuum scale. LAMMPS runs on single processors or in parallel using message-passing techniques and a spatial-decomposition of the simulation domain. The code is designed to be easy to modify or extend with new functionality. - -*homepage*: - -version |versionsuffix |toolchain ---------------------|-----------------------------|---------------------------------------------- -``2Aug2023_update2``|``-kokkos`` |``foss/2023a`` -``2Aug2023_update2``|``-kokkos-CUDA-12.1.1`` |``foss/2023a`` -``3Mar2020`` |``-Python-3.7.4-kokkos`` |``foss/2019b``, ``intel/2019b`` -``3Mar2020`` |``-Python-3.8.2-kokkos`` |``foss/2020a``, ``intel/2020a`` -``7Aug2019`` |``-Python-3.7.4-kokkos`` |``foss/2019b``, ``intel/2019b`` -``7Aug2019`` |``-Python-3.7.4-kokkos-OCTP``|``intel/2019b`` -``23Jun2022`` |``-kokkos`` |``foss/2021a``, ``foss/2021b``, ``foss/2022a`` -``23Jun2022`` |``-kokkos-CUDA-11.3.1`` |``foss/2021a`` -``23Jun2022`` |``-kokkos-CUDA-11.4.1`` |``foss/2021b`` - -### lancet - -Lancet is a somatic variant caller (SNVs and indels) for short read data. - -*homepage*: - -version |toolchain ----------|----------------------- -``1.1.0``|``iccifort/2019.5.281`` - -### LangChain - -LangChain is a framework for developing applications powered by large language models (LLMs). - -*homepage*: - -version |toolchain ----------|-------------- -``0.2.1``|``foss/2023a`` - -### langchain-anthropic - -This package contains the LangChain integration for Anthropic's generative models. - -*homepage*: - -version |toolchain -----------|-------------- -``0.1.15``|``foss/2023a`` - -### LAPACK - -LAPACK is written in Fortran90 and provides routines for solving systems of simultaneous linear equations, least-squares solutions of linear systems of equations, eigenvalue problems, and singular value problems. - -*homepage*: - -version |toolchain -----------|------------------------------ -``3.8.0`` |``GCC/7.3.0-2.30`` -``3.9.1`` |``GCC/10.2.0`` -``3.10.1``|``GCC/11.2.0``, ``GCC/11.3.0`` -``3.12.0``|``GCC/12.3.0``, ``GCC/13.2.0`` - -### LASSO-Python - -This python library is designed for general purpose usage in the field of Computer Aided Engineering (CAE). It's name originates from the original initiator and donator of the project Lasso GmbH. The library is now maintained by an open-source community. - -*homepage*: - -version |toolchain ----------|-------------- -``2.0.0``|``foss/2022b`` - -### LAST - -LAST finds similar regions between sequences. - -*homepage*: - -version |toolchain ---------|--------------- -``869`` |``intel/2017a`` -``914`` |``intel/2017b`` -``1045``|``intel/2019b`` -``1179``|``GCC/10.2.0`` - -### LASTZ - -LASTZ is a program for aligning DNA sequences, a pairwise aligner. Originally designed to handle sequences the size of human chromosomes and from different species, it is also useful for sequences produced by NGS sequencing technologies such as Roche 454. - -*homepage*: - -version |toolchain ------------|--------------------------------- -``1.02.00``|``GCCcore/8.2.0``, ``foss/2016a`` -``1.04.03``|``foss/2019b`` -``1.04.22``|``GCC/12.3.0`` - -### lavaan - -Fit a variety of latent variable models, including confirmatory factor analysis, structural equation modeling and latent growth curve models. - -*homepage*: - -version |versionsuffix|toolchain ---------------|-------------|--------------- -``0.6-2`` |``-R-3.4.4`` |``intel/2018a`` -``0.6-4.1433``|``-R-3.6.0`` |``foss/2019a`` -``0.6-9`` |``-R-4.1.0`` |``foss/2021a`` - -### LayoutParser - -A Unified Toolkit for Deep Learning Based Document Image Analysis - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``0.3.4``| |``foss/2022a`` -``0.3.4``|``-CUDA-11.7.0``|``foss/2022a`` - -### LBFGS++ - -A header-only C++ library for L-BFGS and L-BFGS-B algorithms - -*homepage*: - -version |toolchain ----------|---------- -``0.1.0``|``system`` - -### lcalc - -Lcalc is a package for working with L-functions. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``2.0.5``|``GCCcore/11.3.0``, ``GCCcore/13.2.0`` - -### LCov - -LCOV - the LTP GCOV extension - -*homepage*: - -version |toolchain ---------|----------------- -``1.13``|``GCCcore/7.2.0`` - -### LDC - -The LLVM-based D Compiler - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|------------------ -``0.17.6``|``-x86_64`` |``system`` -``1.24.0``|``-x86_64`` |``system`` -``1.25.1``| |``GCCcore/10.2.0`` -``1.26.0``| |``GCCcore/10.3.0`` -``1.30.0``| |``GCCcore/11.3.0`` -``1.36.0``| |``GCCcore/12.3.0`` - -### lDDT - -The local Distance Difference Test (lDDT) is a superposition-free score which evaluates local distance differences in a model compared to a reference structure. - -*homepage*: - -version|toolchain --------|---------- -``1.2``|``system`` - -### LeadIT - -Visually Informed LeadOpt - -*homepage*: - -version |toolchain ----------|---------- -``2.1.9``|``system`` - -### leafcutter - -Leafcutter quantifies RNA splicing variation using short-read RNA-seq data. The core idea is to leverage spliced reads (reads that span an intron) to quantify (differential) intron usage across samples. The advantages of this approach include: easy detection of novel introns, modeling of more complex splicing events than exonic PSI, avoiding the challenge of isoform abundance estimation, simple, computationally efficient algorithms scaling to 100s or even 1000s of samples. For details please see our bioRxiv preprint and corresponding Nature Genetics publication. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``0.2.9``|``-R-4.2.2`` |``foss/2022b`` - -### leidenalg - -Implementation of the Leiden algorithm for various quality functions to be used with igraph in Python. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|---------------------------------- -``0.8.2`` |``-Python-3.8.2``|``foss/2020a`` -``0.8.3`` | |``foss/2020b``, ``fosscuda/2020b`` -``0.8.7`` | |``foss/2021a`` -``0.8.8`` | |``foss/2021b`` -``0.9.1`` | |``foss/2022a`` -``0.10.1``| |``foss/2022b`` -``0.10.2``| |``foss/2023a`` - -### LEMON - -LEMON stands for Library for Efficient Modeling and Optimization in Networks. It is a C++ template library providing efficient implementations of common data structures and algorithms with focus on combinatorial optimization tasks connected mainly with graphs and networks. - -*homepage*: - -version |toolchain ----------|-------------------- -``1.3.1``|``GCC/8.2.0-2.31.1`` - -### Leptonica - -Leptonica is a collection of pedagogically-oriented open source software that is broadly useful for image processing and image analysis applications. - -*homepage*: - -version |toolchain -----------|------------------ -``1.77.0``|``GCCcore/7.3.0`` -``1.78.0``|``GCCcore/8.2.0`` -``1.82.0``|``GCCcore/10.3.0`` -``1.83.0``|``GCCcore/11.3.0`` - -### LERC - -LERC is an open-source image or raster format which supports rapid encoding and decoding for any pixel type (not just RGB or Byte). Users set the maximum compression error per pixel while encoding, so the precision of the original input image is preserved (within user defined error bounds). - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------ -``3.0`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``4.0.0``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### less - -Less is a free, open-source file pager. It can be found on most versions of Linux, Unix and Mac OS, as well as on many other operating systems. - -*homepage*: - -version|toolchain --------|------------- -``458``|``GCC/4.8.2`` - -### LevelDB - -LevelDB is a fast key-value storage library written at Google that provides an ordered mapping from string keys to string values. - -*homepage*: - -version |toolchain ---------|-------------------------------------------------------- -``1.18``|``foss/2016a``, ``intel/2017a``, ``intel/2017b`` -``1.20``|``GCCcore/7.3.0`` -``1.22``|``GCCcore/11.3.0``, ``GCCcore/8.2.0``, ``GCCcore/9.3.0`` - -### Levenshtein - -Python extension for computing string edit distances and similarities. - -*homepage*: - -version |toolchain -----------|------------------ -``0.24.0``|``GCCcore/12.2.0`` - -### lftp - -LFTP is a sophisticated ftp/http client, and a file transfer program supporting a number of network protocols. Like BASH, it has job control and uses the readline library for input. It has bookmarks, a built-in mirror command, and can transfer several files in parallel. It was designed with reliability in mind. - -*homepage*: - -version |toolchain ----------|------------------ -``4.6.4``|``GNU/4.9.3-2.25`` -``4.8.4``|``GCCcore/6.4.0`` -``4.9.2``|``GCCcore/11.2.0`` - -### LHAPDF - -Les Houches Parton Density Function LHAPDF is the standard tool for evaluating parton distribution functions (PDFs) in high-energy physics. - -*homepage*: - -version |toolchain ----------|-------------- -``6.5.3``|``GCC/11.3.0`` -``6.5.4``|``GCC/12.3.0`` - -### LIANA - -LIANA: a LIgand-receptor ANalysis frAmework. LIANA enables the use of any combination of ligand-receptor methods and resources, and their consensus. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|-------------- -``0.1.11``|``-R-4.2.1`` |``foss/2022a`` - -### libabigail - -ABIGAIL stands for the Application Binary Interface Generic Analysis and Instrumentation Library. It’s a framework which aims at helping developers and software distributors to spot some ABI-related issues like interface incompatibility in ELF shared libraries by performing a static analysis of the ELF binaries at hand. The type of interface incompatibilities that Abigail focuses on is related to changes on the exported ELF functions and variables symbols, as well as layout and size changes of data types of the functions and variables exported by shared libraries. In other words, if the return type of a function exported by a shared library changes in an incompatible way from one version of a given shared library to another, we want Abigail to help people catch that. - -*homepage*: - -version|toolchain --------|------------------ -``2.5``|``GCCcore/13.2.0`` - -### libaec - -Libaec provides fast lossless compression of 1 up to 32 bit wide signed or unsigned integers (samples). The library achieves best results for low entropy data as often encountered in space imaging instrument data or numerical model output from weather or climate simulations. While floating point representations are not directly supported, they can also be efficiently coded by grouping exponents and mantissa. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------------------------------------------------ -``1.0.6``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### libaed2 - -libaed2 is a library of modules and algorithms for simulation of "aquatic ecodynamics" - water quality, aquatic biogeochemsitry, biotic habitat and aquatic ecosystem dynamics. - -*homepage*: - -version |toolchain ----------|-------------- -``1.3.0``|``GCC/10.3.0`` - -### libaio - -Asynchronous input/output library that uses the kernels native interface. - -*homepage*: - -version |toolchain ------------|------------------------------------------------------------------------------ -``0.3.111``|``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``0.3.112``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``0.3.113``|``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### libarchive - -Multi-format archive and compression library - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------- -``3.4.0``|``GCCcore/8.2.0`` -``3.4.2``|``GCCcore/9.3.0`` -``3.4.3``|``GCCcore/10.2.0`` -``3.5.1``|``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/8.3.0`` -``3.6.1``|``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``3.6.2``|``GCCcore/12.3.0``, ``GCCcore/13.1.0`` -``3.7.2``|``GCCcore/13.2.0`` -``3.7.4``|``GCCcore/13.3.0`` - -### libav - -Libav is a friendly and community-driven effort to provide its users with a set of portable, functional and high-performance libraries for dealing with multimedia formats of all sorts. - -*homepage*: - -version |toolchain ----------|----------------- -``11.10``|``GCCcore/6.4.0`` - -### libavif - -This library aims to be a friendly, portable C implementation of the AV1 Image File Format, as described here: https://aomediacodec.github.io/av1-avif/ - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``0.9.0`` |``foss/2020b`` -``0.11.1``|``GCCcore/10.3.0``, ``GCCcore/11.3.0`` -``1.0.4`` |``GCCcore/12.3.0`` - -### libbaseencode - -Library written in C for encoding and decoding data using base32 or base64 according to RFC-4648 - -*homepage*: - -version |toolchain -----------|------------------ -``1.0.11``|``GCCcore/10.2.0`` - -### libBigWig - -A C library for handling bigWig files - -*homepage*: - -version |toolchain ----------|------------------ -``0.4.4``|``GCCcore/8.3.0`` -``0.4.6``|``GCCcore/11.2.0`` - -### libbitmask - -libbitmask provides a convenient, powerful bitmask data type - -*homepage*: - -version|toolchain --------|---------- -``2.0``|``system`` - -### libbraiding - -This is a project to expose the functionalitis of the Braiding program as a shared library. The original goal is to include it as a component of SageMath, but it can be used in any other c++ program. - -*homepage*: - -version|toolchain --------|------------------ -``1.2``|``GCCcore/13.2.0`` - -### libcdms - -Climate Data Management System Library. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``3.1.2``|``-Python-3.8.2``|``foss/2020a`` - -### libcerf - -libcerf is a self-contained numeric library that provides an efficient and accurate implementation of complex error functions, along with Dawson, Faddeeva, and Voigt functions. - -*homepage*: - -version |toolchain ---------|--------------------------------------------------------------------------------------------------------- -``1.4`` |``foss/2016a``, ``foss/2016b``, ``intel/2016a`` -``1.5`` |``GCCcore/5.4.0``, ``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``foss/2016b``, ``intel/2016b``, ``intel/2017a`` -``1.7`` |``GCCcore/7.3.0`` -``1.11``|``GCCcore/7.3.0``, ``GCCcore/8.2.0`` -``1.13``|``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.14``|``GCCcore/10.2.0`` -``1.15``|``GCCcore/10.3.0`` -``1.17``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``2.1`` |``GCCcore/11.3.0`` -``2.3`` |``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### libcint - -libcint is an open source library for analytical Gaussian integrals. - -*homepage*: - -version |toolchain ----------|----------------------------------------------- -``4.4.0``|``foss/2020b``, ``foss/2021a``, ``gomkl/2021a`` -``5.1.6``|``foss/2022a`` -``5.4.0``|``gfbf/2023a`` -``5.5.0``|``gfbf/2022b`` - -### libcircle - -An API to provide an efficient distributed queue on a cluster. libcircle is an API for distributing embarrassingly parallel workloads using self-stabilization. - -*homepage*: - -version |toolchain ---------------|----------------------------------------------------------------------------------- -``0.2.1-rc.1``|``gompi/2019a``, ``iimpi/2019a`` -``0.3`` |``gompi/2020a``, ``gompi/2020b``, ``gompi/2022a``, ``gompi/2023a``, ``iimpi/2020a`` - -### libcmaes - -libcmaes is a multithreaded C++11 library for high performance blackbox stochastic optimization using the CMA-ES algorithm for Covariance Matrix Adaptation Evolution Strategy. - -*homepage*: - -version |toolchain ----------|-------------- -``0.9.5``|``foss/2016a`` - -### libconfig - -Libconfig is a simple library for processing structured configuration files - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``1.5`` |``intel/2016b`` -``1.7.1``|``GCCcore/6.4.0`` -``1.7.2``|``GCCcore/7.3.0`` -``1.7.3``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` - -### libcotp - -C library that generates TOTP and HOTP according to RFC-6238 - -*homepage*: - -version |toolchain ----------|------------------ -``1.2.3``|``GCCcore/10.2.0`` - -### libcpuset - -libcpuset provides full access to cpuset capabilities - -*homepage*: - -version|toolchain --------|---------- -``1.0``|``system`` - -### libcroco - -Libcroco is a standalone css2 parsing and manipulation library. - -*homepage*: - -version |toolchain -----------|------------------------------ -``0.6.11``|``intel/2016a`` -``0.6.13``|``GCC/10.2.0``, ``foss/2019a`` - -### libctl - -libctl is a free Guile-based library implementing flexible control files for scientific simulations. - -*homepage*: - -version |toolchain ----------|------------------ -``3.2.2``|``foss/2016a`` -``4.0.0``|``intel/2020a`` -``4.1.3``|``GCCcore/6.4.0`` -``4.5.1``|``GCCcore/10.2.0`` - -### libdap - -A C++ SDK which contains an implementation of DAP 2.0 and DAP4.0. This includes both Client- and Server-side support classes. - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|--------------------------------------------------------- -``3.18.1`` | |``intel/2017a`` -``3.18.1`` |``-Python-2.7.11``|``foss/2016a`` -``3.19.1`` | |``GCCcore/6.4.0``, ``foss/2017b``, ``intel/2017b`` -``3.20.3`` | |``GCCcore/7.3.0`` -``3.20.4`` | |``GCCcore/8.2.0`` -``3.20.6`` | |``GCCcore/8.3.0`` -``3.20.7`` | |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/9.3.0`` -``3.20.8`` | |``GCCcore/11.2.0`` -``3.20.11``| |``GCCcore/11.3.0`` - -### libde265 - -libde265 is an open source implementation of the h.265 video codec - -*homepage*: - -version |toolchain -----------|------------------------------ -``1.0.8`` |``GCC/10.3.0``, ``GCC/11.2.0`` -``1.0.11``|``GCC/11.3.0`` -``1.0.15``|``GCC/12.3.0`` - -### libdeflate - -Heavily optimized library for DEFLATE/zlib/gzip compression and decompression. - -*homepage*: - -version |toolchain ---------|--------------------------------------------------------- -``1.5`` |``GCCcore/7.3.0`` -``1.7`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/9.3.0`` -``1.8`` |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``1.10``|``GCCcore/11.3.0`` -``1.15``|``GCCcore/12.2.0`` -``1.18``|``GCCcore/12.3.0`` -``1.19``|``GCCcore/13.2.0`` -``1.20``|``GCCcore/13.3.0`` - -### libdivsufsort - -libdivsufsort is a software library that implements a lightweight suffix array construction algorithm. - -*homepage*: - -version |toolchain ----------|-------------- -``2.0.1``|``foss/2018b`` - -### libdrm - -Direct Rendering Manager runtime library. - -*homepage*: - -version |toolchain ------------|-------------------------------------------------- -``2.4.67`` |``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` -``2.4.68`` |``foss/2016a``, ``intel/2016a`` -``2.4.70`` |``GCCcore/5.4.0``, ``foss/2016b``, ``intel/2016b`` -``2.4.76`` |``GCCcore/6.3.0``, ``intel/2017a`` -``2.4.88`` |``GCCcore/6.4.0`` -``2.4.91`` |``GCCcore/6.4.0`` -``2.4.92`` |``GCCcore/7.3.0`` -``2.4.97`` |``GCCcore/8.2.0`` -``2.4.99`` |``GCCcore/8.3.0`` -``2.4.100``|``GCCcore/9.3.0`` -``2.4.102``|``GCCcore/10.2.0`` -``2.4.106``|``GCCcore/10.3.0`` -``2.4.107``|``GCCcore/11.2.0`` -``2.4.110``|``GCCcore/11.3.0`` -``2.4.114``|``GCCcore/12.2.0`` -``2.4.115``|``GCCcore/12.3.0`` -``2.4.117``|``GCCcore/13.2.0`` - -### libdrs - -PCMDI's old DRS format implementation - -*homepage*: - -version |toolchain ----------|-------------- -``3.1.2``|``foss/2020a`` - -### libdwarf - -The DWARF Debugging Information Format is of interest to programmers working on compilers and debuggers (and anyone interested in reading or writing DWARF information)) - -*homepage*: - -version |toolchain -------------|--------------------------------------------------- -``0.4.1`` |``GCCcore/11.3.0`` -``0.7.0`` |``GCCcore/12.3.0`` -``0.9.2`` |``GCCcore/13.2.0`` -``20140805``|``GCC/4.9.2`` -``20150310``|``GCC/4.9.2``, ``GCCcore/5.4.0``, ``GCCcore/6.3.0`` -``20190529``|``GCCcore/8.2.0`` -``20201201``|``GCCcore/10.2.0`` -``20210305``|``GCCcore/10.3.0`` -``20210528``|``GCCcore/11.2.0`` - -### libedit - -This BSD-style licensed command line editor library provides generic line editing, history, and tokenization functions, similar to those found in GNU Readline. - -*homepage*: - -version |toolchain -------------|-------------------------------------- -``20150325``|``GNU/4.9.3-2.25`` -``20180525``|``GCCcore/6.4.0`` -``20191231``|``GCCcore/12.3.0``, ``GCCcore/9.3.0`` -``20210910``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` - -### libelf - -libelf is a free ELF object file access library - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``0.8.13``|``GCC/4.8.3``, ``GCC/4.9.2``, ``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/5.4.0``, ``GCCcore/6.3.0``, ``GCCcore/8.2.0``, ``GCCcore/9.3.0`` - -### libemf - -Library implementation of ECMA-234 API for the generation of enhanced metafiles. - -*homepage*: - -version |toolchain -----------|------------------ -``1.0.13``|``GCCcore/11.3.0`` - -### libepoxy - -Epoxy is a library for handling OpenGL function pointer management for you - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------ -``1.5.2`` |``foss/2018a`` -``1.5.3`` |``GCCcore/8.2.0``, ``fosscuda/2018b`` -``1.5.4`` |``GCCcore/10.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.5.8`` |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``1.5.10``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### libev - -A full-featured and high-performance (see benchmark) event loop that is loosely modelled after libevent, but without its limitations and bugs. It is used in GNU Virtual Private Ethernet, rxvt-unicode, auditd, the Deliantra MORPG Server and Client, and many other programs. - -*homepage*: - -version |toolchain ---------|---------------------------------------------- -``4.33``|``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.3.0`` - -### libevent - -The libevent API provides a mechanism to execute a callback function when a specific event occurs on a file descriptor or after a timeout has been reached. Furthermore, libevent also support callbacks due to signals or regular timeouts. - -*homepage*: - -version |toolchain -----------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.0.22``|``GCC/4.9.2``, ``GCC/5.4.0-2.26``, ``GCCcore/4.9.3``, ``GNU/4.9.3-2.25`` -``2.1.8`` |``GCCcore/6.4.0``, ``GCCcore/7.2.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``system`` -``2.1.11``|``GCCcore/7.2.0``, ``GCCcore/7.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``2.1.12``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0``, ``system`` - -### libexif - -A library for parsing, editing, and saving EXIF data. - -*homepage*: - -version |toolchain -----------|------------------ -``0.6.24``|``GCCcore/11.2.0`` - -### libfabric - -Libfabric is a core component of OFI. It is the library that defines and exports the user-space API of OFI, and is typically the only software that applications deal with directly. It works in conjunction with provider libraries, which are often integrated directly into libfabric. - -*homepage*: - -version |toolchain -----------|------------------------------------- -``1.9.1`` |``GCCcore/9.3.0`` -``1.10.1``|``GCCcore/9.3.0`` -``1.11.0``|``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``1.12.1``|``GCCcore/10.3.0`` -``1.13.0``|``GCCcore/11.2.0`` -``1.13.1``|``GCCcore/11.2.0`` -``1.13.2``|``GCCcore/11.2.0`` -``1.15.1``|``GCCcore/11.3.0`` -``1.16.1``|``GCCcore/12.2.0`` -``1.18.0``|``GCCcore/12.3.0`` -``1.19.0``|``GCCcore/13.2.0`` -``1.21.0``|``GCCcore/13.3.0`` - -### libfdf - -LibFDF is the official implementation of the FDF specifications for use in client codes. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|----------------------------------------------------------------------------------------------------------------------------------- -``0.2.2``|``-serial`` |``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``iccifort/2020.4.304``, ``intel-compilers/2021.2.0``, ``intel-compilers/2021.4.0`` -``0.5.0``| |``GCC/11.3.0`` - -### libffcall - -GNU Libffcall is a collection of four libraries which can be used to build foreign function call interfaces in embedded interpreters - -*homepage*: - -version |toolchain ---------|------------------------------------ -``1.13``|``GCCcore/6.4.0`` -``2.2`` |``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``2.4`` |``GCCcore/10.2.0`` - -### libffi - -The libffi library provides a portable, high level programming interface to various calling conventions. This allows a programmer to call any function specified by a call interface description at run-time. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``3.2.1``|``GCC/4.9.2``, ``GCC/4.9.3-2.25``, ``GCC/5.4.0-2.26``, ``GCCcore/5.4.0``, ``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GNU/4.9.3-2.25``, ``foss/2016.04``, ``foss/2016a``, ``foss/2016b``, ``gimkl/2.11.5``, ``intel/2016a``, ``intel/2016b``, ``system`` -``3.3`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/9.3.0`` -``3.4.2``|``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``3.4.4``|``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.1.0``, ``GCCcore/13.2.0`` -``3.4.5``|``GCCcore/13.3.0`` - -### libFLAME - -libFLAME is a portable library for dense matrix computations, providing much of the functionality present in LAPACK. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|------------------------------------------------------------------------- -``1.0`` |``-amd`` |``GCC/7.3.0-2.30`` -``2.2`` |``-amd`` |``GCCcore/9.3.0`` -``5.2.0``| |``GCC/10.3.0``, ``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/9.3.0`` - -### libfontenc - -X11 font encoding library - -*homepage*: - -version |toolchain ----------|------------------------------------------------- -``1.1.3``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` - -### libfyaml - -Fully feature complete YAML parser and emitter, supporting the latest YAML spec and passing the full YAML testsuite. - -*homepage*: - -version|toolchain --------|-------------------------------------- -``0.9``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### libgcrypt - -Libgcrypt is a general purpose cryptographic library originally based on code from GnuPG - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``1.6.5`` |``intel/2016a`` -``1.8.4`` |``GCCcore/7.3.0``, ``GCCcore/8.2.0`` -``1.8.5`` |``GCCcore/8.3.0`` -``1.9.2`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``1.9.3`` |``GCCcore/11.2.0`` -``1.10.1``|``GCCcore/11.3.0`` -``1.10.3``|``GCCcore/12.3.0`` - -### libgd - -GD is an open source code library for the dynamic creation of images by programmers. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------------------ -``2.1.1``|``foss/2016a``, ``intel/2016a`` -``2.2.3``|``foss/2016b``, ``intel/2016b`` -``2.2.4``|``GCCcore/6.4.0``, ``foss/2016b``, ``intel/2017a`` -``2.2.5``|``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``intel/2017b``, ``intel/2018a`` -``2.3.0``|``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``2.3.1``|``GCCcore/10.3.0`` -``2.3.3``|``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### libgdiplus - -Libgdiplus is the Mono library that provides a GDI+-compatible API on non-Windows operating systems. - -*homepage*: - -version|toolchain --------|------------------ -``6.1``|``GCCcore/11.2.0`` - -### libGDSII - -libGDSII is a C++ library for working with GDSII binary data files, intended primarily for use with the computational electromagnetism codes scuff-em and meep but sufficiently general-purpose to allow other uses as well. - -*homepage*: - -version |toolchain ---------|------------------------------------- -``0.21``|``GCCcore/10.2.0``, ``GCCcore/6.4.0`` - -### libgeotiff - -Library for reading and writing coordinate system information from/to GeoTIFF files - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------- -``1.4.2``|``foss/2018a``, ``foss/2018b``, ``intel/2018b`` -``1.5.1``|``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.6.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``1.7.0``|``GCCcore/11.2.0`` -``1.7.1``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### libgit2 - -libgit2 is a portable, pure C implementation of the Git core methods provided as a re-entrant linkable library with a solid API, allowing you to write native speed custom Git applications in any language which supports C bindings. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------- -``1.0.0``|``GCCcore/8.3.0`` -``1.1.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/9.3.0`` -``1.1.1``|``GCCcore/11.2.0`` -``1.4.3``|``GCCcore/11.3.0`` -``1.5.0``|``GCCcore/12.2.0`` -``1.7.1``|``GCCcore/12.3.0`` -``1.7.2``|``GCCcore/13.2.0`` - -### libglade - -Libglade is a library for constructing user interfaces dynamically from XML descriptions. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------- -``2.6.4``|``foss/2018b``, ``intel/2016a``, ``intel/2017b``, ``intel/2018a`` - -### libGLU - -The OpenGL Utility Library (GLU) is a computer graphics library for OpenGL. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``9.0.0``| |``GCCcore/8.2.0``, ``foss/2016a``, ``foss/2016b``, ``foss/2017a``, ``foss/2017b``, ``foss/2018a``, ``foss/2018b``, ``fosscuda/2017b``, ``fosscuda/2018a``, ``fosscuda/2018b``, ``gimkl/2.11.5``, ``intel/2016a``, ``intel/2016b``, ``intel/2017a``, ``intel/2017b``, ``intel/2018a``, ``intel/2018b``, ``intelcuda/2017b``, ``iomkl/2018a`` -``9.0.0``|``-Mesa-11.2.1``|``foss/2016a``, ``intel/2016a`` -``9.0.1``| |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``9.0.2``| |``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``9.0.3``| |``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### libglvnd - -libglvnd is a vendor-neutral dispatch layer for arbitrating OpenGL API calls between multiple vendors. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------- -``1.2.0``|``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.3.2``|``GCCcore/10.2.0`` -``1.3.3``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``1.4.0``|``GCCcore/11.3.0`` -``1.6.0``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``1.7.0``|``GCCcore/13.2.0`` - -### libgpg-error - -Libgpg-error is a small library that defines common error values for all GnuPG components. - -*homepage*: - -version |toolchain ---------|-------------------------------------- -``1.21``|``intel/2016a`` -``1.35``|``GCCcore/7.3.0`` -``1.36``|``GCCcore/8.2.0`` -``1.38``|``GCCcore/8.3.0`` -``1.41``|``GCCcore/10.2.0`` -``1.42``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``1.46``|``GCCcore/11.3.0`` -``1.48``|``GCCcore/12.3.0`` - -### libgpuarray - -Library to manipulate tensors on the GPU. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------------------------------------------------- -``0.7.5``|``-Python-2.7.14``|``fosscuda/2017b``, ``intelcuda/2017b`` -``0.7.5``|``-Python-3.6.3`` |``fosscuda/2017b``, ``intel/2017b``, ``intelcuda/2017b`` -``0.7.6``| |``fosscuda/2019a``, ``fosscuda/2020b`` -``0.7.6``|``-Python-2.7.15``|``fosscuda/2018b`` -``0.7.6``|``-Python-3.6.6`` |``fosscuda/2018b`` -``0.7.6``|``-Python-3.7.4`` |``fosscuda/2019b`` - -### libGridXC - -A library to compute the exchange and correlation energy and potential in spherical (i.e. atoms) or periodic systems. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------------------------------------------------- -``0.8.5``|``iimpi/2019b`` -``0.9.6``|``gompi/2020b``, ``gompi/2021a``, ``gompi/2021b``, ``iimpi/2020b``, ``iimpi/2021a``, ``iimpi/2021b`` -``1.1.0``|``gompi/2022a`` - -### libgtextutils - -ligtextutils is a dependency of fastx-toolkit and is provided via the same upstream - -*homepage*: - -version|toolchain --------|------------------------------------------------------------------ -``0.7``|``GCCcore/7.3.0``, ``foss/2016a``, ``foss/2016b``, ``intel/2018a`` - -### libgxps - -libgxps is a GObject based library for handling and rendering XPS documents. - -*homepage*: - -version |toolchain ----------|------------------ -``0.3.2``|``GCCcore/12.3.0`` - -### libhandy - -Building blocks for modern adaptive GNOME apps - -*homepage*: - -version |toolchain ----------|------------------ -``1.8.2``|``GCCcore/12.3.0`` - -### libharu - -libHaru is a free, cross platform, open source library for generating PDF files. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.3.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``foss/2016a``, ``foss/2016b``, ``foss/2021a``, ``foss/2021b``, ``intel/2017a``, ``intel/2018b`` - -### libheif - -libheif is an HEIF and AVIF file format decoder and encoder - -*homepage*: - -version |toolchain -----------|------------------------------ -``1.12.0``|``GCC/10.3.0``, ``GCC/11.2.0`` -``1.16.2``|``GCC/11.3.0`` -``1.17.6``|``GCC/12.3.0`` - -### libhomfly - -This is basically a conversion of the program written by Robert J Jenkins Jr into a shared library. It accepts as entry a character string, formatted in the same way as the input files that the original code used (see below). The returned value is the string that the original program would print on screen. - -*homepage*: - -version |toolchain -----------|------------------ -``1.02r6``|``GCCcore/13.2.0`` - -### libibmad - -libibmad is a convenience library to encode, decode, and dump IB MAD packets. It is implemented on top of and in conjunction with libibumad (the umad kernel interface library.) - -*homepage*: - -version |toolchain -----------|------------------ -``1.3.12``|``GCC/4.9.3-2.25`` - -### libibumad - -libibumad is the umad kernel interface library. - -*homepage*: - -version |toolchain -------------|------------------ -``1.3.10.2``|``GCC/4.9.3-2.25`` - -### libICE - -X Inter-Client Exchange library for freedesktop.org - -*homepage*: - -version |toolchain ----------|------------------------------------------------- -``1.0.9``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` - -### libiconv - -Libiconv converts from one character encoding to another through Unicode conversion - -*homepage*: - -version |toolchain ---------|------------------------------------------------------------------------------------------------------------------- -``1.15``|``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.2.0``, ``GCCcore/7.3.0`` -``1.16``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.17``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0`` - -### libidn - -GNU Libidn is a fully documented implementation of the Stringprep, Punycode and IDNA specifications. Libidn's purpose is to encode and decode internationalized domain names. - -*homepage*: - -version |toolchain ---------|-------------------------------------------------------------------------------------- -``1.32``|``GCCcore/5.4.0``, ``GNU/4.9.3-2.25``, ``foss/2016a``, ``foss/2016b``, ``intel/2016a`` -``1.34``|``GCCcore/6.4.0`` -``1.35``|``GCCcore/7.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.36``|``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``1.38``|``GCCcore/11.2.0`` -``1.41``|``GCCcore/11.3.0`` - -### libidn2 - -Libidn2 implements the revised algorithm for internationalized domain names called IDNA2008/TR46. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------------------------------------------- -``2.3.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/5.4.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``2.3.2``|``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/13.2.0`` -``2.3.7``|``GCCcore/12.3.0`` - -### Libint - -Libint library is used to evaluate the traditional (electron repulsion) and certain novel two-body matrix elements (integrals) over Cartesian Gaussian functions used in modern atomic and molecular theory. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.1.4``| |``intel/2016a`` -``1.1.6``| |``GCC/8.2.0-2.31.1``, ``foss/2016b``, ``foss/2018a``, ``foss/2020a``, ``foss/2020b``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1``, ``intel/2016b``, ``intel/2017b``, ``intel/2018a``, ``intel/2018b``, ``intel/2020a`` -``2.0.3``| |``foss/2018b``, ``gompi/2019a``, ``intel/2018b`` -``2.1.0``| |``intel/2016b`` -``2.4.2``| |``intel/2018a`` -``2.5.0``| |``gompi/2019a``, ``iimpi/2019a`` -``2.6.0``|``-lmax-6-cp2k``|``GCC/10.2.0``, ``GCC/10.3.0``, ``gompi/2020a``, ``iccifort/2020.4.304``, ``iimpi/2020a``, ``iimpi/2021a`` -``2.7.2``|``-lmax-6-cp2k``|``GCC/11.3.0``, ``GCC/12.2.0``, ``GCC/12.3.0`` - -### LiBis - -An ultrasensitive alignment method for low input bisulfite sequencing - -*homepage*: - -version |versionsuffix |toolchain -------------|-----------------|-------------- -``20200428``|``-Python-3.7.4``|``foss/2019b`` - -### libjpeg-turbo - -libjpeg-turbo is a fork of the original IJG libjpeg which uses SIMD to accelerate baseline JPEG compression and decompression. libjpeg is a library that implements JPEG image encoding, decoding and transcoding. - -*homepage*: - -version |versionsuffix |toolchain ------------|-----------------|------------------------------------------------------------------ -``1.4.2`` | |``foss/2016a``, ``foss/2016b``, ``intel/2016a`` -``1.4.2`` |``-NASM-2.12.01``|``foss/2016a``, ``intel/2016a`` -``1.5.0`` | |``GCCcore/5.4.0``, ``foss/2016a``, ``foss/2016b``, ``intel/2016b`` -``1.5.1`` | |``foss/2016b``, ``intel/2016b``, ``intel/2017a`` -``1.5.2`` | |``GCCcore/6.3.0``, ``GCCcore/6.4.0`` -``1.5.3`` | |``GCCcore/6.4.0`` -``2.0.0`` | |``GCCcore/7.3.0`` -``2.0.2`` | |``GCCcore/7.3.0``, ``GCCcore/8.2.0`` -``2.0.3`` | |``GCCcore/8.3.0`` -``2.0.4`` | |``GCCcore/9.3.0`` -``2.0.5`` | |``GCCcore/10.2.0`` -``2.0.6`` | |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``2.1.3`` | |``GCCcore/11.3.0`` -``2.1.4`` | |``GCCcore/12.2.0`` -``2.1.5.1``| |``GCCcore/12.3.0`` -``3.0.1`` | |``GCCcore/13.2.0``, ``GCCcore/13.3.0`` - -### libjxl - -JPEG XL image format reference implementation - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``0.5`` |``GCCcore/10.3.0`` -``0.6.1``|``GCCcore/10.2.0`` -``0.8.1``|``foss/2022a`` -``0.8.2``|``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### libleidenalg - -Implements the Leiden algorithm in C++ - -*homepage*: - -version |toolchain -----------|------------------------------ -``0.11.1``|``foss/2022b``, ``foss/2023a`` - -### LibLZF - -LibLZF is a very small data compression library. It consists of only two .c and two .h files and is very easy to incorporate into your own programs. The compression algorithm is very, very fast, yet still written in portable C. - -*homepage*: - -version|toolchain --------|---------------------------------------------------------- -``3.4``|``GCCcore/10.2.0`` -``3.6``|``GCCcore/10.3.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### libmad - -MAD is a high-quality MPEG audio decoder. - -*homepage*: - -version |toolchain ------------|-------------------------------------- -``0.15.1b``|``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### libmatheval - -GNU libmatheval is a library (callable from C and Fortran) to parse and evaluate symbolic expressions input as text. - -*homepage*: - -version |toolchain -----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.1.11``|``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``foss/2016b``, ``foss/2017a``, ``intel/2016a``, ``intel/2016b`` - -### libmaus2 - -libmaus2 is a collection of data structures and algorithms. - -*homepage*: - -version |toolchain ------------|--------------- -``2.0.453``|``intel/2018a`` -``2.0.499``|``GCC/11.3.0`` -``2.0.813``|``GCC/12.3.0`` - -### libmbd - -Libmbd implements the many-body dispersion (MBD) method in several programming languages and frameworks: - The Fortran implementation is the reference, most advanced implementation, with support for analytical gradients and distributed parallelism, and additional functionality beyond the MBD method itself. It provides a low-level and a high-level Fortran API, as well as a C API. Furthermore, Python bindings to the C API are provided. - The Python/Numpy implementation is intended for prototyping, and as a high-level language reference. - The Python/Tensorflow implementation is an experiment that should enable rapid prototyping of machine learning applications with MBD. The Python-based implementations as well as Python bindings to the Libmbd C API are accessible from the Python package called Pymbd. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------------- -``0.10.4``|``foss/2020b``, ``foss/2021a``, ``intel/2020b``, ``intel/2021a`` - -### libMemcached - -libMemcached is an open source C/C++ client library and tools for the memcached server (http://danga.com/memcached). It has been designed to be light on memory usage, thread safe, and provide full access to server side methods. - -*homepage*: - -version |toolchain -----------|-------------------------------------------------------- -``1.0.18``|``GCCcore/13.2.0``, ``GCCcore/6.4.0``, ``GCCcore/9.3.0`` - -### libmicrohttpd - -GNU libmicrohttpd is a small C library that is supposed to make it easy to run an HTTP server as part of another application. - -*homepage*: - -version |toolchain -----------|-------------------------------------------------------- -``0.9.71``|``GCCcore/9.3.0`` -``0.9.73``|``GCCcore/10.2.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0`` - -### libmo_unpack - -A library for handling the WGDOS and RLE compression schemes used in UM files. - -*homepage*: - -version |toolchain ----------|----------------- -``3.1.2``|``GCCcore/6.4.0`` - -### libmypaint - -libmypaint, a.k.a. "brushlib", is a library for making brushstrokes which is used by MyPaint and other projects - -*homepage*: - -version |toolchain ----------|------------------ -``1.6.1``|``GCCcore/10.3.0`` - -### libnsl - -The libnsl package contains the public client interface for NIS(YP). - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``1.3.0``|``GCCcore/10.3.0`` -``2.0.0``|``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``2.0.1``|``GCCcore/12.3.0`` - -### libobjcryst - -ObjCryst++ is Object-Oriented Crystallographic Library for C++ - -*homepage*: - -version |toolchain -------------|--------------- -``2017.2.3``|``intel/2020a`` -``2021.1.2``|``foss/2021b`` - -### libogg - -Ogg is a multimedia container format, and the native file and stream format for the Xiph.org multimedia codecs. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------ -``1.3.4``|``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``1.3.5``|``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### libopus - -Opus is a totally open, royalty-free, highly versatile audio codec. Opus is unmatched for interactive speech and music transmission over the Internet, but is also intended for storage and streaming applications. It is standardized by the Internet Engineering Task Force (IETF) as RFC 6716 which incorporated technology from Skype’s SILK codec and Xiph.Org’s CELT codec. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``1.3.1``|``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``1.4`` |``GCCcore/12.3.0`` - -### libosmium - -A fast and flexible C++ library for working with OpenStreetMap data. The Osmium Library has extensive support for all types of OSM entities: nodes, ways, relations, and changesets. It allows reading from and writing to OSM files in XML and PBF formats, including change files and full history files. Osmium can store OSM data in memory and on disk in various formats and using various indexes. Its easy to use handler interface allows you to quickly write data filtering and conversion functions. Osmium can create WKT, WKB, OGR, GEOS and GeoJSON geometries for easy conversion into many GIS formats and it can assemble multipolygons from ways and relations. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``2.15.4``|``-Python-3.6.6``|``foss/2018b`` -``2.15.6``|``-Python-3.7.4``|``foss/2019b`` - -### libpci - -Library for portable access to PCI bus configuration registers from PCI Utils. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------- -``3.7.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/6.4.0`` - -### libpciaccess - -Generic PCI access library. - -*homepage*: - -version |toolchain -----------|-------------------------------------------------------------------------------------------------------------------- -``0.13.4``|``foss/2016a``, ``foss/2016b``, ``gimkl/2.11.5``, ``intel/2016a``, ``intel/2016b`` -``0.14`` |``GCCcore/6.4.0``, ``GCCcore/7.2.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``0.16`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/9.2.0``, ``GCCcore/9.3.0`` -``0.17`` |``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` -``0.18.1``|``GCCcore/13.3.0`` - -### libplinkio - -A small C and Python library for reading PLINK genotype files. - -*homepage*: - -version |toolchain ----------|----------------- -``0.9.8``|``GCCcore/9.3.0`` - -### libpng - -libpng is the official PNG reference library - -*homepage*: - -version |toolchain -----------|-------------------------------------------------------------------------------------------------------------------- -``1.2.58``|``system`` -``1.2.59``|``system`` -``1.5.30``|``system`` -``1.6.21``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` -``1.6.23``|``foss/2016a``, ``foss/2016b``, ``intel/2016b`` -``1.6.24``|``GCCcore/4.9.3``, ``GCCcore/5.4.0``, ``foss/2016b``, ``intel/2016b`` -``1.6.26``|``foss/2016b``, ``intel/2016b`` -``1.6.27``|``intel/2016b`` -``1.6.28``|``GCCcore/5.4.0``, ``GCCcore/6.3.0``, ``gimkl/2017a`` -``1.6.29``|``GCCcore/6.3.0`` -``1.6.32``|``GCCcore/6.4.0`` -``1.6.34``|``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``1.6.36``|``GCCcore/8.2.0`` -``1.6.37``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.6.38``|``GCCcore/12.2.0`` -``1.6.39``|``GCCcore/12.3.0`` -``1.6.40``|``GCCcore/13.2.0`` -``1.6.43``|``GCCcore/13.3.0`` - -### libpsl - -C library for the Public Suffix List - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------ -``0.20.2``|``GCCcore/7.3.0`` -``0.21.0``|``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``0.21.1``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` - -### libPSML - -A library to handle PSML, the pseudopotential markup language. - -*homepage*: - -version |toolchain -----------|----------------------------------------------------------------------------------------------------------------------------------- -``1.1.7`` |``foss/2016b``, ``foss/2017a`` -``1.1.8`` |``iccifort/2019.5.281`` -``1.1.10``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``iccifort/2020.4.304``, ``intel-compilers/2021.2.0``, ``intel-compilers/2021.4.0`` -``1.1.12``|``GCC/11.3.0`` - -### libpsortb - -PSORT family of programs for subcellular localization prediction as well as other datasets and resources relevant to localization prediction. - -*homepage*: - -version|toolchain --------|-------------- -``1.0``|``foss/2016a`` - -### libpspio - -libpspio is a library to read and write pseudopotentials in multiple formats. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------------------------------------------------------------- -``0.2.4``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``iccifort/2020.4.304``, ``intel-compilers/2021.2.0``, ``intel-compilers/2021.4.0`` - -### libpthread-stubs - -The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility. - -*homepage*: - -version|toolchain --------|----------------------------------------------------------------------------------------------------- -``0.3``|``GCCcore/6.4.0``, ``foss/2016a``, ``foss/2016b``, ``gimkl/2.11.5``, ``intel/2016a``, ``intel/2016b`` -``0.4``|``GCCcore/6.4.0`` - -### libQGLViewer - -libQGLViewer is a C++ library based on Qt that eases the creation of OpenGL 3D viewers. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|----------------------------------------------- -``2.6.3``| |``foss/2016a``, ``foss/2016b``, ``intel/2016b`` -``2.6.3``|``-Mesa-11.2.1``|``foss/2016a``, ``intel/2016a`` -``2.6.4``| |``intel/2016b`` -``2.7.1``| |``intel/2018a`` -``2.8.0``| |``GCCcore/10.3.0`` - -### libreadline - -The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``6.3`` |``GCC/4.8.2``, ``GCC/4.8.4``, ``GCC/4.9.2``, ``GCC/4.9.3-2.25``, ``GCC/5.4.0-2.26``, ``GCCcore/4.9.3``, ``GCCcore/5.4.0``, ``GCCcore/6.3.0``, ``GNU/4.9.3-2.25``, ``foss/2016.04``, ``foss/2016a``, ``foss/2016b``, ``gimkl/2.11.5``, ``gimkl/2017a``, ``intel/2016.02-GCC-4.9``, ``intel/2016a``, ``intel/2016b``, ``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25``, ``system`` -``7.0`` |``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.2.0``, ``GCCcore/7.3.0`` -``8.0`` |``GCCcore/10.2.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``system`` -``8.1`` |``FCC/4.5.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``8.1.2``|``GCCcore/11.3.0``, ``GCCcore/12.1.0`` -``8.2`` |``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.1.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0`` - -### libRmath - -The routines supporting the distribution and special functions in R and a few others are declared in C header file Rmath.h. These can be compiled into a standalone library for linking to other applications. - -*homepage*: - -version |toolchain ----------|------------------ -``3.6.0``|``foss/2018b`` -``4.0.0``|``GCCcore/9.3.0`` -``4.1.0``|``GCCcore/10.2.0`` -``4.1.2``|``GCCcore/11.2.0`` -``4.2.0``|``GCCcore/10.3.0`` -``4.2.1``|``GCCcore/11.3.0`` - -### librosa - -Python module for audio and music processing - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|---------------------------------- -``0.7.2`` |``-Python-3.7.4``|``foss/2019b``, ``fosscuda/2019b`` -``0.10.1``| |``foss/2023a`` - -### librsb - -A shared memory parallel sparse matrix computations library for the Recursive Sparse Blocks format - -*homepage*: - -version |toolchain -------------|-------------- -``1.2.0.9`` |``GCC/10.2.0`` -``1.2.0.10``|``GCC/10.2.0`` -``1.2.0.11``|``GCC/10.2.0`` -``1.3.0.0`` |``GCC/10.2.0`` -``1.3.0.1`` |``GCC/10.2.0`` - -### librsvg - -Librsvg is a library to render SVG files using cairo. - -*homepage*: - -version |toolchain ------------|------------------ -``2.40.15``|``intel/2016a`` -``2.48.4`` |``foss/2019a`` -``2.51.2`` |``GCCcore/10.3.0`` -``2.52.8`` |``GCCcore/11.2.0`` -``2.55.1`` |``GCCcore/11.3.0`` -``2.58.0`` |``GCCcore/13.2.0`` - -### librttopo - -The RT Topology Library exposes an API to create and manage standard (ISO 13249 aka SQL/MM) topologies using user-provided data stores. - -*homepage*: - -version |toolchain ----------|-------------- -``1.1.0``|``GCC/11.2.0`` - -### libsamplerate - -Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio. - -*homepage*: - -version |toolchain ----------|----------------- -``0.1.9``|``GCCcore/8.2.0`` - -### libSBML - -libSBML (Systems Biology Markup Language library) is a free, open-source programming library to help you read, write, manipulate, translate, and validate SBML files and data streams. It's not an application itself (though it does come with example programs), but rather a library you embed in your own applications. - -*homepage*: - -version |toolchain -----------|------------------------------ -``5.19.0``|``GCC/10.2.0``, ``GCC/10.3.0`` -``5.19.7``|``GCC/11.3.0`` - -### libsigc++ - -The libsigc++ package implements a typesafe callback system for standard C++. - -*homepage*: - -version |toolchain -----------|------------------------------------ -``2.10.0``|``GCCcore/6.4.0`` -``2.10.1``|``GCCcore/7.3.0`` -``2.10.2``|``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``2.10.8``|``GCCcore/10.3.0`` -``2.12.1``|``GCCcore/11.3.0`` -``3.4.0`` |``GCCcore/11.3.0`` - -### libsigsegv - -GNU libsigsegv is a library for handling page faults in user mode. - -*homepage*: - -version |toolchain ---------|------------------ -``2.11``|``GCCcore/6.4.0`` -``2.12``|``GCCcore/9.3.0`` -``2.13``|``GCCcore/10.2.0`` -``2.14``|``GCCcore/12.2.0`` - -### libSM - -X11 Session Management library, which allows for applications to both manage sessions, and make use of session managers to save and restore their state for later use. - -*homepage*: - -version |toolchain ----------|------------------------------------------------- -``1.2.2``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` - -### libsndfile - -Libsndfile is a C library for reading and writing files containing sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format) through one standard library interface. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------------------------------------------------------------------------------- -``1.0.28``|``GCCcore/10.2.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``intel/2017a`` -``1.0.31``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``1.1.0`` |``GCCcore/11.3.0`` -``1.2.0`` |``GCCcore/12.2.0`` -``1.2.2`` |``GCCcore/12.3.0`` - -### libsodium - -Sodium is a modern, easy-to-use software library for encryption, decryption, signatures, password hashing and more. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------------------------------------------------------------------------------------ -``1.0.6`` |``intel/2016a`` -``1.0.8`` |``foss/2016a`` -``1.0.11``|``foss/2016b``, ``intel/2016b`` -``1.0.12``|``GCCcore/6.4.0``, ``intel/2017a`` -``1.0.13``|``GCCcore/6.4.0``, ``foss/2017a`` -``1.0.16``|``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``1.0.17``|``GCCcore/8.2.0`` -``1.0.18``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.0.19``|``GCCcore/13.2.0`` - -### LibSoup - -libsoup is an HTTP client/server library for GNOME. It uses GObjects and the glib main loop, to integrate well with GNOME applications, and also has a synchronous API, for use in threaded applications. - -*homepage*: - -version |toolchain -----------|------------------ -``2.66.1``|``GCCcore/8.2.0`` -``2.70.0``|``GCCcore/8.3.0`` -``2.72.0``|``GCCcore/10.2.0`` -``2.74.0``|``GCCcore/10.3.0`` -``3.0.7`` |``GCC/11.2.0`` -``3.0.8`` |``GCC/11.3.0`` - -### libspatialindex - -C++ implementation of R*-tree, an MVR-tree and a TPR-tree with C API - -*homepage*: - -version |toolchain ----------|-------------------------------------------------------------------------------------------------- -``1.8.5``|``GCCcore/6.4.0``, ``GCCcore/8.2.0``, ``foss/2016b``, ``intel/2016b``, ``intel/2018a`` -``1.9.3``|``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### libspatialite - -SpatiaLite is an open source library intended to extend the SQLite core to support fully fledged Spatial SQL capabilities. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|----------------------------------------------- -``4.3.0a``| |``foss/2016b``, ``foss/2018b``, ``intel/2016b`` -``4.3.0a``|``-Python-3.7.2``|``foss/2019a`` -``4.3.0a``|``-Python-3.7.4``|``GCC/8.3.0`` -``5.0.1`` | |``GCC/11.2.0`` - -### libspectre - -libspectre is a small library for rendering Postscript documents. It provides a convenient easy to use API for handling and rendering Postscript documents. - -*homepage*: - -version |toolchain -----------|------------------ -``0.2.12``|``GCCcore/12.3.0`` - -### libssh - -Multiplatform C library implementing the SSHv2 protocol on client and server side - -*homepage*: - -version |toolchain ----------|----------------- -``0.9.0``|``GCCcore/6.4.0`` - -### libStatGen - -Useful set of classes for creating statistical genetic programs. - -*homepage*: - -version |toolchain -------------|------------------ -``1.0.15`` |``GCCcore/10.2.0`` -``20190330``|``GCCcore/6.4.0`` - -### libsupermesh - -libsupermesh parallel supermeshing library. - -*homepage*: - -version |toolchain ---------------|-------------- -``2025-01-25``|``foss/2023a`` - -### LIBSVM - -LIBSVM is an integrated software for support vector classification, (C-SVC, nu-SVC), regression (epsilon-SVR, nu-SVR) and distribution estimation (one-class SVM). It supports multi-class classification. - -*homepage*: - -version |toolchain ---------|---------------------------------------------------------- -``3.22``|``intel/2016b``, ``intel/2017b`` -``3.23``|``foss/2018b``, ``intel/2018b`` -``3.24``|``GCCcore/9.3.0`` -``3.25``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``3.30``|``GCCcore/11.3.0`` - -### LIBSVM-MATLAB - -MATLAB interface of LIBSVM, an integrated software for support vector classification, (C-SVC, nu-SVC), regression (epsilon-SVR, nu-SVR) and distribution estimation (one-class SVM). It supports multi-class classification. - -*homepage*: - -version |versionsuffix |toolchain ---------|--------------------|------------------ -``3.30``|``-MATLAB-2022b-r5``|``GCCcore/11.3.0`` - -### LIBSVM-Python - -This tool provides a simple Python interface to LIBSVM, a library for support vector machines (http://www.csie.ntu.edu.tw/~cjlin/libsvm). The interface is very easy to use as the usage is the same as that of LIBSVM. The interface is developed with the built-in Python library "ctypes". - -*homepage*: - -version |toolchain ---------|-------------- -``3.30``|``foss/2022a`` - -### libtar - -C library for manipulating POSIX tar files - -*homepage*: - -version |toolchain -----------|------------------------------------ -``1.2.20``|``GCCcore/7.3.0``, ``GCCcore/8.2.0`` - -### libtasn1 - -Libtasn1 is the ASN.1 library used by GnuTLS, GNU Shishi and some other packages. It was written by Fabio Fiorina, and has been shipped as part of GnuTLS for some time but is now a proper GNU package. - -*homepage*: - -version |toolchain -----------|--------------------------------------------------- -``4.7`` |``GNU/4.9.3-2.25``, ``foss/2016a``, ``intel/2016a`` -``4.12`` |``GCCcore/5.4.0`` -``4.13`` |``GCCcore/7.3.0``, ``GCCcore/8.2.0`` -``4.16.0``|``GCCcore/10.2.0``, ``GCCcore/8.3.0`` -``4.17.0``|``GCCcore/10.3.0`` -``4.18.0``|``GCCcore/11.2.0`` -``4.19.0``|``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### libtecla - -The tecla library provides UNIX and LINUX programs with interactive command line editing facilities, similar to those of the UNIX tcsh shell. In addition to simple command-line editing, it supports recall of previously entered command lines, TAB completion of file names or other tokens, and in-line wild-card expansion of filenames. The internal functions which perform file-name completion and wild-card expansion are also available externally for optional use by programs. - -*homepage*: - -version |toolchain ----------|------------------ -``1.6.3``|``GCCcore/10.2.0`` - -### LibTIFF - -tiff: Library and tools for reading and writing TIFF data files - -*homepage*: - -version |toolchain -----------|--------------------------------------------------------------------------------------------------------- -``4.0.6`` |``GCCcore/5.4.0``, ``foss/2016a``, ``foss/2016b``, ``intel/2016a``, ``intel/2016b`` -``4.0.7`` |``foss/2016b``, ``intel/2017a`` -``4.0.8`` |``intel/2017a``, ``intel/2017b`` -``4.0.9`` |``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``foss/2017b``, ``intel/2017b``, ``intel/2018.01``, ``intel/2018b`` -``4.0.10``|``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``4.1.0`` |``GCCcore/10.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``4.2.0`` |``GCCcore/10.3.0`` -``4.3.0`` |``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``4.4.0`` |``GCCcore/12.2.0`` -``4.5.0`` |``GCCcore/12.3.0`` -``4.6.0`` |``GCCcore/13.2.0``, ``GCCcore/13.3.0`` - -### libtirpc - -Libtirpc is a port of Suns Transport-Independent RPC library to Linux. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------- -``1.1.4``|``GCCcore/7.3.0``, ``GCCcore/8.2.0`` -``1.2.6``|``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.3.1``|``GCCcore/10.2.0`` -``1.3.2``|``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``1.3.3``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``1.3.4``|``GCCcore/13.2.0`` - -### libtool - -GNU libtool is a generic library support script. Libtool hides the complexity of using shared libraries behind a consistent, portable interface. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.4.2``|``GCC/4.8.2``, ``GCC/4.9.2`` -``2.4.5``|``GCC/4.8.4``, ``GCC/4.9.2`` -``2.4.6``|``FCC/4.5.0``, ``GCC/4.8.4``, ``GCC/4.9.2``, ``GCC/4.9.3``, ``GCC/4.9.3-2.25``, ``GCC/5.2.0``, ``GCC/5.4.0-2.26``, ``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/4.9.2``, ``GCCcore/4.9.3``, ``GCCcore/5.3.0``, ``GCCcore/5.4.0``, ``GCCcore/6.1.0``, ``GCCcore/6.2.0``, ``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.2.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.2.0``, ``GCCcore/9.3.0``, ``GNU/4.9.2-2.25``, ``GNU/4.9.3-2.25``, ``GNU/5.1.0-2.25``, ``foss/2016.04``, ``foss/2016a``, ``foss/2016b``, ``gimkl/2.11.5``, ``intel/2016.02-GCC-4.9``, ``intel/2016a``, ``intel/2016b``, ``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25``, ``system`` -``2.4.7``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.1.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0``, ``system`` - -### libtree - -libtree is a tool that turns ldd into a tree, explains why shared libraries are found and why not and optionally deploys executables and dependencies into a single directory - -*homepage*: - -version |toolchain ----------|------------------ -``2.0.0``|``GCCcore/10.3.0`` -``3.0.3``|``system`` - -### libunistring - -This library provides functions for manipulating Unicode strings and for manipulating C strings according to the Unicode standard. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------------------------------------------- -``0.9.3`` |``GCC/4.9.3-2.25``, ``GNU/4.9.3-2.25``, ``foss/2016a``, ``intel/2016a`` -``0.9.6`` |``GCCcore/5.4.0``, ``foss/2016b``, ``foss/2017a``, ``intel/2016b`` -``0.9.7`` |``GCCcore/6.4.0`` -``0.9.10``|``GCCcore/10.3.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.0`` |``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``1.1`` |``GCCcore/10.2.0``, ``GCCcore/12.3.0`` - -### libunwind - -The primary goal of libunwind is to define a portable and efficient C programming interface (API) to determine the call-chain of a program. The API additionally provides the means to manipulate the preserved (callee-saved) state of each call-frame and to resume execution at any point in the call-chain (non-local goto). The API supports both local (same-process) and remote (across-process) operation. As such, the API is useful in a number of applications - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------ -``1.1`` |``GCC/4.9.2``, ``foss/2016a``, ``intel/2016b`` -``1.2.1``|``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``foss/2016b`` -``1.3.1``|``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.4.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``1.5.0``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``1.6.2``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### libutempter - -libutempter is library that provides an interface for terminal emulators such as screen and xterm to record user sessions to utmp and wtmp files. - -*homepage*: - -version |toolchain ------------|------------------ -``1.1.6.2``|``GCC/6.4.0-2.28`` - -### LibUUID - -Portable uuid C library - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------------------------------------------------------------------------- -``1.0.3``|``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``foss/2016a``, ``intel/2017a``, ``intel/2017b`` - -### libuv - -libuv is a multi-platform support library with a focus on asynchronous I/O. - -*homepage*: - -version |toolchain -----------|------------------ -``1.37.0``|``GCCcore/8.3.0`` -``1.48.0``|``GCCcore/12.3.0`` - -### libvdwxc - -libvdwxc is a general library for evaluating energy and potential for exchange-correlation (XC) functionals from the vdW-DF family that can be used with various of density functional theory (DFT) codes. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``0.3.2``|``foss/2018b`` -``0.4.0``|``foss/2019a``, ``foss/2019b``, ``foss/2020a``, ``foss/2020b``, ``foss/2021a``, ``foss/2021b``, ``foss/2022a``, ``foss/2023a``, ``intel/2020b``, ``intel/2021a``, ``intel/2021b`` - -### libvorbis - -Ogg Vorbis is a fully open, non-proprietary, patent-and-royalty-free, general-purpose compressed audio format - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------------------------------------------------------------------- -``1.3.7``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### libvori - -C++ library implementing the Voronoi integration as well as the compressed bqb file format. The present version of libvori is a very early development version, which is hard-coded to work with the CP2k program package. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------- -``220621``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### libWallModelledLES - -libWallModelledLES is a library based on OpenFOAM® technology, extending the capabilities of OpenFOAM in the area of wall-modelled LES (WMLES). This is a turbulence modelling methodology, which allows to make LES cheaper by not resolving the inner region of turbulent boundary layers. - -*homepage*: - -version |toolchain ----------|-------------- -``0.6.1``|``foss/2021b`` - -### libwebp - -WebP is a modern image format that provides superior lossless and lossy compression for images on the web. Using WebP, webmasters and web developers can create smaller, richer images that make the web faster. - -*homepage*: - -version |toolchain ----------|-------------------------------------------------------- -``1.0.0``|``foss/2018b`` -``1.0.2``|``GCCcore/7.3.0``, ``GCCcore/8.2.0`` -``1.1.0``|``GCCcore/10.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.2.0``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``1.2.4``|``GCCcore/11.3.0`` -``1.3.1``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``1.3.2``|``GCCcore/13.2.0`` - -### libwpe - -WPE is the reference WebKit port for embedded and low-consumption computer devices. It has been designed from the ground-up with performance, small footprint, accelerated content rendering, and simplicity of deployment in mind, bringing the excellence of the WebKit engine to countless platforms and target devices. - -*homepage*: - -version |toolchain -----------|------------------ -``1.13.3``|``GCCcore/11.2.0`` -``1.14.1``|``GCCcore/11.3.0`` - -### libX11 - -X11 client-side library - -*homepage*: - -version |toolchain ----------|------------------------------------------------- -``1.6.3``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` - -### libXau - -The libXau package contains a library implementing the X11 Authorization Protocol. This is useful for restricting client access to the display. - -*homepage*: - -version |toolchain ----------|-------------------------------------------------------------------- -``1.0.8``|``GCCcore/6.4.0``, ``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` - -### libxc - -Libxc is a library of exchange-correlation functionals for density-functional theory. The aim is to provide a portable, well tested and reliable set of exchange and correlation functionals. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.2.2``|``GCC/8.2.0-2.31.1``, ``foss/2018b``, ``intel/2018b`` -``2.2.3``|``foss/2016b``, ``intel/2016a``, ``intel/2016b``, ``intel/2017b``, ``intel/2018a`` -``3.0.0``|``GCC/5.4.0-2.26``, ``iccifort/2016.3.210-GCC-5.4.0-2.26``, ``intel/2016a``, ``intel/2016b``, ``intel/2017a``, ``intel/2017b`` -``3.0.1``|``GCC/8.2.0-2.31.1``, ``foss/2016b``, ``foss/2017a``, ``foss/2018a``, ``foss/2018b``, ``foss/2020a``, ``foss/2020b``, ``gimkl/2017a``, ``intel/2018a``, ``intel/2018b``, ``intel/2020a`` -``4.0.1``|``foss/2017b``, ``intel/2017b`` -``4.0.3``|``foss/2016b``, ``foss/2017a`` -``4.2.3``|``foss/2017b``, ``foss/2018a``, ``foss/2018b``, ``gimkl/2017a``, ``intel/2018a``, ``intel/2018b`` -``4.3.4``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/8.2.0-2.31.1``, ``GCC/8.3.0``, ``GCC/9.3.0``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1``, ``iccifort/2019.5.281``, ``iccifort/2020.1.217``, ``iccifort/2020.4.304``, ``intel-compilers/2021.2.0``, ``intel-compilers/2021.4.0`` -``5.1.2``|``GCC/10.2.0`` -``5.1.3``|``GCC/10.2.0`` -``5.1.5``|``GCC/10.3.0``, ``intel-compilers/2021.2.0`` -``5.1.6``|``GCC/11.2.0``, ``intel-compilers/2021.4.0`` -``5.2.3``|``GCC/11.3.0``, ``intel-compilers/2022.1.0`` -``6.1.0``|``GCC/12.2.0``, ``intel-compilers/2022.2.1`` -``6.2.2``|``GCC/12.3.0``, ``GCC/13.2.0``, ``intel-compilers/2023.1.0``, ``intel-compilers/2023.2.1`` - -### libxcb - -The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility. - -*homepage*: - -version |toolchain -----------|------------------------------------------------- -``1.11.1``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` -``1.13`` |``GCCcore/6.4.0`` - -### libXcursor - -X Cursor management library - -*homepage*: - -version |toolchain -----------|------------------------------- -``1.1.14``|``foss/2016a``, ``intel/2016a`` - -### libXdamage - -X Damage extension library - -*homepage*: - -version |toolchain ----------|------------------------------------------------- -``1.1.4``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` - -### libXdmcp - -The libXdmcp package contains a library implementing the X Display Manager Control Protocol. This is useful for allowing clients to interact with the X Display Manager. - -*homepage*: - -version |toolchain ----------|-------------------------------------------------------------------- -``1.1.2``|``GCCcore/6.4.0``, ``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` - -### libXext - -Common X Extensions library - -*homepage*: - -version |toolchain ----------|------------------------------------------------- -``1.3.3``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` - -### libXfixes - -X Fixes extension library - -*homepage*: - -version |toolchain ----------|------------------------------------------------- -``5.0.1``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` -``5.0.2``|``intel/2016a`` - -### libXfont - -X font libary - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------|------------------------------------------------- -``1.5.1``| |``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` -``1.5.1``|``-freetype-2.6.3``|``foss/2016a``, ``intel/2016a`` - -### libXft - -X11 client-side library - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------------|------------------------------- -``2.3.2``| |``foss/2016a``, ``intel/2016a`` -``2.3.2``|``-fontconfig-2.11.95``|``intel/2016a`` -``2.3.2``|``-freetype-2.6.3`` |``foss/2016a`` - -### libXi - -LibXi provides an X Window System client interface to the XINPUT extension to the X protocol. - -*homepage*: - -version |toolchain ----------|------------------------------- -``1.7.6``|``foss/2016a``, ``intel/2016a`` - -### libXinerama - -Xinerama multiple monitor library - -*homepage*: - -version |toolchain ----------|------------------------------- -``1.1.3``|``foss/2016a``, ``intel/2016a`` - -### libxkbcommon - -xkbcommon is a library to handle keyboard descriptions, including loading them from disk, parsing them and handling their state. It's mainly meant for client toolkits, window systems, and other system applications. - -*homepage*: - -version |toolchain ----------|------------------------------- -``0.6.1``|``foss/2016a``, ``intel/2016a`` - -### libxml++ - -libxml++ is a C++ wrapper for the libxml XML parser library. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------- -``2.40.1``|``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``2.42.1``|``GCC/10.3.0`` - -### libxml2 - -Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable outside of the Gnome platform). - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.9.2`` | |``GCC/4.8.3``, ``GCC/4.8.4``, ``GCC/4.9.2``, ``GCC/4.9.3-2.25``, ``GNU/4.9.3-2.25`` -``2.9.3`` | |``GCC/4.9.3-2.25``, ``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` -``2.9.3`` |``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``2.9.4`` | |``GCC/5.4.0-2.26``, ``GCCcore/4.9.3``, ``GCCcore/5.4.0``, ``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``foss/2016.04``, ``foss/2016a``, ``foss/2016b``, ``gimkl/2017a``, ``intel/2016b`` -``2.9.4`` |``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``2.9.4`` |``-Python-2.7.13``|``intel/2017a`` -``2.9.5`` | |``GCCcore/6.3.0`` -``2.9.6`` | |``GCCcore/6.4.0`` -``2.9.7`` | |``GCCcore/6.4.0`` -``2.9.8`` | |``GCCcore/6.4.0``, ``GCCcore/7.2.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0`` -``2.9.9`` | |``GCCcore/8.3.0`` -``2.9.10``| |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/9.2.0``, ``GCCcore/9.3.0`` -``2.9.13``| |``GCCcore/11.3.0`` -``2.10.3``| |``GCCcore/12.2.0`` -``2.11.4``| |``GCCcore/12.3.0`` -``2.11.5``| |``GCCcore/13.2.0`` -``2.12.7``| |``GCCcore/13.3.0`` - -### libxml2-python - -Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable outside of the Gnome platform). This is the Python binding. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------ -``2.9.7`` |``-Python-2.7.14``|``intel/2018a`` -``2.9.8`` |``-Python-2.7.15``|``foss/2018b`` -``2.9.8`` |``-Python-3.7.2`` |``GCCcore/8.2.0`` -``2.9.13``| |``GCCcore/11.3.0`` -``2.11.4``| |``GCCcore/12.3.0`` - -### libXmu - -libXmu provides a set of miscellaneous utility convenience functions for X libraries to use. libXmuu is a lighter-weight version that does not depend on libXt or libXext - -*homepage*: - -version |toolchain ----------|------------------------------- -``1.1.2``|``foss/2016a``, ``intel/2016a`` - -### libXp - -libXp provides the X print library. - -*homepage*: - -version |toolchain ----------|--------------- -``1.0.3``|``intel/2016a`` - -### libXpm - -libXp provides the X print library. - -*homepage*: - -version |toolchain -----------|------------------------------- -``3.5.11``|``foss/2016a``, ``intel/2016a`` - -### libXrandr - -X Resize, Rotate and Reflection extension library - -*homepage*: - -version |toolchain ----------|------------------------------- -``1.5.0``|``foss/2016a``, ``intel/2016a`` - -### libXrender - -X11 client-side library - -*homepage*: - -version |toolchain ----------|------------------------------------------------- -``0.9.9``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` - -### libxslt - -Libxslt is the XSLT C library developed for the GNOME project (but usable outside of the Gnome platform). - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|-------------------------------------------------------------------------------------------------------------------- -``1.1.28``| |``foss/2016a``, ``intel/2016a`` -``1.1.28``|``-Python-2.7.11``|``intel/2016a`` -``1.1.29``| |``foss/2016b``, ``intel/2016a``, ``intel/2016b``, ``intel/2017a`` -``1.1.30``| |``GCCcore/6.3.0`` -``1.1.32``| |``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``1.1.33``| |``GCCcore/8.2.0`` -``1.1.34``| |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.1.37``| |``GCCcore/12.2.0`` -``1.1.38``| |``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### libxsmm - -LIBXSMM is a library for small dense and small sparse matrix-matrix multiplications targeting Intel Architecture (x86). - -*homepage*: - -version |toolchain -----------|----------------------------------------------------------------------------------------------- -``1.4`` |``intel/2016a`` -``1.4.4`` |``foss/2016b``, ``intel/2016b`` -``1.6.4`` |``foss/2016b``, ``intel/2016b`` -``1.8.2`` |``intel/2017b`` -``1.8.3`` |``foss/2018a``, ``intel/2018a`` -``1.10`` |``GCC/8.2.0-2.31.1``, ``foss/2018b``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1``, ``intel/2018b`` -``1.16.1``|``GCC/10.2.0``, ``GCC/9.3.0``, ``iccifort/2020.1.217``, ``iccifort/2020.4.304`` -``1.16.2``|``GCC/10.3.0``, ``intel-compilers/2021.2.0`` -``1.17`` |``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0``, ``GCC/12.3.0`` - -### libXt - -libXt provides the X Toolkit Intrinsics, an abstract widget library upon which other toolkits are based. Xt is the basis for many toolkits, including the Athena widgets (Xaw), and LessTif (a Motif implementation). - -*homepage*: - -version |toolchain ----------|------------------------------------------------- -``1.1.5``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` - -### libXxf86vm - -X11 XFree86 video mode extension library - -*homepage*: - -version |toolchain ----------|------------------------------- -``1.1.4``|``foss/2016a``, ``intel/2016a`` - -### libyaml - -LibYAML is a YAML parser and emitter written in C. - -*homepage*: - -version |toolchain ----------|-------------------------------------------------------------------------------------------------------------------------------------------------------------- -``0.1.6``|``GCCcore/6.4.0``, ``foss/2016b``, ``intel/2016a``, ``intel/2016b`` -``0.1.7``|``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``system`` -``0.2.1``|``GCCcore/7.3.0``, ``system`` -``0.2.2``|``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``0.2.5``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0`` - -### libzeep - -Libzeep was originally developed to make it easy to create SOAP servers. - -*homepage*: - -version |toolchain ----------|--------------- -``5.0.1``|``gompi/2019b`` - -### libzip - -libzip is a C library for reading, creating, and modifying zip archives. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------- -``1.5.2``|``GCCcore/8.2.0`` -``1.7.3``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``1.9.2``|``GCCcore/11.3.0`` - -### lie_learn - -lie_learn is a python package that knows how to do various tricky computations related to Lie groups and manifolds (mainly the sphere S2 and rotation group SO3). - -*homepage*: - -version |versionsuffix |toolchain ----------------|-----------------|------------------ -``0.0.1.post1``|``-Python-3.7.4``|``fosscuda/2019b`` - -### lifelines - -lifelines is a complete survival analysis library, written in pure Python. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------ -``0.22.8``|``-Python-3.7.2``|``fosscuda/2019a`` -``0.26.3``| |``fosscuda/2020b`` -``0.27.4``| |``foss/2022a`` - -### Lighter - -Fast and memory-efficient sequencing error corrector - -*homepage*: - -version |toolchain ----------|------------------------------ -``1.1.1``|``foss/2018a`` -``1.1.2``|``GCC/11.2.0``, ``foss/2018b`` - -### Lightning - -The deep learning framework to pretrain, finetune and deploy AI models. Lightning has 4 core packages: PyTorch Lightning: Train and deploy PyTorch at scale. Lightning Fabric: Expert control. Lightning Data: Blazing fast, distributed streaming of training data from cloud storage. Lightning Apps: Build AI products and ML workflows. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``2.2.1``|``-CUDA-12.1.1``|``foss/2023a`` - -### liknorm - -Moments of the product of an exponential-family likelihood with a Normal distribution. - -*homepage*: - -version |toolchain ----------|----------------- -``1.5.2``|``GCCcore/7.3.0`` - -### likwid - -Likwid stands for Like I knew what I am doing. This project contributes easy to use command line tools for Linux to support programmers in developing high performance multi threaded programs. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------------------------------- -``4.0.1``|``GNU/4.9.3-2.25`` -``4.1.0``|``GCCcore/4.9.3`` -``4.2.0``|``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``foss/2017a``, ``intel/2017a`` -``4.3.2``|``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``5.0.1``|``GCCcore/8.3.0`` -``5.1.0``|``GCCcore/9.3.0`` -``5.2.0``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``iccifort/2020.4.304``, ``intel-compilers/2021.2.0`` -``5.2.1``|``GCC/11.2.0`` -``5.2.2``|``GCC/11.3.0``, ``GCC/12.3.0`` -``5.3.0``|``GCC/12.3.0``, ``GCC/13.2.0`` - -### lil-aretomo - -A lightweight Python API for AreTomo. - -*homepage*: - -version |toolchain ----------|-------------- -``0.1.1``|``foss/2023a`` - -### limix - -Limix is a flexible and efficient linear mixed model library with interfaces to Python. Genomic analyses require flexible models that can be adapted to the needs of the user. Limix is smart about how particular models are fitted to save computational cost. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``2.0.4``|``-Python-3.6.6``|``foss/2018b`` - -### LinBox - -C++ library for exact, high-performance linear algebra - -*homepage*: - -version |toolchain ----------|------------------------------ -``1.4.0``|``foss/2016a`` -``1.7.0``|``gfbf/2022a``, ``gfbf/2023b`` - -### line_profiler - -line_profiler is a module for doing line-by-line profiling of functions. kernprof is a convenient script for running either line_profiler or the Python standard library's cProfile or profile modules, depending on what is available. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------ -``3.1.0``|``-Python-3.8.2``|``foss/2020a`` -``3.5.1``| |``foss/2021b`` -``4.0.0``| |``foss/2022a`` -``4.1.1``| |``GCCcore/12.2.0`` -``4.1.2``| |``GCCcore/13.2.0`` - -### Lingeling - -One of the design principles of the state-of-the-art SAT solver Lingeling is to use as compact data structures as possible. These reduce memory usage, increase cache efficiency and thus improve runtime, particularly, when using multiple solver instances on multi-core machines, as in our parallel portfolio solver Plingeling and our cube and conquer solver Treengeling. - -*homepage*: - -version|toolchain --------|------------- -``bcp``|``GCC/9.3.0`` - -### LISFLOOD-FP - -The LISFLOOD-FP is a raster-based hydrodynamic model originally developed by the University of Bristol. It has undergone extensive development since conception and includes a collection of numerical schemes implemented to solve a variety of mathematical approximations of the 2D shallow water equations of different complexity. The local inertia solver, known as the ACC solver, is widely used to simulate floods with gradually-varying, subcritical flow over sufficiently rough surfaces with Manning’s coefficient of at least 0.03. It has a version with CPU-specific optimisations and enhanced with a subgrid channel model. LISFLOOD-FP also includes second-order discontinuous Galerkin (DG2) and first-order finite volume (FV1) solvers of the full shallow water equations for modelling a wide range of flows, including rapidly-propagating, supercritical flows, shock waves, or flows over very smooth surfaces. The DG2/FV1 solvers are parallelised for the multi-core CPU architecture, but do not integrate with the subgrid channel model nor with the CPU-specific optimisations. - -*homepage*: - -version|versionsuffix |toolchain --------|----------------|--------------- -``8.1``| |``gompi/2022a`` -``8.1``|``-CUDA-11.7.0``|``gompi/2022a`` - -### lit - -lit is a portable tool for executing LLVM and Clang style test suites, summarizing their results, and providing indication of failures. - -*homepage*: - -version |toolchain -----------|------------------ -``18.1.2``|``GCCcore/12.3.0`` - -### LittleCMS - -Little CMS intends to be an OPEN SOURCE small-footprint color management engine, with special focus on accuracy and performance. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------------------------------------------------------------------------------------------- -``2.7`` |``intel/2016a`` -``2.8`` |``GCCcore/6.4.0``, ``foss/2016b``, ``intel/2016b``, ``intel/2017a`` -``2.9`` |``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``foss/2017b``, ``foss/2018a``, ``intel/2017b`` -``2.11`` |``GCCcore/10.2.0`` -``2.12`` |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``2.13.1``|``GCCcore/11.3.0`` -``2.14`` |``GCCcore/12.2.0`` -``2.15`` |``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### LLDB - -The debugger component of the LLVM project - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|----------------- -``11.0.0``|``-Python-3.8.2``|``GCCcore/9.3.0`` - -### LLVM - -The LLVM Core libraries provide a modern source- and target-independent optimizer, along with code generation support for many popular CPUs (as well as some less common ones!) These libraries are built around a well specified code representation known as the LLVM intermediate representation ("LLVM IR"). The LLVM Core libraries are well documented, and it is particularly easy to invent your own language (or port an existing compiler) to use LLVM as an optimizer and code generator. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|------------------------------------------------------------------------ -``3.7.1`` | |``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` -``3.8.0`` | |``foss/2016a``, ``intel/2016a`` -``3.8.1`` | |``GCCcore/4.9.3``, ``foss/2016b``, ``intel/2016b`` -``3.9.0`` | |``foss/2016b``, ``intel/2016b`` -``3.9.1`` | |``foss/2017a`` -``4.0.0`` | |``foss/2017a``, ``intel/2017a`` -``4.0.1`` | |``intel/2017a``, ``intel/2017b`` -``5.0.0`` | |``foss/2017b``, ``fosscuda/2017b``, ``intel/2017b``, ``intelcuda/2017b`` -``5.0.1`` | |``GCCcore/6.4.0`` -``6.0.0`` | |``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``7.0.0`` | |``GCCcore/7.2.0``, ``GCCcore/7.3.0`` -``7.0.1`` | |``GCCcore/8.2.0`` -``8.0.1`` | |``GCCcore/8.3.0`` -``9.0.0`` | |``GCCcore/8.3.0`` -``9.0.1`` | |``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``10.0.0``| |``GCCcore/8.3.0`` -``10.0.1``| |``GCCcore/10.2.0`` -``11.0.0``| |``GCCcore/10.2.0`` -``11.1.0``| |``GCCcore/10.3.0`` -``12.0.1``| |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``14.0.3``| |``GCCcore/11.3.0`` -``14.0.6``|``-llvmlite``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``15.0.5``| |``GCCcore/12.2.0`` -``16.0.6``| |``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### LMDB - -LMDB is a fast, memory-efficient database. With memory-mapped files, it has the read performance of a pure in-memory database while retaining the persistence of standard disk-based databases. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------- -``0.9.18``|``foss/2016a`` -``0.9.21``|``GCCcore/6.4.0``, ``intel/2017a`` -``0.9.22``|``GCCcore/7.3.0`` -``0.9.23``|``GCCcore/8.2.0`` -``0.9.24``|``GCCcore/10.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``0.9.28``|``GCCcore/10.3.0`` -``0.9.29``|``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``0.9.31``|``GCCcore/12.3.0`` - -### LMfit - -Lmfit provides a high-level interface to non-linear optimization and curve fitting problems for Python - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|----------------------------------------------- -``0.9.9`` |``-Python-3.6.4`` |``intel/2018a`` -``0.9.14``|``-Python-2.7.15``|``intel/2018b`` -``1.0.0`` |``-Python-3.7.4`` |``foss/2019b``, ``intel/2019b`` -``1.0.1`` |``-Python-3.8.2`` |``foss/2020a`` -``1.0.2`` | |``foss/2020b``, ``intel/2020b`` -``1.0.3`` | |``foss/2021a``, ``foss/2022a``, ``intel/2022a`` -``1.2.1`` | |``foss/2021b`` - -### Lmod - -Lmod is a Lua based module system. Modules allow for dynamic modification of a user's environment under Unix systems. See www.tacc.utexas.edu/tacc-projects/lmod for a complete description. Lmod is a new implementation that easily handles the MODULEPATH Hierarchical problem. It is drop-in replacement for TCL/C modules and reads TCL modulefiles directly. - -*homepage*: - -version |toolchain ----------|---------------------------- -``5.2`` |``GCC/4.8.2`` -``5.2.5``|``GCC/4.8.2`` -``5.3`` |``GCC/4.8.2`` -``5.4`` |``GCC/4.8.2`` -``5.4.2``|``GCC/4.8.2`` -``5.5`` |``GCC/4.8.2`` -``5.5.1``|``GCC/4.8.2`` -``5.6`` |``GCC/4.8.2`` -``5.7`` |``GCC/4.8.2`` -``5.8`` |``GCC/4.8.2`` -``5.8.5``|``GCC/4.8.2`` -``5.9`` |``GCC/4.8.2``, ``GCC/4.8.4`` -``6.4.2``|``system`` -``7.3`` |``system`` - -### lmoments3 - -Estimate linear moments for statistical distribution functions. - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.6``|``foss/2022a`` - -### LncLOOM - -LncLOOM is a graph-based framework that uses integer programming to identify combinations of short motifs that are deeply conserved in rapidly evolving sequences. - -*homepage*: - -version|toolchain --------|-------------- -``2.0``|``foss/2020b`` - -### LocARNA - -LocARNA is a collection of alignment tools for the structural analysis of RNA. Given a set of RNA sequences, LocARNA simultaneously aligns and predicts common structures for your RNAs. In this way, LocARNA performs Sankoff-like alignment and is in particular suited for analyzing sets of related RNAs without known common structure. - -*homepage*: - -version |versionsuffix |toolchain ------------|-----------------|-------------- -``1.9.2`` | |``foss/2016b`` -``1.9.2.2``|``-Python-3.6.6``|``foss/2018b`` -``1.9.2.3``| |``foss/2021b`` - -### LoFreq - -Fast and sensitive variant calling from next-gen sequencing data - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|------------------------------------------------ -``2.1.2`` |``-Python-2.7.12``|``intel/2016b`` -``2.1.3.1``|``-Python-2.7.14``|``foss/2017b``, ``intel/2017b``, ``intel/2018a`` - -### Log-Log4perl - -Log4perl - -*homepage*: - -version |toolchain ---------|-------------- -``1.47``|``foss/2016a`` - -### logaddexp - -C library that implements the logarithm of the sum of exponentiations. Inspired by NumPy's logaddexp function. - -*homepage*: - -version |toolchain ----------|----------------- -``1.0.3``|``GCCcore/7.3.0`` - -### LOHHLA - -LOHHLA, Loss Of Heterozygosity in Human Leukocyte Antigen, a computational tool to evaluate HLA loss using next-generation sequencing data. - -*homepage*: - -version |versionsuffix|toolchain ---------------|-------------|-------------- -``2018.11.05``|``-R-3.5.1`` |``foss/2018b`` - -### Loki - -Loki is a C++ library of designs, containing flexible implementations of common design patterns and idioms. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------------- -``0.1.7``|``foss/2016a``, ``foss/2016b``, ``intel/2016a``, ``intel/2016b``, ``intel/2018a`` - -### longestrunsubsequence - -Implementation of a solver for the Longest Run Subsequence Problem. Given a sequence as input, compute a longest subsequence such that there is at most one run for every character. - -*homepage*: - -version |toolchain ----------|------------------ -``1.0.1``|``GCCcore/10.3.0`` - -### longread_umi - -A collection of scripts for processing longread UMI data. - -*homepage*: - -version |toolchain ----------|-------------- -``0.3.2``|``foss/2020b`` - -### Longshot - -Longshot is a variant calling tool for diploid genomes using long error prone reads such as Pacific Biosciences (PacBio) SMRT and Oxford Nanopore Technologies (ONT). It takes as input an aligned BAM file and outputs a phased VCF file with variants and haplotype information. It can also output haplotype-separated BAM files that can be used for downstream analysis. Currently, it only calls single nucleotide variants (SNVs). - -*homepage*: - -version |toolchain ----------|------------------------------------- -``0.3.4``|``GCCcore/8.2.0`` -``0.4.1``|``GCC/7.3.0-2.30``, ``GCCcore/8.3.0`` -``0.4.3``|``GCCcore/10.2.0`` -``0.4.5``|``GCCcore/11.3.0`` - -### loompy - -Python implementation of the Loom file format, an efficient file format for large omics datasets - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------- -``3.0.6``|``intel/2020b`` -``3.0.7``|``foss/2021a``, ``foss/2021b``, ``foss/2022a``, ``foss/2023a``, ``intel/2021b`` - -### loomR - -An R interface for loom files - -*homepage*: - -version |versionsuffix|toolchain -------------------|-------------|-------------- -``0.2.0-20180425``|``-R-4.2.1`` |``foss/2022a`` -``0.2.0-20180425``|``-R-4.2.2`` |``foss/2022b`` -``0.2.0-20180425``|``-R-4.3.2`` |``foss/2023a`` - -### LoopTools - -LoopTools is a package for evaluation of scalar and tensor one-loop integrals. It is based on the FF package by G.J. van Oldenborgh. - -*homepage*: - -version |toolchain ---------|-------------- -``2.15``|``GCC/12.3.0`` - -### LoRDEC - -Program for correcting sequencing errors in long reads (e.g., PacBio, Oxford Nanopore) using highly accurate short reads (e.g., Illumina). - -*homepage*: - -version|toolchain --------|--------------- -``0.9``|``gompi/2022a`` - -### LPeg - -LPeg is a new pattern-matching library for Lua, based on Parsing Expression Grammars (PEGs). - -*homepage*: - -version |toolchain ----------|------------------ -``1.0.2``|``GCCcore/10.2.0`` - -### LPJmL - -Dynamic global vegetation model with managed land and river routing - -*homepage*: - -version |toolchain ------------|--------------- -``4.0.003``|``iimpi/2020b`` - -### lpsolve - -Mixed Integer Linear Programming (MILP) solver - -*homepage*: - -version |toolchain -------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``5.5.2.5`` |``GCC/6.4.0-2.28``, ``GCC/8.3.0``, ``foss/2018a``, ``iccifort/2017.4.196-GCC-6.4.0-2.28``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1``, ``iccifort/2019.5.281``, ``intel/2017a``, ``intel/2018b`` -``5.5.2.11``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0``, ``GCC/9.3.0`` - -### lrslib - -lrslib is a self-contained ANSI C implementation of the reverse search algorithm for vertex enumeration/convex hull problems - -*homepage*: - -version |toolchain ---------|-------------------------------- -``6.2`` |``intel/2018b`` -``7.0a``|``gompi/2019a`` -``7.2`` |``gompi/2022a``, ``gompi/2023b`` - -### LS-PrePost - -LS-PrePost is an advanced pre and post-processor that is delivered free with LS-DYNA. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|---------- -``4.6`` |``-centos6`` |``system`` -``4.6`` |``-centos7`` |``system`` -``4.6.24``| |``system`` -``4.7.8`` | |``system`` -``4.7.15``| |``system`` - -### LSD2 - -Least-squares methods to estimate rates and dates from phylogenies - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------- -``1.9.7``|``GCCcore/9.3.0`` -``2.2`` |``GCCcore/10.2.0`` -``2.3`` |``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``2.4.1``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### LSMS - -LSMS benchmark, part of CORAL suite - -*homepage*: - -version |toolchain -------------|-------------- -``3_rev237``|``foss/2016a`` - -### LTR_retriever - -LTR_retriever is a highly accurate and sensitive program for identification of LTR retrotransposons; The LTR Assembly Index (LAI) is also included in this package. - -*homepage*: - -version |toolchain ----------|------------------------------ -``2.9.0``|``foss/2020b``, ``foss/2022a`` - -### LtrDetector - -A modern tool-suite for detectinglong terminal repeat retrotransposons de-novo onthe genomic scale - -*homepage*: - -version|versionsuffix |toolchain --------|-----------------|--------------- -``1.0``|``-Python-3.7.4``|``intel/2019b`` - -### Lua - -Lua is a powerful, fast, lightweight, embeddable scripting language. Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, runs by interpreting bytecode for a register-based virtual machine, and has automatic memory management with incremental garbage collection, making it ideal for configuration, scripting, and rapid prototyping. - -*homepage*: - -version |toolchain ------------|--------------------------------------------------------------------------------------- -``5.1.4-5``|``GCC/4.8.2`` -``5.1.4-8``|``GCC/4.8.2``, ``GCC/4.8.4``, ``system`` -``5.1.5`` |``GCCcore/7.3.0``, ``GCCcore/8.3.0`` -``5.2.4`` |``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``5.3.4`` |``GCCcore/7.2.0``, ``system`` -``5.3.5`` |``GCCcore/10.2.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``system`` -``5.4.2`` |``GCCcore/10.2.0`` -``5.4.3`` |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``5.4.4`` |``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``5.4.6`` |``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### LuaJIT - -LuaJIT is a Just-In-Time Compiler (JIT) for the Lua programming language. Lua is a powerful, dynamic and light-weight programming language. It may be embedded or used as a general-purpose, stand-alone language. - -*homepage*: - -version |toolchain -------------------------|-------------- -``2.0.2`` |``GCC/4.9.2`` -``2.1.0-beta3_20230602``|``GCC/11.3.0`` - -### LuaJIT2-OpenResty - -openresty/luajit2 - OpenResty's maintained branch of LuaJIT. LuaJIT is a Just-In-Time Compiler (JIT) for the Lua programming language. Lua is a powerful, dynamic and light-weight programming language. It may be embedded or used as a general-purpose, stand-alone language. - -*homepage*: - -version |toolchain -----------------|------------- -``2.1-20220411``|``GCC/9.3.0`` - -### LuaRocks - -LuaRocks is the package manager for Lua modules. It allows you to create and install Lua modules as self-contained packages called rocks. - -*homepage*: - -version |toolchain ----------|------------------ -``3.9.2``|``GCCcore/11.3.0`` - -### Lucene-Geo-Gazetteer - -A command line gazetteer built around the Geonames.org dataset, that uses the Apache Lucene library to create a searchable gazetteer. - -*homepage*: - -version |toolchain -------------|---------- -``20170718``|``system`` - -### LUMPY - -A probabilistic framework for structural variant discovery. - -*homepage*: - -version |toolchain -----------|-------------- -``0.2.13``|``foss/2016b`` -``0.3.1`` |``foss/2020b`` - -### LUSCUS - -Luscus is the program for graphical display and editing of molecular systems. - -*homepage*: - -version |toolchain ----------|------------------------------- -``0.8.6``|``foss/2018b``, ``intel/2018a`` - -### lwgrp - -The light-weight group library defines data structures and collective operations to group MPI processes as an ordered set. Such groups are useful as substitutes for MPI communicators when the overhead of communicator creation is too costly. For example, certain sorting algorithms recursively divide processes into subgroups as the sort algorithm progresses. These groups may be different with each invocation, so that it is inefficient to create and destroy communicators during the sort routine. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------ -``1.0.2``|``gompi/2019a``, ``gompi/2020a``, ``iimpi/2019a``, ``iimpi/2020a`` -``1.0.3``|``gompi/2020b`` -``1.0.5``|``gompi/2022a``, ``gompi/2023a`` - -### lxml - -The lxml XML toolkit is a Pythonic binding for the C libraries libxml2 and libxslt. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------------------------------- -``3.5.0``|``-Python-2.7.11``|``intel/2016a`` -``3.6.0``|``-Python-2.7.11``|``intel/2016a`` -``3.6.4``|``-Python-2.7.12``|``intel/2016b`` -``4.0.0``|``-Python-2.7.13``|``intel/2017a`` -``4.1.1``|``-Python-2.7.14``|``intel/2017b`` -``4.2.0``|``-Python-2.7.14``|``foss/2018a``, ``intel/2018a`` -``4.2.0``|``-Python-3.6.4`` |``intel/2018a`` -``4.2.5``|``-Python-2.7.15``|``foss/2018b``, ``intel/2018b`` -``4.2.5``|``-Python-3.6.6`` |``foss/2018b`` -``4.3.3``| |``GCCcore/8.2.0`` -``4.4.2``| |``GCCcore/8.3.0`` -``4.5.2``| |``GCCcore/9.3.0`` -``4.6.2``| |``GCCcore/10.2.0`` -``4.6.3``| |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``4.9.1``| |``GCCcore/11.3.0`` -``4.9.2``| |``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``4.9.3``| |``GCCcore/13.2.0`` - -### lynx - -lynx is an alphanumeric display oriented World-Wide Web Client - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``2.8.9``|``-develop`` |``foss/2016b`` - -### lz4 - -LZ4 is lossless compression algorithm, providing compression speed at 400 MB/s per core. It features an extremely fast decoder, with speed in multiple GB/s per core. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------ -``1.8.2``|``GCCcore/5.4.0``, ``GCCcore/6.4.0`` -``1.9.0``|``GCCcore/7.3.0`` -``1.9.1``|``GCCcore/8.2.0`` -``1.9.2``|``GCCcore/10.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.9.3``|``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``1.9.4``|``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0`` - -### LZO - -Portable lossless data compression library - -*homepage*: - -version |toolchain ---------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.09``|``intel/2016b``, ``intel/2017b`` -``2.10``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``foss/2016a``, ``foss/2016b``, ``foss/2017a``, ``foss/2018a``, ``foss/2018b``, ``fosscuda/2018b``, ``intel/2017a`` - -## M - - -[M1QN3](#m1qn3) - [M3GNet](#m3gnet) - [M4](#m4) - [m4ri](#m4ri) - [m4rie](#m4rie) - [MACH](#mach) - [MACS2](#macs2) - [MACS3](#macs3) - [MACSE](#macse) - [maeparser](#maeparser) - [MAFFT](#mafft) - [MAGeCK](#mageck) - [magick](#magick) - [Magics](#magics) - [magma](#magma) - [MAGMA-gene-analysis](#magma-gene-analysis) - [MagresPython](#magrespython) - [mahotas](#mahotas) - [MAJIQ](#majiq) - [make](#make) - [makedepend](#makedepend) - [makedepf90](#makedepf90) - [makefun](#makefun) - [makeinfo](#makeinfo) - [MAKER](#maker) - [Mako](#mako) - [Mamba](#mamba) - [mandrake](#mandrake) - [mannkendall](#mannkendall) - [manta](#manta) - [mapDamage](#mapdamage) - [Maple](#maple) - [MapSplice](#mapsplice) - [Maq](#maq) - [MariaDB](#mariadb) - [MariaDB-connector-c](#mariadb-connector-c) - [Markdown](#markdown) - [MARS](#mars) - [Mash](#mash) - [Mashtree](#mashtree) - [MaSuRCA](#masurca) - [Mathematica](#mathematica) - [MathGL](#mathgl) - [MATIO](#matio) - [MATLAB](#matlab) - [MATLAB-Engine](#matlab-engine) - [matlab-proxy](#matlab-proxy) - [matplotlib](#matplotlib) - [matplotlib-inline](#matplotlib-inline) - [MATSim](#matsim) - [maturin](#maturin) - [Maude](#maude) - [mauveAligner](#mauvealigner) - [Maven](#maven) - [mawk](#mawk) - [MaxBin](#maxbin) - [MaxQuant](#maxquant) - [mayavi](#mayavi) - [maze](#maze) - [MbedTLS](#mbedtls) - [MBROLA](#mbrola) - [mbuffer](#mbuffer) - [mc](#mc) - [MCL](#mcl) - [MCR](#mcr) - [mctc-lib](#mctc-lib) - [mcu](#mcu) - [MDAnalysis](#mdanalysis) - [MDBM](#mdbm) - [MDI](#mdi) - [MDSplus](#mdsplus) - [MDSplus-Java](#mdsplus-java) - [MDSplus-Python](#mdsplus-python) - [mdtest](#mdtest) - [MDTraj](#mdtraj) - [mdust](#mdust) - [meboot](#meboot) - [medaka](#medaka) - [medImgProc](#medimgproc) - [MedPy](#medpy) - [Meep](#meep) - [MEGA](#mega) - [MEGACC](#megacc) - [MEGAHIT](#megahit) - [Megalodon](#megalodon) - [MEGAN](#megan) - [Meld](#meld) - [MEM](#mem) - [MEME](#meme) - [memkind](#memkind) - [memory-profiler](#memory-profiler) - [MEMOTE](#memote) - [memtester](#memtester) - [meRanTK](#merantk) - [MERCKX](#merckx) - [Mercurial](#mercurial) - [Mesa](#mesa) - [Mesa-demos](#mesa-demos) - [meshalyzer](#meshalyzer) - [meshio](#meshio) - [meshtool](#meshtool) - [Meson](#meson) - [meson-python](#meson-python) - [Mesquite](#mesquite) - [MESS](#mess) - [MetaBAT](#metabat) - [MetaboAnalystR](#metaboanalystr) - [MetaDecoder](#metadecoder) - [metaerg](#metaerg) - [MetaEuk](#metaeuk) - [MetaGeneAnnotator](#metageneannotator) - [Metagenome-Atlas](#metagenome-atlas) - [Metal](#metal) - [MetalWalls](#metalwalls) - [MetaMorpheus](#metamorpheus) - [MetaPhlAn](#metaphlan) - [MetaPhlAn2](#metaphlan2) - [metaWRAP](#metawrap) - [Metaxa2](#metaxa2) - [methylartist](#methylartist) - [MethylDackel](#methyldackel) - [methylpy](#methylpy) - [METIS](#metis) - [mfqe](#mfqe) - [mgen](#mgen) - [mgltools](#mgltools) - [mhcflurry](#mhcflurry) - [mhcnuggets](#mhcnuggets) - [MICOM](#micom) - [MicrobeAnnotator](#microbeannotator) - [microctools](#microctools) - [MiGEC](#migec) - [MIGRATE-N](#migrate-n) - [Mikado](#mikado) - [Miller](#miller) - [mimalloc](#mimalloc) - [MINC](#minc) - [MinCED](#minced) - [Mini-XML](#mini-xml) - [miniasm](#miniasm) - [minibar](#minibar) - [MiniCARD](#minicard) - [Miniconda2](#miniconda2) - [Miniconda3](#miniconda3) - [minieigen](#minieigen) - [Miniforge3](#miniforge3) - [Minimac4](#minimac4) - [minimap2](#minimap2) - [Minipolish](#minipolish) - [MiniSat](#minisat) - [minizip](#minizip) - [MINPACK](#minpack) - [MinPath](#minpath) - [MIRA](#mira) - [miRDeep2](#mirdeep2) - [Mish-Cuda](#mish-cuda) - [misha](#misha) - [MITgcmutils](#mitgcmutils) - [MITObim](#mitobim) - [MitoHiFi](#mitohifi) - [MitoZ](#mitoz) - [MiXCR](#mixcr) - [MixMHC2pred](#mixmhc2pred) - [mkl-dnn](#mkl-dnn) - [mkl-service](#mkl-service) - [mkl_fft](#mkl_fft) - [ml-collections](#ml-collections) - [ml_dtypes](#ml_dtypes) - [MLC](#mlc) - [MLflow](#mlflow) - [mlpack](#mlpack) - [MLxtend](#mlxtend) - [mm-common](#mm-common) - [Mmg](#mmg) - [MMSEQ](#mmseq) - [MMseqs2](#mmseqs2) - [mmtf-cpp](#mmtf-cpp) - [MNE-Python](#mne-python) - [MOABB](#moabb) - [MOABS](#moabs) - [MOB-suite](#mob-suite) - [ModelTest-NG](#modeltest-ng) - [MODFLOW](#modflow) - [modred](#modred) - [MOFA2](#mofa2) - [Molcas](#molcas) - [mold](#mold) - [Molden](#molden) - [molecularGSM](#moleculargsm) - [Molekel](#molekel) - [molmod](#molmod) - [Molpro](#molpro) - [MONA](#mona) - [MONAI](#monai) - [MONAI-Label](#monai-label) - [mongolite](#mongolite) - [Mono](#mono) - [Monocle3](#monocle3) - [moonjit](#moonjit) - [MOOSE](#moose) - [mordecai](#mordecai) - [MoreRONN](#moreronn) - [morphosamplers](#morphosamplers) - [mosdepth](#mosdepth) - [Mothur](#mothur) - [motif](#motif) - [MotionCor2](#motioncor2) - [MotionCor3](#motioncor3) - [motionSegmentation](#motionsegmentation) - [MoviePy](#moviepy) - [mpath](#mpath) - [MPB](#mpb) - [MPC](#mpc) - [MPFI](#mpfi) - [MPFR](#mpfr) - [mpi4py](#mpi4py) - [MPICH](#mpich) - [MPICH2](#mpich2) - [mpifileutils](#mpifileutils) - [mpiP](#mpip) - [MPJ-Express](#mpj-express) - [mpmath](#mpmath) - [MrBayes](#mrbayes) - [mrcfile](#mrcfile) - [MRChem](#mrchem) - [MRCPP](#mrcpp) - [MRIcron](#mricron) - [MRPRESSO](#mrpresso) - [MRtrix](#mrtrix) - [MSFragger](#msfragger) - [msgpack-c](#msgpack-c) - [MSM](#msm) - [MSPC](#mspc) - [msprime](#msprime) - [mstore](#mstore) - [MTL4](#mtl4) - [MuJoCo](#mujoco) - [mujoco-py](#mujoco-py) - [multicharge](#multicharge) - [multichoose](#multichoose) - [MultilevelEstimators](#multilevelestimators) - [MultiNest](#multinest) - [multiprocess](#multiprocess) - [MultiQC](#multiqc) - [Multiwfn](#multiwfn) - [muMerge](#mumerge) - [MUMmer](#mummer) - [mumott](#mumott) - [MUMPS](#mumps) - [muParser](#muparser) - [muparserx](#muparserx) - [MuPeXI](#mupexi) - [MUSCLE](#muscle) - [MUSCLE3](#muscle3) - [MuSiC](#music) - [MUST](#must) - [MuTect](#mutect) - [mutil](#mutil) - [MVAPICH2](#mvapich2) - [MView](#mview) - [mxml](#mxml) - [mxmlplus](#mxmlplus) - [MXNet](#mxnet) - [MyCC](#mycc) - [mygene](#mygene) - [MyMediaLite](#mymedialite) - [mympingpong](#mympingpong) - [Myokit](#myokit) - [mypy](#mypy) - [MySQL](#mysql) - [MySQL-python](#mysql-python) - [mysqlclient](#mysqlclient) - - -### M1QN3 - -A solver of large-scale unconstrained minimization problems - -*homepage*: - -version|toolchain --------|-------------- -``3.3``|``GCC/10.3.0`` - -### M3GNet - -" M3GNet is a new materials graph neural network architecture that incorporates 3-body interactions. A key difference with prior materials graph implementations such as MEGNet is the addition of the coordinates for atoms and the 3×3 lattice matrix in crystals, which are necessary for obtaining tensorial quantities such as forces and stresses via auto-differentiation. - -*homepage*: - -version |toolchain ----------|-------------- -``0.2.4``|``foss/2022a`` - -### M4 - -GNU M4 is an implementation of the traditional Unix macro processor. It is mostly SVR4 compatible although it has some extensions (for example, handling more than 9 positional parameters to macros). GNU M4 also has built-in functions for including files, running shell commands, doing arithmetic, etc. - -*homepage*: - -version |toolchain -----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.4.16``|``GCC/4.8.1``, ``GCC/4.8.2``, ``system`` -``1.4.17``|``GCC/4.8.2``, ``GCC/4.8.4``, ``GCC/4.9.2``, ``GCC/4.9.2-binutils-2.25``, ``GCC/4.9.3``, ``GCC/4.9.3-2.25``, ``GCC/4.9.3-binutils-2.25``, ``GCC/5.1.0-binutils-2.25``, ``GCC/5.2.0``, ``GCC/5.4.0-2.26``, ``GCCcore/4.9.2``, ``GCCcore/4.9.3``, ``GCCcore/4.9.4``, ``GCCcore/5.3.0``, ``GCCcore/5.4.0``, ``GCCcore/6.1.0``, ``GCCcore/6.2.0``, ``GNU/4.9.2-2.25``, ``GNU/4.9.3-2.25``, ``GNU/5.1.0-2.25``, ``foss/2016.04``, ``foss/2016a``, ``foss/2016b``, ``gimkl/2.11.5``, ``intel/2016.02-GCC-4.9``, ``intel/2016a``, ``intel/2016b``, ``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25``, ``system`` -``1.4.18``|``FCC/4.5.0``, ``GCCcore/10.1.0``, ``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.1.0``, ``GCCcore/5.3.0``, ``GCCcore/5.4.0``, ``GCCcore/5.5.0``, ``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.1.0``, ``GCCcore/7.2.0``, ``GCCcore/7.3.0``, ``GCCcore/7.4.0``, ``GCCcore/8.1.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/8.4.0``, ``GCCcore/9.1.0``, ``GCCcore/9.2.0``, ``GCCcore/9.3.0``, ``GCCcore/system``, ``system`` -``1.4.19``|``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/11.4.0``, ``GCCcore/12.1.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.1.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0``, ``GCCcore/14.1.0``, ``GCCcore/9.4.0``, ``GCCcore/9.5.0``, ``system`` - -### m4ri - -M4RI is a library for fast arithmetic with dense matrices over F2. - -*homepage*: - -version |toolchain -------------|------------------------------ -``20200125``|``GCC/11.3.0``, ``GCC/13.2.0`` - -### m4rie - -M4RIE is a library for fast arithmetic with dense matrices. - -*homepage*: - -version |toolchain -------------|------------------------------ -``20200125``|``GCC/11.3.0``, ``GCC/13.2.0`` - -### MACH - -MACH 1.0 is a Markov Chain based haplotyper that can resolve long haplotypes or infer missing genotypes in samples of unrelated individuals. - -*homepage*: - -version |toolchain -----------|---------- -``1.0.18``|``system`` - -### MACS2 - -Model Based Analysis for ChIP-Seq data - -*homepage*: - -version |versionsuffix |toolchain -------------------|------------------|---------------------------------------------- -``2.1.1.20160309``|``-Python-2.7.14``|``intel/2017b`` -``2.1.2.1`` |``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``2.1.2.1`` |``-Python-2.7.15``|``intel/2019a`` -``2.2.5`` |``-Python-3.6.6`` |``foss/2018b`` -``2.2.7.1`` | |``foss/2021a``, ``foss/2021b`` -``2.2.9.1`` | |``foss/2022a``, ``foss/2022b``, ``foss/2023a`` - -### MACS3 - -Model Based Analysis for ChIP-Seq data - -*homepage*: - -version |toolchain ------------|------------------------------ -``3.0.0`` |``foss/2022b`` -``3.0.0b2``|``foss/2022b`` -``3.0.1`` |``foss/2022b``, ``gfbf/2023a`` - -### MACSE - -MACSE aligns coding NT sequences with respect to their AA translation while allowing NT sequences to contain multiple frameshifts and/or stop codons. MACSE is hence the first automatic solution to align protein-coding gene datasets containing non-functional sequences (pseudogenes) without disrupting the underlying codon structure. - -*homepage*: - -version |versionsuffix|toolchain ---------|-------------|---------- -``2.06``|``-Java-15`` |``system`` - -### maeparser - -maeparser is a parser for Schrodinger Maestro files. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------ -``1.2.2``|``gompi/2019a``, ``iimpi/2019a`` -``1.3.0``|``gompi/2019b``, ``gompi/2021a``, ``gompi/2022a``, ``iimpi/2020a`` -``1.3.1``|``gompi/2023a`` - -### MAFFT - -MAFFT is a multiple sequence alignment program for unix-like operating systems. It offers a range of multiple alignment methods, L-INS-i (accurate; for alignment of <∼200 sequences), FFT-NS-2 (fast; for alignment of <∼30,000 sequences), etc. - -*homepage*: - -version |versionsuffix |toolchain ----------|--------------------|--------------------------------------------------------------------------------------- -``7.305``|``-with-extensions``|``foss/2016b`` -``7.397``|``-with-extensions``|``intel/2018a`` -``7.427``|``-with-extensions``|``foss/2018b``, ``intel/2018b`` -``7.429``|``-with-extensions``|``GCC/8.2.0-2.31.1`` -``7.453``|``-with-extensions``|``GCC/8.3.0``, ``GCC/9.3.0``, ``gompi/2020a``, ``iccifort/2019.5.281``, ``iimpi/2020a`` -``7.470``|``-with-extensions``|``GCC/9.3.0``, ``gompi/2020a`` -``7.471``|``-with-extensions``|``iimpi/2020a`` -``7.475``|``-with-extensions``|``GCC/10.2.0``, ``gompi/2020b`` -``7.487``|``-with-extensions``|``gompi/2021a`` -``7.490``|``-with-extensions``|``GCC/10.3.0``, ``GCC/11.2.0``, ``gompi/2021b`` -``7.505``|``-with-extensions``|``GCC/11.3.0``, ``GCC/12.2.0`` -``7.520``|``-with-extensions``|``GCC/12.3.0`` - -### MAGeCK - -Model-based Analysis of Genome-wide CRISPR-Cas9 Knockout (MAGeCK) is a computational tool to identify important genes from the recent genome-scale CRISPR-Cas9 knockout screens (or GeCKO) technology. MAGeCK is developed by Wei Li and Han Xu from Dr. Xiaole Shirley Liu's lab at Dana-Farber Cancer Institute, and is being actively updated by Wei Li lab from Children's National Medical Center. - -*homepage*: - -version |toolchain ------------|------------------------------ -``0.5.9.4``|``foss/2021a``, ``foss/2022a`` -``0.5.9.5``|``gfbf/2022b`` - -### magick - -R bindings to the open-source image processing library ImageMagick - -*homepage*: - -version|versionsuffix|toolchain --------|-------------|-------------- -``2.0``|``-R-3.5.1`` |``foss/2018b`` - -### Magics - -Magics is ECMWF's meteorological plotting software and can be either accessed directly through its Python or Fortran interfaces or by using Metview. - -*homepage*: - -version |toolchain -----------|--------------- -``4.13.0``|``gompi/2022a`` - -### magma - -The MAGMA project aims to develop a dense linear algebra library similar to LAPACK but for heterogeneous/hybrid architectures, starting with current Multicore+GPU systems. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|------------------------------------------------------------------------------------------------------------------------ -``2.3.0``| |``fosscuda/2017b``, ``intelcuda/2017b`` -``2.3.0``|``-CUDA-9.1.85``|``foss/2018a`` -``2.4.0``| |``fosscuda/2018b`` -``2.5.0``| |``fosscuda/2018b`` -``2.5.1``| |``fosscuda/2019a``, ``fosscuda/2019b`` -``2.5.4``| |``fosscuda/2019a``, ``fosscuda/2019b``, ``fosscuda/2020a``, ``fosscuda/2020b``, ``intelcuda/2019b``, ``intelcuda/2020b`` -``2.6.1``|``-CUDA-11.3.1``|``foss/2021a`` -``2.6.2``|``-CUDA-11.4.1``|``foss/2021b`` -``2.6.2``|``-CUDA-11.5.2``|``foss/2021b`` -``2.6.2``|``-CUDA-11.7.0``|``foss/2022a`` -``2.7.1``|``-CUDA-11.7.0``|``foss/2022b`` -``2.7.1``|``-CUDA-12.0.0``|``foss/2022b`` -``2.7.2``|``-CUDA-12.1.1``|``foss/2023a`` -``2.7.2``|``-CUDA-12.4.0``|``foss/2023b`` - -### MAGMA-gene-analysis - -MAGMA is a tool for gene analysis and generalized gene-set analysis of GWAS data. It can be used to analyse both raw genotype data as well as summary SNP p-values from a previous GWAS or meta-analysis. - -*homepage*: - -version |toolchain -----------|-------------- -``1.07b`` |``foss/2018b`` -``1.07bb``|``GCC/8.3.0`` -``1.09b`` |``GCC/11.2.0`` - -### MagresPython - -MagresPython is a Python library for parsing the CCP-NC ab-initio magnetic resonance file format. This is used in the latest version of the CASTEP and Quantum ESPRESSO (PWSCF) codes. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|-------------- -``20160329``|``-Python-2.7.15``|``foss/2018b`` - -### mahotas - -Mahotas is a computer vision and image processing library for Python - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``1.4.3`` |``-Python-2.7.12``|``intel/2016b`` -``1.4.13``| |``foss/2022a`` - -### MAJIQ - -MAJIQ and Voila are two software packages that together detect, quantify, and visualize local splicing variations (LSV) from RNA-Seq data. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``1.1.1``|``-Python-3.6.4``|``intel/2018a`` - -### make - -GNU version of make utility - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------------------------------------------------- -``3.82`` |``GCC/4.8.2`` -``4.1`` |``GCC/4.9.2`` -``4.2.1``|``GCC/7.3.0-2.30``, ``GCCcore/8.3.0`` -``4.3`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/9.3.0`` -``4.4.1``|``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0`` - -### makedepend - -The makedepend package contains a C-preprocessor like utility to determine build-time dependencies. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------------------------- -``1.0.5``|``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` -``1.0.6``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/7.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.0.7``|``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### makedepf90 - -Makedepf90 is a program for automatic creation of Makefile-style dependency lists for Fortran source code. - -*homepage*: - -version |toolchain ----------|-------------- -``2.8.8``|``foss/2017a`` - -### makefun - -Small library to dynamically create python functions. makefun helps you create functions dynamically, with the signature of your choice. It was largely inspired by decorator and functools, and created mainly to cover some of their limitations. - -*homepage*: - -version |toolchain -----------|------------------ -``1.15.2``|``GCCcore/12.3.0`` - -### makeinfo - -makeinfo is part of the Texinfo project, the official documentation format of the GNU project. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|------------------------------------------------------------------------------------------- -``6.7`` | |``FCC/4.5.0``, ``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``6.7`` |``-minimal`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``6.8`` | |``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``7.0.3``| |``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``7.1`` | |``GCCcore/13.2.0``, ``GCCcore/13.3.0`` - -### MAKER - -MAKER is a portable and easily configurable genome annotation pipeline. Its purpose is to allow smaller eukaryotic and prokaryotic genome projects to independently annotate their genomes and to create genome databases. - -*homepage*: - -version |toolchain ------------|-------------- -``3.01.04``|``foss/2022a`` - -### Mako - -A super-fast templating language that borrows the best ideas from the existing templating languages - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.0.4``|``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``1.0.6``|``-Python-2.7.13``|``foss/2017a``, ``intel/2017a`` -``1.0.7``|``-Python-2.7.14``|``foss/2017b``, ``foss/2018a``, ``fosscuda/2017b``, ``fosscuda/2018a``, ``intel/2017b``, ``intel/2018.01``, ``intel/2018a``, ``intelcuda/2017b``, ``iomkl/2018a`` -``1.0.7``|``-Python-2.7.15``|``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b`` -``1.0.7``|``-Python-3.6.4`` |``intel/2018a`` -``1.0.7``|``-Python-3.6.6`` |``fosscuda/2018b`` -``1.0.8``| |``GCCcore/8.2.0`` -``1.1.0``| |``GCCcore/8.3.0`` -``1.1.2``| |``GCCcore/9.3.0`` -``1.1.3``| |``GCCcore/10.2.0`` -``1.1.4``| |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``1.2.0``| |``GCCcore/11.3.0`` -``1.2.4``| |``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` -``1.3.5``| |``GCCcore/13.3.0`` - -### Mamba - -Mamba is a fast, robust, and cross-platform package manager. It runs on Windows, OS X and Linux (ARM64 and PPC64LE included) and is fully compatible with conda packages and supports most of conda's commands. - -*homepage*: - -version |toolchain --------------|---------- -``4.14.0-0`` |``system`` -``23.1.0-4`` |``system`` -``23.11.0-0``|``system`` - -### mandrake - -Fast visualisation of the population structure of pathogens using Stochastic Cluster Embedding. - -*homepage*: - -version |toolchain ----------|-------------- -``1.2.2``|``foss/2022a`` - -### mannkendall - -A python package for non parametric Mann Kendall family of trend tests. - -*homepage*: - -version |toolchain ----------|-------------- -``1.1.1``|``foss/2022a`` - -### manta - -Manta calls structural variants (SVs) and indels from mapped paired-end sequencing reads. It is optimized for analysis of germline variation in small sets of individuals and somatic variation in tumor/normal sample pairs. Manta discovers, assembles and scores large-scale SVs, medium-sized indels and large insertions within a single efficient workflow. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``1.1.1``| |``system`` -``1.6.0``| |``system`` -``1.6.0``|``-Python-2.7.16``|``gompi/2019b`` -``1.6.0``|``-Python-2.7.18``|``GCC/10.2.0``, ``gompi/2020a`` - -### mapDamage - -mapDamage2 is a computational framework written in Python and R, which tracks and quantifies DNA damage patterns among ancient DNA sequencing reads generated by Next-Generation Sequencing platforms. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|------------------------------ -``2.2.1``| |``foss/2021b``, ``foss/2022a`` -``2.2.1``|``-R-4.0.4`` |``foss/2020b`` -``2.2.1``|``-R-4.1.0`` |``foss/2021a`` - -### Maple - -Maple combines the world's most powerful mathematical computation engine with an intuitive, 'clickable' user interface. - -*homepage*: - -version |toolchain -----------|---------- -``15`` |``system`` -``2017.2``|``system`` -``2022.1``|``system`` - -### MapSplice - -MapSplice is a software for mapping RNA-seq data to reference genome for splice junction discovery that depends only on reference genome, and not on any further annotations. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``2.2.1``|``-Python-2.7.12``|``foss/2016b`` -``2.2.1``|``-Python-2.7.15``|``intel/2018b`` - -### Maq - -Maq is a software that builds mapping assemblies from short reads generated by the next-generation sequencing machines. - -*homepage*: - -version |toolchain ----------|---------- -``0.7.0``|``system`` - -### MariaDB - -MariaDB is an enhanced, drop-in replacement for MySQL. Included engines: myISAM, Aria, InnoDB, RocksDB, TokuDB, OQGraph, Mroonga. - -*homepage*: - -version |toolchain ------------|------------------------------- -``10.0.21``|``GNU/4.9.3-2.25`` -``10.1.13``|``intel/2016a`` -``10.1.14``|``foss/2016a``, ``intel/2016a`` -``10.1.17``|``intel/2016b`` -``10.1.24``|``intel/2017a`` -``10.2.11``|``foss/2017b``, ``intel/2017b`` -``10.3.7`` |``intel/2018a`` -``10.3.10``|``foss/2018b`` -``10.3.14``|``foss/2019a`` -``10.4.13``|``gompi/2019b`` -``10.5.8`` |``GCC/10.2.0`` -``10.6.4`` |``GCC/10.3.0``, ``GCC/11.2.0`` -``10.9.3`` |``GCC/11.3.0`` -``10.11.2``|``GCC/12.2.0`` - -### MariaDB-connector-c - -MariaDB Connector/C is used to connect applications developed in C/C++ to MariaDB and MySQL databases. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------- -``2.3.4`` |``foss/2017b``, ``intel/2017b`` -``2.3.5`` |``intel/2018a``, ``iomkl/2018a`` -``2.3.7`` |``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``foss/2018b`` -``3.1.7`` |``GCCcore/9.3.0`` -``3.1.11``|``GCCcore/10.2.0`` -``3.2.2`` |``GCCcore/10.3.0`` - -### Markdown - -This is a Python implementation of John Gruber's Markdown. It is almost completely compliant with the reference implementation, though there are a few known issues. Additional features are supported by the Available Extensions. - -*homepage*: - -version|toolchain --------|---------------------------------------------------------- -``3.6``|``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### MARS - -improving Multiple circular sequence Alignment using Refined Sequences - -*homepage*: - -version |toolchain -------------|----------------- -``20191101``|``GCCcore/8.3.0`` - -### Mash - -Fast genome and metagenome distance estimation using MinHash - -*homepage*: - -version|toolchain --------|------------------------------------------------------------------------------------------------------------ -``2.0``|``foss/2018a`` -``2.1``|``foss/2018b`` -``2.2``|``GCC/9.3.0`` -``2.3``|``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0``, ``GCC/12.3.0``, ``intel-compilers/2021.4.0`` - -### Mashtree - -Create a tree using Mash distances. - -*homepage*: - -version |toolchain ----------|-------------- -``1.4.6``|``GCC/12.2.0`` - -### MaSuRCA - -MaSuRCA is whole genome assembly software. It combines the efficiency of the de Bruijn graph and Overlap-Layout-Consensus (OLC) approaches. MaSuRCA can assemble data sets containing only short reads from Illumina sequencing or a mixture of short reads and long reads (Sanger, 454, Pacbio and Nanopore). - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``3.2.2``| |``foss/2016a`` -``3.2.2``|``-Perl-5.26.0``|``foss/2017b`` -``3.2.4``| |``foss/2018a`` -``3.2.5``|``-Perl-5.26.0``|``foss/2017b`` -``3.3.1``|``-Perl-5.28.0``|``foss/2018b`` -``4.0.1``|``-Perl-5.30.2``|``foss/2020a`` -``4.0.9``|``-Perl-5.32.1``|``foss/2021a`` -``4.1.0``| |``GCC/11.3.0`` - -### Mathematica - -Mathematica is a computational software program used in many scientific, engineering, mathematical and computing fields. - -*homepage*: - -version |toolchain -----------|---------- -``9.0.1`` |``system`` -``10.0.2``|``system`` -``10.1.0``|``system`` -``10.4.1``|``system`` -``11.0.1``|``system`` -``11.1.1``|``system`` -``11.3.0``|``system`` -``12.0.0``|``system`` -``12.1.1``|``system`` -``13.0.0``|``system`` -``13.1.0``|``system`` - -### MathGL - -MathGL is ... a library for making high-quality scientific graphics under Linux and Windows; a library for the fast data plotting and data processing of large data arrays; a library for working in window and console modes and for easy embedding into other programs; a library with large and growing set of graphics. - -*homepage*: - -version |toolchain ----------|-------------- -``2.4.1``|``foss/2018a`` - -### MATIO - -matio is an C library for reading and writing Matlab MAT files. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------- -``1.5.9`` |``GCCcore/5.4.0`` -``1.5.11``|``foss/2017b`` -``1.5.12``|``GCCcore/6.4.0`` -``1.5.17``|``GCCcore/8.3.0`` -``1.5.19``|``GCCcore/9.3.0`` -``1.5.21``|``GCCcore/10.2.0`` -``1.5.22``|``GCCcore/11.2.0`` -``1.5.23``|``GCCcore/11.3.0``, ``GCCcore/12.1.0``, ``GCCcore/12.2.0`` -``1.5.26``|``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### MATLAB - -MATLAB is a high-level language and interactive environment that enables you to perform computationally intensive tasks faster than with traditional programming languages such as C, C++, and Fortran. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|---------- -``2012b``| |``system`` -``2013b``| |``system`` -``2015a``| |``system`` -``2016a``| |``system`` -``2017a``| |``system`` -``2018b``| |``system`` -``2019b``| |``system`` -``2020a``| |``system`` -``2020b``| |``system`` -``2021a``| |``system`` -``2021b``| |``system`` -``2022a``| |``system`` -``2022a``|``-r3`` |``system`` -``2022b``| |``system`` -``2022b``|``-r5`` |``system`` -``2023a``| |``system`` -``2023b``| |``system`` - -### MATLAB-Engine - -The MATLAB Engine API for Python provides a package for Python to call MATLAB as a computational engine. - -*homepage*: - -version |versionsuffix |toolchain ------------------|------------------|------------------------------- -``2018b`` |``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``2018b`` |``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``2019b`` | |``GCCcore/8.3.0`` -``2021a-9.10.1`` | |``GCCcore/10.2.0`` -``2021b-9.11.19``| |``GCCcore/11.2.0`` - -### matlab-proxy - -A Python package which enables you to launch MATLAB and access it from a web browser. - -*homepage*: - -version |toolchain -----------|------------------ -``0.5.4`` |``GCCcore/11.3.0`` -``0.18.1``|``GCCcore/12.3.0`` - -### matplotlib - -matplotlib is a python 2D plotting library which produces publication quality figures in a variety of hardcopy formats and interactive environments across platforms. matplotlib can be used in python scripts, the python and ipython shell, web application servers, and six graphical user interface toolkits. - -*homepage*: - -version |versionsuffix |toolchain ----------|---------------------------------|----------------------------------------------------------------------------------- -``1.4.3``|``-Python-2.7.12`` |``intel/2016b`` -``1.5.1``|``-Python-2.7.11`` |``foss/2016a``, ``intel/2016a`` -``1.5.1``|``-Python-2.7.11-freetype-2.6.3``|``foss/2016a``, ``intel/2016a`` -``1.5.1``|``-Python-2.7.12`` |``intel/2016b`` -``1.5.1``|``-Python-3.5.1`` |``foss/2016a``, ``intel/2016a`` -``1.5.1``|``-Python-3.5.2`` |``intel/2016b`` -``1.5.2``|``-Python-2.7.12`` |``foss/2016b``, ``intel/2016b`` -``1.5.2``|``-Python-3.5.2`` |``intel/2016b`` -``1.5.3``|``-Python-2.7.12`` |``foss/2016b``, ``intel/2016b`` -``1.5.3``|``-Python-3.5.2`` |``foss/2016b``, ``intel/2016b`` -``2.0.0``|``-Python-2.7.12`` |``foss/2016b``, ``intel/2016b`` -``2.0.0``|``-Python-2.7.13`` |``intel/2017a`` -``2.0.1``|``-Python-3.6.1`` |``intel/2017a`` -``2.0.2``|``-Python-2.7.13`` |``foss/2017a``, ``intel/2017a`` -``2.0.2``|``-Python-2.7.13-Qt-4.8.7`` |``intel/2017a`` -``2.0.2``|``-Python-2.7.13-libpng-1.6.29`` |``intel/2017a`` -``2.0.2``|``-Python-3.6.1`` |``foss/2017a`` -``2.0.2``|``-Python-3.6.1-libpng-1.6.29`` |``intel/2017a`` -``2.1.0``|``-Python-2.7.14`` |``foss/2017b``, ``fosscuda/2017b``, ``intel/2017b``, ``intelcuda/2017b`` -``2.1.0``|``-Python-3.6.2`` |``foss/2017b`` -``2.1.0``|``-Python-3.6.3`` |``foss/2017b``, ``fosscuda/2017b``, ``intel/2017b``, ``intelcuda/2017b`` -``2.1.1``|``-Python-2.7.14`` |``intel/2017b`` -``2.1.1``|``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``2.1.2``|``-Python-2.7.14`` |``foss/2018a``, ``intel/2018a`` -``2.1.2``|``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a``, ``iomkl/2018.02``, ``iomkl/2018a`` -``2.2.3``|``-Python-2.7.15`` |``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b`` -``2.2.3``|``-Python-3.6.6`` |``intel/2018b`` -``2.2.4``|``-Python-2.7.15`` |``foss/2019a``, ``fosscuda/2019a``, ``intel/2019a``, ``intelcuda/2019a`` -``2.2.4``|``-Python-2.7.16`` |``foss/2019b``, ``fosscuda/2019b``, ``intel/2019b`` -``2.2.5``|``-Python-2.7.16`` |``foss/2019b`` -``2.2.5``|``-Python-2.7.18`` |``foss/2020a``, ``foss/2020b``, ``foss/2021b``, ``fosscuda/2020a``, ``intel/2020a`` -``3.0.0``|``-Python-3.6.6`` |``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b``, ``iomkl/2018b`` -``3.0.2``|``-Python-3.6.6`` |``foss/2018b`` -``3.0.3``|``-Python-3.7.2`` |``foss/2019a``, ``fosscuda/2019a``, ``intel/2019a``, ``intelcuda/2019a`` -``3.1.1``|``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b``, ``intel/2019b``, ``intelcuda/2019b`` -``3.2.1``|``-Python-3.8.2`` |``foss/2020a``, ``fosscuda/2020a``, ``intel/2020a``, ``intelcuda/2020a`` -``3.3.3``| |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b``, ``intelcuda/2020b`` -``3.4.2``| |``foss/2021a``, ``gomkl/2021a``, ``intel/2021a`` -``3.4.3``| |``foss/2021b``, ``intel/2021b`` -``3.5.1``| |``foss/2020b``, ``intel/2020b`` -``3.5.2``| |``foss/2021b``, ``foss/2022a``, ``intel/2022a`` -``3.7.0``| |``gfbf/2022b`` -``3.7.2``| |``gfbf/2023a``, ``iimkl/2023a`` -``3.8.2``| |``gfbf/2023b`` - -### matplotlib-inline - -Matplotlib Inline Back-end for IPython and Jupyter. - -*homepage*: - -version |toolchain ----------|------------------ -``0.1.3``|``GCCcore/10.2.0`` - -### MATSim - -MATSim is an open-source framework to implement large-scale agent-based transport simulations. - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------|------------------------------ -``0.8.1``|``-Java-1.8.0_112``|``intel/2016b`` -``14.0`` |``-Java-11`` |``GCCcore/11.2.0``, ``system`` -``15.0`` |``-Java-17`` |``GCCcore/12.3.0``, ``system`` - -### maturin - -This project is meant as a zero configuration replacement for setuptools-rust and milksnake. It supports building wheels for python 3.5+ on windows, linux, mac and freebsd, can upload them to pypi and has basic pypy and graalpy support. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------------------------------- -``1.1.0``| |``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``1.3.1``| |``GCCcore/13.2.0`` -``1.3.2``|``-Rust-1.65.0``|``GCCcore/11.3.0`` -``1.4.0``|``-Rust-1.75.0``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``1.5.0``|``-Rust-1.76.0``|``GCCcore/13.2.0`` - -### Maude - -Maude is a high-performance reflective language and system supporting both equational and rewriting logic specification and programming for a wide range of applications. Maude has been influenced in important ways by the OBJ3 language, which can be regarded as an equational logic sublanguage. Besides supporting equational specification and programming, Maude also supports rewriting logic computation. - -*homepage*: - -version|toolchain --------|------------------ -``3.1``|``GCCcore/10.2.0`` - -### mauveAligner - -Mauve is a system for constructing multiple genome alignments in the presence of large-scale evolutionary events such as rearrangement and inversion. Multiple genome alignments provide a basis for research into comparative genomics and the study of genome-wide evolutionary dynamics. This version was built without Graphical User Interface. - -*homepage*: - -version |toolchain ---------|--------------- -``4736``|``gompi/2020a`` - -### Maven - -Binary maven install, Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information. - -*homepage*: - -version |toolchain ----------|---------- -``3.2.3``|``system`` -``3.3.3``|``system`` -``3.3.9``|``system`` -``3.5.0``|``system`` -``3.5.2``|``system`` -``3.6.0``|``system`` -``3.6.3``|``system`` - -### mawk - -mawk is an interpreter for the AWK Programming Language. - -*homepage*: - -version |toolchain -------------------|------------------------------------------------------------------------------------------------- -``1.3.4-20141206``|``GCC/4.9.2`` -``1.3.4-20171017``|``foss/2018a``, ``foss/2018b``, ``foss/2019a``, ``intel/2018a``, ``intel/2018b``, ``intel/2019a`` - -### MaxBin - -MaxBin is software for binning assembled metagenomic sequences based on an Expectation-Maximization algorithm. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|------------------------------------------------- -``2.2.6``|``-Perl-5.28.0``|``foss/2018b`` -``2.2.7``| |``gompi/2020b``, ``gompi/2021a``, ``gompi/2021b`` -``2.2.7``|``-Perl-5.28.1``|``GCC/8.2.0-2.31.1`` - -### MaxQuant - -MaxQuant is a quantitative proteomics software package designed for analyzing large mass-spectrometric data sets. It is specifically aimed at high-resolution MS data. Several labeling techniques as well as label-free quantification are supported. - -*homepage*: - -version |toolchain --------------|------------------ -``1.6.10.43``|``foss/2018b`` -``2.0.3.0`` |``GCCcore/11.2.0`` -``2.2.0.0`` |``GCCcore/11.2.0`` -``2.4.2.0`` |``system`` - -### mayavi - -The Mayavi scientific data 3-dimensional visualizer - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``4.4.4``|``-Python-2.7.11``|``intel/2016a`` -``4.6.2``|``-Python-3.6.6`` |``foss/2018b`` -``4.7.1``|``-Python-2.7.15``|``foss/2019a`` -``4.7.1``|``-Python-3.7.2`` |``foss/2019a`` -``4.7.4``| |``foss/2021b`` - -### maze - -In a similar manner to dot plots, maze highlights local sequence similarity between two DNA sequences. In particular, maximal exact substring matches are computed with MUMmer3 and visualised. - -*homepage*: - -version |toolchain -------------|-------------- -``20170124``|``foss/2020b`` - -### MbedTLS - -An open source, portable, easy to use, readable and flexible SSL library. - -*homepage*: - -version |toolchain -----------|------------------ -``2.26.0``|``GCCcore/10.2.0`` - -### MBROLA - -MBROLA is a speech synthesizer based on the concatenation of diphones. It takes a list of phonemes as input, together with prosodic information (duration of phonemes and a piecewise linear description of pitch), and produces speech samples on 16 bits (linear), at the sampling frequency of the diphone database. MBROLA voices project provides list of MBROLA speech synthesizer voices. It is intended to provide easier collaboration and automatic updates for individual users and packagers. - -*homepage*: <['https://github.com/numediart/MBROLA', 'https://github.com/numediart/MBROLA-voices']> - -version|versionsuffix |toolchain --------|--------------------|------------------------------------- -``3.3``|``-voices-20200330``|``GCCcore/12.3.0``, ``GCCcore/9.3.0`` - -### mbuffer - -mbuffer is a tool for buffering data streams with a large set of unique features. - -*homepage*: - -version |toolchain -------------|----------------- -``20191016``|``GCCcore/9.3.0`` - -### mc - -mc-4.6.1: User-friendly file manager and visual shell - -*homepage*: - -version |toolchain -----------|------------- -``4.8.13``|``GCC/4.9.2`` - -### MCL - -The MCL algorithm is short for the Markov Cluster Algorithm, a fast and scalable unsupervised cluster algorithm for graphs (also known as networks) based on simulation of (stochastic) flow in graphs. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|--------------------------------------------------------------------------------------------------------------------------------- -``02.063``| |``intel/2016b`` -``14.137``| |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``foss/2016a``, ``intel/2016b`` -``14.137``|``-Perl-5.26.1``|``GCCcore/6.4.0`` -``14.137``|``-Perl-5.28.0``|``GCCcore/7.3.0`` -``22.282``| |``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### MCR - -The MATLAB Runtime is a standalone set of shared libraries that enables the execution of compiled MATLAB applications or components on computers that do not have MATLAB installed. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|---------- -``R2013a``| |``system`` -``R2013b``| |``system`` -``R2014a``| |``system`` -``R2014b``| |``system`` -``R2015a``| |``system`` -``R2015b``| |``system`` -``R2016a``| |``system`` -``R2016b``| |``system`` -``R2018a``| |``system`` -``R2018b``| |``system`` -``R2019a``| |``system`` -``R2019b``|``.8`` |``system`` -``R2020a``|``.6`` |``system`` -``R2020b``|``.5`` |``system`` -``R2021a``|``.0`` |``system`` -``R2021a``|``.3`` |``system`` -``R2021b``| |``system`` -``R2021b``|``.1`` |``system`` -``R2021b``|``.2`` |``system`` -``R2022a``| |``system`` -``R2022a``|``.1`` |``system`` -``R2022a``|``.5`` |``system`` -``R2023a``| |``system`` - -### mctc-lib - -Common tool chain for working with molecular structure data in various applications. This library provides a unified way to perform operations on molecular structure data, like reading and writing to common geometry file formats. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------ -``0.3.1``|``GCC/11.3.0``, ``GCC/12.2.0``, ``intel-compilers/2022.1.0``, ``intel-compilers/2022.2.1`` - -### mcu - -A package for periodic wavefunction and crystallography analysis. mcu is designed to support large scale analysis and topological descriptions for periodic wavefunction. - -*homepage*: - -version |toolchain ---------------|--------------- -``2021-04-06``|``gomkl/2021a`` - -### MDAnalysis - -MDAnalysis is an object-oriented Python library to analyze trajectories from molecular dynamics (MD) simulations in many popular formats. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|----------------------------------------------- -``0.20.1``|``-Python-3.7.4``|``foss/2019b``, ``intel/2019b`` -``1.1.1`` | |``foss/2020b`` -``2.0.0`` | |``foss/2021a``, ``foss/2021b``, ``intel/2021b`` -``2.2.0`` | |``foss/2022a`` -``2.4.2`` | |``foss/2021a``, ``foss/2022b`` -``2.7.0`` | |``foss/2023a`` - -### MDBM - -MDBM is a super-fast memory-mapped key/value store - -*homepage*: - -version |toolchain -----------|------------------------------------ -``4.13.0``|``GCCcore/6.4.0``, ``GCCcore/9.3.0`` - -### MDI - -The MolSSI Driver Interface (MDI) project provides a standardized API for fast, on-the-fly communication between computational chemistry codes. This greatly simplifies the process of implementing methods that require the cooperation of multiple software packages and enables developers to write a single implementation that works across many different codes. The API is sufficiently general to support a wide variety of techniques, including QM/MM, ab initio MD, machine learning, advanced sampling, and path integral MD, while also being straightforwardly extensible. Communication between codes is handled by the MDI Library, which enables tight coupling between codes using either the MPI or TCP/IP methods. - -*homepage*: - -version |toolchain -----------|--------------- -``1.4.16``|``gompi/2022b`` -``1.4.26``|``gompi/2023a`` - -### MDSplus - -MDSplus is a set of software tools for data acquisition and storage and a methodology for management of complex scientific data. - -*homepage*: - -version |versionsuffix |toolchain ------------|--------------------------------|----------------- -``7.0.67`` |``-Java-1.7.0_79-Python-2.7.11``|``foss/2016a`` -``7.46.1`` | |``foss/2018a`` -``7.96.8`` | |``GCCcore/9.3.0`` -``7.96.12``| |``GCCcore/9.3.0`` - -### MDSplus-Java - -MDSplus is a set of software tools for data acquisition and storage and a methodology for management of complex scientific data. - -*homepage*: - -version |versionsuffix|toolchain ------------|-------------|----------------- -``7.96.12``|``-Java-13`` |``GCCcore/9.3.0`` - -### MDSplus-Python - -MDSplus is a set of software tools for data acquisition and storage and a methodology for management of complex scientific data. - -*homepage*: - -version |versionsuffix |toolchain ------------|-----------------|-------------- -``7.96.12``|``-Python-3.8.2``|``foss/2020a`` - -### mdtest - -mdtest is an MPI-coordinated metadata benchmark test that performs open/stat/close operations on files and directories and then reports the performance. - -*homepage*: - -version |toolchain ----------|--------------- -``1.9.3``|``intel/2017a`` - -### MDTraj - -Read, write and analyze MD trajectories with only a few lines of Python code. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------------------------------------------------------------------------- -``1.9.1``|``-Python-3.6.3``|``intel/2017b`` -``1.9.2``|``-Python-3.6.6``|``intel/2018b`` -``1.9.3``|``-Python-3.7.4``|``foss/2019b``, ``intel/2019b`` -``1.9.4``|``-Python-3.8.2``|``foss/2020a``, ``intel/2020a`` -``1.9.5``| |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b`` -``1.9.7``| |``foss/2021a``, ``foss/2021b``, ``foss/2022a``, ``intel/2021b``, ``intel/2022a`` -``1.9.9``| |``gfbf/2023a`` - -### mdust - -mdust from DFCI Gene Indices Software Tools (archived for a historical record only) - -*homepage*: - -version |toolchain -------------|-------------- -``20150102``|``GCC/10.3.0`` - -### meboot - -Maximum entropy density based dependent data bootstrap. An algorithm is provided to create a population of time series (ensemble) without assuming stationarity. - -*homepage*: - -version |versionsuffix|toolchain ------------|-------------|-------------- -``1.4-9.2``|``-R-4.2.1`` |``foss/2022a`` - -### medaka - -medaka is a tool to create a consensus sequence from nanopore sequencing data. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------------------ -``0.4.3`` |``-Python-3.6.6``|``foss/2018b`` -``0.11.4``|``-Python-3.6.6``|``foss/2018b`` -``0.12.0``|``-Python-3.6.6``|``foss/2018b`` -``1.1.1`` |``-Python-3.7.4``|``foss/2019b`` -``1.1.3`` |``-Python-3.7.4``|``foss/2019b`` -``1.2.0`` |``-Python-3.7.4``|``foss/2019b`` -``1.4.3`` | |``foss/2020b`` -``1.4.3`` |``-Python-3.7.4``|``foss/2019b`` -``1.5.0`` | |``foss/2021a`` -``1.6.0`` | |``foss/2021b`` -``1.8.1`` | |``foss/2022a`` -``1.9.1`` | |``foss/2022a``, ``foss/2022b`` -``1.11.3``| |``foss/2022a``, ``foss/2023a`` - -### medImgProc - -Motion correction, explicit spatio-temporal regularization of motion tracking, random speckles enhancement, and segmentation. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``2.5.7``|``-Python-3.7.4``|``foss/2019b`` - -### MedPy - -MedPy is a library and script collection for medical image processing in Python, providing basic functionalities for reading, writing and manipulating large images of arbitrary dimensionality. Its main contributions are n-dimensional versions of popular image filters, a collection of image feature extractors, ready to be used with scikit-learn, and an exhaustive n-dimensional graph-cut package. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|---------------------------------- -``0.4.0``| |``foss/2020b``, ``fosscuda/2020b`` -``0.4.0``|``-Python-3.7.4``|``foss/2019b`` - -### Meep - -Meep (or MEEP) is a free finite-difference time-domain (FDTD) simulation software package developed at MIT to model electromagnetic systems. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|----------------------------------------------- -``1.3`` | |``foss/2016a`` -``1.4.3`` | |``intel/2020a`` -``1.6.0`` |``-Python-2.7.14``|``foss/2017b``, ``foss/2018a``, ``intel/2018a`` -``1.26.0``| |``foss/2020b`` - -### MEGA - -MEGA-CC (Molecular Evolutionary Genetics Analysis Computational Core) is an integrated suite of tools for statistics-based comparative analysis of molecular sequence data based on evolutionary principles. - -*homepage*: - -version |toolchain -------------|---------- -``7.0.20-1``|``system`` -``10.0.5`` |``system`` -``11.0.10`` |``system`` - -### MEGACC - -MEGA-Computing Core - Sophisticated and user-friendly software suite for analyzing DNA and protein sequence data from species and populations. - -*homepage*: - -version |toolchain -------------|---------- -``7.0.18-1``|``system`` - -### MEGAHIT - -An ultra-fast single-node solution for large and complex metagenomics assembly via succinct de Bruijn graph - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------------------------------------------------------------------------------------------------------------- -``1.1.2``|``-Python-2.7.14``|``foss/2018a`` -``1.1.3``|``-Python-2.7.14``|``foss/2017b``, ``foss/2018a`` -``1.1.3``|``-Python-3.6.3`` |``foss/2017b`` -``1.1.4``|``-Python-2.7.15``|``foss/2018b`` -``1.1.4``|``-Python-3.6.6`` |``foss/2018b`` -``1.2.8``| |``GCCcore/8.2.0`` -``1.2.9``| |``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/9.3.0``, ``foss/2018b`` -``1.2.9``|``-Python-2.7.18``|``GCCcore/10.2.0`` - -### Megalodon - -Megalodon is a research command line tool to extract high accuracy modified base and sequence variant calls from raw nanopore reads by anchoring the information rich basecalling neural network output to a reference genome/transriptome. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|---------------------------------- -``2.3.5``| |``foss/2020b``, ``fosscuda/2020b`` -``2.5.0``| |``foss/2021a`` -``2.5.0``|``-CUDA-11.3.1``|``foss/2021a`` - -### MEGAN - -MEGAN is a comprehensive toolbox for interactively analyzing microbiome data - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|---------- -``6.22.0``|``-Java-17`` |``system`` -``6.25.3``|``-Java-17`` |``system`` - -### Meld - -Meld is a visual diff and merge tool targeted at developers. Meld helps you compare files, directories, and version controlled projects. It provides two- and three-way comparison of both files and directories, and has support for many popular version control systems. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|----------------- -``3.20.1``|``-Python-3.7.2``|``GCCcore/8.2.0`` - -### MEM - -Marker Enrichment Modeling (MEM) is a tool designed to calculate enrichment scores. - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|-------------- -``20191023``| |``foss/2019b`` -``20191023``|``-R-4.0.0`` |``foss/2020a`` - -### MEME - -The MEME Suite allows you to: * discover motifs using MEME, DREME (DNA only) or GLAM2 on groups of related DNA or protein sequences, * search sequence databases with motifs using MAST, FIMO, MCAST or GLAM2SCAN, * compare a motif to all motifs in a database of motifs, * associate motifs with Gene Ontology terms via their putative target genes, and * analyse motif enrichment using SpaMo or CentriMo. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------------------|------------------------------- -``5.0.4``|``-Perl-5.26.0-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``5.0.4``|``-Perl-5.26.0-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``5.1.1``|``-Python-3.6.6`` |``foss/2018b`` -``5.1.1``|``-Python-3.7.4`` |``foss/2019b``, ``intel/2019b`` -``5.4.1``| |``GCC/10.3.0``, ``gompi/2021b`` -``5.4.1``|``-Python-2.7.18`` |``gompi/2021b`` -``5.5.4``| |``gompi/2022b`` - -### memkind - -User Extensible Heap Manager built on top of jemalloc which enables control of memory characteristics and a partitioning of the heap between kinds of memory. - -*homepage*: - -version |toolchain ----------|----------------- -``1.5.0``|``GCCcore/5.4.0`` - -### memory-profiler - -memory-profiler is a Python module for monitoring memory consumption of a process as well as line-by-line analysis of memory consumption for python programs. - -*homepage*: - -version |toolchain -----------|------------------------------- -``0.55.0``|``foss/2019a``, ``intel/2019a`` - -### MEMOTE - -The genome-scale metabolic model test suite - -*homepage*: - -version |toolchain -----------|-------------- -``0.13.0``|``foss/2021a`` - -### memtester - -A userspace utility for testing the memory subsystem for faults - -*homepage*: - -version |toolchain ----------|------------------ -``4.5.1``|``GCCcore/11.3.0`` - -### meRanTK - -meRanTK is a versatile high performance toolkit for complete analysis of methylated RNA data. - -*homepage*: - -version |toolchain -----------|---------- -``1.1.1b``|``system`` - -### MERCKX - -Multilingual Entity/Resource Combiner & Knowledge eXtractor - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|--------------- -``20170330``|``-Python-2.7.13``|``intel/2017a`` - -### Mercurial - -Mercurial is a free, distributed source control management tool. It efficiently handles projects of any size and offers an easy and intuitive interface. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------ -``3.8.3``|``-Python-2.7.11``|``foss/2016a`` -``5.7.1``| |``GCCcore/10.2.0`` -``5.7.1``|``-Python-3.8.2`` |``GCCcore/9.3.0`` -``5.8`` | |``GCCcore/10.3.0`` -``6.2`` | |``GCCcore/11.3.0`` -``6.4.5``| |``GCCcore/12.3.0`` - -### Mesa - -Mesa is an open-source implementation of the OpenGL specification - a system for rendering interactive 3D graphics. - -*homepage*: - -version |toolchain -----------|-------------------------------------------------------------------- -``11.1.2``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` -``11.2.1``|``foss/2016a``, ``intel/2016a`` -``12.0.2``|``foss/2016b``, ``intel/2016b`` -``17.0.2``|``foss/2017a``, ``intel/2017a`` -``17.2.4``|``intel/2017b``, ``intelcuda/2017b`` -``17.2.5``|``foss/2017b``, ``fosscuda/2017b`` -``17.3.6``|``foss/2018a``, ``fosscuda/2018a``, ``intel/2018a``, ``iomkl/2018a`` -``18.1.1``|``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b`` -``19.0.1``|``GCCcore/8.2.0`` -``19.1.7``|``GCCcore/8.3.0`` -``19.2.1``|``GCCcore/8.3.0`` -``20.0.2``|``GCCcore/9.3.0`` -``20.2.1``|``GCCcore/10.2.0`` -``21.1.1``|``GCCcore/10.3.0`` -``21.1.7``|``GCCcore/11.2.0`` -``22.0.3``|``GCCcore/11.3.0`` -``22.2.4``|``GCCcore/12.2.0`` -``23.1.4``|``GCCcore/12.3.0`` -``23.1.9``|``GCCcore/13.2.0`` - -### Mesa-demos - -Mesa utility and demo programs, including glxinfo and eglinfo. - -*homepage*: - -version |toolchain ----------|------------------ -``8.4.0``|``GCCcore/10.3.0`` - -### meshalyzer - -Graphical program for display time dependent data on 3D finite element meshes - -*homepage*: - -version |versionsuffix |toolchain -------------|-----------------|-------------- -``2.0`` |``-Python-3.8.2``|``foss/2020a`` -``2.2`` | |``foss/2020b`` -``20200308``|``-Python-3.8.2``|``foss/2020a`` - -### meshio - -meshio is a tool for reading/writing various mesh formats representing unstructured meshes - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``1.7.1``|``-Python-2.7.12``|``intel/2016b`` -``2.0.2``|``-Python-2.7.14``|``intel/2018a`` -``2.0.2``|``-Python-3.6.4`` |``intel/2018a`` -``5.3.4``| |``foss/2022b`` - -### meshtool - -Meshtool is a comand-line tool written in C++. It is designed to apply various manipulations to volumetric meshes. - -*homepage*: - -version|toolchain --------|----------------------------- -``16`` |``GCC/10.2.0``, ``GCC/9.3.0`` - -### Meson - -Meson is a cross-platform build system designed to be both as fast and as user friendly as possible. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|---------------------------------- -``0.43.0``|``-Python-3.6.3``|``intel/2017b`` -``0.46.1``|``-Python-3.6.4``|``foss/2018a`` -``0.48.1``|``-Python-3.6.4``|``foss/2018a``, ``intel/2018a`` -``0.48.1``|``-Python-3.6.6``|``foss/2018b``, ``fosscuda/2018b`` -``0.50.0``|``-Python-3.7.2``|``GCCcore/8.2.0`` -``0.51.2``|``-Python-3.7.4``|``GCCcore/8.3.0`` -``0.53.1``|``-Python-3.6.3``|``intel/2017b`` -``0.53.2``|``-Python-3.8.2``|``GCCcore/9.3.0`` -``0.55.1``|``-Python-3.8.2``|``GCCcore/9.3.0`` -``0.55.3``| |``GCCcore/10.2.0`` -``0.58.0``| |``GCCcore/10.3.0`` -``0.58.2``| |``GCCcore/11.2.0`` -``0.59.1``|``-Python-3.7.4``|``GCCcore/8.3.0`` -``0.62.1``| |``GCCcore/11.3.0`` -``0.64.0``| |``GCCcore/12.2.0`` -``1.1.1`` | |``GCCcore/12.3.0`` -``1.2.3`` | |``GCCcore/13.2.0`` -``1.3.1`` | |``GCCcore/12.3.0`` -``1.4.0`` | |``GCCcore/13.3.0`` - -### meson-python - -Python build backend (PEP 517) for Meson projects - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``0.11.0``|``GCCcore/12.2.0`` -``0.13.2``|``GCCcore/12.3.0`` -``0.15.0``|``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### Mesquite - -Mesh-Quality Improvement Library - -*homepage*: - -version |toolchain ----------|-------------------------------------------------------------------------------------------------------------------------------- -``2.3.0``|``GCCcore/10.2.0``, ``GCCcore/12.3.0``, ``GCCcore/6.4.0``, ``GCCcore/8.3.0``, ``gimkl/2.11.5``, ``intel/2016a``, ``intel/2017a`` - -### MESS - -Master Equation System Solver (MESS) - -*homepage*: - -version |toolchain ----------|-------------- -``0.1.6``|``foss/2019b`` - -### MetaBAT - -An efficient tool for accurately reconstructing single genomes from complex microbial communities - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------------------------ -``2.12.1``|``-Python-2.7.15``|``foss/2018b`` -``2.14`` | |``gompi/2019a`` -``2.15`` | |``GCC/11.2.0``, ``gompi/2021a``, ``gompi/2021b`` -``2.15`` |``-Python-2.7.18``|``gompi/2020b`` - -### MetaboAnalystR - -MetaboAnalystR contains the R functions and libraries underlying the popular MetaboAnalyst web server, including > 500 functions for metabolomic data analysis, visualization, and functional interpretation. - -*homepage*: - -version |versionsuffix|toolchain -------------------|-------------|-------------- -``2.0.1-20190827``|``-R-3.6.0`` |``foss/2019a`` - -### MetaDecoder - -An algorithm for clustering metagenomic sequences - -*homepage*: - -version |toolchain -----------|-------------- -``1.0.19``|``foss/2023b`` - -### metaerg - -MetaErg is a stand-alone and fully automated metagenomic and metaproteomic data annotation pipeline. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``1.2.3``|``-Python-2.7.16``|``intel/2019b`` - -### MetaEuk - -MetaEuk is a modular toolkit designed for large-scale gene discovery and annotation in eukaryotic metagenomic contigs. - -*homepage*: - -version|toolchain --------|---------------------------------------------- -``4`` |``GCC/10.2.0`` -``5`` |``GCC/10.3.0`` -``6`` |``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0`` - -### MetaGeneAnnotator - -MetaGeneAnnotator is a gene-finding program for prokaryote and phage. - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|---------- -``20080819``|``-x86-64`` |``system`` - -### Metagenome-Atlas - -Metagenome-atlas is a easy-to-use metagenomic pipeline based on snakemake. It handles all steps from QC, Assembly, Binning, to Annotation. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``2.4.3``|``-Python-3.8.2``|``intel/2020a`` - -### Metal - -Metal - Meta Analysis Helper. The METAL software is designed to facilitate meta-analysis of large datasets (such as several whole genome scans) in a convenient, rapid and memory efficient manner. - -*homepage*: - -version |toolchain ---------------|-------------- -``2011-03-25``|``foss/2016a`` -``2020-05-05``|``GCC/10.2.0`` - -### MetalWalls - -MetalWalls (MW) is a molecular dynamics code dedicated to the modelling of electrochemical systems. Its main originality is the inclusion of a series of methods allowing to apply a constant potential within the electrode materials. - -*homepage*: - -version |toolchain ------------|-------------- -``21.06.1``|``foss/2023a`` - -### MetaMorpheus - -MetaMorpheus is a bottom-up proteomics database search software with integrated post-translational modification (PTM) discovery capability. This program combines features of Morpheus and G-PTM-D in a single tool. - -*homepage*: - -version |toolchain ------------|------------------ -``0.0.320``|``GCCcore/10.3.0`` -``1.0.5`` |``system`` - -### MetaPhlAn - -MetaPhlAn is a computational tool for profiling the composition of microbial communities from metagenomic shotgun sequencing data - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``3.0.9``|``-Python-3.8.2``|``foss/2020a`` -``4.0.6``| |``foss/2022a`` - -### MetaPhlAn2 - -MetaPhlAn is a computational tool for profiling the composition of microbial communities (Bacteria, Archaea, Eukaryotes and Viruses) from metagenomic shotgun sequencing data (i.e. not 16S) with species-level. With the newly added StrainPhlAn module, it is now possible to perform accurate strain-level microbial profiling. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``2.7.8``|``-Python-2.7.12``|``foss/2016b`` -``2.7.8``|``-Python-3.6.6`` |``foss/2018b`` -``2.7.8``|``-Python-3.8.2`` |``foss/2020a`` - -### metaWRAP - -MetaWRAP aims to be an easy-to-use metagenomic wrapper suite that accomplishes the core tasks of metagenomic analysis from start to finish: read quality control, assembly, visualization, taxonomic profiling, extracting draft genomes (binning), and functional annotation. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``1.2`` |``-Python-2.7.15``|``foss/2018b`` -``1.2.2``|``-Python-2.7.15``|``foss/2019a`` -``1.3`` |``-Python-2.7.18``|``foss/2020b`` - -### Metaxa2 - -Metaxa2 -- Identifies Small Subunit (SSU) rRNAs and classifies them taxonomically - -*homepage*: - -version|toolchain --------|--------------- -``2.2``|``gompi/2019a`` - -### methylartist - -Tools for plotting methylation data in various ways - -*homepage*: - -version |toolchain ----------|-------------- -``1.2.6``|``foss/2021b`` - -### MethylDackel - -A (mostly) universal methylation extractor for BS-seq experiments. - -*homepage*: - -version |toolchain ----------|---------------------------------------- -``0.4.0``|``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -``0.5.0``|``iccifort/2019.5.281`` -``0.6.1``|``GCC/11.2.0`` - -### methylpy - -Bisulfite sequencing data processing and differential methylation analysis. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``1.1.9``|``-Python-2.7.13``|``foss/2017a`` -``1.2.9``| |``foss/2021b`` - -### METIS - -METIS is a set of serial programs for partitioning graphs, partitioning finite element meshes, and producing fill reducing orderings for sparse matrices. The algorithms implemented in METIS are based on the multilevel recursive-bisection, multilevel k-way, and multi-constraint partitioning schemes. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ -``5.0.2``| |``gimkl/2.11.5`` -``5.1.0``| |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``foss/2016a``, ``foss/2016b``, ``foss/2017a``, ``foss/2018b``, ``gimkl/2.11.5``, ``intel/2016a``, ``intel/2016b``, ``intel/2017a`` -``5.1.0``|``-32bitIDX``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` -``5.1.0``|``-int64`` |``GCCcore/11.3.0`` - -### mfqe - -extract one or more sets of reads from a FASTQ (or FASTA) file by specifying their read names. - -*homepage*: - -version |toolchain ----------|-------------- -``0.5.0``|``GCC/12.3.0`` - -### mgen - -Convenient matrix generation functions - -*homepage*: - -version |toolchain ----------|-------------- -``1.2.1``|``foss/2022a`` - -### mgltools - -The MGLTools software suite can be used for visualization and analysis of molecular structures and comprises the Python Molecular Viewer (PMV, a general purpose molecular viewer), AutoDockTools (ADT, a set of PMV commands specifically developed to support AutoDock users) and Vision (a visual programming environment). - -*homepage*: - -version |toolchain ----------|---------- -``1.5.7``|``system`` - -### mhcflurry - -MHCflurry implements class I peptide/MHC binding affinity prediction. By default it supports 112 MHC alleles using ensembles of allele-specific models. Pan-allele predictors supporting virtually any MHC allele of known sequence are available for testing (see below). MHCflurry runs on Python 2.7 and 3.4+ using the keras neural network library. It exposes command-line and Python library interfaces. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|---------------------------------- -``1.2.4``|``-Python-3.7.2``|``foss/2019a``, ``fosscuda/2019a`` - -### mhcnuggets - -MHCnuggets: Neoantigen peptide MHC binding prediction for class I and II. - -*homepage*: - -version|versionsuffix |toolchain --------|-----------------|---------------------------------- -``2.3``| |``foss/2020b``, ``fosscuda/2020b`` -``2.3``|``-Python-3.7.2``|``foss/2019a``, ``fosscuda/2019a`` - -### MICOM - -Python package to study microbial communities using metabolic modeling. - -*homepage*: - -version |toolchain -----------|-------------- -``0.33.2``|``foss/2023b`` - -### MicrobeAnnotator - -Easy-to-use pipeline for the comprehensive metabolic annotation of microbial genomes. - -*homepage*: - -version |toolchain ----------|-------------- -``2.0.5``|``foss/2021a`` - -### microctools - -Various worker functions for microclimc package - -*homepage*: - -version |versionsuffix|toolchain -------------------|-------------|-------------- -``0.1.0-20201209``|``-R-4.0.4`` |``foss/2020b`` - -### MiGEC - -MIGEC is a software pipeline that facilitates processing and analysis of immune repertoire sequencing data generated using molecular barcoding technique - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------|---------- -``1.2.8``|``-Java-1.8.0_162``|``system`` -``1.2.9``|``-Java-1.8`` |``system`` - -### MIGRATE-N - -Migrate estimates population parameters, effective population sizes and migration rates of n populations, using genetic data. It uses a coalescent theory approach taking into account history of mutations and uncertainty of the genealogy. - -*homepage*: - -version |toolchain -----------|-------------- -``4.2.8`` |``foss/2016a`` -``4.2.14``|``foss/2018a`` -``5.0.4`` |``foss/2021b`` - -### Mikado - -Mikado is a lightweight Python3 pipeline to identify the most useful or “best” set of transcripts from multiple transcript assemblies. Our approach leverages transcript assemblies generated by multiple methods to define expressed loci, assign a representative transcript and return a set of gene models that selects against transcripts that are chimeric, fragmented or with short or disrupted CDS. - -*homepage*: - -version |toolchain ----------|-------------- -``2.3.4``|``foss/2022b`` - -### Miller - -Miller is like awk, sed, cut, join, and sort for name-indexed data such as CSV, TSV, and tabular JSON - -*homepage*: - -version |toolchain ----------|---------- -``6.4.0``|``system`` - -### mimalloc - -mimalloc is a general purpose allocator with excellent performance characteristics. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``1.7.2``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` - -### MINC - -Medical Image NetCDF or MINC isn't netCDF. - -*homepage*: - -version |toolchain -----------|----------------------------------------------- -``2.4.03``|``foss/2017b``, ``foss/2018a``, ``intel/2017b`` - -### MinCED - -Mining CRISPRs in Environmental Datasets - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|----------------- -``0.4.2``|``-Java-11`` |``GCCcore/8.3.0`` - -### Mini-XML - -Mini-XML is a small XML parsing library that you can use to read XML data files or strings in your application without requiring large non-standard libraries - -*homepage*: - -version |toolchain ----------|------------------ -``2.9`` |``GCCcore/8.2.0`` -``2.12`` |``GCCcore/9.3.0`` -``3.2`` |``GCCcore/10.3.0`` -``3.3.1``|``GCCcore/11.2.0`` - -### miniasm - -Miniasm is a very fast OLC-based de novo assembler for noisy long reads. It takes all-vs-all read self-mappings (typically by minimap) as input and outputs an assembly graph in the GFA format. Different from mainstream assemblers, miniasm does not have a consensus step. It simply concatenates pieces of read sequences to generate the final unitig sequences. Thus the per-base error rate is similar to the raw input reads. - -*homepage*: - -version |toolchain -----------------|-------------------------------------- -``0.3-20191007``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` - -### minibar - -Dual barcode and primer demultiplexing for MinION sequenced reads - -*homepage*: - -version |versionsuffix |toolchain -------------|-----------------|----------------------- -``20200326``|``-Python-3.7.4``|``iccifort/2019.5.281`` -``20200326``|``-Python-3.8.2``|``iccifort/2020.1.217`` - -### MiniCARD - -MiniCARD is a *cardinality solver* based on MiniSAT [www.minisat.se]. MiniCARD handles cardinality constraints natively, using the same efficient data structures and techniques MiniSAT uses for clauses, giving it much better performance on cardinality constraints than CNF encodings of those constraints passed to a typical SAT solver. It can read the standard DIMACS CNF format, the OPB pseudo-boolean format (with linear cardinality constraints only), and CNF+, a format that extends CNF to include cardinality constraints. - -*homepage*: - -version|toolchain --------|------------- -``1.2``|``GCC/9.3.0`` - -### Miniconda2 - -Miniconda is a free minimal installer for conda. It is a small, bootstrap version of Anaconda that includes only conda, Python, the packages they depend on, and a small number of other useful packages. - -*homepage*: - -version |toolchain -----------|---------- -``4.3.21``|``system`` -``4.6.14``|``system`` -``4.7.10``|``system`` - -### Miniconda3 - -Miniconda is a free minimal installer for conda. It is a small, bootstrap version of Anaconda that includes only conda, Python, the packages they depend on, and a small number of other useful packages. - -*homepage*: - -version |toolchain --------------|---------- -``4.4.10`` |``system`` -``4.5.12`` |``system`` -``4.6.14`` |``system`` -``4.7.10`` |``system`` -``4.8.3`` |``system`` -``4.9.2`` |``system`` -``4.12.0`` |``system`` -``22.11.1-1``|``system`` -``23.5.2-0`` |``system`` -``23.9.0-0`` |``system`` - -### minieigen - -A small wrapper for core parts of EIgen, c++ library for linear algebra. - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------------------|------------------------------- -``0.5.3``|``-Python-2.7.11`` |``foss/2016a``, ``intel/2016a`` -``0.5.3``|``-Python-2.7.12`` |``foss/2016b``, ``intel/2016b`` -``0.5.3``|``-Python-2.7.12-Boost-1.63.0``|``intel/2016b`` -``0.5.4``|``-Python-2.7.14`` |``intel/2018a`` - -### Miniforge3 - -Miniforge is a free minimal installer for conda and Mamba specific to conda-forge. - -*homepage*: - -version |toolchain -------------|---------- -``24.1.2-0``|``system`` - -### Minimac4 - -Minimac4 is a latest version in the series of genotype imputation software - preceded by Minimac3 (2015), Minimac2 (2014), minimac (2012) and MaCH (2010). Minimac4 is a lower memory and more computationally efficient implementation of the original algorithms with comparable imputation quality. - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.0``|``foss/2018a`` - -### minimap2 - -Minimap2 is a fast sequence mapping and alignment program that can find overlaps between long noisy reads, or map long reads or their assemblies to a reference genome optionally with detailed alignment (i.e. CIGAR). At present, it works efficiently with query sequences from a few kilobases to ~100 megabases in length at an error rate ~15%. Minimap2 outputs in the PAF or the SAM format. On limited test data sets, minimap2 is over 20 times faster than most other long-read aligners. It will replace BWA-MEM for long reads and contig alignment. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------ -``2.0rc1``|``foss/2016b`` -``2.10`` |``foss/2018a`` -``2.11`` |``intel/2018a`` -``2.12`` |``foss/2018a`` -``2.13`` |``foss/2018b`` -``2.17`` |``GCC/8.2.0-2.31.1``, ``GCC/8.3.0``, ``GCCcore/9.3.0`` -``2.18`` |``GCCcore/10.2.0`` -``2.20`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``2.22`` |``GCCcore/11.2.0`` -``2.24`` |``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``2.26`` |``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### Minipolish - -A tool for Racon polishing of miniasm assemblies - -*homepage*: - -version |toolchain ----------|-------------- -``0.1.3``|``GCC/11.2.0`` - -### MiniSat - -MiniSat is a minimalistic, open-source SAT solver, developed to help researchers and developers alike to get started on SAT. - -*homepage*: - -version |toolchain -------------|------------- -``2.2.0`` |``GCC/9.3.0`` -``20130925``|``GCC/9.3.0`` - -### minizip - -Mini zip and unzip based on zlib - -*homepage*: - -version|toolchain --------|------------------ -``1.1``|``GCCcore/11.2.0`` - -### MINPACK - -Minpack includes software for solving nonlinear equations and nonlinear least squares problems. Five algorithmic paths each include a core subroutine and an easy-to-use driver. The algorithms proceed either from an analytic specification of the Jacobian matrix or directly from the problem functions. The paths include facilities for systems of equations with a banded Jacobian matrix, for least squares problems with a large amount of data, and for checking the consistency of the Jacobian matrix with the functions. - -*homepage*: - -version |toolchain -------------|-------------- -``19961126``|``GCC/10.3.0`` - -### MinPath - -MinPath (Minimal set of Pathways) is a parsimony approach for biological pathway reconstructions using protein family predictions, achieving a more conservative, yet more faithful, estimation of the biological pathways for a query dataset. - -*homepage*: - -version|versionsuffix |toolchain --------|------------------|------------------------------- -``1.4``|``-Python-2.7.15``|``foss/2018b``, ``intel/2018b`` -``1.4``|``-Python-2.7.16``|``intel/2019b`` -``1.6``| |``GCCcore/11.2.0`` - -### MIRA - -MIRA is a whole genome shotgun and EST sequence assembler for Sanger, 454, Solexa (Illumina), IonTorrent data and PacBio (the latter at the moment only CCS and error-corrected CLR reads). - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------------------------ -``4.0.2`` | |``foss/2018b``, ``gompi/2019b``, ``intel/2017b`` -``4.0.2`` |``-Python-2.7.11``|``foss/2016a`` -``4.9.6`` | |``intel/2017b`` -``5.0rc2``| |``foss/2020b`` - -### miRDeep2 - -miRDeep2 is a completely overhauled tool which discovers microRNA genes by analyzing sequenced RNAs - -*homepage*: - -version |versionsuffix |toolchain ------------|-----------------|--------------- -``0.1.1`` |``-Python-3.6.6``|``foss/2018b`` -``2.0.0.8``| |``intel/2016b`` - -### Mish-Cuda - -Mish-Cuda: Self Regularized Non-Monotonic Activation Function - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|------------------ -``20210309``|``-PyTorch-1.9.0``|``fosscuda/2020b`` - -### misha - -The misha package is intended to help users to efficiently analyze genomic data achieved from various experiments. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|-------------- -``4.0.10``|``-R-4.0.0`` |``foss/2020a`` - -### MITgcmutils - -A numerical model designed for study of the atmosphere, ocean, and climate, MITgcm’s flexible non-hydrostatic formulation enables it to efficiently simulate fluid phenomena over a wide range of scales; its adjoint capabilities enable it to be applied to sensitivity questions and to parameter and state estimation problems. By employing fluid equation isomorphisms, a single dynamical kernel can be used to simulate flow of both the atmosphere and ocean. The model is developed to perform efficiently on a wide variety of computational platforms. - -*homepage*: - -version |toolchain ----------|-------------- -``0.1.2``|``foss/2022a`` - -### MITObim - -The MITObim procedure (mitochondrial baiting and iterative mapping) represents a highly efficient approach to assembling novel mitochondrial genomes of non-model organisms directly from total genomic DNA derived NGS reads. - -*homepage*: - -version |toolchain ----------|----------------------------------------------- -``1.9.1``|``foss/2018b``, ``foss/2020b``, ``gompi/2019b`` - -### MitoHiFi - -MitoHiFi is a Python workflow that assembles mitogenomes from Pacbio HiFi reads - -*homepage*: - -version|toolchain --------|-------------- -``3.2``|``foss/2022b`` - -### MitoZ - -MitoZ is a Python3-based toolkit which aims to automatically filter pair-end raw data (fastq files), assemble genome, search for mitogenome sequences from the genome assembly result, annotate mitogenome (genbank file as result), and mitogenome visualization. - -*homepage*: - -version|versionsuffix |toolchain --------|-----------------|-------------- -``2.3``|``-Python-3.6.6``|``foss/2018b`` - -### MiXCR - -MiXCR is a universal software for fast and accurate extraction of T- and B- cell receptor repertoires from any type of sequencing data. - -*homepage*: - -version |versionsuffix |toolchain -----------|-------------------|---------- -``2.1.9`` |``-Java-1.8.0_162``|``system`` -``3.0.3`` |``-Java-1.8`` |``system`` -``3.0.13``|``-Java-1.8`` |``system`` -``3.0.13``|``-Java-11`` |``system`` -``4.6.0`` |``-Java-17`` |``system`` - -### MixMHC2pred - -MixMHC2pred is a predictor of HLA class II ligands and epitopes. It is described in publication Racle, J., et al. Robust prediction of HLA class II epitopes by deep motif deconvolution of immunopeptidomes - -*homepage*: - -version|toolchain --------|---------- -``1.2``|``system`` - -### mkl-dnn - -Intel(R) Math Kernel Library for Deep Neural Networks (Intel(R) MKL-DNN) - -*homepage*: - -version |toolchain -----------|------------------------------- -``0.11`` |``intel/2017b`` -``0.13`` |``intel/2018a`` -``0.16`` |``foss/2018b``, ``intel/2018b`` -``0.17.2``|``foss/2018a`` - -### mkl-service - -Python hooks for Intel(R) Math Kernel Library runtime control settings. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------------------------- -``2.0.2``| |``intel/2019a`` -``2.3.0``| |``intel/2020b``, ``intel/2021b`` -``2.3.0``|``-Python-3.7.4``|``intel/2019b`` - -### mkl_fft - -NumPy-based Python interface to Intel(R) MKL FFT functionality - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|--------------- -``1.0.14``|``-Python-3.6.6``|``intel/2018b`` - -### ml-collections - -ML Collections is a library of Python Collections designed for ML use cases. - -*homepage*: - -version |toolchain ----------|-------------- -``0.1.1``|``foss/2022a`` - -### ml_dtypes - -ml_dtypes is a stand-alone implementation of several NumPy dtype extensions used in machine learning libraries, including: bfloat16: an alternative to the standard float16 format float8_*: several experimental 8-bit floating point representations including: float8_e4m3b11fnuz float8_e4m3fn float8_e4m3fnuz float8_e5m2 float8_e5m2fnuz - -*homepage*: - -version |toolchain ----------|-------------- -``0.3.2``|``gfbf/2023a`` - -### MLC - -Intel Memory Latency Checker (Intel MLC) is a tool used to measure memory latencies and b/w, and how they change with increasing load on the system. - -*homepage*: - -version|toolchain --------|---------- -``3.0``|``system`` - -### MLflow - -MLflow is a platform to streamline machine learning development, including tracking experiments, packaging code into reproducible runs, and sharing and deploying models. - -*homepage*: - -version |toolchain -----------|-------------- -``2.10.2``|``gfbf/2023a`` - -### mlpack - -mlpack is a fast, header-only C++ machine learning library written in C++ and built on the Armadillo linear algebra library, the ensmallen numerical optimization library, and the cereal serialization library. - -*homepage*: - -version |toolchain ----------|-------------- -``4.3.0``|``foss/2023a`` - -### MLxtend - -Mlxtend (machine learning extensions) is a Python library of useful tools for the day-to-day data science tasks. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``0.17.3``|``-Python-3.8.2``|``foss/2020a`` - -### mm-common - -The mm-common module provides the build infrastructure and utilities shared among the GNOME C++ binding libraries. - -*homepage*: - -version |toolchain ----------|------------------ -``1.0.4``|``GCCcore/10.3.0`` -``1.0.5``|``GCCcore/11.3.0`` - -### Mmg - -Mmg is an open source software for simplicial remeshing. It provides 3 applications and 4 libraries: the mmg2d application and the libmmg2d library: adaptation and optimization of a two-dimensional triangulation and generation of a triangulation from a set of points or from given boundary edges the mmgs application and the libmmgs library: adaptation and optimization of a surface triangulation and isovalue discretization the mmg3d application and the libmmg3d library: adaptation and optimization of a tetrahedral mesh and implicit domain meshing the libmmg library gathering the libmmg2d, libmmgs and libmmg3d libraries. - -*homepage*: - -version |toolchain ----------|-------------------------------- -``5.3.9``|``foss/2017b`` -``5.6.0``|``gompi/2021a``, ``gompi/2021b`` -``5.7.2``|``gompi/2022a`` - -### MMSEQ - -The MMSEQ package contains a collection of statistical tools for analysing RNA-seq expression data. - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------|---------- -``1.0.8``|``-linux64-static``|``system`` - -### MMseqs2 - -MMseqs2: ultra fast and sensitive search and clustering suite - -*homepage*: - -version |toolchain ----------------------|------------------------------------------------- -``1-c7a89`` |``foss/2016b`` -``5-9375b`` |``intel/2018a`` -``8-fac81`` |``intel/2018b`` -``10-6d92c`` |``gompi/2019b``, ``iimpi/2019b`` -``11-e1a1c`` |``iimpi/2019b`` -``13-45111`` |``gompi/2020b``, ``gompi/2021a``, ``gompi/2021b`` -``13-45111-20211006``|``gompi/2020b`` -``13-45111-20211019``|``gompi/2020b`` -``14-7e284`` |``gompi/2022a``, ``gompi/2023a`` - -### mmtf-cpp - -The Macromolecular Transmission Format (MMTF) is a new compact binary format to transmit and store biomolecular structures for fast 3D visualization and analysis. - -*homepage*: - -version |toolchain ----------|------------------ -``1.0.0``|``GCCcore/10.2.0`` - -### MNE-Python - -MNE-Python software is an open-source Python package for exploring, visualizing, and analyzing human neurophysiological data such as MEG, EEG, sEEG, ECoG, and more. It includes modules for data input/output, preprocessing, visualization, source estimation, time-frequency analysis, connectivity analysis, machine learning, and statistics. - -*homepage*: - -version |toolchain -----------|-------------- -``0.24.1``|``foss/2021a`` -``1.6.1`` |``foss/2023a`` - -### MOABB - -Build a comprehensive benchmark of popular Brain-Computer Interface (BCI) algorithms applied on an extensive list of freely available EEG datasets. - -*homepage*: - -version |toolchain ----------|-------------- -``0.4.6``|``foss/2021a`` -``1.0.0``|``foss/2023a`` - -### MOABS - -MOABS: MOdel based Analysis of Bisulfite Sequencing data - -*homepage*: - -version |toolchain ------------|--------------- -``1.3.9.6``|``gompi/2019b`` - -### MOB-suite - -Software tools for clustering, reconstruction and typing of plasmids from draft assemblies - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``3.1.0``|``-Python-3.7.4``|``foss/2019b`` - -### ModelTest-NG - -ModelTest-NG is a tool for selecting the best-fit model of evolution for DNA and protein alignments. ModelTest-NG supersedes jModelTest and ProtTest in one single tool, with graphical and command console interfaces. - -*homepage*: - -version |toolchain ----------|--------------- -``0.1.7``|``gompi/2021b`` - -### MODFLOW - -MODFLOW is the USGS's modular hydrologic model. MODFLOW is considered an international standard for simulating and predicting groundwater conditions and groundwater/surface-water interactions. - -*homepage*: - -version |toolchain ----------|-------------- -``6.4.4``|``foss/2023a`` - -### modred - -Compute modal decompositions and reduced-order models, easily, efficiently, and in parallel. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``2.0.2``|``-Python-3.5.2``|``foss/2016b`` - -### MOFA2 - -MOFA is a factor analysis model that provides a general framework for the integration of multi-omic data sets in an unsupervised fashion. Intuitively, MOFA can be viewed as a versatile and statistically rigorous generalization of principal component analysis to multi-omics data. Given several data matrices with measurements of multiple -omics data types on the same or on overlapping sets of samples, MOFA infers an interpretable low-dimensional representation in terms of a few latent factors. These learnt factors represent the driving sources of variation across data modalities, thus facilitating the identification of cellular states or disease subgroups. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|-------------- -``1.14.0``|``-R-4.3.2`` |``foss/2023a`` - -### Molcas - -Molcas is an ab initio quantum chemistry software package developed by scientists to be used by scientists. The basic philosophy is is to be able to treat general electronic structures for molecules consisting of atoms from most of the periodic table. As such, the primary focus of the package is on multiconfigurational methods with applications typically connected to the treatment of highly degenerate states. - -*homepage*: - -version |versionsuffix |toolchain -----------------|----------------------|---------- -``8.0-15.06.18``|``_CentOS_6.6_x86_64``|``system`` -``8.2`` |``-centos-mkl-par`` |``system`` -``8.2`` |``-centos-par`` |``system`` - -### mold - -mold is a high-performance drop-in replacement for existing Unix linkers. - -*homepage*: - -version |toolchain -----------|------------------ -``0.9.6`` |``GCCcore/11.2.0`` -``1.0.0`` |``GCCcore/11.2.0`` -``1.2.1`` |``GCCcore/11.3.0`` -``1.3.0`` |``GCCcore/11.3.0`` -``1.7.1`` |``GCCcore/12.2.0`` -``1.11.0``|``GCCcore/12.3.0`` -``2.3.1`` |``GCCcore/13.2.0`` -``2.31.0``|``GCCcore/13.3.0`` - -### Molden - -Molden is a package for displaying Molecular Density from the Ab Initio packages GAMESS-UK, GAMESS-US and GAUSSIAN and the Semi-Empirical packages Mopac/Ampac - -*homepage*: - -version|toolchain --------|------------------------------------- -``5.6``|``foss/2016a`` -``5.7``|``intel/2016b`` -``5.8``|``foss/2018a`` -``6.1``|``GCCcore/8.2.0`` -``6.8``|``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``7.1``|``GCCcore/11.3.0`` -``7.3``|``GCCcore/12.3.0`` - -### molecularGSM - -Code for single-ended and double-ended molecular GSM. The growing string method is a reaction path and transition state finding method developed in c++. - -*homepage*: - -version |toolchain -------------|--------------- -``20190826``|``intel/2020b`` - -### Molekel - -Molekel is an open-source multi-platform molecular visualization program. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|---------- -``5.4.0``|``-Linux_x86_64``|``system`` - -### molmod - -MolMod is a Python library with many compoments that are useful to write molecular modeling programs. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------------------------------------------------------- -``1.1`` |``-Python-2.7.11``|``intel/2016a`` -``1.1`` |``-Python-2.7.12``|``intel/2016b`` -``1.1`` |``-Python-2.7.13``|``intel/2017a`` -``1.4.3``|``-Python-2.7.14``|``intel/2017b`` -``1.4.3``|``-Python-3.6.3`` |``intel/2017b`` -``1.4.4``|``-Python-2.7.14``|``foss/2018a``, ``intel/2018a`` -``1.4.4``|``-Python-2.7.15``|``intel/2018b`` -``1.4.4``|``-Python-3.7.2`` |``intel/2019a`` -``1.4.5``|``-Python-3.7.4`` |``foss/2019b``, ``intel/2019b`` -``1.4.5``|``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``1.4.8``| |``foss/2020b``, ``foss/2021a``, ``foss/2021b``, ``foss/2023a`` - -### Molpro - -Molpro is a complete system of ab initio programs for molecular electronic structure calculations. - -*homepage*: - -version |versionsuffix |toolchain --------------|-------------------------|---------- -``2010.1.23``|``.Linux_x86_64`` |``system`` -``2015.1.0`` |``.linux_x86_64_intel`` |``system`` -``2015.1.3`` |``.linux_x86_64_openmp`` |``system`` -``2015.1.10``|``.linux_x86_64_openmp`` |``system`` -``2024.1.0`` |``.linux_x86_64_mpipr`` |``system`` -``2024.1.0`` |``.linux_x86_64_sockets``|``system`` - -### MONA - -MONA is a tool that translates formulas to finite-state automata. The formulas may express search patterns, temporal properties of reactive systems, parse tree constraints, etc. MONA analyses the automaton resulting from the compilation and prints out "valid" or a counter-example. - -*homepage*: - -version |toolchain -----------|-------------- -``1.4-18``|``GCC/11.2.0`` - -### MONAI - -MONAI is a PyTorch-based, open-source framework for deep learning in healthcare imaging, part of PyTorch Ecosystem. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``0.8.0``| |``foss/2021a`` -``0.8.0``|``-CUDA-11.3.1``|``foss/2021a`` -``1.0.1``| |``foss/2022a`` -``1.0.1``|``-CUDA-11.7.0``|``foss/2022a`` -``1.3.0``| |``foss/2023a`` -``1.3.0``|``-CUDA-12.1.1``|``foss/2023a`` - -### MONAI-Label - -MONAI Label is an intelligent open source image labeling and learning tool that enables users to create annotated datasets and build AI annotation models for clinical evaluation. MONAI Label enables application developers to build labeling apps in a serverless way, where custom labeling apps are exposed as a service through the MONAI Label Server. - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------------------|-------------- -``0.5.2``|``-PyTorch-1.12.0`` |``foss/2022a`` -``0.5.2``|``-PyTorch-1.12.0-CUDA-11.7.0``|``foss/2022a`` - -### mongolite - -High-performance MongoDB client based on 'mongo-c-driver' and 'jsonlite'. Includes support for aggregation, indexing, map-reduce, streaming, encryption, enterprise authentication, and GridFS. The online user manual provides an overview of the available methods in the package: . - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``2.3.0``|``-R-4.0.0`` |``foss/2020a`` -``2.3.0``|``-R-4.0.3`` |``foss/2020b`` -``2.3.0``|``-R-4.0.4`` |``foss/2020b`` - -### Mono - -An open source, cross-platform, implementation of C# and the CLR that is binary compatible with Microsoft.NET. - -*homepage*: - -version |toolchain ---------------|------------------------------- -``2.10.6`` |``intel/2016b`` -``4.6.2.7`` |``intel/2016b``, ``system`` -``4.8.0.495`` |``intel/2017a`` -``5.4.1.6`` |``foss/2017b``, ``intel/2017b`` -``5.10.0.160``|``foss/2018a`` -``5.18.1.0`` |``foss/2018a`` -``6.4.0.198`` |``foss/2018b`` -``6.8.0.105`` |``GCCcore/8.3.0`` -``6.12.0.122``|``GCCcore/11.2.0`` - -### Monocle3 - -An analysis toolkit for single-cell RNA-seq. - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------------|-------------- -``0.2.0``|``-Python-3.7.2-R-3.6.0``|``foss/2019a`` -``0.2.3``|``-R-4.0.3`` |``foss/2020b`` -``1.3.1``|``-R-4.2.1`` |``foss/2022a`` -``1.3.1``|``-R-4.2.2`` |``foss/2022b`` - -### moonjit - -Moonjit is a Just-In-Time Compiler (JIT) for the Lua programming language. Lua is a powerful, dynamic and light-weight programming language. It may be embedded or used as a general-purpose, stand-alone language. - -*homepage*: - -version |toolchain ----------|----------------- -``2.2.0``|``GCCcore/9.3.0`` - -### MOOSE - -The Multiphysics Object-Oriented Simulation Environment (MOOSE) is a finite-element, multiphysics framework primarily developed by Idaho National Laboratory - -*homepage*: - -version |versionsuffix |toolchain ---------------|-----------------|-------------- -``2021-05-18``|``-Python-3.7.4``|``foss/2019b`` - -### mordecai - -mordecai is a full text geoparsing as a Python library. Extract the place names from a piece of text, resolve them to the correct place, and return their coordinates and structured geographic information. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``2.0.1``|``-Python-3.6.4``|``foss/2018a`` - -### MoreRONN - -MoreRONN is the spiritual successor of RONN and is useful for surveying disorder in proteins as well as designing expressible constructs for X-ray crystallography. - -*homepage*: - -version|toolchain --------|------------- -``4.9``|``GCC/8.3.0`` - -### morphosamplers - -A library for sampling image data along morphological objects such as splines and surfaces. - -*homepage*: - -version |toolchain -----------|-------------- -``0.0.10``|``gfbf/2023a`` - -### mosdepth - -Fast BAM/CRAM depth calculation for WGS, exome, or targeted sequencing - -*homepage*: - -version |toolchain ----------|--------------- -``0.2.2``|``intel/2018a`` -``0.2.3``|``intel/2018a`` -``0.2.4``|``foss/2018b`` -``0.3.3``|``GCC/11.2.0`` - -### Mothur - -Mothur is a single piece of open-source, expandable software to fill the bioinformatics needs of the microbial ecology community. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``1.39.5``|``-Python-2.7.13``|``intel/2017a`` -``1.41.0``|``-Python-2.7.15``|``foss/2018b`` -``1.43.0``|``-Python-3.7.2`` |``foss/2019a`` - -### motif - -Motif refers to both a graphical user interface (GUI) specification and the widget toolkit for building applications that follow that specification under the X Window System on Unix and other POSIX-compliant systems. It was the standard toolkit for the Common Desktop Environment and thus for Unix. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.3.5``|``foss/2016a``, ``intel/2016a`` -``2.3.7``|``intel/2017a`` -``2.3.8``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``foss/2017b``, ``foss/2018a``, ``foss/2018b``, ``foss/2019a``, ``intel/2017b``, ``intel/2018a``, ``intel/2019a`` - -### MotionCor2 - -MotionCor2 correct anisotropic image motion at the single pixel level across the whole frame, suitable for both single particle and tomographic images. Iterative, patch-based motion detection is combined with spatial and temporal constraints and dose weighting. Cite publication: Shawn Q. Zheng, Eugene Palovcak, Jean-Paul Armache, Yifan Cheng and David A. Agard (2016) Anisotropic Correction of Beam-induced Motion for Improved Single-particle Electron Cryo-microscopy, Nature Methods, submitted. BioArxiv: https://biorxiv.org/content/early/2016/07/04/061960 - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``1.2.6``|``GCCcore/8.2.0`` -``1.3.1``|``GCCcore/8.3.0`` -``1.3.2``|``GCCcore/8.3.0`` -``1.4.2``|``GCCcore/10.2.0`` -``1.4.4``|``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``1.5.0``|``GCCcore/11.3.0`` - -### MotionCor3 - -Anisotropic correction of beam induced motion for cryo-electron microscopy and cryo-electron tomography images. MotionCor3, an improved implementation of MotionCor2 with addition of CTF (Contrast Transfer Function) estimation, is a multi-GPU accelerated software package that enables single-pixel level correction of anisotropic beam induced sample motion for cryo-electron microscopy and cryo-electron tomography images. The iterative, patch-based motion detection combined with spatial and temporal constraints and dose weighting provides robust and accurate correction. By refining the measurement of early motion, MotionCor3 further improves correction on tilted samples. The efficiency achieved by multi-GPU acceleration and parallelization enables correction to keep pace with automated data collection. The recent addition of a very robust GPU-accelerated CTF estimation makes MotionCor3 more versatile in cryoEM and cryoET processing pipeline. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|------------------ -``1.0.1``|``-CUDA-12.1.1``|``GCCcore/12.3.0`` - -### motionSegmentation - -Motion correction, explicit spatio-temporal regularization of motion tracking, random speckles enhancement, and segmentation. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``2.7.9``|``-Python-3.7.4``|``foss/2019b`` - -### MoviePy - -MoviePy (full documentation) is a Python library for video editing: cutting, concatenations, title insertions, video compositing (a.k.a. non-linear editing), video processing, and creation of custom effects. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------------------ -``1.0.1``|``-Python-3.7.2``|``foss/2019a`` -``1.0.3``| |``foss/2021a``, ``foss/2021b`` - -### mpath - -For now it's quit simple and get_path_info() method returns information about given path. It can be either a directory or a file path. - -*homepage*: - -version |toolchain ----------|------------------ -``1.1.3``|``GCCcore/11.3.0`` - -### MPB - -MPB is a free and open-source software package for computing the band structures, or dispersion relations, and electromagnetic modes of periodic dielectric structures, on both serial and parallel computers. MPB is an acronym for MIT Photonic Bands. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|----------------------------------------------- -``1.6.2`` |``-Python-2.7.14``|``foss/2017b``, ``foss/2018a``, ``intel/2018a`` -``1.11.1``| |``foss/2020b`` - -### MPC - -Gnu Mpc is a C library for the arithmetic of complex numbers with arbitrarily high precision and correct rounding of the result. It extends the principles of the IEEE-754 standard for fixed precision real floating point numbers to complex numbers, providing well-defined semantics for every operation. At the same time, speed of operation at high precision is a major design goal. - -*homepage*: - -version |versionsuffix |toolchain ----------|---------------|------------------------------------------------------------------------------ -``1.0.3``| |``intel/2017a`` -``1.0.3``|``-MPFR-3.1.6``|``foss/2017b``, ``intel/2017b`` -``1.1.0``| |``GCC/8.3.0``, ``GCC/9.3.0``, ``GCCcore/9.3.0`` -``1.2.1``| |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``1.3.1``| |``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0`` - -### MPFI - -MPFI stands for Multiple Precision Floating-point Interval library. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``1.5.4``|``GCCcore/11.3.0``, ``GCCcore/13.2.0`` - -### MPFR - -The MPFR library is a C library for multiple-precision floating-point computations with correct rounding. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------ -``2.4.2``|``system`` -``3.1.4``|``foss/2016a``, ``foss/2016b``, ``intel/2016a``, ``intel/2016b`` -``3.1.5``|``GCCcore/6.4.0``, ``intel/2017a`` -``3.1.6``|``GCCcore/6.4.0`` -``4.0.1``|``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``4.0.2``|``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``4.1.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``4.2.0``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``4.2.1``|``GCCcore/13.2.0``, ``GCCcore/13.3.0`` - -### mpi4py - -MPI for Python (mpi4py) provides bindings of the Message Passing Interface (MPI) standard for the Python programming language, allowing any Python program to exploit multiple processors. - -*homepage*: - -version |versionsuffix |toolchain ----------|---------------------------------|-------------------------------- -``1.3.1``|``-Python-2.7.11-timed-pingpong``|``intel/2016a`` -``1.3.1``|``-Python-2.7.12-timed-pingpong``|``intel/2016b`` -``2.0.0``|``-Python-2.7.12`` |``intel/2016b`` -``2.0.0``|``-Python-2.7.13-timed-pingpong``|``intel/2017a`` -``3.0.0``|``-Python-2.7.14-timed-pingpong``|``intel/2018a`` -``3.0.0``|``-Python-3.6.3`` |``intel/2017b`` -``3.0.1``|``-Python-3.6.6`` |``intel/2018b`` -``3.0.2``|``-timed-pingpong`` |``gompi/2019a``, ``iimpi/2019a`` -``3.1.4``| |``gompi/2022b``, ``gompi/2023a`` -``3.1.5``| |``gompi/2023b`` - -### MPICH - -MPICH is a high-performance and widely portable implementation of the Message Passing Interface (MPI) standard (MPI-1, MPI-2 and MPI-3). - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``3.0.4``|``GCC/4.8.1`` -``3.2`` |``GCC/4.9.3-2.25``, ``GCC/7.2.0-2.29`` -``3.2.1``|``GCC/7.2.0-2.29`` -``3.3.2``|``GCC/10.2.0``, ``GCC/9.3.0`` -``3.4.2``|``GCC/10.3.0`` - -### MPICH2 - -MPICH v3.x is an open source high-performance MPI 3.0 implementation. It does not support InfiniBand (use MVAPICH2 with InfiniBand devices). - -*homepage*: - -version|toolchain --------|------------- -``1.1``|``GCC/4.8.1`` - -### mpifileutils - -MPI-Based File Utilities For Distributed Systems - -*homepage*: - -version |toolchain -----------|-------------------------------- -``0.9.1`` |``gompi/2019a``, ``iimpi/2019a`` -``0.10`` |``gompi/2020a``, ``iimpi/2020a`` -``0.10.1``|``gompi/2020a`` -``0.11.1``|``gompi/2022a``, ``gompi/2023a`` - -### mpiP - -mpiP is a lightweight profiling library for MPI applications. Because it only collects statistical information about MPI functions, mpiP generates considerably less overhead and much less data than tracing tools. All the information captured by mpiP is task-local. It only uses communication during report generation, typically at the end of the experiment, to merge results from all of the tasks into one output file. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------- -``3.4.1``|``gompi/2019a``, ``iimpi/2019a``, ``iompi/2019.01`` - -### MPJ-Express - -MPJ Express is an open source Java message passing library that allows application developers to write and execute parallel applications for multicore processors and compute clusters/clouds. - -*homepage*: - -version |versionsuffix |toolchain ---------|------------------|-------------- -``0.44``|``-Java-1.8.0_92``|``foss/2016a`` - -### mpmath - -mpmath can be used as an arbitrary-precision substitute for Python's float/complex types and math/cmath modules, but also does much more advanced mathematics. Almost any calculation can be performed just as well at 10-digit or 1000-digit precision, with either real or complex numbers, and in many cases mpmath implements efficient algorithms that scale well for extremely high precision work. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------------------------------------------------------ -``0.19`` |``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``1.0.0``|``-Python-2.7.14``|``intel/2018a`` -``1.0.0``|``-Python-2.7.15``|``foss/2018b`` -``1.1.0``|``-Python-3.8.2`` |``GCCcore/9.3.0`` -``1.2.1``| |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``1.3.0``| |``GCCcore/12.3.0`` - -### MrBayes - -MrBayes is a program for Bayesian inference and model choice across a wide range of phylogenetic and evolutionary models. - -*homepage*: - -version |toolchain -----------|-------------------------------------------------- -``3.2.6`` |``foss/2016a``, ``foss/2017a``, ``gompi/2020b`` -``3.2.7`` |``gompi/2020b``, ``gompi/2022a``, ``gompic/2019b`` -``3.2.7a``|``foss/2020a``, ``iimpi/2019a`` - -### mrcfile - -mrcfile is a Python implementation of the MRC2014 file format, which is used in structural biology to store image and volume data. It allows MRC files to be created and opened easily using a very simple API, which exposes the file’s header and data as numpy arrays. The code runs in Python 2 and 3 and is fully unit-tested. This library aims to allow users and developers to read and write standard- compliant MRC files in Python as easily as possible, and with no dependencies on any compiled libraries except numpy. You can use it interactively to inspect files, correct headers and so on, or in scripts and larger software packages to provide basic MRC file I/O functions. - -*homepage*: - -version |toolchain ----------|-------------------------------------------------- -``1.3.0``|``foss/2020b``, ``foss/2021a``, ``fosscuda/2020b`` -``1.4.3``|``foss/2022a`` -``1.5.0``|``foss/2023a`` - -### MRChem - -MRChem is a numerical real-space code for molecular electronic structure calculations within the self-consistent field (SCF) approximations of quantum chemistry: Hartree-Fock and Density Functional Theory. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``1.0.0``|``-Python-3.8.2``|``foss/2020a`` -``1.1.1``| |``foss/2022a`` - -### MRCPP - -MultiResolution Computation Program Package - -*homepage*: - -version |toolchain ----------|-------------- -``1.3.6``|``foss/2020a`` -``1.4.1``|``foss/2022a`` - -### MRIcron - -MRIcron allows viewing of medical images. It includes tools to complement SPM and FSL. Native format is NIFTI but includes a conversion program (see dcm2nii) for converting DICOM images. Features layers, ROIs, and volume rendering. - -*homepage*: - -version |toolchain -----------------|---------- -``1.0.20180614``|``system`` -``20150601`` |``system`` - -### MRPRESSO - -Performs the Mendelian Randomization Pleiotropy RESidual Sum and Outlier (MR-PRESSO) method.. - -*homepage*: - -version |toolchain -----------------|-------------- -``1.0-20230502``|``foss/2022a`` - -### MRtrix - -MRtrix provides a set of tools to perform diffusion-weighted MR white-matter tractography in a manner robust to crossing fibres, using constrained spherical deconvolution (CSD) and probabilistic streamlines. - -*homepage*: - -version |versionsuffix |toolchain --------------------|------------------|--------------- -``0.3.14`` |``-Python-2.7.11``|``intel/2016a`` -``0.3.15`` |``-Python-2.7.12``|``intel/2016b`` -``3.0-rc-20191217``|``-Python-2.7.16``|``foss/2019b`` -``3.0-rc-20191217``|``-Python-3.7.4`` |``foss/2019b`` -``3.0.0`` |``-Python-3.8.2`` |``foss/2020a`` -``3.0.3`` | |``foss/2021a`` -``3.0.4`` | |``foss/2022b`` -``3.0_RC2`` |``-Python-2.7.13``|``foss/2017a`` -``3.0_RC3`` |``-Python-2.7.14``|``intel/2018a`` - -### MSFragger - -MSFragger is an ultrafast database search tool for peptide identification in mass spectrometry-based proteomics. It has demonstrated excellent performance across a wide range of datasets and applications. MSFragger is suitable for standard shotgun proteomics analyses as well as large datasets (including timsTOF PASEF data), enzyme unconstrained searches (e.g., peptidome), open database searches (e.g., precursor mass tolerance set to hundreds of Daltons) for identification of modified peptides, and glycopeptide identification (N-linked and O-linked). - -*homepage*: - -version|versionsuffix|toolchain --------|-------------|---------- -``4.0``|``-Java-11`` |``system`` - -### msgpack-c - -MessagePack is an efficient binary serialization format, which lets you exchange data among multiple languages like JSON, except that it's faster and smaller. Small integers are encoded into a single byte while typical short strings require only one extra byte in addition to the strings themselves. - -*homepage*: - -version |toolchain ----------|------------------ -``3.3.0``|``GCCcore/10.2.0`` -``6.0.0``|``GCC/12.2.0`` - -### MSM - -Multimodal Surface Matching with Higher order Clique Reduction - -*homepage*: - -version|toolchain --------|------------------------------- -``1.0``|``foss/2017b``, ``intel/2017b`` - -### MSPC - -Using combined evidence from replicates to evaluate ChIP-seq peaks - -*homepage*: - -version |toolchain ----------|---------- -``3.3.1``|``system`` - -### msprime - -msprime is a coalescent simulator and library for processing tree-based genetic data. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------------------ -``0.7.0``|``-Python-3.7.2``|``intel/2019a`` -``1.2.0``| |``foss/2021b``, ``foss/2022a`` - -### mstore - -Molecular structure store for testing - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------------------------------------------------------- -``0.2.0``|``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0``, ``intel-compilers/2022.1.0``, ``intel-compilers/2022.2.1`` - -### MTL4 - -The Matrix Template Library 4 incorporates the most modern programming techniques to provide an easy and intuitive interface to users while enabling optimal performance. The natural mathematical notation in MTL4 empowers all engineers and scientists to implement their algorithms and models in minimal time. All technical aspects are encapsulated in the library. - -*homepage*: - -version |toolchain -------------|---------- -``4.0.8878``|``system`` -``4.0.9555``|``system`` - -### MuJoCo - -MuJoCo stands for Multi-Joint dynamics with Contact. It is a general purpose physics engine that aims to facilitate research and development in robotics, biomechanics, graphics and animation, machine learning, and other areas which demand fast and accurate simulation of articulated structures interacting with their environment. - -*homepage*: - -version |toolchain ----------|------------------ -``2.1.1``|``GCCcore/11.2.0`` -``2.2.2``|``GCCcore/11.3.0`` -``3.1.4``|``GCCcore/12.3.0`` - -### mujoco-py - -MuJoCo is a physics engine for detailed, efficient rigid body simulations with contacts. mujoco-py allows using MuJoCo from Python 3. - -*homepage*: - -version |toolchain -------------|-------------- -``2.1.2.14``|``foss/2021b`` - -### multicharge - -Electronegativity equilibration model for atomic partial charges. - -*homepage*: - -version |toolchain ----------|------------------------------------------------ -``0.2.0``|``gfbf/2022b``, ``iimkl/2022a``, ``iimkl/2022b`` - -### multichoose - -generate multiset combinations (n multichoose k). - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------------------------------------------------- -``1.0.3``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0``, ``GCCcore/9.3.0`` - -### MultilevelEstimators - -The Julia module for Multilevel Monte Carlo methods - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``0.1.0``|``-Julia-1.7.2``|``GCC/11.2.0`` - -### MultiNest - -MultiNest is a Bayesian inference tool which calculates the evidence and explores the parameter space which may contain multiple posterior modes and pronounced (curving) degeneracies in moderately high dimensions. - -*homepage*: - -version |toolchain ---------|--------------- -``3.10``|``intel/2016a`` - -### multiprocess - -better multiprocessing and multithreading in python - -*homepage*: - -version |toolchain ------------|-------------- -``0.70.15``|``gfbf/2023a`` - -### MultiQC - -Aggregate results from bioinformatics analyses across many samples into a single report. MultiQC searches a given directory for analysis logs and compiles a HTML report. It's a general use tool, perfect for summarising the output from numerous bioinformatics tools. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------- -``0.9`` |``-Python-2.7.12``|``foss/2016b`` -``1.2`` |``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``1.2`` |``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``1.6`` |``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``1.6`` |``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``1.7`` |``-Python-2.7.15``|``intel/2018b`` -``1.7`` |``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``1.8`` |``-Python-2.7.16``|``intel/2019b`` -``1.8`` |``-Python-3.7.4`` |``foss/2019b``, ``intel/2019b`` -``1.9`` |``-Python-3.7.4`` |``foss/2019b`` -``1.9`` |``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``1.10.1``| |``foss/2020b`` -``1.11`` | |``foss/2021a`` -``1.12`` | |``foss/2021b`` -``1.14`` | |``foss/2022a``, ``foss/2022b`` - -### Multiwfn - -Multiwfn is an extremely powerful program for realizingi electronic wavefunction analysis, which is a key ingredient of quantum chemistry. Multiwfn is free, open-source, high-efficient, very user-friendly and flexible, it supports almost all of the most important wavefunction analysis methods. - -*homepage*: - -version |toolchain ----------|-------------------------------- -``3.4.1``|``intel/2017b`` -``3.6`` |``intel/2019a``, ``intel/2019b`` - -### muMerge - -muMerge is a tool for combining bed regions from multiple bed files that overlap. - -*homepage*: - -version |toolchain ----------|-------------- -``1.1.0``|``foss/2022a`` - -### MUMmer - -MUMmer is a system for rapidly aligning entire genomes, whether in complete or draft form. AMOS makes use of it. - -*homepage*: - -version |toolchain ---------------|------------------------------------------------------------------------------ -``3.23`` |``GCCcore/10.3.0``, ``GCCcore/9.3.0``, ``foss/2016b`` -``4.0.0beta2``|``GCCcore/10.2.0``, ``GCCcore/11.2.0``, ``GCCcore/9.3.0``, ``foss/2018b`` -``4.0.0rc1`` |``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### mumott - -mumott is a Python library for the analysis of multi-modal tensor tomography data. - -*homepage*: - -version|toolchain --------|-------------- -``2.1``|``foss/2022b`` - -### MUMPS - -A parallel sparse direct solver. This module is for its sequential variant. - -*homepage*: - -version |versionsuffix |toolchain ----------|--------------|----------------------------------------------------------------------------------------------------------------- -``5.1.2``|``-metis`` |``foss/2017b`` -``5.2.1``|``-metis`` |``foss/2018b``, ``foss/2019a``, ``foss/2019b``, ``foss/2020a``, ``intel/2019a``, ``intel/2019b``, ``intel/2020a`` -``5.2.1``|``-metis-seq``|``foss/2019a``, ``intel/2019a`` -``5.3.5``|``-metis`` |``foss/2020b``, ``intel/2020b`` -``5.4.0``|``-metis`` |``foss/2021a``, ``intel/2021a`` -``5.4.1``|``-metis`` |``foss/2021b``, ``intel/2021b`` -``5.5.0``|``-metis`` |``foss/2021a`` -``5.5.1``|``-metis`` |``foss/2022a`` -``5.6.1``|``-metis`` |``foss/2022b``, ``foss/2023a`` -``5.6.1``|``-metis-seq``|``gomkl/2023a`` - -### muParser - -muParser is an extensible high performance math expression parser library written in C++. It works by transforming a mathematical expression into bytecode and precalculating constant parts of the expression. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``2.2.5``|``GCCcore/6.4.0`` -``2.3.2``|``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``2.3.3``|``GCCcore/10.3.0`` -``2.3.4``|``GCCcore/11.3.0``, ``GCCcore/12.2.0`` - -### muparserx - -A C++ Library for Parsing Expressions with Strings, Complex Numbers, Vectors, Matrices and more. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``4.0.8``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` - -### MuPeXI - -MuPeXI: Mutant Peptide eXtractor and Informer. Given a list of somatic mutations (VCF file) as input, MuPeXI returns a table containing all mutated peptides (neo-peptides) of user-defined lengths, along with several pieces of information relevant for identifying which of these neo-peptides are likely to serve as neo-epitopes. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------------------|-------------- -``1.2.0``|``-Perl-5.28.0-Python-2.7.15``|``foss/2018b`` - -### MUSCLE - -MUSCLE is one of the best-performing multiple alignment programs according to published benchmark tests, with accuracy and speed that are consistently better than CLUSTALW. MUSCLE can align hundreds of sequences in seconds. Most users learn everything they need to know about MUSCLE in a few minutes-only a handful of command-line options are needed to perform common alignment tasks. - -*homepage*: - -version |versionsuffix |toolchain -------------|---------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``3.8.31`` | |``GCC/7.3.0-2.30``, ``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/9.3.0``, ``foss/2016a``, ``foss/2017b``, ``foss/2018a``, ``intel/2016a``, ``intel/2017b``, ``intel/2018a``, ``intel/2018b`` -``3.8.31`` |``-i86linux64``|``system`` -``3.8.1551``| |``GCC/10.2.0``, ``GCC/8.2.0-2.31.1``, ``GCC/8.3.0`` -``5.0.1428``| |``GCCcore/10.3.0`` -``5.1`` | |``GCCcore/11.2.0`` -``5.1.0`` | |``GCCcore/10.3.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### MUSCLE3 - -MUSCLE3 allows connecting multiple simulation models together into a multiscale simulation. Simulation models can be as simple as a single Python file, or as complex as a combination of multiple separate simulation codes written in C++ or Fortran, and running on an HPC machine. - -*homepage*: - -version |toolchain ----------|-------------- -``0.7.0``|``foss/2022b`` - -### MuSiC - -Multi-subject Single Cell deconvolution (MuSiC) is a deconvolution method that utilizes cross-subject scRNA-seq to estimate cell type proportions in bulk RNA-seq data. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``1.6.2``|``-R-3.5.1`` |``foss/2018b`` - -### MUST - -MUST detects usage errors of the Message Passing Interface (MPI) and reports them to the user. As MPI calls are complex and usage errors common, this functionality is extremely helpful for application developers that want to develop correct MPI applications. This includes errors that already manifest – segmentation faults or incorrect results – as well as many errors that are not visible to the application developer or do not manifest on a certain system or MPI implementation. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``1.6`` |``-Python-3.6.6``|``foss/2018b`` -``1.6`` |``-Python-3.7.4``|``foss/2019b`` -``1.7.1``| |``foss/2020b`` -``1.7.2``| |``foss/2021a`` - -### MuTect - -MuTect is a method developed at the Broad Institute for the reliable and accurate identification of somatic point mutations in next generation sequencing data of cancer genomes. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|---------- -``1.1.4``|``-Java-1.7.0_76``|``system`` -``1.1.4``|``-Java-1.7.0_80``|``system`` -``1.1.7``|``-Java-1.7.0_80``|``system`` - -### mutil - -Mutil is a set of standard utilities that have been parallelized to maximize performance on modern file systems. These currently include multi-threaded drop-in replacements for cp and md5sum from GNU coreutils, which have achieved 10/30x rates on one/many nodes. - -*homepage*: - -version |toolchain ------------|--------------- -``1.822.3``|``intel/2016a`` - -### MVAPICH2 - -This is an MPI 3.0 implementation. It is based on MPICH2 and MVICH. - -*homepage*: - -version |toolchain ----------|------------------ -``2.0.1``|``GCC/4.8.4`` -``2.1`` |``GCC/4.9.3-2.25`` -``2.2b`` |``GCC/4.9.3-2.25`` - -### MView - -MView reformats the results of a sequence database search or a multiple alignment, optionally adding HTML markup. - -*homepage*: - -version |toolchain ---------|-------------- -``1.67``|``GCC/11.3.0`` - -### mxml - -Mini-XML is a tiny XML library that you can use to read and write XML and XML-like data files in your application without requiring large non-standard libraries. - -*homepage*: - -version|toolchain --------|----------------- -``3.2``|``GCCcore/8.3.0`` - -### mxmlplus - -Mxml is a pure C library (yet having an object oriented layout) that is meant to help developers implementing XML file interpretation in their projects. - -*homepage*: - -version |toolchain ----------|------------- -``0.9.2``|``GCC/9.3.0`` - -### MXNet - -Flexible and Efficient Library for Deep Learning - -*homepage*: - -version |versionsuffix |toolchain ----------|--------------------------|-------------- -``0.9.3``|``-Python-2.7.12-R-3.3.3``|``foss/2016b`` -``1.9.1``| |``foss/2022a`` - -### MyCC - -MyCC is built and delivered as a tailored solution for metagenomics sequencesclassfication. - -*homepage*: - -version |versionsuffix |toolchain ---------------|------------------|--------------- -``2017-03-01``|``-Python-2.7.16``|``intel/2019b`` - -### mygene - -Python Client for MyGene.Info services. - -*homepage*: - -version |toolchain ----------|------------------------------ -``3.1.0``|``intel/2019a`` -``3.2.2``|``foss/2022a``, ``foss/2022b`` - -### MyMediaLite - -MyMediaLite is a lightweight, multi-purpose library of recommender system algorithms. - -*homepage*: - -version |toolchain ---------|--------------- -``3.10``|``intel/2016b`` -``3.11``|``intel/2016b`` -``3.12``|``intel/2017a`` - -### mympingpong - -A mpi4py based random pair pingpong network stress test. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``0.7.0``|``-Python-2.7.11``|``intel/2016a`` -``0.7.1``|``-Python-2.7.12``|``intel/2016b`` -``0.8.0``|``-Python-2.7.13``|``intel/2017a`` -``0.8.0``|``-Python-2.7.14``|``intel/2018a`` -``0.8.0``|``-Python-2.7.15``|``foss/2019a``, ``intel/2019a`` - -### Myokit - -Myokit is an open-source Python-based toolkit that facilitates modeling and simulation of cardiac cellular electrophysiology. - -*homepage*: - -version |toolchain -----------|---------------------------------- -``1.32.0``|``foss/2020b``, ``fosscuda/2020b`` - -### mypy - -Optional static typing for Python - -*homepage*: - -version |toolchain ----------|--------------- -``0.4.5``|``intel/2016b`` - -### MySQL - -MySQL is one of the world's most widely used open-source relational database management system (RDBMS). - -*homepage*: - -version |versionsuffix |toolchain -----------|---------------|------------------ -``5.6.26``|``-clientonly``|``GNU/4.9.3-2.25`` -``5.7.21``|``-clientonly``|``GCCcore/6.4.0`` - -### MySQL-python - -MySQL database connector for Python - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------------------------|--------------- -``1.2.5``|``-Python-2.7.11`` |``intel/2016a`` -``1.2.5``|``-Python-2.7.11-MariaDB-10.1.14``|``intel/2016a`` - -### mysqlclient - -Python interface to MySQL - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``1.3.7``|``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` - -## N - - -[n2v](#n2v) - [NAG](#nag) - [NAGfor](#nagfor) - [NAMD](#namd) - [namedlist](#namedlist) - [nano](#nano) - [NanoCaller](#nanocaller) - [NanoComp](#nanocomp) - [nanocompore](#nanocompore) - [NanoFilt](#nanofilt) - [nanoflann](#nanoflann) - [nanoget](#nanoget) - [NanoLyse](#nanolyse) - [nanomath](#nanomath) - [nanomax-analysis-utils](#nanomax-analysis-utils) - [nanonet](#nanonet) - [NanoPlot](#nanoplot) - [nanopolish](#nanopolish) - [NanopolishComp](#nanopolishcomp) - [NanoStat](#nanostat) - [napari](#napari) - [NASM](#nasm) - [nauty](#nauty) - [nbclassic](#nbclassic) - [NBO](#nbo) - [NCBI-Toolkit](#ncbi-toolkit) - [ncbi-vdb](#ncbi-vdb) - [NCCL](#nccl) - [NCCL-tests](#nccl-tests) - [ncdf4](#ncdf4) - [ncdu](#ncdu) - [NCIPLOT](#nciplot) - [NCL](#ncl) - [NCO](#nco) - [ncolor](#ncolor) - [ncompress](#ncompress) - [ncurses](#ncurses) - [ncview](#ncview) - [nd2reader](#nd2reader) - [ne](#ne) - [NECI](#neci) - [NEdit](#nedit) - [Nek5000](#nek5000) - [Nektar++](#nektar++) - [neon](#neon) - [neptune-client](#neptune-client) - [Net-core](#net-core) - [netCDF](#netcdf) - [netCDF-C++](#netcdf-c++) - [netCDF-C++4](#netcdf-c++4) - [netCDF-Fortran](#netcdf-fortran) - [netcdf4-python](#netcdf4-python) - [netloc](#netloc) - [NetLogo](#netlogo) - [netMHC](#netmhc) - [netMHCII](#netmhcii) - [netMHCIIpan](#netmhciipan) - [netMHCpan](#netmhcpan) - [NetPIPE](#netpipe) - [NetPyNE](#netpyne) - [nettle](#nettle) - [networkTools](#networktools) - [networkx](#networkx) - [NeuroKit](#neurokit) - [NEURON](#neuron) - [NewHybrids](#newhybrids) - [Nextflow](#nextflow) - [NextGenMap](#nextgenmap) - [NEXUS-CL](#nexus-cl) - [nf-core](#nf-core) - [nf-core-mag](#nf-core-mag) - [NFFT](#nfft) - [nghttp2](#nghttp2) - [nghttp3](#nghttp3) - [NGLess](#ngless) - [nglview](#nglview) - [NGS](#ngs) - [NGS-Python](#ngs-python) - [NGSadmix](#ngsadmix) - [NGSpeciesID](#ngspeciesid) - [ngspice](#ngspice) - [ngtcp2](#ngtcp2) - [NiBabel](#nibabel) - [nichenetr](#nichenetr) - [NIfTI](#nifti) - [nifti2dicom](#nifti2dicom) - [Nilearn](#nilearn) - [Nim](#nim) - [NIMBLE](#nimble) - [Ninja](#ninja) - [Nipype](#nipype) - [NLMpy](#nlmpy) - [nlohmann_json](#nlohmann_json) - [NLopt](#nlopt) - [NLTK](#nltk) - [nnU-Net](#nnu-net) - [Node-RED](#node-red) - [nodejs](#nodejs) - [noise](#noise) - [Normaliz](#normaliz) - [nose-parameterized](#nose-parameterized) - [nose3](#nose3) - [novaSTA](#novasta) - [novoalign](#novoalign) - [NOVOPlasty](#novoplasty) - [npstat](#npstat) - [NRGLjubljana](#nrgljubljana) - [Nsight-Compute](#nsight-compute) - [Nsight-Systems](#nsight-systems) - [NSPR](#nspr) - [NSS](#nss) - [nsync](#nsync) - [ntCard](#ntcard) - [ntEdit](#ntedit) - [ntHits](#nthits) - [NTL](#ntl) - [NTPoly](#ntpoly) - [num2words](#num2words) - [numactl](#numactl) - [numba](#numba) - [numdiff](#numdiff) - [numexpr](#numexpr) - [numpy](#numpy) - [NVHPC](#nvhpc) - [nvitop](#nvitop) - [nvofbf](#nvofbf) - [nvompi](#nvompi) - [NVSHMEM](#nvshmem) - [nvtop](#nvtop) - [NWChem](#nwchem) - [NxTrim](#nxtrim) - - -### n2v - -Learning Denoising from Single Noisy Images - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``0.3.2``| |``foss/2022a`` -``0.3.2``|``-CUDA-11.3.1``|``foss/2021a`` - -### NAG - -The worlds largest collection of robust, documented, tested and maintained numerical algorithms. - -*homepage*: - -version|toolchain --------|---------------------------------- -``7.1``|``gompi/2022b`` -``24`` |``PGI/17.4-GCC-6.4.0-2.28`` -``26`` |``GCCcore/6.4.0``, ``intel/2018a`` - -### NAGfor - -The checking compiler for improved code portability and detailed error reporting. - -*homepage*: - -version |toolchain -----------|---------- -``6.2.14``|``system`` -``7.1`` |``system`` - -### NAMD - -NAMD is a parallel molecular dynamics code designed for high-performance simulation of large biomolecular systems. - -*homepage*: - -version |versionsuffix |toolchain ---------|----------------|----------------------------------------------------------------------------------------------- -``2.11``|``-mpi`` |``intel/2016a`` -``2.12``|``-CUDA-8.0.61``|``foss/2016b`` -``2.12``|``-mpi`` |``foss/2017a``, ``foss/2017b``, ``intel/2017a``, ``intel/2017b`` -``2.13``| |``fosscuda/2018b`` -``2.13``|``-mpi`` |``foss/2018b``, ``foss/2019b``, ``intel/2018b`` -``2.14``| |``fosscuda/2019b``, ``fosscuda/2020b`` -``2.14``|``-CUDA-11.3.1``|``foss/2021a`` -``2.14``|``-CUDA-11.7.0``|``foss/2022a`` -``2.14``|``-mpi`` |``foss/2019b``, ``foss/2020a``, ``foss/2020b``, ``foss/2022a``, ``foss/2023a``, ``intel/2020a`` - -### namedlist - -A Python object, similar to namedtuple, but for lists. - -*homepage*: - -version|toolchain --------|------------------ -``1.8``|``GCCcore/11.2.0`` - -### nano - -a simple editor, inspired by Pico - -*homepage*: - -version|toolchain --------|------------------ -``6.4``|``GCCcore/11.3.0`` -``7.0``|``GCCcore/11.3.0`` -``7.1``|``GCCcore/12.2.0`` -``7.2``|``GCCcore/12.2.0`` - -### NanoCaller - -NanoCaller is a computational method that integrates long reads in deep convolutional neural network for the detection of SNPs/indels from long-read sequencing data. - -*homepage*: - -version |toolchain ----------|-------------- -``3.4.1``|``foss/2022a`` - -### NanoComp - -Comparing runs of Oxford Nanopore sequencing data and alignments - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|--------------- -``1.10.1``|``-Python-3.7.4``|``intel/2019b`` -``1.13.1``| |``intel/2020b`` - -### nanocompore - -Nanocompore identifies differences in ONT nanopore sequencing raw signal corresponding to RNA modifications by comparing 2 samples - -*homepage*: - -version |versionsuffix |toolchain ---------------|-----------------|--------------- -``1.0.0rc3-2``|``-Python-3.8.2``|``intel/2020a`` - -### NanoFilt - -Filtering and trimming of long read sequencing data. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------------------- -``2.5.0``|``-Python-3.6.6``|``foss/2018b`` -``2.6.0``|``-Python-3.7.4``|``foss/2019b``, ``intel/2019b`` -``2.6.0``|``-Python-3.8.2``|``intel/2020a`` -``2.8.0``| |``foss/2021b`` - -### nanoflann - -nanoflann is a C++11 header-only library for building KD-Trees of datasets with different topologies. - -*homepage*: - -version |toolchain ----------|------------------ -``1.4.0``|``GCCcore/10.3.0`` -``1.5.0``|``GCCcore/11.3.0`` - -### nanoget - -Functions to extract information from Oxford Nanopore sequencing data and alignments - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|---------------------------------------------- -``1.12.1``|``-Python-3.7.4``|``intel/2019b`` -``1.15.0``| |``intel/2020b`` -``1.18.1``| |``foss/2021a``, ``foss/2022a``, ``foss/2022b`` -``1.19.1``| |``foss/2022a`` - -### NanoLyse - -Remove reads mapping to the lambda phage genome from a fastq file. - -*homepage*: - -version |toolchain ----------|-------------- -``1.2.1``|``foss/2021a`` - -### nanomath - -A few simple math functions for other Oxford Nanopore processing scripts - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------------------ -``0.23.1``|``-Python-3.7.4``|``intel/2019b`` -``1.2.0`` | |``intel/2020b`` -``1.2.1`` | |``foss/2021a`` -``1.3.0`` | |``foss/2022a``, ``foss/2022b`` - -### nanomax-analysis-utils - -A set of tools for handling and analysing data at the NanoMAX beamline. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|---------------------------------- -``0.4`` |``-Python-3.7.4``|``foss/2019b``, ``fosscuda/2019b`` -``0.4.3``| |``foss/2020b``, ``fosscuda/2020b`` -``0.4.4``| |``foss/2021b`` - -### nanonet - -Nanonet provides recurrent neural network basecalling for Oxford Nanopore MinION data. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``2.0.0``|``-Python-2.7.13``|``intel/2017a`` - -### NanoPlot - -Plotting suite for long read sequencing data and alignments - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------------------- -``1.28.4``|``-Python-3.7.4``|``intel/2019b`` -``1.33.0``| |``foss/2021a``, ``intel/2020b`` -``1.42.0``| |``foss/2022a`` - -### nanopolish - -Software package for signal-level analysis of Oxford Nanopore sequencing data. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------- -``0.9.2`` | |``intel/2018a`` -``0.10.2``|``-Python-2.7.15``|``foss/2018b``, ``intel/2018b`` -``0.13.1``|``-Python-3.6.6`` |``foss/2018b`` -``0.13.2``|``-Python-3.8.2`` |``foss/2020a`` -``0.13.3``| |``foss/2020b`` -``0.14.0``| |``foss/2022a`` - -### NanopolishComp - -NanopolishComp is a Python3 package for downstream analyses of Nanopolish output files - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``0.6.11``|``-Python-3.8.2``|``foss/2020a`` - -### NanoStat - -Calculate various statistics from a long read sequencing dataset in fastq, bam or albacore sequencing summary format. - -*homepage*: - -version |toolchain ----------|------------------------------ -``1.6.0``|``foss/2021a``, ``foss/2022a`` - -### napari - -napari is a fast, interactive, multi-dimensional image viewer for Python. It's designed for browsing, annotating, and analyzing large multi-dimensional images. It's built on top of Qt (for the GUI), vispy (for performant GPU-based rendering), and the scientific Python stack (numpy, scipy). - -*homepage*: - -version |toolchain -----------------|------------------------------ -``0.4.15`` |``foss/2021b`` -``0.4.18`` |``foss/2022a``, ``foss/2023a`` -``0.4.19.post1``|``foss/2023a`` - -### NASM - -NASM: General-purpose x86 assembler - -*homepage*: - -version |toolchain ------------|-------------------------------------------------------------------------------------------------- -``2.11.08``|``GCCcore/5.4.0``, ``foss/2016a``, ``foss/2016b``, ``gimkl/2.11.5``, ``intel/2016a`` -``2.12.01``|``foss/2016a``, ``intel/2016a`` -``2.12.02``|``foss/2016a``, ``foss/2016b``, ``intel/2016b``, ``intel/2017a``, ``system`` -``2.13.01``|``GCCcore/6.3.0``, ``GCCcore/6.4.0`` -``2.13.03``|``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``2.14.02``|``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``2.15.05``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``2.16.01``|``GCCcore/12.3.0``, ``GCCcore/13.2.0`` -``2.16.03``|``GCCcore/13.3.0`` - -### nauty - -nauty and Traces are programs for computing automorphism groups of graphs and digraphs. They can also produce a canonical label. - -*homepage*: - -version |toolchain -----------|-------------------- -``2.6r12``|``GCC/8.2.0-2.31.1`` -``2.7rc2``|``GCC/8.2.0-2.31.1`` -``2.7rc5``|``GCC/8.3.0`` -``2.8.6`` |``GCC/11.3.0`` -``2.8.8`` |``GCC/13.2.0`` - -### nbclassic - -NbClassic provides a backwards compatible Jupyter Notebook interface that you can install side-by-side with the latest versions: That way, you can fearlessly upgrade without worrying about your classic extensions and customizations breaking. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``1.0.0``|``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### NBO - -The Natural Bond Orbital (NBO) program is a discovery tool for chemical insights from complex wavefunctions. - -*homepage*: - -version |toolchain -----------|--------------------------------------------------------------------------------------------- -``1.1`` |``intel/2016a`` -``7.0`` |``intel/2017b`` -``7.0.10``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/9.3.0``, ``gfbf/2022a``, ``gfbf/2022b`` - -### NCBI-Toolkit - -The NCBI Toolkit is a collection of utilities developed for the production and distribution of GenBank, Entrez, BLAST, and related services by the National Center for Biotechnology Information. - -*homepage*: - -version |toolchain -----------|--------------- -``18.0.0``|``intel/2017a`` - -### ncbi-vdb - -The SRA Toolkit and SDK from NCBI is a collection of tools and libraries for using data in the INSDC Sequence Read Archives. - -*homepage*: - -version |toolchain ------------|------------------------------------------------ -``2.5.8-1``|``foss/2016b``, ``intel/2016a`` -``2.7.0`` |``foss/2016b`` -``2.8.2`` |``foss/2017b``, ``intel/2017a``, ``intel/2017b`` -``2.9.1-1``|``foss/2018a``, ``intel/2018a`` -``2.9.3`` |``foss/2018b`` -``2.10.4`` |``gompi/2019b`` -``2.10.7`` |``gompi/2020a`` -``2.10.9`` |``gompi/2020b``, ``gompi/2021a`` -``2.11.2`` |``gompi/2021b`` -``3.0.0`` |``gompi/2021b``, ``gompi/2022a`` -``3.0.2`` |``gompi/2022a`` -``3.0.5`` |``gompi/2021a``, ``gompi/2022b`` -``3.0.10`` |``gompi/2023a`` - -### NCCL - -The NVIDIA Collective Communications Library (NCCL) implements multi-GPU and multi-node collective communication primitives that are performance optimized for NVIDIA GPUs. - -*homepage*: - -version |versionsuffix |toolchain ------------|-------------------|------------------------------ -``2.1.4`` |``-CUDA-9.0.176`` |``system`` -``2.2.13`` |``-CUDA-9.2.148.1``|``system`` -``2.3.7`` | |``fosscuda/2018b`` -``2.4.2`` | |``gcccuda/2019a`` -``2.4.8`` | |``gcccuda/2019b`` -``2.8.3`` |``-CUDA-11.0.2`` |``GCCcore/9.3.0``, ``system`` -``2.8.3`` |``-CUDA-11.1.1`` |``GCCcore/10.2.0``, ``system`` -``2.9.9`` |``-CUDA-11.3.1`` |``system`` -``2.10.3`` |``-CUDA-11.3.1`` |``GCCcore/10.3.0`` -``2.10.3`` |``-CUDA-11.4.1`` |``GCCcore/11.2.0`` -``2.10.3`` |``-CUDA-11.5.2`` |``GCCcore/11.2.0`` -``2.11.4`` | |``gcccuda/2019b`` -``2.12.12``|``-CUDA-11.7.0`` |``GCCcore/11.3.0`` -``2.16.2`` |``-CUDA-11.7.0`` |``GCCcore/12.2.0`` -``2.16.2`` |``-CUDA-12.0.0`` |``GCCcore/12.2.0`` -``2.18.3`` |``-CUDA-12.1.1`` |``GCCcore/12.3.0`` -``2.20.5`` |``-CUDA-12.4.0`` |``GCCcore/13.2.0`` - -### NCCL-tests - -Tests check both the performance and the correctness of NCCL operations. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|---------------- -``2.0.0`` | |``gompic/2019b`` -``2.13.6``|``-CUDA-11.7.0``|``gompi/2022a`` - -### ncdf4 - -ncdf4: Interface to Unidata netCDF (version 4 or earlier) format data files - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|------------------------------- -``1.16`` |``-R-3.4.0`` |``intel/2017a`` -``1.16`` |``-R-3.4.3`` |``intel/2017b`` -``1.16`` |``-R-3.4.4`` |``intel/2018a`` -``1.16.1``|``-R-3.5.1`` |``foss/2018b``, ``intel/2018b`` -``1.16.1``|``-R-3.6.0`` |``foss/2019a`` -``1.17`` | |``foss/2019b`` -``1.17`` |``-R-4.0.0`` |``foss/2020a`` -``1.17`` |``-R-4.0.3`` |``foss/2020b`` -``1.17`` |``-R-4.1.0`` |``foss/2021a`` - -### ncdu - -Ncdu is a disk usage analyzer with an ncurses interface. It is designed to find space hogs on a remote server where you don't have an entire graphical setup available, but it is a useful tool even on regular desktop systems. Ncdu aims to be fast, simple and easy to use, and should be able to run in any minimal POSIX-like environment with ncurses installed. - -*homepage*: - -version |toolchain -----------|------------------------------ -``1.13`` |``GCCcore/7.3.0`` -``1.14`` |``GCCcore/7.3.0`` -``1.15.1``|``GCCcore/9.3.0`` -``1.16`` |``GCC/10.3.0``, ``GCC/11.2.0`` -``1.17`` |``GCC/11.3.0`` -``1.18`` |``GCC/12.3.0`` - -### NCIPLOT - -NCIPLOT is a program for revealing non covalent interactions based on the reduced density gradient. - -*homepage*: - -version |toolchain -----------------|----------------------- -``4.0-20190718``|``iccifort/2019.5.281`` -``4.0-20200106``|``iccifort/2019.5.281`` -``4.0-20200624``|``GCC/11.2.0`` - -### NCL - -NCL is an interpreted language designed specifically for scientific data analysis and visualization. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------------------------------------------- -``6.4.0``|``intel/2017a``, ``intel/2017b``, ``intel/2018a`` -``6.5.0``|``intel/2018a`` -``6.6.2``|``foss/2018b``, ``foss/2020a``, ``foss/2020b``, ``foss/2021a``, ``intel/2018b``, ``intel/2019b``, ``intel/2020a`` - -### NCO - -The NCO toolkit manipulates and analyzes data stored in netCDF-accessible formats, including DAP, HDF4, and HDF5. - -*homepage*: - -version |toolchain ----------|------------------------------- -``4.6.0``|``foss/2016a`` -``4.6.6``|``intel/2017a`` -``4.7.0``|``intel/2017b`` -``4.7.1``|``intel/2017b`` -``4.7.4``|``foss/2017b`` -``4.7.6``|``intel/2018a`` -``4.7.9``|``foss/2018b``, ``intel/2018b`` -``4.8.1``|``foss/2019a`` -``4.9.3``|``foss/2019b`` -``4.9.7``|``foss/2020a``, ``foss/2020b`` -``5.0.1``|``foss/2021a`` -``5.0.3``|``foss/2021b``, ``intel/2021b`` -``5.0.6``|``intel/2019b`` -``5.1.0``|``foss/2022a`` -``5.1.3``|``foss/2021a``, ``foss/2022a`` -``5.1.9``|``intel/2022a`` - -### ncolor - -Fast remapping of instance labels 1,2,3,...,M to a smaller set of repeating, disjoint labels, 1,2,...,N. - -*homepage*: - -version |toolchain ----------|-------------- -``1.2.1``|``foss/2022a`` - -### ncompress - -Compress is a fast, simple LZW file compressor. Compress does not have the highest compression rate, but it is one of the fastest programs to compress data. Compress is the defacto standard in the UNIX community for compressing files. - -*homepage*: - -version |toolchain ------------|----------------- -``4.2.4.4``|``GCCcore/6.4.0`` - -### ncurses - -The Ncurses (new curses) library is a free software emulation of curses in System V Release 4.0, and more. It uses Terminfo format, supports pads and color and multiple highlights and forms characters and function-key mapping, and has all the other SYSV-curses enhancements over BSD Curses. - -*homepage*: - -version|toolchain --------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``5.9``|``GCC/4.8.1``, ``GCC/4.8.2``, ``GCC/4.8.3``, ``GCC/4.8.4``, ``GCC/4.9.2``, ``GNU/4.9.3-2.25``, ``gimkl/2.11.5``, ``system`` -``6.0``|``GCC/4.9.3-2.25``, ``GCC/5.4.0-2.26``, ``GCCcore/4.9.3``, ``GCCcore/5.3.0``, ``GCCcore/5.4.0``, ``GCCcore/6.2.0``, ``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GNU/4.9.3-2.25``, ``foss/2016.04``, ``foss/2016a``, ``foss/2016b``, ``gimkl/2017a``, ``intel/2016.02-GCC-4.9``, ``intel/2016a``, ``intel/2016b``, ``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25``, ``system`` -``6.1``|``GCCcore/6.4.0``, ``GCCcore/7.2.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``system`` -``6.2``|``FCC/4.5.0``, ``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/9.3.0``, ``system`` -``6.3``|``GCCcore/11.3.0``, ``GCCcore/12.1.0``, ``GCCcore/12.2.0``, ``system`` -``6.4``|``GCCcore/12.3.0``, ``GCCcore/13.1.0``, ``GCCcore/13.2.0``, ``system`` -``6.5``|``GCCcore/13.3.0``, ``system`` - -### ncview - -Ncview is a visual browser for netCDF format files. Typically you would use ncview to get a quick and easy, push-button look at your netCDF files. You can view simple movies of the data, view along various dimensions, take a look at the actual data values, change color maps, invert the data, etc. - -*homepage*: - -version |toolchain ----------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.1.7``|``foss/2017b``, ``foss/2018b``, ``foss/2019b``, ``gompi/2019a``, ``intel/2016b``, ``intel/2017a``, ``intel/2017b``, ``intel/2018a``, ``intel/2018b``, ``intel/2019b``, ``iomkl/2018b`` -``2.1.8``|``gompi/2020a``, ``gompi/2021a``, ``gompi/2021b``, ``gompi/2022a``, ``gompi/2023a`` - -### nd2reader - -nd2reader is a pure-Python package that reads images produced by NIS Elements 4.0+. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``3.0.6``|``-Python-2.7.14``|``intel/2017b`` - -### ne - -ne is a free (GPL'd) text editor based on the POSIX standard that runs (we hope) on almost any UN*X machine. ne is easy to use for the beginner, but powerful and fully configurable for the wizard, and most sparing in its resource usage. - -*homepage*: - -version |toolchain ----------|--------------- -``3.0.1``|``gimkl/2017a`` - -### NECI - -Standalone NECI codebase designed for FCIQMC and other stochastic quantum chemistry methods. - -*homepage*: - -version |toolchain -------------|-------------- -``20220711``|``foss/2022a`` -``20230620``|``foss/2022b`` - -### NEdit - -NEdit is a multi-purpose text editor for the X Window System, which combines a standard, easy to use, graphical user interface with the thorough functionality and stability required by users who edit text eight hours a day. - -*homepage*: - -version|versionsuffix |toolchain --------|--------------|---------- -``5.5``|``-Linux-x86``|``system`` - -### Nek5000 - -a fast and scalable high-order solver for computational fluid dynamics - -*homepage*: - -version |toolchain ---------|--------------- -``17.0``|``intel/2018a`` - -### Nektar++ - -Nektar++ is a tensor product based finite element package designed to allow one to construct efficient classical low polynomial order h-type solvers (where h is the size of the finite element) as well as higher p-order piecewise polynomial order solvers. - -*homepage*: - -version |toolchain ----------|-------------- -``5.0.1``|``foss/2020b`` - -### neon - -neon is an HTTP/1.1 and WebDAV client library, with a C interface. - -*homepage*: - -version |toolchain -----------|----------------- -``0.31.2``|``GCCcore/8.3.0`` - -### neptune-client - -Neptune is an experiment tracking hub that brings organization and collaboration to your data science team. - -*homepage*: - -version |versionsuffix |toolchain ------------|-----------------|------------------------------ -``0.4.129``|``-Python-3.8.2``|``foss/2020a`` -``0.10.5`` | |``foss/2020b`` -``0.16.2`` | |``foss/2021a``, ``foss/2022a`` - -### Net-core - -.NET Core is a free and open-source managed computer software framework for the Windows, Linux, and macOS operating systems .NET Core fully supports C# and F# and partially supports Visual Basic - -*homepage*: - -version |toolchain ----------|---------- -``2.1.8``|``system`` -``2.2.5``|``system`` -``3.0.0``|``system`` - -### netCDF - -NetCDF (network Common Data Form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data. - -*homepage*: - -version |versionsuffix |toolchain ------------|----------------|----------------------------------------------------------------------------------------------------------------------------------------- -``4.3.3.1``| |``foss/2016a``, ``intel/2016.02-GCC-4.9``, ``intel/2016a`` -``4.4.0`` | |``foss/2016a``, ``intel/2016a``, ``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25`` -``4.4.1`` | |``foss/2016a``, ``foss/2016b``, ``intel/2016a``, ``intel/2016b`` -``4.4.1.1``| |``foss/2016b``, ``foss/2017b``, ``fosscuda/2017b``, ``intel/2016b``, ``intel/2017a``, ``intel/2017b``, ``intelcuda/2017b`` -``4.4.1.1``|``-HDF5-1.10.1``|``foss/2017a``, ``intel/2017a`` -``4.4.1.1``|``-HDF5-1.8.18``|``intel/2017a`` -``4.4.1.1``|``-HDF5-1.8.19``|``foss/2017a``, ``foss/2017b``, ``intel/2017b`` -``4.5.0`` | |``foss/2017b``, ``intel/2017b``, ``intel/2018.00``, ``intel/2018.01`` -``4.6.0`` | |``foss/2018a``, ``intel/2018a``, ``iomkl/2018a`` -``4.6.1`` | |``PGI/18.4-GCC-6.4.0-2.28``, ``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b``, ``iomkl/2018b`` -``4.6.2`` | |``gompi/2019a``, ``iimpi/2019a`` -``4.7.1`` | |``gompi/2019b``, ``gompic/2019b``, ``iimpi/2019b``, ``iimpic/2019b`` -``4.7.4`` | |``gompi/2020a``, ``gompi/2020b``, ``gompic/2020a``, ``gompic/2020b``, ``iimpi/2020a``, ``iimpi/2020b``, ``iimpic/2020b``, ``iompi/2020a`` -``4.8.0`` | |``gompi/2021a``, ``iimpi/2021a`` -``4.8.1`` | |``gompi/2021b``, ``iimpi/2021b`` -``4.9.0`` | |``gompi/2022a``, ``gompi/2022b``, ``iimpi/2022a``, ``iimpi/2022b`` -``4.9.2`` | |``gompi/2023a``, ``gompi/2023b``, ``iimpi/2023a``, ``iimpi/2023b`` - -### netCDF-C++ - -NetCDF (network Common Data Form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data. - -*homepage*: - -version|toolchain --------|-------------- -``4.2``|``foss/2016a`` - -### netCDF-C++4 - -NetCDF (network Common Data Form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``4.3.0``| |``foss/2018b``, ``gompi/2019a``, ``iimpi/2019a``, ``intel/2016a``, ``intel/2016b``, ``intel/2017a``, ``intel/2018a``, ``intel/2018b``, ``iomkl/2018b`` -``4.3.0``|``-HDF5-1.8.18``|``intel/2017a`` -``4.3.0``|``-HDF5-1.8.19``|``intel/2017b`` -``4.3.1``| |``gompi/2019b``, ``gompi/2020a``, ``gompi/2020b``, ``gompi/2021a``, ``gompi/2021b``, ``gompi/2022a``, ``gompi/2023a``, ``gompi/2023b``, ``iimpi/2019b``, ``iimpi/2020a``, ``iimpi/2020b``, ``iimpi/2021a``, ``iimpi/2021b``, ``iimpi/2022a``, ``iimpi/2023b`` - -### netCDF-Fortran - -NetCDF (network Common Data Form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ -``4.4.1``| |``foss/2016b``, ``intel/2016b`` -``4.4.2``| |``intel/2016.02-GCC-4.9`` -``4.4.3``| |``foss/2016a``, ``intel/2016a`` -``4.4.4``| |``PGI/18.4-GCC-6.4.0-2.28``, ``foss/2016b``, ``foss/2017b``, ``foss/2018a``, ``foss/2018b``, ``fosscuda/2017b``, ``fosscuda/2018b``, ``intel/2016a``, ``intel/2016b``, ``intel/2017a``, ``intel/2017b``, ``intel/2018a``, ``intel/2018b``, ``intelcuda/2017b``, ``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25``, ``iomkl/2018b`` -``4.4.4``|``-HDF5-1.8.18``|``intel/2017a`` -``4.4.4``|``-HDF5-1.8.19``|``foss/2017b``, ``intel/2017b`` -``4.4.5``| |``gompi/2019a``, ``iimpi/2019a`` -``4.5.2``| |``gompi/2019b``, ``gompi/2020a``, ``gompic/2019b``, ``gompic/2020a``, ``iimpi/2019b``, ``iimpi/2020a``, ``iimpic/2019b`` -``4.5.3``| |``gompi/2020b``, ``gompi/2021a``, ``gompi/2021b``, ``gompic/2020b``, ``iimpi/2020b``, ``iimpi/2021a``, ``iimpi/2021b`` -``4.6.0``| |``gompi/2022a``, ``gompi/2022b``, ``iimpi/2022a`` -``4.6.1``| |``gompi/2023a``, ``gompi/2023b``, ``iimpi/2023a``, ``iimpi/2023b`` - -### netcdf4-python - -Python/numpy interface to netCDF. - -*homepage*: - -version |versionsuffix |toolchain ------------|-----------------------------|--------------------------------------------------- -``1.2.9`` |``-Python-2.7.13`` |``intel/2017a`` -``1.3.1`` |``-Python-3.6.3`` |``intel/2017b`` -``1.3.1`` |``-Python-3.6.3-HDF5-1.8.19``|``intel/2017b`` -``1.4.0`` |``-Python-3.6.2-HDF5-1.8.19``|``foss/2017b`` -``1.4.0`` |``-Python-3.6.4`` |``intel/2018a`` -``1.4.1`` |``-Python-2.7.15`` |``intel/2018b`` -``1.4.1`` |``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``1.4.2`` |``-Python-3.6.4`` |``foss/2018a`` -``1.4.3`` |``-Python-3.6.6`` |``foss/2018b`` -``1.5.2`` | |``intel/2019a`` -``1.5.3`` |``-Python-2.7.16`` |``foss/2019b`` -``1.5.3`` |``-Python-3.7.4`` |``foss/2019b``, ``intel/2019b`` -``1.5.3`` |``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``1.5.5.1``| |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b`` -``1.5.7`` | |``foss/2021a``, ``foss/2021b``, ``intel/2021b`` -``1.6.1`` | |``foss/2022a``, ``intel/2022a`` -``1.6.3`` | |``foss/2022b`` -``1.6.4`` | |``foss/2023a`` -``1.6.5`` | |``foss/2023b`` - -### netloc - -The Portable Network Locality (netloc) software package provides network topology discovery tools, and an abstract representation of those networks topologies for a range of network types and configurations. It is provided as a companion to the Portable Hardware Locality (hwloc) package. - -*homepage*: - -version|toolchain --------|------------- -``0.5``|``GCC/4.8.3`` - -### NetLogo - -NetLogo is a multi-agent programmable modeling environment. It is used by tens of thousands of students, teachers and researchers worldwide. It also powers HubNet participatory simulations. It is authored by Uri Wilensky and developed at the CCL. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|---------- -``5.3.1``|``-64`` |``system`` -``6.0.4``|``-64`` |``system`` -``6.2.0``|``-64`` |``system`` -``6.2.2``|``-64`` |``system`` -``6.3.0``|``-64`` |``system`` - -### netMHC - -NetMHC 4.0 predicts binding of peptides to a number of different HLA alleles using artificial neural networks (ANN). - -*homepage*: - -version |toolchain ---------|---------- -``4.0a``|``system`` - -### netMHCII - -NetMHCII 2.3 server predicts binding of peptides to HLA-DR, HLA-DQ, HLA-DP and mouse MHC class II alleles using articial neuron networks. Predictions can be obtained for 25 HLA-DR alleles, 20 HLA-DQ, 9 HLA-DP, and 7 mouse H2 class II alleles. - -*homepage*: - -version|toolchain --------|---------- -``2.3``|``system`` - -### netMHCIIpan - -NetMHCIIpan 3.2 server predicts binding of peptides to MHC class II molecules. The predictions are available for the three human MHC class II isotypes HLA-DR, HLA-DP and HLA-DQ, as well as mouse molecules (H-2). - -*homepage*: - -version|toolchain --------|------------------------------------ -``3.2``|``GCCcore/7.3.0``, ``GCCcore/8.2.0`` - -### netMHCpan - -The NetMHCpan software predicts binding of peptides to any known MHC molecule using artificial neural networks (ANNs). - -*homepage*: - -version |toolchain ---------|---------- -``4.0a``|``system`` - -### NetPIPE - -NetPIPE is a protocol independent communication performance benchmark that visually represents the network performance under a variety of conditions. - -*homepage*: - -version |toolchain ----------|-------------------------------- -``5.1`` |``intel/2018a`` -``5.1.4``|``gompi/2020b``, ``iimpi/2020b`` - -### NetPyNE - -NetPyNE is an open-source Python package to facilitate the development, parallel simulation, analysis, and optimization of biological neuronal networks using the NEURON simulator. - -*homepage*: - -version |toolchain ------------|-------------- -``1.0.2.1``|``foss/2021b`` - -### nettle - -Nettle is a cryptographic library that is designed to fit easily in more or less any context: In crypto toolkits for object-oriented languages (C++, Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel space. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------------------------------------------------- -``3.1.1``|``GNU/4.9.3-2.25``, ``foss/2016a``, ``intel/2016a`` -``3.2`` |``GCCcore/5.4.0``, ``foss/2016b``, ``intel/2016b`` -``3.3`` |``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``intel/2017a`` -``3.4`` |``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``foss/2018a``, ``foss/2018b``, ``fosscuda/2018b``, ``intel/2018a``, ``intel/2018b``, ``iomkl/2018a`` -``3.4.1``|``GCCcore/8.2.0`` -``3.5.1``|``GCCcore/8.3.0`` -``3.6`` |``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``3.7.2``|``GCCcore/10.3.0`` -``3.7.3``|``GCCcore/11.2.0`` -``3.8`` |``GCCcore/11.3.0`` -``3.8.1``|``GCCcore/12.2.0`` -``3.9.1``|``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### networkTools - -Dynamical Network Analysis is a method of characterizing allosteric signalling through biomolecular complexes. - -*homepage*: - -version|toolchain --------|------------- -``2`` |``GCC/9.3.0`` - -### networkx - -NetworkX is a Python package for the creation, manipulation, and study of the structure, dynamics, and functions of complex networks. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------------------------------------------------ -``1.1`` |``-Python-2.7.12``|``intel/2016b`` -``1.11`` |``-Python-2.7.11``|``foss/2016a`` -``1.11`` |``-Python-2.7.14``|``intel/2017b`` -``1.11`` |``-Python-3.5.1`` |``foss/2016a`` -``2.0`` |``-Python-2.7.14``|``intel/2017b`` -``2.1`` |``-Python-2.7.14``|``intel/2017b`` -``2.2`` |``-Python-2.7.15``|``foss/2018b``, ``foss/2019a``, ``intel/2018b`` -``2.2`` |``-Python-2.7.16``|``foss/2019b`` -``2.2`` |``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``2.3`` |``-Python-3.7.2`` |``foss/2019a``, ``intel/2019a`` -``2.4`` |``-Python-3.7.2`` |``foss/2019a``, ``intel/2019a`` -``2.4`` |``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b``, ``intel/2019b``, ``intelcuda/2019b`` -``2.4`` |``-Python-3.8.2`` |``foss/2020a``, ``fosscuda/2020a``, ``intel/2020a`` -``2.5`` | |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b``, ``intelcuda/2020b`` -``2.5.1``| |``foss/2021a`` -``2.6.2``| |``foss/2020b`` -``2.6.3``| |``foss/2021a``, ``foss/2021b``, ``intel/2021b`` -``2.8.4``| |``foss/2022a``, ``intel/2022a`` -``2.8.8``| |``gfbf/2022b`` -``3.0`` | |``gfbf/2022b`` -``3.1`` | |``gfbf/2023a`` -``3.2.1``| |``gfbf/2023b`` - -### NeuroKit - -NeuroKit is a Python module that provides high-level integrative functions with good and flexible defaults, allowing users to focus on what’s important. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``0.2.7``|``-Python-3.6.4``|``intel/2018a`` - -### NEURON - -Empirically-based simulations of neurons and networks of neurons. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``7.4`` | |``intel/2016b`` -``7.6.5``|``-Python-2.7.15``|``intel/2018b`` -``7.8.2``| |``foss/2021b`` - -### NewHybrids - -This implements a Gibbs sampler to estimate the posterior probability that genetically sampled individuals fall into each of a set of user-defined hybrid categories. - -*homepage*: - -version |toolchain --------------|-------------- -``1.1_Beta3``|``GCC/10.2.0`` - -### Nextflow - -Nextflow is a reactive workflow framework and a programming DSL that eases writing computational pipelines with complex data - -*homepage*: - -version |toolchain ------------|---------- -``19.04.0``|``system`` -``19.07.0``|``system`` -``19.12.0``|``system`` -``20.01.0``|``system`` -``20.04.1``|``system`` -``20.10.0``|``system`` -``21.03.0``|``system`` -``21.08.0``|``system`` -``21.10.6``|``system`` -``22.04.0``|``system`` -``22.10.0``|``system`` -``22.10.1``|``system`` -``22.10.5``|``system`` -``22.10.6``|``system`` -``23.04.2``|``system`` -``23.10.0``|``system`` -``24.04.2``|``system`` - -### NextGenMap - -NextGenMap is a flexible highly sensitive short read mapping tool that handles much higher mismatch rates than comparable algorithms while still outperforming them in terms of runtime. - -*homepage*: - -version |toolchain ----------|------------------------------ -``0.5.5``|``GCC/11.2.0``, ``foss/2016b`` - -### NEXUS-CL - -The NEXUS Class Library is a C++ library for parsing NEXUS files. - -*homepage*: - -version |toolchain -----------|-------------------- -``2.1.18``|``GCC/8.2.0-2.31.1`` - -### nf-core - -Python package with helper tools for the nf-core community. - -*homepage*: - -version |toolchain -----------|-------------- -``2.10`` |``foss/2022b`` -``2.13.1``|``foss/2023b`` - -### nf-core-mag - -The Nextflow pipeline 'mag' ported to EasyBuild/EESSI. - -*homepage*: - -version |toolchain -------------|-------------- -``20221110``|``foss/2021a`` - -### NFFT - -The NFFT (nonequispaced fast Fourier transform or nonuniform fast Fourier transform) is a C subroutine library for computing the nonequispaced discrete Fourier transform (NDFT) and its generalisations in one or more dimensions, of arbitrary input size, and of complex data. - -*homepage*: - -version |toolchain ----------|---------------------------------------------- -``3.1.3``|``foss/2020b``, ``fosscuda/2020b`` -``3.5.1``|``foss/2018b``, ``foss/2019a`` -``3.5.2``|``foss/2020a``, ``foss/2021a``, ``foss/2021b`` -``3.5.3``|``foss/2022a``, ``foss/2023a`` - -### nghttp2 - -This is an implementation of the Hypertext Transfer Protocol version 2 in C. The framing layer of HTTP/2 is implemented as a reusable C library. On top of that, we have implemented an HTTP/2 client, server and proxy. We have also developed load test and benchmarking tools for HTTP/2. An HPACK encoder and decoder are available as a public API. - -*homepage*: - -version |toolchain -----------|------------------------------ -``1.48.0``|``GCC/11.2.0``, ``GCC/11.3.0`` -``1.58.0``|``GCC/12.3.0`` - -### nghttp3 - -nghttp3 is an implementation of RFC 9114 HTTP/3 mapping over QUIC and RFC 9204 QPACK in C. It does not depend on any particular QUIC transport implementation. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``0.6.0``|``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``1.3.0``|``GCCcore/12.3.0`` - -### NGLess - -NGLess is a domain-specific language for NGS (next-generation sequencing data) processing. - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------|---------- -``1.1.1``|``-static-Linux64``|``system`` - -### nglview - -IPython widget to interactively view molecular structures and trajectories. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------------------ -``2.7.0``|``-Python-3.7.2``|``intel/2019a`` -``2.7.7``|``-Python-3.8.2``|``intel/2020a`` -``3.0.3``| |``foss/2021a``, ``foss/2022a`` -``3.1.2``| |``foss/2023a`` - -### NGS - -NGS is a new, domain-specific API for accessing reads, alignments and pileups produced from Next Generation Sequencing. - -*homepage*: - -version |versionsuffix |toolchain -----------|-------------------|-------------------------------------- -``1.2.3`` | |``foss/2016b``, ``intel/2016a`` -``1.2.5`` | |``foss/2016b`` -``1.3.0`` | |``GCCcore/6.4.0``, ``intel/2017a`` -``2.9.1`` |``-Java-1.8.0_162``|``foss/2018a``, ``intel/2018a`` -``2.9.3`` |``-Java-1.8`` |``foss/2018b`` -``2.10.0``|``-Java-1.8`` |``GCCcore/8.2.0`` -``2.10.0``|``-Java-11`` |``GCCcore/8.2.0`` -``2.10.4``|``-Java-11`` |``GCCcore/8.3.0`` -``2.10.5``| |``GCCcore/9.3.0`` -``2.10.9``| |``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``2.11.2``| |``GCCcore/11.2.0`` - -### NGS-Python - -NGS is a new, domain-specific API for accessing reads, alignments and pileups produced from Next Generation Sequencing. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``1.2.3`` |``-Python-2.7.11``|``intel/2016a`` -``2.9.3`` |``-Python-3.6.6`` |``intel/2018b`` -``2.10.4``|``-Python-2.7.16``|``gompi/2019b`` - -### NGSadmix - -NGSadmix is a tool for finding admixture proportions from NGS data, based on genotype likelihoods. - -*homepage*: - -version|toolchain --------|------------------ -``32`` |``GCC/7.3.0-2.30`` - -### NGSpeciesID - -NGSpeciesID is a tool for clustering and consensus forming of targeted ONT reads. - -*homepage*: - -version |versionsuffix |toolchain ------------|-----------------|------------------------------ -``0.1.1.1``|``-Python-3.7.4``|``foss/2019b`` -``0.1.2.1``| |``foss/2021b`` -``0.3.0`` | |``foss/2022b``, ``foss/2023a`` - -### ngspice - -Ngspice is a mixed-level/mixed-signal circuit simulator. Its code is based on three open source software packages: Spice3f5, Cider1b1 and Xspice. - -*homepage*: - -version|toolchain --------|-------------- -``31`` |``foss/2019b`` -``39`` |``foss/2022a`` - -### ngtcp2 - -'Call it TCP/2. One More Time.' ngtcp2 project is an effort to implement RFC9000 QUIC protocol. - -*homepage*: - -version |toolchain ----------|------------------------------ -``0.7.0``|``GCC/11.2.0``, ``GCC/11.3.0`` -``1.2.0``|``GCC/12.3.0`` - -### NiBabel - -NiBabel provides read/write access to some common medical and neuroimaging file formats, including: ANALYZE (plain, SPM99, SPM2 and later), GIFTI, NIfTI1, NIfTI2, MINC1, MINC2, MGH and ECAT as well as Philips PAR/REC. We can read and write Freesurfer geometry, and read Freesurfer morphometry and annotation files. There is some very limited support for DICOM. NiBabel is the successor of PyNIfTI. - -*homepage*: - -version |versionsuffix |toolchain ----------|---------------------------------|-------------------------------------------------- -``2.0.2``|``-Python-2.7.11`` |``intel/2016a`` -``2.0.2``|``-Python-2.7.11-freetype-2.6.3``|``intel/2016a`` -``2.1.0``|``-Python-2.7.13`` |``intel/2017a`` -``2.2.1``|``-Python-3.6.4`` |``intel/2018a`` -``2.3.0``|``-Python-2.7.14`` |``foss/2017b``, ``intel/2017b`` -``2.3.0``|``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``2.3.0``|``-Python-3.6.6`` |``foss/2018b`` -``2.4.0``| |``foss/2019a``, ``intel/2019a`` -``2.5.1``|``-Python-3.6.6`` |``foss/2018b`` -``3.1.0``|``-Python-3.7.4`` |``foss/2019b``, ``intel/2019b`` -``3.2.0``|``-Python-3.8.2`` |``foss/2020a`` -``3.2.1``| |``foss/2020b``, ``foss/2021a``, ``fosscuda/2020b`` -``3.2.2``| |``foss/2021b`` -``4.0.2``| |``foss/2022a`` -``5.2.0``| |``gfbf/2023a`` - -### nichenetr - -R implementation of the NicheNet method, to predict active ligand-target links between interacting cells - -*homepage*: - -version |versionsuffix|toolchain -------------------|-------------|-------------- -``1.1.1-20230223``|``-R-4.2.1`` |``foss/2022a`` -``2.0.4`` |``-R-4.2.2`` |``foss/2022b`` - -### NIfTI - -Niftilib is a set of i/o libraries for reading and writing files in the nifti-1 data format. - -*homepage*: - -version |toolchain ----------|----------------- -``2.0.0``|``GCCcore/6.4.0`` - -### nifti2dicom - -Nifti2Dicom is a conversion tool that converts 3D NIfTI files (and other formats supported by ITK, including Analyze, MetaImage Nrrd and VTK) to DICOM. Unlike other conversion tools, it can import a DICOM file that is used to import the patient and study DICOM tags, and allows you to edit the accession number and other DICOM tags, in order to create a valid DICOM that can be imported in a PACS. - -*homepage*: - -version |toolchain -----------|-------------- -``0.4.11``|``foss/2019b`` - -### Nilearn - -Nilearn is a Python module for fast and easy statistical learning on NeuroImaging data. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------- -``0.5.2`` | |``foss/2019a``, ``intel/2019a`` -``0.5.2`` |``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``0.5.2`` |``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``0.7.0`` |``-Python-3.8.2`` |``foss/2020a`` -``0.7.1`` | |``foss/2020b`` -``0.10.3``| |``gfbf/2023a`` - -### Nim - -Nim is a systems and applications programming language. - -*homepage*: - -version |toolchain -----------|------------------ -``0.18.0``|``GCCcore/6.4.0`` -``0.19.2``|``GCCcore/7.3.0`` -``1.0.0`` |``GCCcore/8.3.0`` -``1.4.6`` |``GCCcore/10.2.0`` -``1.4.8`` |``GCCcore/10.3.0`` -``1.6.6`` |``GCCcore/11.2.0`` - -### NIMBLE - -NIMBLE is a system for building and sharing analysis methods for statistical models, especially for hierarchical models and computationally-intensive methods. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``0.7.0``|``-R-3.5.1`` |``foss/2018b`` - -### Ninja - -Ninja is a small build system with a focus on speed. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------------ -``1.8.2`` |``foss/2018a``, ``foss/2018b``, ``fosscuda/2018b``, ``intel/2017b``, ``intel/2018a`` -``1.9.0`` |``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``foss/2018b`` -``1.10.0``|``GCCcore/9.3.0`` -``1.10.1``|``GCCcore/10.2.0`` -``1.10.2``|``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``1.11.1``|``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` -``1.12.1``|``GCCcore/13.3.0`` - -### Nipype - -Nipype is a Python project that provides a uniform interface to existing neuroimaging software and facilitates interaction between these packages within a single workflow. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``1.0.2``|``-Python-3.6.4``|``intel/2018a`` -``1.1.3``|``-Python-3.6.6``|``foss/2018b`` -``1.4.2``|``-Python-3.7.4``|``intel/2019b`` -``1.6.0``| |``foss/2020b`` -``1.8.5``| |``foss/2021a`` - -### NLMpy - -NLMpy is a Python package for the creation of neutral landscape models that are widely used in the modelling of ecological patterns and processes across landscapes. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``0.1.5``|``-Python-3.7.4``|``intel/2019b`` - -### nlohmann_json - -JSON for Modern C++ - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``3.10.0``|``GCCcore/10.3.0`` -``3.10.4``|``GCCcore/11.2.0`` -``3.10.5``|``GCCcore/11.3.0`` -``3.11.2``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``3.11.3``|``GCCcore/13.2.0`` - -### NLopt - -NLopt is a free/open-source library for nonlinear optimization, providing a common interface for a number of different free optimization routines available online as well as original implementations of various other algorithms. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.4.2``|``GCC/5.4.0-2.26``, ``GCCcore/7.3.0``, ``foss/2016a``, ``foss/2016b``, ``foss/2017b``, ``foss/2018a``, ``iccifort/2016.3.210-GCC-5.4.0-2.26``, ``intel/2016a``, ``intel/2016b``, ``intel/2017a``, ``intel/2017b``, ``intel/2018a``, ``iomkl/2018a`` -``2.6.1``|``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``2.6.2``|``GCCcore/10.2.0`` -``2.7.0``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``2.7.1``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### NLTK - -NLTK is a leading platform for building Python programs to work with human language data. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|---------------------------------------------- -``3.2.2``|``-Python-2.7.13``|``intel/2017a`` -``3.2.4``|``-Python-2.7.13``|``intel/2017a`` -``3.5`` |``-Python-3.7.4`` |``foss/2019b`` -``3.5`` |``-Python-3.8.2`` |``foss/2020a``, ``fosscuda/2020a`` -``3.6.7``| |``foss/2021a`` -``3.7`` | |``foss/2021b`` -``3.8.1``| |``foss/2022b``, ``foss/2023a``, ``foss/2023b`` - -### nnU-Net - -nnU-Net is the first segmentation method that is designed to deal with the dataset diversity found in the domain It condenses and automates the keys decisions for designing a successful segmentation pipeline for any given dataset. - -*homepage*: - -version |toolchain ----------|---------------------------------- -``1.7.0``|``foss/2020b``, ``fosscuda/2020b`` - -### Node-RED - -Node-RED is a programming tool for wiring together hardware devices, APIs and online services in new and interesting ways. - -*homepage*: - -version |toolchain -----------|-------------- -``0.16.2``|``foss/2017a`` - -### nodejs - -Node.js is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices. - -*homepage*: - -version |toolchain ------------|------------------------------------------------------- -``4.4.7`` |``foss/2016a`` -``6.10.3`` |``foss/2017a`` -``8.9.4`` |``foss/2017a`` -``10.15.1``|``foss/2018b`` -``10.15.3``|``GCCcore/8.2.0`` -``12.16.1``|``GCCcore/7.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``12.19.0``|``GCCcore/10.2.0`` -``14.17.0``|``GCCcore/10.3.0`` -``14.17.2``|``GCCcore/10.3.0`` -``14.17.6``|``GCCcore/11.2.0`` -``16.15.1``|``GCCcore/11.3.0`` -``18.12.1``|``GCCcore/12.2.0`` -``18.17.1``|``GCCcore/12.3.0`` -``20.9.0`` |``GCCcore/13.2.0`` -``20.13.1``|``GCCcore/13.3.0`` - -### noise - -Native-code and shader implementations of Perlin noise for Python - -*homepage*: - -version |toolchain ----------|-------------- -``1.2.2``|``gfbf/2023a`` - -### Normaliz - -Normaliz is a open source tool for computations in affine monoids, vector configurations, rational polyhedra and rational cones. Normaliz now computes rational and algebraic polyhedra, i.e., polyhedra defined over real algebraic extensions of QQ. - -*homepage*: - -version |toolchain -----------|--------------- -``3.6.3`` |``intel/2018b`` -``3.7.4`` |``gompi/2019a`` -``3.8.4`` |``GCC/8.3.0`` -``3.10.1``|``gfbf/2022a`` - -### nose-parameterized - -Parameterized testing with any Python test framework. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``0.5.0``|``-Python-2.7.11``|``foss/2016a`` -``0.5.0``|``-Python-3.5.1`` |``foss/2016a`` -``0.5.0``|``-Python-3.5.2`` |``intel/2016b`` -``0.6.0``|``-Python-3.6.1`` |``intel/2017a`` - -### nose3 - -Nose extends unittest to make testing easier. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``1.3.8``|``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### novaSTA - -C++ version of subtomogram averaging (SA) scripts from TOM/AV3 package https://doi.org/10.1073/pnas.0409178102. Both CPU and GPU parallelization is supported although the latter performs significantly worse in terms of processing time (the code is not well optimized) and is thus not recommended for larger datasets. - -*homepage*: - -version|versionsuffix |toolchain --------|----------------|-------------- -``1.1``|``-CUDA-11.7.0``|``foss/2022a`` - -### novoalign - -NovoCraft is a software bundle. NovoAlign: Market’s leading aligner with fully packed features designed for mapping of short reads onto a reference genome from Illumina, Ion Torrent, 454, and Color Spance NGS platforms. NovoAlignCS: Leading aligner packed with features designed to fully support reads from ABI SOLiD Color Space. NovoSort: Custom designed multi-threaded sort/merge tools for BAM files. NovoMethyl: It can analyse a set of alignments to identify methylated cytosine’s. WARNING! You can only use the sofware without a license (with some features disabled) if you are a non-profit organisation and use is for your own research or for use by students as part of their course. A license is required for use where these programs are part of a service where a third party is billed. - -*homepage*: - -version |versionsuffix|toolchain ------------|-------------|-------------- -``3.09.00``| |``system`` -``3.09.01``|``-R-3.5.1`` |``foss/2018b`` - -### NOVOPlasty - -NOVOPlasty is a de novo assembler and heteroplasmy/variance caller for short circular genomes. - -*homepage*: - -version|toolchain --------|----------------- -``3.7``|``GCCcore/8.3.0`` - -### npstat - -npstat implements some population genetics tests and estimators that can be applied to pooled sequences from Next Generation Sequencing experiments. - -*homepage*: - -version |toolchain ---------|------------------------------- -``0.99``|``foss/2016a``, ``intel/2016a`` - -### NRGLjubljana - -NRG Ljubljana is an efficient implementation of the numerical renormalization group (NRG) technique for solving quantum impurity problems that arise as simplified models of magnetic impurities and as effective models in the dynamical mean field theory (DMFT) approach to bulk correlated materials. - -*homepage*: - -version |toolchain -------------|-------------- -``2.4.3.23``|``foss/2016b`` - -### Nsight-Compute - -NVIDIA® Nsight™ Compute is an interactive kernel profiler for CUDA applications. It provides detailed performance metrics and API debugging via a user interface and a command line tool. In addition, its baseline feature allows users to compare results within the tool. Nsight Compute provides a customizable and data-driven user interface and fast metric collection, which can be extended with rules-based analysis scripts for post-processing results. The rules-based guided analysis helps isolate and fix memory throughput, compute, and occupancy inefficiencies in the target application. - -*homepage*: - -version |toolchain -------------|---------- -``2020.3.0``|``system`` -``2021.2.0``|``system`` - -### Nsight-Systems - -NVIDIA® Nsight™ Systems is a system-wide performance analysis tool designed to visualize an application’s algorithm, help you select the largest opportunities to optimize, and tune to scale efficiently across any quantity of CPUs and GPUs in your computer; from laptops to DGX servers. - -*homepage*: - -version |toolchain -------------|---------- -``2020.5.1``|``system`` - -### NSPR - -Netscape Portable Runtime (NSPR) provides a platform-neutral API for system level and libc-like functions. - -*homepage*: - -version |toolchain ---------|---------------------------------------------------------- -``4.20``|``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``4.21``|``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``4.25``|``GCCcore/9.3.0`` -``4.29``|``GCCcore/10.2.0`` -``4.30``|``GCCcore/10.3.0`` -``4.32``|``GCCcore/11.2.0`` -``4.34``|``GCCcore/11.3.0`` -``4.35``|``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### NSS - -Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and server applications. - -*homepage*: - -version |toolchain -----------|------------------------------------ -``3.39`` |``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``3.42.1``|``GCCcore/8.2.0`` -``3.45`` |``GCCcore/8.3.0`` -``3.51`` |``GCCcore/9.3.0`` -``3.57`` |``GCCcore/10.2.0`` -``3.65`` |``GCCcore/10.3.0`` -``3.69`` |``GCCcore/11.2.0`` -``3.79`` |``GCCcore/11.3.0`` -``3.85`` |``GCCcore/12.2.0`` -``3.89.1``|``GCCcore/12.3.0`` -``3.94`` |``GCCcore/13.2.0`` - -### nsync - -nsync is a C library that exports various synchronization primitives, such as mutexes - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------------------------ -``1.24.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.25.0``|``GCCcore/11.3.0`` -``1.26.0``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### ntCard - -ntCard is a streaming algorithm for estimating the frequencies of k-mers in genomics datasets. - -*homepage*: - -version |toolchain ----------|----------------------------- -``1.2.1``|``GCC/11.2.0``, ``GCC/8.3.0`` -``1.2.2``|``GCC/12.3.0`` - -### ntEdit - -ntEdit is a fast and scalable genomics application for polishing genome assembly drafts. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``1.3.1``|``iccifort/2018.3.222-GCC-7.3.0-2.30`` - -### ntHits - -ntHits is a method for identifying repeats in high-throughput DNA sequencing data. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``0.0.1``|``iccifort/2018.3.222-GCC-7.3.0-2.30`` - -### NTL - -NTL is a high-performance, portable C++ library providing data structures and algorithms for manipulating signed, arbitrary length integers, and for vectors, matrices, and polynomials over the integers and over finite fields. - -*homepage*: - -version |toolchain -----------|-------------------------------------------------------------- -``11.3.4``|``GCC/8.2.0-2.31.1`` -``11.5.1``|``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0``, ``GCC/13.2.0`` - -### NTPoly - -is a massively parallel library for computing the functions of sparse, symmetric matrices based on polynomial expansions. For sufficiently sparse matrices, most of the matrix functions in NTPoly can be computed in linear time. - -*homepage*: - -version |toolchain ----------|------------------------------- -``2.5.1``|``foss/2020b``, ``intel/2020b`` -``2.7.0``|``foss/2021a``, ``intel/2021a`` -``2.7.1``|``intel/2020b`` - -### num2words - -Modules to convert numbers to words. 42 --> forty-two - -*homepage*: - -version |toolchain -----------|------------------ -``0.5.10``|``GCCcore/10.3.0`` - -### numactl - -The numactl program allows you to run your application program on specific cpu's and memory nodes. It does this by supplying a NUMA memory policy to the operating system before running your program. The libnuma library provides convenient ways for you to add NUMA memory policies into your own program. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.0.9`` |``GCC/4.8.3`` -``2.0.10``|``GCC/4.8.4``, ``GCC/4.9.2``, ``GNU/4.9.2-2.25``, ``GNU/4.9.3-2.25`` -``2.0.11``|``GCC/4.9.3``, ``GCC/4.9.3-2.25``, ``GCC/5.2.0``, ``GCC/5.3.0-2.26``, ``GCC/5.4.0-2.26``, ``GCC/6.1.0-2.27``, ``GCC/6.2.0-2.27``, ``GCC/6.3.0-2.27``, ``GCCcore/4.9.2``, ``GCCcore/4.9.3``, ``GCCcore/5.3.0``, ``GCCcore/5.4.0``, ``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.2.0``, ``GCCcore/7.3.0``, ``foss/2016a``, ``iccifort/2016.3.210-GCC-4.9.3-2.25``, ``iccifort/2016.3.210-GCC-5.4.0-2.26``, ``intel/2016a``, ``intel/2016b`` -``2.0.12``|``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``2.0.13``|``GCCcore/10.2.0``, ``GCCcore/9.2.0``, ``GCCcore/9.3.0`` -``2.0.14``|``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``2.0.16``|``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` -``2.0.18``|``GCCcore/13.3.0`` - -### numba - -Numba is an Open Source NumPy-aware optimizing compiler for Python sponsored by Continuum Analytics, Inc. It uses the remarkable LLVM compiler infrastructure to compile Python syntax to machine code. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------------------------------------------- -``0.24.0``|``-Python-2.7.11``|``intel/2016a`` -``0.24.0``|``-Python-3.5.1`` |``intel/2016a`` -``0.26.0``|``-Python-2.7.11``|``intel/2016a`` -``0.32.0``|``-Python-2.7.13``|``intel/2017a`` -``0.37.0``|``-Python-2.7.14``|``foss/2018a``, ``intel/2017b`` -``0.37.0``|``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``0.39.0``|``-Python-3.6.6`` |``foss/2018b`` -``0.43.1``| |``intel/2019a`` -``0.46.0``| |``foss/2019a`` -``0.47.0``|``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b`` -``0.50.0``|``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``0.50.1``|``-Python-3.8.2`` |``foss/2020a`` -``0.52.0``| |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b`` -``0.52.0``|``-Python-3.8.2`` |``foss/2020a`` -``0.53.1``| |``foss/2020b``, ``foss/2021a``, ``fosscuda/2020b`` -``0.54.1``| |``foss/2021b``, ``intel/2021b`` -``0.54.1``|``-CUDA-11.4.1`` |``foss/2021b`` -``0.56.4``| |``foss/2022a`` -``0.56.4``|``-CUDA-11.7.0`` |``foss/2022a`` -``0.58.1``| |``foss/2022b``, ``foss/2023a`` - -### numdiff - -Numdiff (which I will also write numdiff) is a little program that can be used to compare putatively similar files line by line and field by field, ignoring small numeric differences or/and different numeric formats. Equivalently, Numdiff is a program with the capability to appropriately compare files containing numerical fields (and not only). - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``5.9.0``|``GCCcore/10.2.0``, ``GCCcore/12.2.0`` - -### numexpr - -The numexpr package evaluates multiple-operator array expressions many times faster than NumPy can. It accepts the expression as a string, analyzes it, rewrites it more efficiently, and compiles it on the fly into code for its internal virtual machine (VM). Due to its integrated just-in-time (JIT) compiler, it does not require a compiler at runtime. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------------------------------------------- -``2.5.2``|``-Python-2.7.11``|``intel/2016a`` -``2.6.1``|``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``2.6.1``|``-Python-3.5.2`` |``intel/2016b`` -``2.6.4``|``-Python-2.7.13``|``foss/2017a`` -``2.6.4``|``-Python-2.7.14``|``intel/2018a`` -``2.6.4``|``-Python-3.5.1`` |``foss/2016a`` -``2.6.4``|``-Python-3.6.1`` |``intel/2017a`` -``2.6.4``|``-Python-3.6.3`` |``intel/2017b`` -``2.6.4``|``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``2.6.5``|``-Python-2.7.15``|``foss/2018b``, ``intel/2018b`` -``2.6.5``|``-Python-3.6.6`` |``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b`` -``2.7.0``| |``intel/2019a`` -``2.7.1``|``-Python-2.7.16``|``intel/2019b`` -``2.7.1``|``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b`` -``2.7.1``|``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``2.8.1``| |``foss/2021a``, ``intel/2021a`` -``2.8.4``| |``foss/2022a`` - -### numpy - -NumPy is the fundamental package for scientific computing with Python. It contains among other things: a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran code, useful linear algebra, Fourier transform, and random number capabilities. Besides its obvious scientific uses, NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------- -``1.8.2`` |``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``1.9.2`` |``-Python-2.7.12``|``intel/2016b`` -``1.10.4``|``-Python-2.7.11``|``intel/2016a`` -``1.11.0``|``-Python-2.7.11``|``intel/2016a`` -``1.12.1``|``-Python-3.5.2`` |``intel/2016b`` -``1.13.0``|``-Python-2.7.13``|``intel/2017a`` -``1.13.1``|``-Python-3.6.1`` |``intel/2017a`` - -### NVHPC - -C, C++ and Fortran compilers included with the NVIDIA HPC SDK (previously: PGI) - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|---------- -``20.7`` | |``system`` -``20.9`` | |``system`` -``20.11``| |``system`` -``21.2`` | |``system`` -``21.3`` | |``system`` -``21.5`` | |``system`` -``21.7`` | |``system`` -``21.9`` | |``system`` -``21.11``| |``system`` -``22.7`` |``-CUDA-11.7.0``|``system`` -``22.9`` |``-CUDA-11.7.0``|``system`` -``22.11``|``-CUDA-11.7.0``|``system`` -``23.1`` |``-CUDA-12.0.0``|``system`` -``23.7`` |``-CUDA-12.1.1``|``system`` -``23.7`` |``-CUDA-12.2.0``|``system`` -``24.1`` |``-CUDA-12.3.0``|``system`` - -### nvitop - -An interactive NVIDIA-GPU process viewer and beyond, the one-stop solution for GPU process management. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|------------------ -``1.3.2``|``-CUDA-12.3.0``|``GCCcore/12.3.0`` - -### nvofbf - -NVHPC based toolchain, including OpenMPI for MPI support, OpenBLAS (via FlexiBLAS for BLAS and LAPACK support), FFTW and ScaLAPACK. - -*homepage*: <(none)> - -version |toolchain ------------|---------- -``2022.07``|``system`` - -### nvompi - -NVHPC based compiler toolchain, including OpenMPI for MPI support. - -*homepage*: <(none)> - -version |toolchain ------------|---------- -``2022.07``|``system`` - -### NVSHMEM - -NVSHMEM is a parallel programming interface based on OpenSHMEM that provides efficient and scalable communication for NVIDIA GPU clusters. NVSHMEM creates a global address space for data that spans the memory of multiple GPUs and can be accessed with fine-grained GPU-initiated operations, CPU-initiated operations, and operations on CUDA streams. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|--------------- -``2.4.1``|``-CUDA-11.4.1``|``gompi/2021b`` -``2.5.0``|``-CUDA-11.7.0``|``gompi/2022a`` -``2.7.0``|``-CUDA-11.7.0``|``gompi/2022a`` -``2.8.0``|``-CUDA-11.7.0``|``gompi/2022a`` - -### nvtop - -htop-like GPU usage monitor - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``1.0.0``|``fosscuda/2018b`` -``1.1.0``|``fosscuda/2019b`` -``1.2.1``|``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``1.2.2``|``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``2.0.2``|``GCCcore/11.3.0`` -``3.0.1``|``GCCcore/12.2.0`` -``3.1.0``|``GCCcore/12.3.0`` - -### NWChem - -NWChem aims to provide its users with computational chemistry tools that are scalable both in their ability to treat large scientific computational chemistry problems efficiently, and in their use of available parallel computing resources from high-performance parallel supercomputers to conventional workstation clusters. NWChem software can handle: biomolecules, nanostructures, and solid-state; from quantum to classical, and all combinations; Gaussian basis functions or plane-waves; scaling from one to thousands of processors; properties and relativity. - -*homepage*: - -version |versionsuffix |toolchain ----------------------|----------------------------------------------|-------------------------------- -``6.6.revision27746``|``-2015-10-20-Python-2.7.12`` |``iomkl/2017a`` -``6.6.revision27746``|``-2015-10-20-patches-20170814-Python-2.7.13``|``intel/2017a`` -``6.8.revision47`` |``-2017-12-14-Python-2.7.14`` |``intel/2017b``, ``intel/2018a`` -``7.0.0`` |``-Python-3.7.4`` |``intel/2019b`` -``7.0.2`` | |``intel/2021a``, ``intel/2022a`` -``7.0.2`` |``-Python-3.7.4`` |``intel/2019b`` -``7.2.2`` | |``intel/2023a`` - -### NxTrim - -NxTrim is a software to remove Nextera Mate Pair junction adapters and categorise reads according to the orientation implied by the adapter location. - -*homepage*: - -version |toolchain ----------|-------------- -``0.4.3``|``foss/2018a`` - -## O - - -[Oases](#oases) - [OBITools](#obitools) - [OBITools3](#obitools3) - [OCaml](#ocaml) - [ocamlbuild](#ocamlbuild) - [occt](#occt) - [oceanspy](#oceanspy) - [OCNet](#ocnet) - [Octave](#octave) - [Octopus-vcf](#octopus-vcf) - [OGDF](#ogdf) - [olaFlow](#olaflow) - [olego](#olego) - [OMA](#oma) - [OmegaFold](#omegafold) - [OMERO.insight](#omero.insight) - [OMERO.py](#omero.py) - [Omnipose](#omnipose) - [onedrive](#onedrive) - [ONNX](#onnx) - [ONNX-Runtime](#onnx-runtime) - [ont-fast5-api](#ont-fast5-api) - [ont-guppy](#ont-guppy) - [ont-remora](#ont-remora) - [OOMPA](#oompa) - [OPARI2](#opari2) - [Open-Data-Cube-Core](#open-data-cube-core) - [OpenAI-Gym](#openai-gym) - [OpenBabel](#openbabel) - [OpenBLAS](#openblas) - [openCARP](#opencarp) - [OpenCensus-python](#opencensus-python) - [OpenCoarrays](#opencoarrays) - [OpenColorIO](#opencolorio) - [OpenCV](#opencv) - [OpenEXR](#openexr) - [OpenFace](#openface) - [OpenFAST](#openfast) - [OpenFOAM](#openfoam) - [OpenFOAM-Extend](#openfoam-extend) - [OpenFold](#openfold) - [OpenForceField](#openforcefield) - [OpenImageIO](#openimageio) - [OpenJPEG](#openjpeg) - [OpenKIM-API](#openkim-api) - [openkim-models](#openkim-models) - [OpenMEEG](#openmeeg) - [OpenMM](#openmm) - [OpenMM-PLUMED](#openmm-plumed) - [OpenMMTools](#openmmtools) - [OpenMolcas](#openmolcas) - [OpenMPI](#openmpi) - [OpenMS](#openms) - [OpenNLP](#opennlp) - [OpenPGM](#openpgm) - [OpenPIV](#openpiv) - [openpyxl](#openpyxl) - [OpenRefine](#openrefine) - [OpenSceneGraph](#openscenegraph) - [OpenSees](#opensees) - [OpenSlide](#openslide) - [OpenSlide-Java](#openslide-java) - [openslide-python](#openslide-python) - [OpenSSL](#openssl) - [OpenStackClient](#openstackclient) - [OPERA](#opera) - [OPERA-MS](#opera-ms) - [OptaDOS](#optados) - [Optax](#optax) - [optiSLang](#optislang) - [OptiType](#optitype) - [OptiX](#optix) - [Optuna](#optuna) - [OR-Tools](#or-tools) - [ORCA](#orca) - [ORFfinder](#orffinder) - [OrfM](#orfm) - [orthAgogue](#orthagogue) - [OrthoFinder](#orthofinder) - [OrthoMCL](#orthomcl) - [Osi](#osi) - [OSPRay](#ospray) - [OSU-Micro-Benchmarks](#osu-micro-benchmarks) - [OTF2](#otf2) - [OVITO](#ovito) - [ownCloud](#owncloud) - [oxDNA](#oxdna) - [oxford_asl](#oxford_asl) - - -### Oases - -Oases is a de novo transcriptome assembler designed to produce transcripts from short read sequencing technologies, such as Illumina, SOLiD, or 454 in the absence of any genomic assembly. - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|--------------- -``0.2.08`` | |``foss/2016b`` -``0.2.08`` |``-kmer_101``|``intel/2017b`` -``20180312``| |``GCC/12.3.0`` - -### OBITools - -The OBITools programs aims to help you to manipulate various data and sequence files in a convenient way using the Unix command line interface. They follow the standard Unix interface for command line program, allowing to chain a set of commands using the pipe mecanism. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|-------------- -``1.2.9`` |``-Python-2.7.11``|``foss/2016a`` -``1.2.13``|``-Python-2.7.15``|``foss/2019a`` - -### OBITools3 - -A package for the management of analyses and data in DNA metabarcoding. - -*homepage*: - -version |toolchain -------------|------------------ -``3.0.1b8`` |``GCCcore/10.2.0`` -``3.0.1b26``|``GCCcore/12.3.0`` - -### OCaml - -OCaml is a general purpose industrial-strength programming language with an emphasis on expressiveness and safety. Developed for more than 20 years at Inria it benefits from one of the most advanced type systems and supports functional, imperative and object-oriented styles of programming. - -*homepage*: - -version |toolchain -----------|-------------- -``4.02.3``|``foss/2016a`` -``4.07.1``|``foss/2018b`` -``4.14.0``|``GCC/11.3.0`` -``5.1.1`` |``GCC/13.2.0`` - -### ocamlbuild - -OCamlbuild is a generic build tool, that has built-in rules for building OCaml library and programs. - -*homepage*: - -version |toolchain -----------|-------------- -``0.14.3``|``GCC/13.2.0`` - -### occt - -Open CASCADE Technology (OCCT) is an object-oriented C++ class library designed for rapid production of sophisticated domain-specific CAD/CAM/CAE applications. - -*homepage*: - -version |toolchain ------------|------------------------------ -``7.3.0p4``|``foss/2019b`` -``7.5.0p1``|``foss/2021a``, ``foss/2022a`` -``7.8.0`` |``GCCcore/12.3.0`` - -### oceanspy - -OceanSpy - A Python package to facilitate ocean model data analysis and visualization. - -*homepage*: - -version |toolchain ----------|-------------- -``0.2.0``|``foss/2022a`` - -### OCNet - -Generate and analyze Optimal Channel Networks (OCNs): oriented spanning trees reproducing all scaling features characteristic of real, natural river networks. As such, they can be used in a variety of numerical experiments in the fields of hydrology, ecology and epidemiology. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``0.2.0``|``-R-3.6.0`` |``foss/2019a`` - -### Octave - -GNU Octave is a high-level interpreted language, primarily intended for numerical computations. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|------------------------------------------------ -``4.0.0``| |``foss/2016a`` -``4.0.3``| |``intel/2016b`` -``4.2.1``| |``foss/2018a``, ``intel/2016b``, ``intel/2017a`` -``4.2.1``|``-mt`` |``intel/2017a`` -``4.2.2``| |``foss/2018a`` -``4.4.1``| |``foss/2018b`` -``5.1.0``| |``foss/2019a``, ``foss/2019b`` -``6.2.0``| |``foss/2020b`` -``7.1.0``| |``foss/2021b`` - -### Octopus-vcf - -Octopus is a mapping-based variant caller that implements several calling models within a unified haplotype-aware framework. Octopus takes inspiration from particle filtering by constructing a tree of haplotypes and dynamically pruning and extending the tree based on haplotype posterior probabilities in a sequential manner. This allows octopus to implicitly consider all possible haplotypes at a given loci in reasonable time. - -*homepage*: - -version |toolchain ----------|-------------- -``0.7.1``|``foss/2020b`` -``0.7.2``|``foss/2020b`` - -### OGDF - -OGDF is a self-contained C++ library for graph algorithms, in particular for (but not restricted to) automatic graph drawing. It offers sophisticated algorithms and data structures to use within your own applications or scientific projects. - -*homepage*: - -version |toolchain -------------------|-------------- -``dogwood-202202``|``GCC/11.2.0`` - -### olaFlow - -olaFlow CFD Suite is a free and open source project committed to bringing the latest advances for the simulation of wave dynamics to the OpenFOAM® and FOAM-extend communities. - -*homepage*: - -version |toolchain -------------|-------------- -``20210820``|``foss/2021b`` - -### olego - -OLego is a program specifically designed for de novo spliced mapping of mRNA-seq reads. OLego adopts a seed-and-extend scheme, and does not rely on a separate external mapper. - -*homepage*: - -version |toolchain ----------|-------------- -``1.1.9``|``GCC/11.2.0`` - -### OMA - -The OMA ('Orthologous MAtrix') project is a method and database for the inference of orthologs among complete genomes - -*homepage*: - -version |toolchain ----------|---------- -``2.1.1``|``system`` - -### OmegaFold - -OmegaFold: High-resolution de novo Structure Prediction from Primary Sequence - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``1.1.0``|``-CUDA-11.7.0``|``foss/2022a`` - -### OMERO.insight - -The OMERO.insight Project is a sub-project of the Open Microscopy Environment Project, OME that focuses on delivering a client for the visualization and manipulation of both image data and metadata maintained at an OMERO server site. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|---------- -``5.8.3``|``-Java-11`` |``system`` - -### OMERO.py - -OMERO.py provides Python bindings to the OMERO.blitz server as well as a pluggable command-line interface. - -*homepage*: - -version |toolchain -----------|-------------- -``5.17.0``|``gfbf/2023a`` - -### Omnipose - -Omnipose is a general image segmentation tool that builds on Cellpose in a number of ways described in our paper. It works for both 2D and 3D images and on any imaging modality or cell shape, so long as you train it on representative images. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``0.4.4``| |``foss/2022a`` -``0.4.4``|``-CUDA-11.7.0``|``foss/2022a`` - -### onedrive - -A free Microsoft OneDrive Client which supports OneDrive Personal, OneDrive for Business, OneDrive for Office365 and SharePoint. - -*homepage*: - -version |toolchain -----------|------------------ -``2.4.11``|``GCCcore/10.2.0`` -``2.4.21``|``GCCcore/11.3.0`` -``2.4.25``|``GCCcore/12.3.0`` - -### ONNX - -Open Neural Network Exchange (ONNX) is an open ecosystem that empowers AI developers to choose the right tools as their project evolves. ONNX provides an open source format for AI models, both deep learning and traditional ML. It defines an extensible computation graph model, as well as definitions of built-in operators and standard data types. Currently we focus on the capabilities needed for inferencing (scoring). - -*homepage*: - -version |toolchain -----------|------------------------------ -``1.11.0``|``foss/2021a`` -``1.15.0``|``foss/2022b``, ``gfbf/2023a`` - -### ONNX-Runtime - -ONNX Runtime inference can enable faster customer experiences and lower costs, supporting models from deep learning frameworks such as PyTorch and TensorFlow/Keras as well as classical machine learning libraries such as scikit-learn, LightGBM, XGBoost, etc. ONNX Runtime is compatible with different hardware, drivers, and operating systems, and provides optimal performance by leveraging hardware accelerators where applicable alongside graph optimizations and transforms. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|-------------- -``1.10.0``| |``foss/2021a`` -``1.10.0``|``-CUDA-11.3.1``|``foss/2021a`` -``1.16.3``| |``foss/2022b`` - -### ont-fast5-api - -ont_fast5_api is a simple interface to HDF5 files of the Oxford Nanopore .fast5 file format. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|---------------------------------- -``3.3.0``| |``foss/2020b``, ``fosscuda/2020b`` -``3.3.0``|``-Python-3.7.4``|``foss/2019b`` -``4.0.0``| |``foss/2021a`` -``4.0.2``| |``foss/2021a``, ``foss/2021b`` -``4.1.1``| |``foss/2022a``, ``foss/2022b`` -``4.1.2``| |``foss/2023a`` - -### ont-guppy - -Guppy is a bioinformatics toolkit that enables real-time basecalling and several post-processing features that works on Oxford Nanopore Technologies™ sequencing platforms. For Research Use Only - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|---------- -``6.4.6``| |``system`` -``6.4.6``|``-CUDA-11.7.0``|``system`` -``6.4.8``|``-CUDA-11.7.0``|``system`` - -### ont-remora - -Methylation/modified base calling separated from basecalling. Remora primarily provides an API to call modified bases for basecaller programs such as Bonito. Remora also provides the tools to prepare datasets, train modified base models and run simple inference. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``0.1.2``| |``foss/2021a`` -``0.1.2``|``-CUDA-11.3.1``|``foss/2021a`` -``1.0.0``| |``foss/2021a`` -``1.0.0``|``-CUDA-11.3.1``|``foss/2021a`` - -### OOMPA - -OOMPA is a suite of R packages for the analysis of gene expression (RNA), proteomics profiling, and other high throughput molecular biology data. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|--------------- -``3.1.2``|``-R-3.3.1`` |``intel/2016b`` - -### OPARI2 - -OPARI2, the successor of Forschungszentrum Juelich's OPARI, is a source-to-source instrumentation tool for OpenMP and hybrid codes. It surrounds OpenMP directives and runtime library calls with calls to the POMP2 measurement interface. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------ -``2.0`` |``foss/2016a`` -``2.0.5``|``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``2.0.6``|``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``2.0.7``|``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``2.0.8``|``GCCcore/13.2.0`` - -### Open-Data-Cube-Core - -The Open Data Cube Core provides an integrated gridded data analysis environment for decades of analysis ready earth observation satellite and related data from multiple satellite and other acquisition systems. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``1.8.3``|``-Python-3.8.2``|``foss/2020a`` - -### OpenAI-Gym - -A toolkit for developing and comparing reinforcement learning algorithms. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``0.17.1``|``-Python-3.7.4``|``foss/2019b`` -``0.21.0``| |``foss/2021b`` -``0.26.2``| |``foss/2022a`` - -### OpenBabel - -Open Babel is a chemical toolbox designed to speak the many languages of chemical data. It's an open, collaborative project allowing anyone to search, convert, analyze, or store data from molecular modeling, chemistry, solid-state materials, biochemistry, or related areas. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------------------------- -``2.3.2``|``-Python-2.7.11``|``foss/2016a`` -``2.4.1``|``-Python-2.7.14``|``intel/2017b`` -``2.4.1``|``-Python-2.7.15``|``intel/2018b`` -``2.4.1``|``-Python-3.6.6`` |``intel/2018b`` -``2.4.1``|``-Python-3.7.2`` |``intel/2019a`` -``3.0.0``|``-Python-3.7.4`` |``gompi/2019b`` -``3.1.1``| |``gompi/2021a``, ``gompi/2022a``, ``gompi/2023a`` -``3.1.1``|``-Python-3.7.4`` |``gompi/2019b`` -``3.1.1``|``-Python-3.8.2`` |``iimpi/2020a`` - -### OpenBLAS - -OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|---------------------------------------------------------- -``0.2.9`` |``-LAPACK-3.5.0``|``GCC/4.8.3`` -``0.2.12``|``-LAPACK-3.5.0``|``GCC/4.9.2`` -``0.2.13``|``-LAPACK-3.5.0``|``GCC/4.8.4``, ``GCC/4.9.2`` -``0.2.14``|``-LAPACK-3.5.0``|``GNU/4.9.2-2.25``, ``GNU/4.9.3-2.25`` -``0.2.15``|``-LAPACK-3.6.0``|``GCC/4.9.3-2.25`` -``0.2.18``|``-LAPACK-3.6.0``|``GCC/4.9.4-2.25``, ``GCC/5.3.0-2.26``, ``GCC/5.4.0-2.26`` -``0.2.18``|``-LAPACK-3.6.1``|``GCC/5.4.0-2.26``, ``gompi/2016.07`` -``0.2.19``|``-LAPACK-3.6.1``|``gompi/2016.09`` -``0.2.19``|``-LAPACK-3.7.0``|``GCC/5.4.0-2.26``, ``GCC/6.3.0-2.27`` -``0.2.20``| |``GCC/5.4.0-2.26``, ``GCC/6.4.0-2.28``, ``GCC/7.2.0-2.29`` -``0.3.0`` | |``GCC/6.4.0-2.28``, ``GCC/7.3.0-2.30`` -``0.3.1`` | |``GCC/7.3.0-2.30`` -``0.3.3`` | |``GCC/8.2.0-2.31.1`` -``0.3.4`` | |``GCC/8.2.0-2.31.1`` -``0.3.5`` | |``GCC/8.2.0-2.31.1`` -``0.3.6`` | |``GCC/8.3.0-2.32`` -``0.3.7`` | |``GCC/8.3.0`` -``0.3.8`` | |``GCC/9.2.0`` -``0.3.9`` | |``GCC/9.3.0`` -``0.3.12``| |``GCC/10.2.0`` -``0.3.15``| |``GCC/10.3.0`` -``0.3.17``| |``GCC/10.3.0``, ``GCC/11.2.0`` -``0.3.18``| |``GCC/11.2.0`` -``0.3.20``| |``GCC/11.2.0``, ``GCC/11.3.0``, ``NVHPC/22.7-CUDA-11.7.0`` -``0.3.20``|``-int8`` |``GCC/11.3.0`` -``0.3.21``| |``GCC/12.2.0`` -``0.3.23``| |``GCC/12.3.0`` -``0.3.24``| |``GCC/13.2.0`` -``0.3.27``| |``GCC/13.3.0`` - -### openCARP - -openCARP is an open cardiac electrophysiology simulator for in-silico experiments. - -*homepage*: - -version|versionsuffix |toolchain --------|-----------------|-------------- -``3.2``|``-Python-3.8.2``|``foss/2020a`` -``6.0``| |``foss/2020b`` -``8.2``| |``foss/2021a`` - -### OpenCensus-python - -OpenCensus for Python. OpenCensus provides a framework to measure a server's resource usage and collect performance stats. This repository contains Python related utilities and supporting software needed by OpenCensus. - -*homepage*: - -version |toolchain ----------|------------------ -``0.8.0``|``GCCcore/11.2.0`` - -### OpenCoarrays - -OpenCoarrays is an open-source software project that supports the coarray Fortran (CAF) parallel programming features of the Fortran 2008 standard and several features proposed for Fortran 2015 in the draft Technical Specification TS 18508 Additional Parallel Features in Fortran. - -*homepage*: - -version |toolchain ----------|--------------- -``1.9.0``|``gompi/2017a`` -``2.2.0``|``gompi/2018b`` -``2.8.0``|``gompi/2019b`` -``2.9.2``|``gompi/2020a`` - -### OpenColorIO - -OpenColorIO (OCIO) is a complete color management solution geared towards motion picture production with an emphasis on visual effects and computer animation. - -*homepage*: - -version |toolchain ----------|-------------- -``1.1.0``|``foss/2018b`` - -### OpenCV - -OpenCV (Open Source Computer Vision Library) is an open source computer vision and machine learning software library. OpenCV was built to provide a common infrastructure for computer vision applications and to accelerate the use of machine perception in the commercial products. Includes extra modules for OpenCV from the contrib repository. - -*homepage*: - -version |versionsuffix |toolchain -----------|-------------------------|---------------------------------------------------------------- -``2.4.12``| |``intel/2016a`` -``3.1.0`` | |``foss/2016a``, ``foss/2016b``, ``intel/2016a``, ``intel/2016b`` -``3.3.0`` |``-Python-2.7.13`` |``intel/2017a`` -``3.3.0`` |``-Python-2.7.14`` |``foss/2017b``, ``intel/2017b`` -``3.3.0`` |``-Python-3.6.1`` |``intel/2017a`` -``3.3.0`` |``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``3.4.1`` |``-Python-2.7.14`` |``foss/2018a``, ``intel/2018a`` -``3.4.1`` |``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``3.4.1`` |``-Python-3.6.4-contrib``|``foss/2018a`` -``3.4.5`` |``-Python-2.7.15`` |``foss/2018b`` -``3.4.7`` |``-Python-2.7.15`` |``foss/2019a``, ``fosscuda/2019a`` -``3.4.7`` |``-Python-3.7.2`` |``foss/2019a``, ``fosscuda/2019a`` -``4.0.1`` |``-Python-2.7.15`` |``foss/2018b`` -``4.0.1`` |``-Python-3.6.6`` |``foss/2018b`` -``4.2.0`` |``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b`` -``4.2.0`` |``-Python-3.8.2`` |``foss/2020a`` -``4.2.0`` |``-Python-3.8.2-contrib``|``foss/2020a`` -``4.5.1`` |``-contrib`` |``foss/2020b``, ``fosscuda/2020b`` -``4.5.3`` |``-CUDA-11.3.1-contrib`` |``foss/2021a`` -``4.5.3`` |``-contrib`` |``foss/2021a`` -``4.5.5`` |``-CUDA-11.4.1-contrib`` |``foss/2021b`` -``4.5.5`` |``-contrib`` |``foss/2021b`` -``4.6.0`` |``-CUDA-11.7.0-contrib`` |``foss/2022a`` -``4.6.0`` |``-contrib`` |``foss/2022a`` -``4.8.0`` |``-contrib`` |``foss/2022b`` -``4.8.1`` |``-CUDA-12.1.1-contrib`` |``foss/2023a`` -``4.8.1`` |``-contrib`` |``foss/2023a`` - -### OpenEXR - -OpenEXR is a high dynamic-range (HDR) image file format developed by Industrial Light & Magic for use in computer imaging applications - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``2.2.0``|``intel/2016b``, ``intel/2017a`` -``2.3.0``|``foss/2018b``, ``intel/2018b`` -``2.4.0``|``GCCcore/8.3.0`` -``2.4.1``|``GCCcore/9.3.0`` -``2.5.5``|``GCCcore/10.2.0`` -``3.0.1``|``GCCcore/10.3.0`` -``3.1.1``|``GCCcore/11.2.0`` -``3.1.5``|``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``3.1.7``|``GCCcore/12.3.0`` -``3.2.0``|``GCCcore/13.2.0`` - -### OpenFace - -OpenFace – a state-of-the art tool intended for facial landmark detection, head pose estimation, facial action unit recognition, and eye-gaze estimation. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``2.2.0``| |``foss/2021a`` -``2.2.0``|``-CUDA-11.3.1``|``foss/2021a`` - -### OpenFAST - -OpenFAST is a wind turbine simulation tool which builds on FAST v8. FAST.Farm extends the capability of OpenFAST to simulate multi-turbine wind farms - -*homepage*: - -version |toolchain ----------|-------------- -``3.0.0``|``foss/2021b`` - -### OpenFOAM - -OpenFOAM is a free, open source CFD software package. OpenFOAM has an extensive range of features to solve anything from complex fluid flows involving chemical reactions, turbulence and heat transfer, to solid dynamics and electromagnetics. - -*homepage*: - -version |versionsuffix |toolchain -----------------|-------------------|------------------------------------------------- -``2.2.2`` | |``intel/2016a``, ``intel/2017a``, ``intel/2018a`` -``2.2.x`` | |``intel/2019a`` -``2.3.1`` | |``intel/2017a``, ``intel/2019b`` -``2.4.0`` | |``intel/2017a``, ``intel/2019a`` -``3.0.0`` | |``foss/2016a`` -``3.0.1`` | |``intel/2016b``, ``intel/2018a`` -``4.0`` | |``foss/2016b``, ``intel/2016b`` -``4.1`` | |``foss/2016b``, ``intel/2017a`` -``4.x-20170904``| |``intel/2016b`` -``5.0`` | |``foss/2017b``, ``intel/2017a``, ``intel/2017b`` -``5.0-20180108``| |``foss/2018a``, ``intel/2017b``, ``intel/2018a`` -``5.0-20180606``| |``foss/2019b`` -``6`` | |``foss/2018b``, ``foss/2019b``, ``intel/2018a`` -``7`` | |``foss/2019b`` -``7`` |``-20200508`` |``foss/2019b``, ``foss/2022a`` -``7`` |``-20200508-int64``|``foss/2022a`` -``8`` | |``foss/2020a``, ``foss/2020b`` -``8`` |``-20210316`` |``foss/2020b`` -``9`` | |``foss/2021a``, ``intel/2021a`` -``10`` | |``foss/2022a``, ``foss/2023a`` -``10`` |``-20230119`` |``foss/2022a`` -``11`` | |``foss/2022a``, ``foss/2023a`` -``v1606+`` | |``foss/2018b`` -``v1612+`` | |``foss/2018b`` -``v1712`` | |``foss/2017b``, ``intel/2017b`` -``v1806`` | |``foss/2018b`` -``v1812`` | |``foss/2018b`` -``v1906`` | |``foss/2019b`` -``v1912`` | |``foss/2019b``, ``intel/2019b`` -``v2006`` | |``foss/2020a``, ``intel/2020a`` -``v2012`` | |``foss/2020a`` -``v2106`` | |``foss/2021a`` -``v2112`` | |``foss/2020b``, ``foss/2021b``, ``foss/2022a`` -``v2206`` | |``foss/2022a`` -``v2206`` |``-int64`` |``foss/2022a`` -``v2306`` | |``foss/2022b`` -``v2312`` | |``foss/2023a`` - -### OpenFOAM-Extend - -OpenFOAM is a free, open source CFD software package. OpenFOAM has an extensive range of features to solve anything from complex fluid flows involving chemical reactions, turbulence and heat transfer, to solid dynamics and electromagnetics. - -*homepage*: - -version |versionsuffix |toolchain -----------------|------------------|--------------------------------- -``3.1`` | |``gimkl/2.11.5`` -``3.2`` | |``gimkl/2.11.5``, ``intel/2016a`` -``4.0`` | |``intel/2017a`` -``4.0`` |``-Python-2.7.16``|``intel/2019b`` -``4.1-20191120``|``-Python-2.7.16``|``intel/2019b`` -``4.1-20200408``|``-Python-2.7.16``|``foss/2019b`` - -### OpenFold - -A faithful PyTorch reproduction of DeepMind's AlphaFold 2 - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``1.0.0``|``-CUDA-11.3.1``|``foss/2021a`` -``1.0.1``|``-CUDA-11.3.1``|``foss/2021a`` -``1.0.1``|``-CUDA-11.7.0``|``foss/2022a`` - -### OpenForceField - -Simulation and Parameter Estimation in Geophysics - A python package for simulation and gradient based parameter estimation in the context of geophysical applications. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``0.7.0``|``-Python-3.8.2``|``intel/2020a`` - -### OpenImageIO - -OpenImageIO is a library for reading and writing images, and a bunch of related classes, utilities, and applications. - -*homepage*: - -version |toolchain -------------|-------------------------------- -``1.6.17`` |``intel/2016b`` -``1.7.17`` |``intel/2017a`` -``1.8.16`` |``foss/2018b``, ``intel/2018b`` -``2.0.12`` |``gompi/2019b``, ``iimpi/2019b`` -``2.1.12.0``|``gompi/2020a``, ``iimpi/2020a`` -``2.3.17.0``|``GCC/11.3.0`` -``2.4.14.0``|``GCC/12.3.0`` - -### OpenJPEG - -OpenJPEG is an open-source JPEG 2000 codec written in C language. It has been developed in order to promote the use of JPEG 2000, a still-image compression standard from the Joint Photographic Experts Group (JPEG). Since may 2015, it is officially recognized by ISO/IEC and ITU-T as a JPEG 2000 Reference Software. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------ -``2.1`` |``GCCcore/6.4.0`` -``2.3.0``|``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``2.3.1``|``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``2.4.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/9.3.0`` -``2.5.0``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### OpenKIM-API - -Open Knowledgebase of Interatomic Models. OpenKIM is an API and a collection of interatomic models (potentials) for atomistic simulations. It is a library that can be used by simulation programs to get access to the models in the OpenKIM database. This EasyBuild only installs the API, the models have to be installed by the user by running kim-api-collections-management install user MODELNAME or kim-api-collections-management install user OpenKIM to install them all. - -*homepage*: - -version |toolchain ----------|------------------------------------------------ -``1.9.2``|``foss/2016b``, ``foss/2017b`` -``1.9.7``|``foss/2018b``, ``intel/2018b``, ``iomkl/2018b`` - -### openkim-models - -Open Knowledgebase of Interatomic Models. OpenKIM is an API and a collection of interatomic models (potentials) for atomistic simulations. It is a library that can be used by simulation programs to get access to the models in the OpenKIM database. This EasyBuild installs the models. The API itself is in the kim-api package. - -*homepage*: - -version |toolchain -------------|-------------------------------------------------------------------------------- -``20190725``|``GCC/10.2.0``, ``foss/2019a``, ``foss/2019b``, ``intel/2019a``, ``intel/2019b`` -``20210128``|``GCC/10.2.0`` -``20210811``|``GCC/12.3.0``, ``intel-compilers/2023.1.0`` - -### OpenMEEG - -The OpenMEEG software is a C++ package for solving the forward problems of electroencephalography (EEG) and magnetoencephalography (MEG). - -*homepage*: - -version |toolchain ----------|-------------- -``2.5.7``|``foss/2023a`` - -### OpenMM - -OpenMM is a toolkit for molecular simulation. - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------------------|--------------------------------------------------- -``7.1.1``|``-Python-3.6.3`` |``intel/2017b`` -``7.4.1``|``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b``, ``intel/2019b`` -``7.4.2``|``-Python-3.8.2`` |``intel/2020a`` -``7.5.0``| |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b`` -``7.5.0``|``-Python-3.8.2`` |``fosscuda/2020a``, ``intel/2020a`` -``7.5.1``| |``foss/2020b``, ``fosscuda/2020b`` -``7.5.1``|``-CUDA-11.3.1-DeepMind-patch``|``foss/2021a`` -``7.5.1``|``-CUDA-11.4.1-DeepMind-patch``|``foss/2021b`` -``7.5.1``|``-DeepMind-patch`` |``foss/2021a``, ``foss/2021b`` -``7.7.0``| |``foss/2021a``, ``foss/2022a`` -``7.7.0``|``-CUDA-11.3.1`` |``foss/2021a`` -``7.7.0``|``-CUDA-11.7.0`` |``foss/2022a`` -``8.0.0``| |``foss/2022a``, ``foss/2023a`` -``8.0.0``|``-CUDA-11.7.0`` |``foss/2022a`` - -### OpenMM-PLUMED - -This project provides a connection between OpenMM and PLUMED. It allows you to bias or analyze an OpenMM simulation based on collective variables. - -*homepage*: - -version|versionsuffix |toolchain --------|-----------------|--------------- -``1.0``|``-Python-3.8.2``|``intel/2020a`` - -### OpenMMTools - -A batteries-included toolkit for the GPU-accelerated OpenMM molecular simulation engine. openmmtools is a Python library layer that sits on top of OpenMM to provide access to a variety of useful tools for building full-featured molecular simulation packages. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|--------------- -``0.20.0``|``-Python-3.8.2``|``intel/2020a`` - -### OpenMolcas - -OpenMolcas is a quantum chemistry software package. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------------|-------------------------------- -``18.09``|``-Python-3.6.6`` |``intel/2018b`` -``20.10``|``-Python-3.8.2`` |``intel/2020a`` -``20.10``|``-Python-3.8.2-noGA``|``intel/2020a`` -``21.06``| |``intel/2021a``, ``iomkl/2021a`` -``22.06``| |``intel/2022a`` -``22.10``| |``intel/2022a`` -``22.10``|``-noGA`` |``intel/2022a`` -``23.06``| |``intel/2023a`` - -### OpenMPI - -The Open MPI Project is an open source MPI implementation. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|-------------------------------------------------------------------------------------------------------------------- -``1.6.5`` | |``GCC/4.8.1``, ``GCC/4.8.2``, ``GCC/4.8.3`` -``1.6.5`` |``-no-OFED`` |``GCC/4.8.1``, ``GCC/4.8.2`` -``1.7.3`` | |``GCC/4.8.2`` -``1.8.1`` | |``GCC/4.8.3`` -``1.8.3`` | |``GCC/4.9.2`` -``1.8.4`` | |``GCC/4.8.4``, ``GCC/4.9.2`` -``1.8.5`` | |``GNU/4.9.2-2.25`` -``1.8.6`` | |``GNU/4.9.3-2.25`` -``1.8.8`` | |``GNU/4.9.3-2.25`` -``1.10.1``| |``GCC/4.9.3-2.25`` -``1.10.2``| |``GCC/4.9.3-2.25``, ``GCC/5.3.0-2.26``, ``GCC/6.1.0-2.27``, ``PGI/16.3-GCC-4.9.3-2.25``, ``PGI/16.4-GCC-5.3.0-2.26`` -``1.10.3``| |``GCC/5.4.0-2.26``, ``GCC/6.1.0-2.27``, ``iccifort/2016.3.210-GCC-5.4.0-2.26`` -``1.10.4``| |``PGI/16.7-GCC-5.4.0-2.26``, ``iccifort/2016.3.210-GCC-4.9.3-2.25`` -``2.0.0`` | |``GCC/5.2.0`` -``2.0.1`` | |``GCC/6.2.0-2.27``, ``iccifort/2017.1.132-GCC-5.4.0-2.26`` -``2.0.2`` | |``GCC/6.3.0-2.27``, ``iccifort/2017.1.132-GCC-6.3.0-2.27`` -``2.0.2`` |``-opa`` |``GCC/6.3.0-2.27`` -``2.1.0`` | |``GCC/6.3.0-2.28`` -``2.1.1`` | |``GCC/6.4.0-2.28``, ``gcccuda/2017b``, ``iccifort/2017.4.196-GCC-6.4.0-2.28`` -``2.1.2`` | |``GCC/6.4.0-2.28``, ``gcccuda/2018a``, ``iccifort/2018.1.163-GCC-6.4.0-2.28`` -``2.1.3`` | |``iccifort/2018.2.199-GCC-6.4.0-2.28`` -``3.0.0`` | |``GCC/7.2.0-2.29`` -``3.1.0`` | |``GCC/7.3.0-2.30`` -``3.1.1`` | |``GCC/7.3.0-2.30``, ``gcccuda/2018b``, ``iccifort/2018.3.222-GCC-7.3.0-2.30`` -``3.1.2`` | |``GCC/8.2.0-2.31.1`` -``3.1.3`` | |``GCC/8.2.0-2.31.1``, ``gcccuda/2019a``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -``3.1.4`` | |``GCC/8.3.0``, ``GCC/8.3.0-2.32``, ``gcccuda/2019b``, ``iccifort/2019.5.281`` -``4.0.0`` | |``GCC/8.2.0-2.31.1`` -``4.0.0`` |``-hpcx`` |``GCC/8.2.0-2.31.1`` -``4.0.1`` | |``GCC/8.3.0-2.32`` -``4.0.2`` | |``GCC/9.2.0-2.32`` -``4.0.3`` | |``GCC/9.3.0``, ``gcccuda/2020a``, ``iccifort/2020.1.217``, ``iccifortcuda/2020a`` -``4.0.5`` | |``GCC/10.2.0``, ``GCC/9.3.0``, ``gcccuda/2020b``, ``iccifort/2020.4.304`` -``4.0.5`` |``-CUDA-11.2.1``|``NVHPC/21.2`` -``4.0.6`` | |``GCC/10.3.0`` -``4.0.7`` | |``GCC/10.3.0`` -``4.1.0`` | |``GCC/10.2.0`` -``4.1.1`` | |``GCC/10.3.0``, ``GCC/11.2.0``, ``intel-compilers/2021.2.0``, ``intel-compilers/2021.4.0`` -``4.1.2`` | |``GCC/10.2.0``, ``GCC/11.2.0`` -``4.1.4`` | |``GCC/11.3.0``, ``GCC/12.2.0``, ``NVHPC/22.7-CUDA-11.7.0`` -``4.1.5`` | |``GCC/12.2.0``, ``GCC/12.3.0``, ``intel-compilers/2023.1.0`` -``4.1.6`` | |``GCC/13.2.0`` -``5.0.3`` | |``GCC/13.3.0`` -``system``| |``GCC/system-2.29`` - -### OpenMS - -As part of the deNBI Center for integrative Bioinformatics, OpenMS offers an open-source software C++ library (+ python bindings) for LC/MS data management and analyses. It provides an infrastructure for the rapid development of mass spectrometry related software as well as a rich toolset built on top of it. - -*homepage*: - -version |toolchain ----------|-------------- -``2.4.0``|``foss/2018b`` - -### OpenNLP - -The Apache OpenNLP library is a machine learning based toolkit for the processing of natural language text. - -*homepage*: - -version |toolchain ----------|---------- -``1.8.1``|``system`` - -### OpenPGM - -OpenPGM is an open source implementation of the Pragmatic General Multicast (PGM) specification in RFC 3208 available at www.ietf.org. PGM is a reliable and scalable multicast protocol that enables receivers to detect loss, request retransmission of lost data, or notify an application of unrecoverable loss. PGM is a receiver-reliable protocol, which means the receiver is responsible for ensuring all data is received, absolving the sender of reception responsibility. - -*homepage*: - -version |toolchain ------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``5.2.122``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``foss/2016a``, ``foss/2016b``, ``foss/2017a``, ``intel/2016a``, ``intel/2016b``, ``intel/2017a`` - -### OpenPIV - -OpenPIV is an open source Particle Image Velocimetry analysis software - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|--------------- -``0.21.8``|``-Python-3.7.4``|``intel/2019b`` - -### openpyxl - -A Python library to read/write Excel 2010 xlsx/xlsm files - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|---------------------------------------------------------- -``2.6.2`` | |``GCCcore/8.2.0`` -``2.6.4`` |``-Python-2.7.16``|``GCCcore/8.3.0`` -``3.0.3`` |``-Python-3.7.4`` |``GCCcore/8.3.0`` -``3.0.7`` | |``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``3.0.9`` | |``GCCcore/11.2.0`` -``3.0.10``| |``GCCcore/11.3.0`` -``3.1.2`` | |``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### OpenRefine - -OpenRefine is a power tool that allows you to load data, understand it, clean it up, reconcile it, and augment it with data coming from the web. - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------|---------- -``2.7`` |``-Java-1.8.0_144``|``system`` -``3.4.1``|``-Java-11`` |``system`` - -### OpenSceneGraph - -The OpenSceneGraph is an open source high performance 3D graphics toolkit, used by application developers in fields such as visual simulation, games, virtual reality, scientific visualization and modelling. Written entirely in Standard C++ and OpenGL it runs on all Windows platforms, OSX, GNU/Linux, IRIX, Solaris, HP-Ux, AIX and FreeBSD operating systems. The OpenSceneGraph is now well established as the world leading scene graph technology, used widely in the vis-sim, space, scientific, oil-gas, games and virtual reality industries. - -*homepage*: - -version |toolchain ----------|---------------------------------------------- -``3.6.5``|``foss/2021a``, ``foss/2021b``, ``foss/2022a`` - -### OpenSees - -Open System for Earthquake Engineering Simulation - -*homepage*: - -version |versionsuffix |toolchain ----------|--------------------------|--------------- -``3.2.0``|``-Python-3.8.2`` |``intel/2020a`` -``3.2.0``|``-Python-3.8.2-parallel``|``intel/2020a`` - -### OpenSlide - -OpenSlide is a C library that provides a simple interface to read whole-slide images (also known as virtual slides). - -*homepage*: - -version |versionsuffix |toolchain ----------|---------------|----------------------------------------------------------------------------- -``3.4.1``| |``GCCcore/11.2.0``, ``GCCcore/8.2.0`` -``3.4.1``|``-largefiles``|``GCCcore/10.3.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0``, ``GCCcore/8.2.0`` - -### OpenSlide-Java - -This is a Java binding to OpenSlide. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|------------------ -``0.12.4``|``-Java-17`` |``GCCcore/12.3.0`` - -### openslide-python - -OpenSlide Python is a Python interface to the OpenSlide library. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``1.1.1``|``GCCcore/8.2.0`` -``1.1.2``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``1.2.0``|``GCCcore/11.3.0`` -``1.3.1``|``GCCcore/12.3.0`` - -### OpenSSL - -The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured, and Open Source toolchain implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well as a full-strength general purpose cryptography library. - -*homepage*: - -version |toolchain -----------|--------------------------------------------------------------------- -``1.0`` |``system`` -``1.0.1f``|``GCC/4.8.2`` -``1.0.1k``|``GCC/4.9.2`` -``1.0.1s``|``foss/2016a``, ``intel/2016a`` -``1.0.2g``|``GCCcore/4.9.3`` -``1.0.2h``|``foss/2016.04``, ``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25`` -``1.1`` |``system`` -``1.1.0c``|``GCC/5.4.0-2.26`` -``1.1.0e``|``intel/2016b`` -``1.1.0h``|``GCCcore/7.3.0`` -``1.1.1b``|``GCCcore/8.2.0`` -``1.1.1d``|``GCCcore/8.3.0`` -``1.1.1e``|``GCCcore/9.3.0`` -``1.1.1h``|``GCCcore/10.2.0`` -``1.1.1k``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``1.1.1n``|``GCCcore/11.3.0`` -``1.1.1q``|``GCCcore/10.3.0`` -``3`` |``system`` - -### OpenStackClient - -OpenStackClient (aka OSC) is a command-line client for OpenStack that brings the command set for Compute, Identity, Image, Network, Object Store and Block Storage APIs together in a single shell with a uniform command structure. - -*homepage*: - -version |toolchain ----------|------------------ -``5.5.0``|``GCCcore/10.2.0`` -``5.8.0``|``GCCcore/11.2.0`` -``6.0.0``|``GCCcore/12.2.0`` - -### OPERA - -An optimal genome scaffolding program - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|------------------------------- -``2.0.6``|``-Perl-5.28.0``|``foss/2018b``, ``intel/2018b`` - -### OPERA-MS - -OPERA-MS is a hybrid metagenomic assembler which combines the advantages of short and long-read technologies to provide high quality assemblies, addressing issues of low contiguity for short-read only assemblies, and low base-pair quality for long-read only assemblies. - -*homepage*: - -version |versionsuffix |toolchain -------------------|-----------------|-------------- -``0.9.0-20200802``|``-Python-3.8.2``|``foss/2020a`` - -### OptaDOS - -OptaDOS is a program for calculating core-electron and low-loss electron energy loss spectra (EELS) and optical spectra along with total-, projected- and joint-density of electronic states (DOS) from single-particle eigenenergies and dipole transition coefficients. - -*homepage*: - -version |toolchain ------------|-------------- -``1.2.380``|``GCC/11.3.0`` - -### Optax - -Optax is a gradient processing and optimization library for JAX. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``0.1.7``| |``foss/2022a`` -``0.1.7``|``-CUDA-11.7.0``|``foss/2022a`` - -### optiSLang - -Ansys optiSLang is a constantly evolving, leading-edge answer to the challenges posed by CAE-based Robust Design Optimization (RDO). Its state-of-the-art algorithms efficiently and automatically search for the most robust design configuration, eliminating the slow, manual process that used to define RDO. - -*homepage*: - -version |toolchain -----------|---------- -``2024R1``|``system`` - -### OptiType - -OptiType is a novel HLA genotyping algorithm based on integer linear programming, capable of producing accurate 4-digit HLA genotyping predictions from NGS data by simultaneously selecting all major and minor HLA Class I alleles. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``1.3.2``|``-Python-2.7.15``|``foss/2018b`` -``1.3.2``|``-Python-3.6.6`` |``foss/2018b`` - -### OptiX - -OptiX is NVIDIA SDK for easy ray tracing performance. It provides a simple framework for accessing the GPU’s massive ray tracing power using state-of-the-art GPU algorithms. - -*homepage*: - -version |toolchain ----------|------------------ -``3.8.0``|``GNU/4.9.3-2.25`` -``3.9.0``|``GNU/4.9.3-2.25`` -``6.5.0``|``system`` -``7.2.0``|``system`` - -### Optuna - -Optuna is an automatic hyperparameter optimization software framework, particularly designed for machine learning. It features an imperative, define-by-run style user API. Thanks to our define-by-run API, the code written with Optuna enjoys high modularity, and the user of Optuna can dynamically construct the search spaces for the hyperparameters. - -*homepage*: - -version |toolchain -----------|-------------- -``2.9.1`` |``foss/2021a`` -``2.10.0``|``foss/2021b`` -``3.1.0`` |``foss/2022a`` -``3.5.0`` |``foss/2023a`` - -### OR-Tools - -Google Optimization Tools (a.k.a., OR-Tools) is an open-source, fast and portable software suite for solving combinatorial optimization problems. - -*homepage*: - -version|versionsuffix |toolchain --------|-----------------|-------------- -``7.1``|``-Python-3.7.2``|``foss/2019a`` - -### ORCA - -ORCA is a flexible, efficient and easy-to-use general purpose tool for quantum chemistry with specific emphasis on spectroscopic properties of open-shell molecules. It features a wide variety of standard quantum chemical methods ranging from semiempirical methods to DFT to single- and multireference correlated ab initio methods. It can also treat environmental and relativistic effects. - -*homepage*: - -version |versionsuffix |toolchain -----------------------|------------------|-------------------------------- -``3_0_2-linux_x86-64``|``-OpenMPI-1.8.1``|``system`` -``4.0.0.2`` |``-OpenMPI-2.0.2``|``system`` -``4.0.1`` |``-OpenMPI-2.0.2``|``system`` -``4.1.0`` |``-OpenMPI-3.1.3``|``system`` -``4.2.0`` | |``gompi/2019b`` -``4.2.1`` | |``gompi/2019b`` -``5.0.0`` | |``gompi/2021a`` -``5.0.0`` |``-static`` |``gompi/2021a`` -``5.0.1`` | |``gompi/2021a`` -``5.0.1`` |``-static`` |``gompi/2021a`` -``5.0.2`` | |``gompi/2021a``, ``gompi/2021b`` -``5.0.2`` |``-static`` |``gompi/2021a``, ``gompi/2021b`` -``5.0.3`` | |``gompi/2021b`` -``5.0.4`` | |``gompi/2022a``, ``gompi/2023a`` - -### ORFfinder - -ORF finder searches for open reading frames (ORFs) in the DNA sequence you enter. The program returns the range of each ORF, along with its protein translation. Use ORF finder to search newly sequenced DNA for potential protein encoding segments, verify predicted protein using newly developed SMART BLAST or regular BLASTP. - -*homepage*: - -version |toolchain ----------|---------- -``0.4.3``|``system`` - -### OrfM - -A simple and not slow open reading frame (ORF) caller. - -*homepage*: - -version |toolchain ----------|-------------------------------------------------------- -``0.6.1``|``foss/2016b`` -``0.7.1``|``GCC/12.3.0``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` - -### orthAgogue - -orthAgogue: a tool for high speed estimation of homology relations within and between species in massive data sets. orthAgogue is easy to use and offers flexibility through a range of optional parameters. - -*homepage*: - -version |toolchain -------------|--------------- -``20141105``|``gompi/2023a`` - -### OrthoFinder - -OrthoFinder is a fast, accurate and comprehensive platform for comparative genomics - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``2.2.7`` |``-Python-2.7.14``|``intel/2018a`` -``2.3.3`` |``-Python-2.7.15``|``intel/2018b`` -``2.3.8`` |``-Python-2.7.16``|``foss/2019b`` -``2.3.11``|``-Python-3.7.4`` |``intel/2019b`` -``2.5.2`` | |``foss/2020b`` -``2.5.4`` | |``foss/2020b`` -``2.5.5`` | |``foss/2023a`` - -### OrthoMCL - -OrthoMCL is a genome-scale algorithm for grouping orthologous protein sequences. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|--------------- -``1.4`` |``-Perl-5.24.0``|``intel/2016b`` -``2.0.9``|``-Perl-5.24.0``|``intel/2016b`` - -### Osi - -Osi (Open Solver Interface) provides an abstract base class to a generic linear programming (LP) solver, along with derived classes for specific solvers. Many applications may be able to use the Osi to insulate themselves from a specific LP solver. That is, programs written to the OSI standard may be linked to any solver with an OSI interface and should produce correct results. The OSI has been significantly extended compared to its first incarnation. Currently, the OSI supports linear programming solvers and has rudimentary support for integer programming. - -*homepage*: - -version |toolchain ------------|---------------------------------- -``0.108.5``|``GCCcore/7.3.0``, ``foss/2018b`` -``0.108.6``|``GCC/10.3.0``, ``GCCcore/10.2.0`` -``0.108.7``|``GCC/11.2.0`` -``0.108.8``|``GCC/12.2.0`` -``0.108.9``|``GCC/12.3.0`` - -### OSPRay - -Open, Scalable, and Portable Ray Tracing Engine - -*homepage*: - -version |toolchain ----------|---------- -``2.5.0``|``system`` - -### OSU-Micro-Benchmarks - -OSU Micro-Benchmarks - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``5.3.2``| |``foss/2016a``, ``foss/2017a`` -``5.6.2``| |``gompi/2019a`` -``5.6.3``| |``gompi/2019b``, ``gompi/2020a``, ``gompi/2020b``, ``gompic/2019b``, ``gompic/2020a``, ``iimpi/2019a``, ``iimpi/2019b``, ``iimpi/2020a``, ``iimpi/2020b``, ``iimpic/2019b``, ``iimpic/2020a`` -``5.7`` | |``gompi/2020b``, ``gompic/2020b``, ``iimpi/2020b`` -``5.7.1``| |``ffmpi/4.5.0``, ``gompi/2021a``, ``gompi/2021b``, ``iimpi/2021a``, ``iompi/2021a`` -``5.7.1``|``-CUDA-11.3.1``|``gompi/2021a`` -``5.8`` | |``iimpi/2021b`` -``5.9`` | |``gompi/2022.05``, ``gompi/2022a``, ``iimpi/2022a`` -``5.9`` |``-CUDA-11.3.1``|``gompi/2021a`` -``5.9`` |``-CUDA-11.4.1``|``gompi/2021b`` -``5.9`` |``-CUDA-11.7.0``|``gompi/2022a`` -``5.9`` |``-ROCm-4.5.0`` |``gompi/2021b`` -``6.2`` | |``gompi/2022.10``, ``gompi/2022b``, ``iimpi/2022b`` -``6.2`` |``-CUDA-12.0.0``|``gompi/2022b`` -``7.1-1``| |``gompi/2023a``, ``iimpi/2023a`` -``7.2`` | |``gompi/2023.09``, ``gompi/2023b`` -``7.2`` |``-CUDA-12.1.1``|``gompi/2023a`` -``7.4`` | |``gompi/2024.05`` - -### OTF2 - -The Open Trace Format 2 is a highly scalable, memory efficient event trace data format plus support library. It is the new standard trace format for Scalasca, Vampir, and TAU and is open for other tools. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------- -``2.0`` |``foss/2016a``, ``foss/2017a`` -``2.2`` |``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``2.3`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``3.0`` |``GCCcore/11.3.0`` -``3.0.2``|``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``3.0.3``|``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### OVITO - -OVITO is a scientific visualization and data analysis solution for atomistic and other particle-based models. It helps scientists gain meaningful and quick insights from numerical simulation results. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|--------------- -``3.7.11``|``-basic`` |``gompi/2022a`` - -### ownCloud - -The ownCloud Desktop Client is a tool to synchronize files from ownCloud Server with your computer. - -*homepage*: - -version |toolchain ----------|----------------- -``2.4.3``|``foss/2018b`` -``2.5.4``|``GCCcore/8.2.0`` - -### oxDNA - -oxDNA is a simulation code that was initially conceived as an implementation of the coarse-grained DNA model introduced by T. E. Ouldridge, J. P. K. Doye and A. A. Louis. It has been since reworked and it is now an extensible simulation+analysis framework. It natively supports DNA, RNA, Lennard-Jones and patchy particle simulations of different kinds on both single CPU cores and NVIDIA GPUs. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``3.5.2``|``-CUDA-11.7.0``|``foss/2022a`` - -### oxford_asl - -A command line tool for quantification of perfusion from ASL data - -*homepage*: - -version |versionsuffix |toolchain ----------|--------------------------|--------------- -``3.9.6``|``-centos7-Python-2.7.13``|``intel/2017a`` - -## P - - -[p11-kit](#p11-kit) - [p4-phylogenetics](#p4-phylogenetics) - [p4est](#p4est) - [p4vasp](#p4vasp) - [p7zip](#p7zip) - [packmol](#packmol) - [PAGAN2](#pagan2) - [pagmo](#pagmo) - [pairsnp](#pairsnp) - [PAL2NAL](#pal2nal) - [paladin](#paladin) - [PALEOMIX](#paleomix) - [PAML](#paml) - [panaroo](#panaroo) - [pandapower](#pandapower) - [pandas](#pandas) - [pandas-datareader](#pandas-datareader) - [PANDAseq](#pandaseq) - [Pandoc](#pandoc) - [Panedr](#panedr) - [Pango](#pango) - [pangolin](#pangolin) - [panito](#panito) - [PAPI](#papi) - [parallel](#parallel) - [parallel-fastq-dump](#parallel-fastq-dump) - [Parallel-Hashmap](#parallel-hashmap) - [ParallelIO](#parallelio) - [parameterized](#parameterized) - [paramiko](#paramiko) - [parasail](#parasail) - [Paraver](#paraver) - [ParaView](#paraview) - [Parcels](#parcels) - [PARI-GP](#pari-gp) - [ParmEd](#parmed) - [ParMETIS](#parmetis) - [ParMGridGen](#parmgridgen) - [Parsl](#parsl) - [PartitionFinder](#partitionfinder) - [PASA](#pasa) - [pasta](#pasta) - [PaStiX](#pastix) - [pastml](#pastml) - [patch](#patch) - [patchelf](#patchelf) - [path.py](#path.py) - [PAUP](#paup) - [pauvre](#pauvre) - [pbbam](#pbbam) - [pbcopper](#pbcopper) - [pbdagcon](#pbdagcon) - [pbipa](#pbipa) - [pblat](#pblat) - [pbmm2](#pbmm2) - [pbs_python](#pbs_python) - [PBSuite](#pbsuite) - [PBZIP2](#pbzip2) - [PCAngsd](#pcangsd) - [PCC](#pcc) - [PCL](#pcl) - [PCMSolver](#pcmsolver) - [PCRaster](#pcraster) - [PCRE](#pcre) - [PCRE2](#pcre2) - [pdf2docx](#pdf2docx) - [PDM](#pdm) - [pdsh](#pdsh) - [PDT](#pdt) - [peakdetect](#peakdetect) - [PEAR](#pear) - [PennCNV](#penncnv) - [PEPT](#pept) - [Percolator](#percolator) - [Perl](#perl) - [perl-app-cpanminus](#perl-app-cpanminus) - [Perl-bundle-CPAN](#perl-bundle-cpan) - [Perl4-CoreLibs](#perl4-corelibs) - [Perseus](#perseus) - [PEST++](#pest++) - [PETSc](#petsc) - [petsc4py](#petsc4py) - [PfamScan](#pfamscan) - [PFFT](#pfft) - [pfind](#pfind) - [pftoolsV3](#pftoolsv3) - [pFUnit](#pfunit) - [PGDSpider](#pgdspider) - [PGI](#pgi) - [PGPLOT](#pgplot) - [PHANOTATE](#phanotate) - [Phantompeakqualtools](#phantompeakqualtools) - [PHASE](#phase) - [PHAST](#phast) - [Phenoflow](#phenoflow) - [PheWAS](#phewas) - [PheWeb](#pheweb) - [Philosopher](#philosopher) - [PhiPack](#phipack) - [PHLAT](#phlat) - [phonemizer](#phonemizer) - [phono3py](#phono3py) - [phonopy](#phonopy) - [photontorch](#photontorch) - [phototonic](#phototonic) - [PHYLIP](#phylip) - [PhyloBayes-MPI](#phylobayes-mpi) - [phylokit](#phylokit) - [phylonaut](#phylonaut) - [PhyloPhlAn](#phylophlan) - [phyluce](#phyluce) - [PhyML](#phyml) - [phyx](#phyx) - [picard](#picard) - [PICI-LIGGGHTS](#pici-liggghts) - [PICRUSt2](#picrust2) - [pigz](#pigz) - [PIL](#pil) - [PileOMeth](#pileometh) - [Pillow](#pillow) - [Pillow-SIMD](#pillow-simd) - [Pilon](#pilon) - [PIMS](#pims) - [Pindel](#pindel) - [Pingouin](#pingouin) - [Pint](#pint) - [pip](#pip) - [PIPITS](#pipits) - [PIRATE](#pirate) - [pIRS](#pirs) - [Pisces](#pisces) - [piSvM](#pisvm) - [piSvM-JSC](#pisvm-jsc) - [pixman](#pixman) - [pizzly](#pizzly) - [pkg-config](#pkg-config) - [pkgconf](#pkgconf) - [pkgconfig](#pkgconfig) - [PLAMS](#plams) - [planarity](#planarity) - [plantcv](#plantcv) - [plantri](#plantri) - [PlaScope](#plascope) - [PlasmaPy](#plasmapy) - [PLAST](#plast) - [Platanus](#platanus) - [Platypus](#platypus) - [Platypus-Opt](#platypus-opt) - [plc](#plc) - [PLINK](#plink) - [plinkliftover](#plinkliftover) - [plinkQC](#plinkqc) - [PLINKSEQ](#plinkseq) - [plmc](#plmc) - [plot1cell](#plot1cell) - [Ploticus](#ploticus) - [plotly](#plotly) - [plotly-orca](#plotly-orca) - [plotly.py](#plotly.py) - [plotutils](#plotutils) - [PLplot](#plplot) - [PLUMED](#plumed) - [PLY](#ply) - [PMIx](#pmix) - [pmt](#pmt) - [pmx](#pmx) - [PnetCDF](#pnetcdf) - [pocl](#pocl) - [pod5-file-format](#pod5-file-format) - [poetry](#poetry) - [polars](#polars) - [polymake](#polymake) - [pomkl](#pomkl) - [pompi](#pompi) - [poppler](#poppler) - [poppunk](#poppunk) - [popscle](#popscle) - [popt](#popt) - [Porechop](#porechop) - [porefoam](#porefoam) - [poretools](#poretools) - [PortAudio](#portaudio) - [Portcullis](#portcullis) - [PortMidi](#portmidi) - [Postgres-XL](#postgres-xl) - [PostgreSQL](#postgresql) - [POT](#pot) - [POV-Ray](#pov-ray) - [powerlaw](#powerlaw) - [pp-sketchlib](#pp-sketchlib) - [PPanGGOLiN](#ppanggolin) - [PPfold](#ppfold) - [ppl](#ppl) - [pplacer](#pplacer) - [pplpy](#pplpy) - [PRANK](#prank) - [PRC](#prc) - [preCICE](#precice) - [premailer](#premailer) - [PREQUAL](#prequal) - [preseq](#preseq) - [presto](#presto) - [pretty-yaml](#pretty-yaml) - [primecount](#primecount) - [primecountpy](#primecountpy) - [Primer3](#primer3) - [PRINSEQ](#prinseq) - [printproto](#printproto) - [PRISMS-PF](#prisms-pf) - [ProbABEL](#probabel) - [ProBiS](#probis) - [prodigal](#prodigal) - [ProFit](#profit) - [PROJ](#proj) - [ProjectQ](#projectq) - [prokka](#prokka) - [prompt-toolkit](#prompt-toolkit) - [proovread](#proovread) - [propy](#propy) - [ProteinMPNN](#proteinmpnn) - [Proteinortho](#proteinortho) - [ProtHint](#prothint) - [protobuf](#protobuf) - [protobuf-python](#protobuf-python) - [protozero](#protozero) - [PRRTE](#prrte) - [PRSice](#prsice) - [PSASS](#psass) - [pscom](#pscom) - [PSI](#psi) - [PSI4](#psi4) - [PsiCLASS](#psiclass) - [PSIPRED](#psipred) - [PSM2](#psm2) - [psmc](#psmc) - [psmpi](#psmpi) - [psmpi2](#psmpi2) - [PSolver](#psolver) - [PSORTb](#psortb) - [psrecord](#psrecord) - [pstoedit](#pstoedit) - [psutil](#psutil) - [psycopg](#psycopg) - [psycopg2](#psycopg2) - [ptemcee](#ptemcee) - [PTESFinder](#ptesfinder) - [pubtcrs](#pubtcrs) - [pugixml](#pugixml) - [pullseq](#pullseq) - [PuLP](#pulp) - [purge_dups](#purge_dups) - [pv](#pv) - [py](#py) - [py-aiger](#py-aiger) - [py-aiger-bdd](#py-aiger-bdd) - [py-c3d](#py-c3d) - [py-cpuinfo](#py-cpuinfo) - [py3Dmol](#py3dmol) - [pyABC](#pyabc) - [PyAEDT](#pyaedt) - [PyAMG](#pyamg) - [PyAPS3](#pyaps3) - [PyAV](#pyav) - [pybedtools](#pybedtools) - [PyBerny](#pyberny) - [pyBigWig](#pybigwig) - [pybind11](#pybind11) - [pybind11-stubgen](#pybind11-stubgen) - [pybinding](#pybinding) - [PyBioLib](#pybiolib) - [PyCairo](#pycairo) - [PyCalib](#pycalib) - [pyccel](#pyccel) - [PyCharm](#pycharm) - [PyCheMPS2](#pychemps2) - [Pychopper](#pychopper) - [PyCifRW](#pycifrw) - [PyClone](#pyclone) - [pycma](#pycma) - [pycocotools](#pycocotools) - [pycodestyle](#pycodestyle) - [PyCogent](#pycogent) - [pycoQC](#pycoqc) - [pycubescd](#pycubescd) - [PyCUDA](#pycuda) - [PycURL](#pycurl) - [PyDamage](#pydamage) - [pydantic](#pydantic) - [PyDatastream](#pydatastream) - [pydicom](#pydicom) - [pydicom-seg](#pydicom-seg) - [pydlpoly](#pydlpoly) - [pydot](#pydot) - [pyEGA3](#pyega3) - [pyenchant](#pyenchant) - [PyEVTK](#pyevtk) - [PyEXR](#pyexr) - [pyFAI](#pyfai) - [pyfaidx](#pyfaidx) - [pyfasta](#pyfasta) - [PyFFmpeg](#pyffmpeg) - [pyFFTW](#pyfftw) - [pyfits](#pyfits) - [PyFMI](#pyfmi) - [PyFoam](#pyfoam) - [PyFR](#pyfr) - [PyFrag](#pyfrag) - [pyGAM](#pygam) - [pygame](#pygame) - [pygccxml](#pygccxml) - [pyGenomeTracks](#pygenometracks) - [PyGEOS](#pygeos) - [pyGIMLi](#pygimli) - [Pygments](#pygments) - [pygmo](#pygmo) - [PyGObject](#pygobject) - [pygraphviz](#pygraphviz) - [pygrib](#pygrib) - [PyGTK](#pygtk) - [PyGTS](#pygts) - [PyGWAS](#pygwas) - [pyhdf](#pyhdf) - [PyHMMER](#pyhmmer) - [PyImageJ](#pyimagej) - [PyInstaller](#pyinstaller) - [pyiron](#pyiron) - [Pyke3](#pyke3) - [pylift](#pylift) - [Pylint](#pylint) - [pylipid](#pylipid) - [pyMannKendall](#pymannkendall) - [pymatgen](#pymatgen) - [pymatgen-db](#pymatgen-db) - [pymbar](#pymbar) - [PyMC](#pymc) - [PyMC3](#pymc3) - [pymca](#pymca) - [pymemcache](#pymemcache) - [PyMOL](#pymol) - [PyNAST](#pynast) - [pyobjcryst](#pyobjcryst) - [PyOD](#pyod) - [pyodbc](#pyodbc) - [Pyomo](#pyomo) - [PyOpenCL](#pyopencl) - [PyOpenGL](#pyopengl) - [pyparsing](#pyparsing) - [pyperf](#pyperf) - [pyplusplus](#pyplusplus) - [pypmt](#pypmt) - [PYPOWER](#pypower) - [pyproj](#pyproj) - [PyPSA](#pypsa) - [PyPy](#pypy) - [pyqstem](#pyqstem) - [PyQt](#pyqt) - [PyQt-builder](#pyqt-builder) - [PyQt5](#pyqt5) - [PyQtGraph](#pyqtgraph) - [pyradiomics](#pyradiomics) - [PyRe](#pyre) - [PyRETIS](#pyretis) - [pyringe](#pyringe) - [pyro-api](#pyro-api) - [pyro-ppl](#pyro-ppl) - [Pyro4](#pyro4) - [PyRosetta](#pyrosetta) - [Pysam](#pysam) - [pysamstats](#pysamstats) - [PySAT](#pysat) - [pyScaf](#pyscaf) - [pySCENIC](#pyscenic) - [PySCF](#pyscf) - [pyseer](#pyseer) - [pysheds](#pysheds) - [pyshp](#pyshp) - [PySide2](#pyside2) - [PySINDy](#pysindy) - [pyslim](#pyslim) - [pysndfx](#pysndfx) - [Pysolar](#pysolar) - [pyspoa](#pyspoa) - [pysqlite](#pysqlite) - [PyStan](#pystan) - [pysteps](#pysteps) - [pystran](#pystran) - [PyTables](#pytables) - [PyTensor](#pytensor) - [pytesseract](#pytesseract) - [pytest](#pytest) - [pytest-benchmark](#pytest-benchmark) - [pytest-cpp](#pytest-cpp) - [pytest-flakefinder](#pytest-flakefinder) - [pytest-rerunfailures](#pytest-rerunfailures) - [pytest-shard](#pytest-shard) - [pytest-workflow](#pytest-workflow) - [pytest-xdist](#pytest-xdist) - [pythermalcomfort](#pythermalcomfort) - [PYTHIA](#pythia) - [Python](#python) - [Python-bundle](#python-bundle) - [Python-bundle-PyPI](#python-bundle-pypi) - [python-casacore](#python-casacore) - [python-docx](#python-docx) - [python-hl7](#python-hl7) - [python-igraph](#python-igraph) - [python-irodsclient](#python-irodsclient) - [python-isal](#python-isal) - [python-Levenshtein](#python-levenshtein) - [python-libsbml](#python-libsbml) - [python-louvain](#python-louvain) - [python-mujoco](#python-mujoco) - [python-parasail](#python-parasail) - [python-telegram-bot](#python-telegram-bot) - [python-weka-wrapper3](#python-weka-wrapper3) - [python-xxhash](#python-xxhash) - [pythran](#pythran) - [PyTorch](#pytorch) - [pytorch-3dunet](#pytorch-3dunet) - [PyTorch-bundle](#pytorch-bundle) - [pytorch-CycleGAN-pix2pix](#pytorch-cyclegan-pix2pix) - [PyTorch-Geometric](#pytorch-geometric) - [PyTorch-Ignite](#pytorch-ignite) - [PyTorch-Image-Models](#pytorch-image-models) - [PyTorch-Lightning](#pytorch-lightning) - [PyTorch3D](#pytorch3d) - [PyTorchVideo](#pytorchvideo) - [PyVCF](#pyvcf) - [PyVCF3](#pyvcf3) - [PyVista](#pyvista) - [pyWannier90](#pywannier90) - [PyWavelets](#pywavelets) - [PyWBGT](#pywbgt) - [pyXDF](#pyxdf) - [PyYAML](#pyyaml) - [PyZMQ](#pyzmq) - - -### p11-kit - -Provides a way to load and enumerate PKCS#11 modules. Provides a standard configuration setup for installing PKCS#11 modules in such a way that they're discoverable. Also solves problems with coordinating the use of PKCS#11 by different components or libraries living in the same process. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------------------- -``0.23.2``|``GCCcore/5.4.0``, ``GNU/4.9.3-2.25``, ``foss/2016a``, ``intel/2016a`` -``0.24.0``|``GCCcore/10.3.0`` -``0.24.1``|``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``0.25.3``|``GCCcore/12.3.0`` - -### p4-phylogenetics - -A Python phyloinformatic toolkit, and an implementation of tree-heterogeneous models of evolution. - -*homepage*: - -version |versionsuffix |toolchain -----------------|-----------------|-------------- -``1.4-20210322``|``-Python-3.7.4``|``foss/2019b`` - -### p4est - -p4est is a C library to manage a collection (a forest) of multiple connected adaptive quadtrees or octrees in parallel. - -*homepage*: - -version |toolchain ----------|------------------------------- -``2.2`` |``foss/2019a``, ``intel/2019a`` -``2.8`` |``foss/2021a`` -``2.8.6``|``foss/2023a`` - -### p4vasp - -Visualization suite for VASP - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|-------------------------------- -``0.3.29``|``-Python-2.7.11``|``intel/2016a`` -``0.3.30``|``-Python-2.7.14``|``intel/2017b``, ``intel/2018a`` -``0.3.30``|``-Python-2.7.15``|``foss/2018b`` - -### p7zip - -p7zip is a quick port of 7z.exe and 7za.exe (command line version of 7zip) for Unix. 7-Zip is a file archiver with highest compression ratio. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------ -``9.38.1``|``GCC/4.9.2``, ``system`` -``16.02`` |``GCC/6.4.0-2.28``, ``iccifort/2017.4.196-GCC-6.4.0-2.28``, ``intel/2018a`` -``17.03`` |``GCCcore/10.2.0`` -``17.04`` |``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### packmol - -Packing Optimization for Molecular Dynamics Simulations - -*homepage*: - -version |toolchain ------------|------------------------------- -``16.103`` |``intel/2016a`` -``18.013`` |``foss/2018a``, ``intel/2018a`` -``20.2.2`` |``GCC/10.2.0`` -``v20.2.2``|``iccifort/2020.1.217`` - -### PAGAN2 - -PAGAN2 is a general-purpose method for the alignment of DNA, codon and amino-acid sequences as graphs. It aligns sequences either with pileup or, when related by a tree, using phylogeny-aware progressive alignment algorithm. In both cases it uses graphs to describe the uncertainty in the presence of characters at certain sequence positions. PAGAN2 is largely compatible with PAGAN but implements new algorithms for alignment anchoring and memory handling. As a result, PAGAN2 can align sequences of several hundreds of kilobases in length. - -*homepage*: - -version |versionsuffix|toolchain ------------------|-------------|---------- -``1.53_20230824``|``-linux64`` |``system`` - -### pagmo - -pagmo is a C++ scientific library for massively parallel optimization. - -*homepage*: - -version |toolchain -----------|---------------------------------------------- -``2.17.0``|``foss/2020b`` -``2.18.0``|``foss/2021a``, ``foss/2021b``, ``foss/2022a`` - -### pairsnp - -A set of scripts for very quickly obtaining pairwise SNP distance matrices from multiple sequence alignments using sparse matrix libraries to improve performance. - -*homepage*: - -version |toolchain ----------|-------------- -``0.0.7``|``foss/2021a`` - -### PAL2NAL - -PAL2NAL is a program that converts a multiple sequence alignment of proteins and the corresponding DNA (or mRNA) sequences into a codon alignment. The program automatically assigns the corresponding codon sequence even if the input DNA sequence has mismatches with the input protein sequence, or contains UTRs, polyA tails. It can also deal with frame shifts in the input alignment, which is suitable for the analysis of pseudogenes. The resulting codon alignment can further be subjected to the calculation of synonymous (d_S) and non-synonymous (d_N) subs- titution rates. - -*homepage*: - -version|toolchain --------|-------------------------------------- -``14`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0`` - -### paladin - -Protein ALignment And Detection INterface PALADIN is a protein sequence alignment tool designed for the accurate functional characterization of metagenomes. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``1.4.6``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` - -### PALEOMIX - -The PALEOMIX pipelines are a set of pipelines and tools designed to aid the rapid processing of High-Throughput Sequencing (HTS) data. - -*homepage*: - -version |toolchain ----------|-------------- -``1.3.7``|``foss/2022a`` - -### PAML - -PAML is a package of programs for phylogenetic analyses of DNA or protein sequences using maximum likelihood. - -*homepage*: - -version |toolchain -----------|----------------------------------------------------------------------------- -``4.9i`` |``GCC/6.4.0-2.28``, ``iccifort/2017.4.196-GCC-6.4.0-2.28`` -``4.9j`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/9.3.0`` -``4.10.5``|``GCCcore/11.3.0`` - -### panaroo - -A pangenome analysis pipeline. - -*homepage*: - -version |toolchain ----------|-------------- -``1.2.8``|``foss/2020b`` -``1.2.9``|``foss/2021a`` -``1.3.2``|``foss/2021b`` - -### pandapower - -An easy to use open source tool for power system modeling, analysis and optimization with a high degree of automation - -*homepage*: - -version |toolchain ----------|-------------- -``2.7.0``|``foss/2020b`` - -### pandas - -pandas is an open source, BSD-licensed library providing high-performance, easy-to-use data structures and data analysis tools for the Python programming language. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------- -``0.18.0``|``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``0.18.0``|``-Python-3.5.1`` |``foss/2016a``, ``intel/2016a`` -``0.18.1``|``-Python-2.7.12``|``intel/2016b`` -``0.18.1``|``-Python-3.5.2`` |``intel/2016b`` -``0.19.0``|``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``0.19.0``|``-Python-3.5.2`` |``foss/2016b``, ``intel/2016b`` -``0.19.1``|``-Python-2.7.12``|``intel/2016b`` -``0.19.1``|``-Python-3.5.2`` |``intel/2016b`` -``0.20.1``|``-Python-3.6.1`` |``intel/2017a`` -``0.21.0``|``-Python-2.7.13``|``intel/2017a`` -``0.21.0``|``-Python-3.6.3`` |``intel/2017b`` -``1.1.2`` |``-Python-3.8.2`` |``foss/2020a`` - -### pandas-datareader - -Up to date remote data access for pandas, works for multiple versions of pandas. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``0.7.0``|``-Python-3.6.4``|``intel/2018a`` - -### PANDAseq - -PANDASEQ is a program to align Illumina reads, optionally with PCR primers embedded in the sequence, and reconstruct an overlapping sequence. - -*homepage*: - -version |toolchain ---------|---------------------------------------------------------- -``2.10``|``GCC/5.4.0-2.26``, ``iccifort/2016.3.210-GCC-5.4.0-2.26`` -``2.11``|``foss/2017b``, ``intel/2017b``, ``intel/2018a`` - -### Pandoc - -If you need to convert files from one markup format into another, pandoc is your swiss-army knife - -*homepage*: - -version |toolchain ----------|---------- -``2.1.3``|``system`` -``2.5`` |``system`` -``2.10`` |``system`` -``2.13`` |``system`` -``3.1.2``|``system`` - -### Panedr - -Panedr uses the Pyedr library to read a Gromacs EDR binary energy XDR file and returns its contents as a pandas dataframe. - -*homepage*: - -version |toolchain ----------|-------------- -``0.7.0``|``foss/2021a`` - -### Pango - -Pango is a library for laying out and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in the context of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. - -*homepage*: - -version |toolchain ------------|------------------------------------ -``1.39.0`` |``foss/2016a``, ``intel/2016a`` -``1.40.1`` |``foss/2016a``, ``intel/2016a`` -``1.40.3`` |``foss/2016b``, ``intel/2016b`` -``1.40.5`` |``intel/2017a`` -``1.40.12``|``intel/2017a`` -``1.40.14``|``foss/2017b``, ``intel/2017b`` -``1.41.0`` |``foss/2017b``, ``intel/2017b`` -``1.41.1`` |``foss/2018a``, ``intel/2018a`` -``1.42.4`` |``foss/2018b``, ``fosscuda/2018b`` -``1.43.0`` |``GCCcore/8.2.0`` -``1.44.7`` |``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.47.0`` |``GCCcore/10.2.0`` -``1.48.5`` |``GCCcore/10.3.0`` -``1.48.8`` |``GCCcore/11.2.0`` -``1.50.7`` |``GCCcore/11.3.0`` -``1.50.12``|``GCCcore/12.2.0`` -``1.50.14``|``GCCcore/12.3.0`` -``1.51.0`` |``GCCcore/13.2.0`` - -### pangolin - -Software package for assigning SARS-CoV-2 genome sequences to global lineages. This module also contains the faToVcf tool - -*homepage*: - -version |versionsuffix |toolchain -----------|--------------------------|-------------- -``3.1.11``| |``foss/2020b`` -``3.1.16``|``-pangoLEARN-2021-10-18``|``foss/2021b`` -``3.1.16``|``-pangoLEARN-2021-11-25``|``foss/2021b`` - -### panito - -Calculate genome wide average nucleotide identity (gwANI) for a multiFASTA alignment. - -*homepage*: - -version |toolchain ----------|-------------- -``0.0.1``|``GCC/10.3.0`` - -### PAPI - -PAPI provides the tool designer and application engineer with a consistent interface and methodology for use of the performance counter hardware found in most major microprocessors. PAPI enables software engineers to see, in near real time, the relation between software performance and processor events. In addition Component PAPI provides access to a collection of components that expose performance measurement opportunites across the hardware and software stack. - -*homepage*: - -version |toolchain ------------|-------------------------------------------------------- -``5.4.3`` |``foss/2016a`` -``5.5.1`` |``GCCcore/6.3.0``, ``GCCcore/6.4.0`` -``5.6.0`` |``GCCcore/6.4.0`` -``5.7.0`` |``GCCcore/7.3.0``, ``GCCcore/8.2.0`` -``6.0.0`` |``GCCcore/10.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``6.0.0.1``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``7.0.0`` |``GCCcore/11.3.0`` -``7.0.1`` |``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``7.1.0`` |``GCCcore/13.2.0`` - -### parallel - -parallel: Build and execute shell commands in parallel - -*homepage*: - -version |toolchain -------------|-------------------------------------- -``20141122``|``GCC/4.9.2`` -``20150322``|``GCC/4.9.2`` -``20150822``|``GCC/4.9.2`` -``20160622``|``foss/2016a`` -``20170822``|``intel/2017a`` -``20171022``|``intel/2017b`` -``20171122``|``foss/2017b``, ``intel/2017b`` -``20180422``|``intel/2018a`` -``20180822``|``foss/2018b`` -``20181222``|``intel/2018b`` -``20190222``|``GCCcore/7.3.0`` -``20190622``|``GCCcore/8.2.0`` -``20190922``|``GCCcore/8.3.0`` -``20200422``|``GCCcore/9.3.0`` -``20200522``|``GCCcore/9.3.0`` -``20210322``|``GCCcore/10.2.0`` -``20210622``|``GCCcore/10.3.0`` -``20210722``|``GCCcore/11.2.0`` -``20220722``|``GCCcore/11.3.0`` -``20230722``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``20240322``|``GCCcore/13.2.0`` - -### parallel-fastq-dump - -parallel fastq-dump wrapper - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------------------------- -``0.6.5``|``-Python-3.7.2``|``GCCcore/8.2.0`` -``0.6.6``|``-Python-3.8.2``|``GCCcore/9.3.0`` -``0.6.7``| |``gompi/2020b``, ``gompi/2022a`` - -### Parallel-Hashmap - -Parallel Hashmap is built on a modified version of Abseil's flat_hash_map. Parallel Hashmap has lower space requirements, is nearly as fast as the underlying flat_hash_map, and can be used from multiple threads with high levels of concurrency. - -*homepage*: - -version |toolchain -----------|------------------ -``1.3.12``|``GCCcore/12.3.0`` -``1.33`` |``GCCcore/10.3.0`` -``1.36`` |``GCCcore/11.3.0`` - -### ParallelIO - -A high-level Parallel I/O Library for structured grid applications - -*homepage*: - -version |toolchain -----------|-------------------------------- -``2.2.2a``|``intel/2017a`` -``2.5.10``|``gompi/2022a``, ``iimpi/2022a`` - -### parameterized - -Parameterized testing with any Python test framework - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``0.8.1``|``GCCcore/10.3.0`` -``0.9.0``|``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### paramiko - -Paramiko is a pure-Python (3.6+) implementation of the SSHv2 protocol, providing both client and server functionality. It provides the foundation for the high-level SSH library Fabric, which is what we recommend you use for common client use-cases such as running remote shell commands or transferring files. - -*homepage*: - -version |toolchain ----------|------------------ -``3.2.0``|``GCCcore/12.3.0`` - -### parasail - -parasail is a SIMD C (C99) library containing implementations of the Smith-Waterman (local), Needleman-Wunsch (global), and semi-global pairwise sequence alignment algorithms. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``2.2`` |``intel/2018a`` -``2.4`` |``foss/2018b`` -``2.4.1``|``GCC/8.3.0``, ``intel/2019b`` -``2.4.2``|``GCC/9.3.0``, ``iccifort/2020.1.217`` -``2.4.3``|``GCC/10.2.0``, ``GCC/10.3.0`` -``2.5`` |``GCC/11.2.0`` -``2.6`` |``GCC/11.3.0`` -``2.6.2``|``GCC/12.2.0``, ``GCC/12.3.0`` - -### Paraver - -A very powerful performance visualization and analysis tool based on traces that can be used to analyse any information that is expressed on its input trace format. Traces for parallel MPI, OpenMP and other programs can be genereated with Extrae. - -*homepage*: - -version |toolchain -----------|-------------- -``4.8.1`` |``foss/2019a`` -``4.9.2`` |``foss/2021a`` -``4.11.1``|``foss/2022a`` - -### ParaView - -ParaView is a scientific parallel visualizer. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------------|------------------------------------------------------------------------------------------------- -``4.4.0`` | |``foss/2016a``, ``intel/2016a`` -``4.4.0`` |``-mpi`` |``gimkl/2.11.5`` -``5.1.2`` |``-mpi`` |``foss/2016b``, ``intel/2016b`` -``5.2.0`` |``-mpi`` |``foss/2016b``, ``intel/2017a`` -``5.3.0`` |``-mpi`` |``foss/2016b`` -``5.4.1`` |``-Python-2.7.16-mpi``|``foss/2019b`` -``5.4.1`` |``-mpi`` |``foss/2017b``, ``foss/2018a``, ``foss/2018b``, ``intel/2017a``, ``intel/2017b``, ``intel/2018a`` -``5.5.2`` |``-Python-2.7.15-mpi``|``foss/2018b`` -``5.6.2`` |``-Python-3.7.4-mpi`` |``foss/2019b``, ``intel/2019b`` -``5.8.0`` |``-Python-3.8.2-mpi`` |``foss/2020a``, ``intel/2020a`` -``5.8.1`` |``-mpi`` |``foss/2020b`` -``5.9.1`` |``-mpi`` |``foss/2021a``, ``foss/2021b``, ``intel/2021a`` -``5.10.1``|``-mpi`` |``foss/2022a`` -``5.11.0``|``-mpi`` |``foss/2022b`` -``5.11.1``| |``foss/2022b`` -``5.11.1``|``-CUDA-12.2.0`` |``foss/2022b`` -``5.11.1``|``-mpi`` |``foss/2022a`` -``5.11.2``| |``foss/2023a`` -``5.12.0``| |``foss/2023b`` - -### Parcels - -Parcels (Probably A Really Computationally Efficient Lagrangian Simulator) is a set of Python classes and methods to create customisable particle tracking simulations using output from Ocean Circulation models. Parcels can be used to track passive and active particulates such as water, plankton, plastic and fish. - -*homepage*: - -version |toolchain ----------|-------------- -``2.4.0``|``foss/2022a`` - -### PARI-GP - -PARI/GP is a widely used computer algebra system designed for fast computations in number theory (factorizations, algebraic number theory, elliptic curves...), but also contains a large number of other useful functions to compute with mathematical entities such as matrices, polynomials, power series, algebraic numbers etc., and a lot of transcendental functions. PARI is also available as a C library to allow for faster computations. - -*homepage*: - -version |toolchain -----------|------------------ -``2.7.6`` |``foss/2016a`` -``2.15.4``|``GCCcore/11.3.0`` -``2.15.5``|``GCCcore/13.2.0`` - -### ParmEd - -ParmEd is a general tool for aiding in investigations of biomolecular systems using popular molecular simulation packages, like Amber, CHARMM, and OpenMM written in Python. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``2.7.3``|``-Python-3.6.3``|``intel/2017b`` -``3.2.0``|``-Python-3.7.4``|``intel/2019b`` -``3.2.0``|``-Python-3.8.2``|``intel/2020a`` - -### ParMETIS - -ParMETIS is an MPI-based parallel library that implements a variety of algorithms for partitioning unstructured graphs, meshes, and for computing fill-reducing orderings of sparse matrices. ParMETIS extends the functionality provided by METIS and includes routines that are especially suited for parallel AMR computations and large scale numerical simulations. The algorithms implemented in ParMETIS are based on the parallel multilevel k-way graph-partitioning, adaptive repartitioning, and parallel multi-constrained partitioning schemes. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``4.0.3``|``foss/2016a``, ``foss/2016b``, ``foss/2017a``, ``foss/2017b``, ``foss/2018a``, ``foss/2018b``, ``gimkl/2.11.5``, ``gompi/2019a``, ``gompi/2019b``, ``gompi/2020a``, ``gompi/2020b``, ``gompi/2021a``, ``gompi/2021b``, ``gompi/2022a``, ``gompi/2022b``, ``gompi/2023a``, ``iimpi/2019a``, ``iimpi/2019b``, ``iimpi/2020a``, ``iimpi/2020b``, ``iimpi/2021a``, ``iimpi/2021b``, ``intel/2016a``, ``intel/2016b``, ``intel/2017a``, ``intel/2017b``, ``intel/2018a``, ``intel/2018b`` - -### ParMGridGen - -ParMGridGen is an MPI-based parallel library that is based on the serial package MGridGen, that implements (serial) algorithms for obtaining a sequence of successive coarse grids that are well-suited for geometric multigrid methods. - -*homepage*: - -version|toolchain --------|---------------------------------------------------------------------------------------------------------------------- -``1.0``|``gimkl/2.11.5``, ``gompi/2019b``, ``gompi/2020a``, ``iimpi/2019b``, ``iimpi/2020a``, ``intel/2016a``, ``intel/2017a`` - -### Parsl - -Parsl extends parallelism in Python beyond a single computer. You can use Parsl just like Python's parallel executors but across multiple cores and nodes. However, the real power of Parsl is in expressing multi-step workflows of functions. Parsl lets you chain functions together and will launch each function as inputs and computing resources are available. - -*homepage*: - -version |toolchain --------------|------------------ -``2023.7.17``|``GCCcore/11.3.0`` - -### PartitionFinder - -PartitionFinder 2 is a Python program for simultaneously choosing partitioning schemes and models of molecular evolution for phylogenetic analyses of DNA, protein, and morphological data. You can PartitionFinder 2 before running a phylogenetic analysis, in order to decide how to divide up your sequence data into separate blocks before analysis, and to simultaneously perform model selection on each of those blocks. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``2.1.1``|``-Python-2.7.16``|``intel/2019b`` -``2.1.1``|``-Python-2.7.18``|``foss/2020b`` - -### PASA - -PASA, acronym for Program to Assemble Spliced Alignments (and pronounced 'pass-uh'), is a eukaryotic genome annotation tool that exploits spliced alignments of expressed transcript sequences to automatically model gene structures, and to maintain gene structure annotation consistent with the most recently available experimental sequence data. PASA also identifies and classifies all splicing variations supported by the transcript alignments. - -*homepage*: - -version |toolchain ----------|-------------- -``2.5.3``|``foss/2022b`` - -### pasta - -PASTA (Practical Alignment using SATe and Transitivity) - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------------- -``1.8.5``|``-Python-3.7.2``|``GCC/8.2.0-2.31.1`` - -### PaStiX - -PaStiX (Parallel Sparse matriX package) is a scientific library that provides a high performance parallel solver for very large sparse linear systems based on direct methods. - -*homepage*: - -version |toolchain ----------|-------------- -``5.2.3``|``foss/2017b`` - -### pastml - -Ancestor character reconstruction and visualisation for rooted phylogenetic trees - -*homepage*: - -version |toolchain -----------|-------------- -``1.9.34``|``foss/2021a`` - -### patch - -Patch takes a patch file containing a difference listing produced by the diff program and applies those differences to one or more original files, producing patched versions. - -*homepage*: - -version |toolchain ----------|---------- -``2.7.6``|``system`` - -### patchelf - -PatchELF is a small utility to modify the dynamic linker and RPATH of ELF executables. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------- -``0.8`` |``GNU/4.9.3-2.25`` -``0.9`` |``GCCcore/6.4.0``, ``foss/2016a`` -``0.10`` |``GCCcore/7.2.0``, ``GCCcore/8.3.0`` -``0.12`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/9.3.0`` -``0.13`` |``GCCcore/11.2.0`` -``0.15.0``|``GCCcore/11.3.0`` -``0.17.2``|``GCCcore/12.2.0`` -``0.18.0``|``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0`` - -### path.py - -path.py is a Python library implementing path objects as first-class entities, allowing common operations on files to be invoked on those path objects directly. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``8.2.1``|``-Python-2.7.11``|``foss/2016a`` -``8.2.1``|``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``8.2.1``|``-Python-3.5.1`` |``foss/2016a`` -``8.2.1``|``-Python-3.5.2`` |``intel/2016b`` -``10.1`` |``-Python-2.7.12``|``intel/2016b`` - -### PAUP - -PAUP* (Phylogenetic Analysis Using Parsimony *and other methods) is a computational phylogenetics program for inferring evolutionary trees. - -*homepage*: - -version |versionsuffix|toolchain ------------|-------------|---------- -``4.0a166``|``-centos64``|``system`` -``4.0a168``|``-centos64``|``system`` - -### pauvre - -Tools for plotting Oxford Nanopore and other long-read data - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------------------------------------------------------- -``0.2.3`` | |``foss/2021a``, ``foss/2022a``, ``foss/2022b``, ``foss/2023a`` -``0.1923``|``-Python-3.7.4``|``intel/2019b`` -``0.1924``| |``intel/2020b`` - -### pbbam - -The pbbam software package provides components to create, query, & edit PacBio BAM files and associated indices. - -*homepage*: - -version |toolchain -------------|--------------- -``1.0.6`` |``gompi/2019a`` -``20170508``|``intel/2017a`` - -### pbcopper - -The pbcopper library provides a suite of data structures, algorithms, and utilities for C++ applications. - -*homepage*: - -version |toolchain ----------|--------------- -``1.3.0``|``gompi/2019a`` - -### pbdagcon - -pbdagcon is a tool that implements DAGCon (Directed Acyclic Graph Consensus) which is a sequence consensus algorithm based on using directed acyclic graphs to encode multiple sequence alignment. - -*homepage*: - -version |toolchain -------------|--------------- -``20170330``|``intel/2017a`` - -### pbipa - -Improved Phased Assembler (IPA) is the official PacBio software for HiFi genome assembly. IPA was designed to utilize the accuracy of PacBio HiFi reads to produce high-quality phased genome assemblies. IPA is an end-to-end solution, starting with input reads and resulting in a polished assembly. IPA is fast, providing an easy to use local run mode or a distributed pipeline for a cluster. - -*homepage*: - -version |toolchain ----------|-------------- -``1.8.0``|``foss/2021b`` - -### pblat - -When the query file format is fasta, you can specify many threads to process it. It can reduce run time linearly, and use almost equal memory as the original blat program. This is useful when you blat a big query file to a huge reference like human whole genome sequence. - -*homepage*: - -version |toolchain ----------|-------------- -``2.5.1``|``foss/2022b`` - -### pbmm2 - -A minimap2 frontend for PacBio native data formats - -*homepage*: - -version |toolchain ----------|--------------- -``1.1.0``|``gompi/2019a`` - -### pbs_python - -The pbs_python package is a wrapper class for the Torque C library. With this package you now can write utilities/extensions in Python instead of C. We developed this package because we want to replace xpbsmon by an ascii version named pbsmon. PBSQuery is also included in this package. This is a python module build on top of the pbs python module to simplify querying the batch server, eg: how many jobs, how many nodes, ... - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``4.6.0``| |``system`` -``4.6.0``|``-Python-2.7.11``|``intel/2016a`` -``4.6.0``|``-Python-2.7.12``|``intel/2016b`` -``4.6.0``|``-Python-2.7.13``|``intel/2017a`` - -### PBSuite - -PBJelly is a highly automated pipeline that aligns long sequencing reads (such as PacBio RS reads or long 454 reads in fasta format) to high-confidence draft assembles. - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|--------------- -``15.8.24``|``-Python-2.7.12``|``intel/2016b`` - -### PBZIP2 - -PBZIP2 is a parallel implementation of the bzip2 block-sorting file compressor that uses pthreads and achieves near-linear speedup on SMP machines. The output of this version is fully compatible with bzip2 v1.0.2 or newer (ie: anything compressed with pbzip2 can be decompressed with bzip2). PBZIP2 should work on any system that has a pthreads compatible C++ compiler (such as gcc). It has been tested on: Linux, Windows (cygwin & MinGW), Solaris, Tru64/OSF1, HP-UX, OS/2, OSX, and Irix. - -*homepage*: - -version |toolchain -----------|------------------ -``1.1.13``|``GCCcore/12.3.0`` - -### PCAngsd - -PCAngsd, which estimates the covariance matrix for low depth NGS data in an iterative procedure based on genotype likelihoods and is able to perform multiple population genetic analyses in heterogeneous populations. - -*homepage*: - -version |versionsuffix |toolchain ---------|------------------|-------------- -``0.97``|``-Python-2.7.14``|``foss/2018a`` - -### PCC - -The compiler is based on the original Portable C Compiler by S. C. Johnson, written in the late 70's. About 50% of the frontend code and 80% of the backend code has been modified. - -*homepage*: - -version |toolchain -------------|---------- -``20131024``|``system`` - -### PCL - -The Point Cloud Library (PCL) is a standalone, large scale, open project for 2D/3D image and point cloud processing. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``1.7.2``|``-Python-2.7.11``|``intel/2016a`` -``1.8.1``|``-Python-2.7.14``|``intel/2017b`` - -### PCMSolver - -An API for the Polarizable Continuum Model. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|--------------- -``1.1.4`` |``-Python-2.7.11``|``intel/2016a`` -``1.2.3`` | |``iimpi/2020b`` -``1.2.3`` |``-Python-3.6.6`` |``foss/2018b`` -``1.2.3`` |``-Python-3.7.2`` |``gompi/2019a`` -``1.2.3`` |``-Python-3.7.4`` |``iimpi/2019b`` -``20160205``|``-Python-2.7.11``|``intel/2016a`` - -### PCRaster - -PCRaster Is a collection of software targeted at the development and deployment of spatio-temporal environmental models. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``4.1.0``|``-Python-2.7.14``|``intel/2017b`` - -### PCRE - -The PCRE library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5. - -*homepage*: - -version |toolchain ---------|-------------------------------------------------------------------------------------------------- -``8.38``|``foss/2016a``, ``foss/2016b``, ``gimkl/2.11.5``, ``intel/2016a``, ``intel/2016b`` -``8.39``|``GCCcore/5.4.0``, ``foss/2016b``, ``intel/2016b`` -``8.40``|``GCCcore/6.3.0``, ``gimkl/2017a``, ``intel/2016b``, ``intel/2017a`` -``8.41``|``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``8.42``|``GCCcore/6.4.0`` -``8.43``|``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``8.44``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/9.3.0`` -``8.45``|``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### PCRE2 - -The PCRE library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``10.21``|``foss/2016a`` -``10.31``|``foss/2018b`` -``10.33``|``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``10.34``|``GCCcore/9.3.0`` -``10.35``|``GCCcore/10.2.0`` -``10.36``|``GCCcore/10.3.0`` -``10.37``|``GCCcore/11.2.0`` -``10.40``|``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``10.42``|``GCCcore/12.3.0``, ``GCCcore/13.2.0`` -``10.43``|``GCCcore/13.3.0`` - -### pdf2docx - -Open source Python library converting pdf to docx. - -*homepage*: - -version |toolchain ----------|-------------- -``0.5.8``|``foss/2023a`` - -### PDM - -A modern Python package and dependency manager supporting the latest PEP standards. - -*homepage*: - -version |toolchain -----------|------------------ -``2.12.4``|``GCCcore/12.3.0`` - -### pdsh - -A high performance, parallel remote shell utility - -*homepage*: - -version |toolchain ---------|---------------------------------------------------------- -``2.34``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### PDT - -Program Database Toolkit (PDT) is a framework for analyzing source code written in several programming languages and for making rich program knowledge accessible to developers of static and dynamic analysis tools. PDT implements a standard program representation, the program database (PDB), that can be accessed in a uniform way through a class library supporting common PDB operations. - -*homepage*: - -version |toolchain -----------|--------------------------------------------------------------------------------------------------------------------- -``3.22`` |``foss/2016a`` -``3.25`` |``GCCcore/10.2.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``3.25.1``|``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/9.3.0`` -``3.25.2``|``GCCcore/13.2.0`` - -### peakdetect - -Simple peak detection library for Python based on Billauer's work and this gist. - -*homepage*: - -version|toolchain --------|-------------- -``1.2``|``foss/2022a`` - -### PEAR - -PEAR is an ultrafast, memory-efficient and highly accurate pair-end read merger. It is fully parallelized and can run with as low as just a few kilobytes of memory. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------------------------------------------------- -``0.9.8`` |``foss/2016b``, ``intel/2016b`` -``0.9.10``|``GCC/6.4.0-2.28``, ``iccifort/2017.4.196-GCC-6.4.0-2.28`` -``0.9.11``|``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``GCCcore/7.3.0``, ``GCCcore/9.3.0``, ``foss/2018a`` - -### PennCNV - -A free software tool for Copy Number Variation (CNV) detection from SNP genotyping arrays. Currently it can handle signal intensity data from Illumina and Affymetrix arrays. With appropriate preparation of file format, it can also handle other types of SNP arrays and oligonucleotide arrays. - -*homepage*: - -version |toolchain ----------|----------------- -``1.0.5``|``GCCcore/8.3.0`` - -### PEPT - -A Python library that integrates all the tools necessary to perform research using Positron Emission Particle Tracking (PEPT). The library includes algorithms for the location, identification and tracking of particles, in addition to tools for visualisation and analysis, and utilities allowing the realistic simulation of PEPT data. - -*homepage*: - -version |toolchain ----------|-------------- -``0.4.1``|``foss/2021a`` - -### Percolator - -Semi-supervised learning for peptide identification from shotgun proteomics datasets - -*homepage*: - -version|toolchain --------|--------------- -``3.4``|``gompi/2019a`` - -### Perl - -Larry Wall's Practical Extraction and Report Language Includes a small selection of extra CPAN packages for core functionality. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|----------------------------------------------------------------------------------------- -``5.20.1``|``-bare`` |``GCC/4.8.2``, ``GCC/4.9.2`` -``5.20.2``|``-bare`` |``GCC/4.9.2`` -``5.20.3``| |``foss/2016a``, ``intel/2016a`` -``5.22.0``|``-bare`` |``GCC/4.9.2`` -``5.22.1``| |``foss/2016a``, ``foss/2016b``, ``intel/2016a`` -``5.22.1``|``-bare`` |``foss/2016a``, ``intel/2016a`` -``5.22.2``| |``intel/2016a`` -``5.24.0``| |``GCC/5.4.0-2.26``, ``GCCcore/4.9.3``, ``GCCcore/5.4.0``, ``foss/2016b``, ``intel/2016b`` -``5.24.0``|``-bare`` |``foss/2016b`` -``5.24.1``| |``GCCcore/6.3.0``, ``foss/2017a``, ``intel/2017a`` -``5.26.0``| |``GCCcore/6.4.0``, ``foss/2017b``, ``intel/2017b``, ``intel/2018.00``, ``intel/2018.01`` -``5.26.1``| |``GCCcore/6.4.0``, ``foss/2018a`` -``5.26.1``|``-bare`` |``foss/2018a`` -``5.28.0``| |``GCCcore/7.3.0`` -``5.28.1``| |``GCCcore/8.2.0`` -``5.30.0``| |``GCCcore/8.3.0`` -``5.30.0``|``-minimal`` |``GCCcore/8.3.0`` -``5.30.2``| |``GCCcore/9.3.0`` -``5.30.2``|``-minimal`` |``GCCcore/9.3.0`` -``5.32.0``| |``GCCcore/10.2.0`` -``5.32.0``|``-minimal`` |``GCCcore/10.2.0`` -``5.32.1``| |``FCC/4.5.0``, ``GCCcore/10.3.0`` -``5.32.1``|``-minimal`` |``GCCcore/10.3.0`` -``5.34.0``| |``GCCcore/11.2.0`` -``5.34.0``|``-minimal`` |``GCCcore/11.2.0`` -``5.34.1``| |``GCCcore/11.3.0`` -``5.34.1``|``-minimal`` |``GCCcore/11.3.0`` -``5.36.0``| |``GCCcore/12.1.0``, ``GCCcore/12.2.0`` -``5.36.0``|``-minimal`` |``GCCcore/12.2.0`` -``5.36.1``| |``GCCcore/12.3.0``, ``GCCcore/13.1.0`` -``5.38.0``| |``GCCcore/13.2.0``, ``system`` -``5.38.2``| |``GCCcore/13.3.0`` - -### perl-app-cpanminus - -cpanm - get, unpack build and install modules from CPAN - -*homepage*: - -version |toolchain -----------|---------- -``1.7039``|``system`` - -### Perl-bundle-CPAN - -A set of common packages from CPAN - -*homepage*: - -version |toolchain -----------|------------------ -``5.36.1``|``GCCcore/12.3.0`` -``5.38.0``|``GCCcore/13.2.0`` - -### Perl4-CoreLibs - -Libraries historically supplied with Perl 4 - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|--------------- -``0.003``|``-Perl-5.24.1``|``intel/2017a`` - -### Perseus - -The Perseus software platform supports biological and biomedical researchers in interpreting protein quantification, interaction and post-translational modification data. - -*homepage*: - -version |toolchain ------------|------------------ -``2.0.7.0``|``GCCcore/11.2.0`` - -### PEST++ - -PEST++ is a software suite aimed at supporting complex numerical models in the decision-support context. Much focus has been devoted to supporting environmental models (groundwater, surface water, etc) but these tools are readily applicable to any computer model. - -*homepage*: - -version |toolchain ----------|-------------- -``5.0.5``|``foss/2020a`` - -### PETSc - -PETSc, pronounced PET-see (the S is silent), is a suite of data structures and routines for the scalable (parallel) solution of scientific applications modeled by partial differential equations. - -*homepage*: - -version |versionsuffix |toolchain -----------|--------------------|------------------------------- -``3.7.2`` |``-Python-2.7.11`` |``intel/2016a`` -``3.7.3`` |``-Python-2.7.11`` |``foss/2016a`` -``3.7.5`` |``-downloaded-deps``|``intel/2016b`` -``3.8.3`` |``-downloaded-deps``|``foss/2017b`` -``3.9.1`` |``-downloaded-deps``|``foss/2018a`` -``3.9.3`` | |``foss/2018a``, ``intel/2018a`` -``3.11.0``|``-downloaded-deps``|``foss/2018b`` -``3.11.1``|``-Python-3.7.2`` |``foss/2019a``, ``intel/2019a`` -``3.12.4``|``-Python-2.7.16`` |``intel/2019b`` -``3.12.4``|``-Python-3.7.4`` |``foss/2019b``, ``intel/2019b`` -``3.12.4``|``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``3.14.4``| |``foss/2020b``, ``intel/2020b`` -``3.15.1``| |``foss/2021a``, ``intel/2021a`` -``3.17.4``| |``foss/2022a`` -``3.18.4``| |``intel/2021b`` -``3.19.2``| |``foss/2022b`` -``3.20.3``| |``foss/2023a`` - -### petsc4py - -petsc4py are Python bindings for PETSc, the Portable, Extensible Toolchain for Scientific Computation. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``3.9.1`` |``-Python-3.6.4``|``foss/2018a`` -``3.12.0``|``-Python-3.7.4``|``foss/2019b`` -``3.15.0``| |``foss/2021a`` -``3.20.3``| |``foss/2023a`` - -### PfamScan - -PfamScan is used to search a FASTA sequence against a library of Pfam HMM. - -*homepage*: - -version|toolchain --------|--------------- -``1.6``|``gompi/2022a`` - -### PFFT - -PFFT is a software library for computing massively parallel, fast Fourier transformations on distributed memory architectures. PFFT can be understood as a generalization of FFTW-MPI to multidimensional data decomposition. The library is written in C and MPI. A Fortran interface is also available. Support for hybrid parallelization based on OpenMP and MPI is under development. - -*homepage*: - -version |toolchain -------------|--------------- -``20181230``|``gompi/2022a`` - -### pfind - -Drop-in replacement for find, implemented for using parallel access and MPI. - -*homepage*: - -version |toolchain -------------|--------------- -``20220613``|``gompi/2021b`` - -### pftoolsV3 - -A suite of tools to build and search generalized profiles (protein and DNA). - -*homepage*: - -version |toolchain -------------|-------------------------------------- -``3.2.11`` |``GCCcore/10.3.0``, ``foss/2021a`` -``3.2.12`` |``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``20160324``|``foss/2016a`` - -### pFUnit - -pFUnit is a unit testing framework enabling JUnit-like testing of serial and MPI-parallel software written in Fortran. - -*homepage*: - -version |toolchain ----------|-------------------------------- -``3.2.9``|``gompi/2018b`` -``4.2.0``|``gompi/2020b``, ``iimpi/2021a`` -``4.7.3``|``gompi/2022a`` - -### PGDSpider - -An automated data conversion tool for connecting population genetics and genomics programs - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|---------- -``2.1.0.3``|``-Java-1.7.0_80``|``system`` - -### PGI - -C, C++ and Fortran compilers from The Portland Group - PGI - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------------|---------- -``15.7`` |``-GNU-4.9.2-2.25`` |``system`` -``15.7`` |``-GNU-4.9.3-2.25`` |``system`` -``15.10``|``-GCC-4.9.3-2.25`` |``system`` -``16.1`` |``-CDK-GCC-4.9.2-2.25``|``system`` -``16.3`` |``-GCC-4.9.3-2.25`` |``system`` -``16.4`` |``-GCC-5.3.0-2.26`` |``system`` -``16.7`` |``-GCC-5.4.0-2.26`` |``system`` -``16.10``|``-GCC-5.4.0-2.26`` |``system`` -``17.1`` |``-GCC-6.3.0-2.27`` |``system`` -``17.3`` |``-GCC-6.3.0-2.28`` |``system`` -``17.4`` |``-GCC-6.4.0-2.28`` |``system`` -``17.10``|``-GCC-6.4.0-2.28`` |``system`` -``18.1`` |``-GCC-7.2.0-2.29`` |``system`` -``18.4`` |``-GCC-6.4.0-2.28`` |``system`` -``18.7`` |``-GCC-7.3.0-2.30`` |``system`` -``18.10``|``-GCC-6.4.0-2.28`` |``system`` -``19.1`` |``-GCC-8.2.0-2.31.1`` |``system`` -``19.4`` |``-GCC-8.2.0-2.31.1`` |``system`` -``19.7`` |``-GCC-8.3.0-2.32`` |``system`` -``19.10``|``-GCC-8.3.0-2.32`` |``system`` - -### PGPLOT - -The PGPLOT Graphics Subroutine Library is a Fortran- or C-callable, device-independent graphics package for making simple scientific graphs. It is intended for making graphical images of publication quality with minimum effort on the part of the user. For most applications, the program can be device-independent, and the output can be directed to the appropriate device at run time. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------- -``5.2.2``|``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/13.2.0`` - -### PHANOTATE - -PHANOTATE: a tool to annotate phage genomes - -*homepage*: - -version |toolchain -------------|-------------- -``20190724``|``foss/2018b`` - -### Phantompeakqualtools - -It computes informative enrichment and quality measures for ChIP-seq/DNase-seq/FAIRE-seq/MNase-seq data. - -*homepage*: - -version |toolchain ----------|-------------- -``1.2.2``|``foss/2021b`` - -### PHASE - -The program PHASE implements a Bayesian statistical method for reconstructing haplotypes from population genotype data. Documentation: http://stephenslab.uchicago.edu/assets/software/phase/instruct2.1.pdf - -*homepage*: - -version |toolchain ----------|---------- -``2.1.1``|``system`` - -### PHAST - -PHAST is a freely available software package for comparative and evolutionary genomics. - -*homepage*: - -version|toolchain --------|---------------------------------------------------------- -``1.4``|``intel/2017a`` -``1.5``|``GCC/6.4.0-2.28``, ``iccifort/2017.4.196-GCC-6.4.0-2.28`` - -### Phenoflow - -R package offering functionality for the advanced analysis of microbial flow cytometry data - -*homepage*: - -version |versionsuffix|toolchain -------------------|-------------|-------------- -``1.1.2-20200917``|``-R-4.2.1`` |``foss/2022a`` - -### PheWAS - -Provides an accessible R interface to the phenome wide association study. - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|------------------------------- -``0.12`` |``-R-3.3.3`` |``foss/2016b``, ``intel/2016b`` -``0.99.5-2``|``-R-3.6.0`` |``foss/2019a``, ``intel/2019a`` - -### PheWeb - -A tool for building PheWAS websites from association files - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``1.1.20``|``-Python-3.7.4``|``foss/2019b`` - -### Philosopher - -Philosopher is a fast, easy-to-use, scalable, and versatile data analysis software for mass spectrometry-based proteomics. Philosopher is dependency-free and can analyze both traditional database searches and open searches for post-translational modification (PTM) discovery. - -*homepage*: - -version |toolchain ----------|-------------- -``5.0.0``|``GCC/11.3.0`` - -### PhiPack - -The PhiPack software package implements (in C) a few tests for recombination and can produce refined incompatibility matrices as well. - -*homepage*: - -version |toolchain ---------------|---------------------------------------- -``2016.06.14``|``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` - -### PHLAT - -PHLAT is a bioinformatics algorithm that offers HLA typing at four-digit resolution (or higher) using genome-wide transcriptome and exome sequencing data over a wide range of read lengths and sequencing depths. - -*homepage*: - -version|versionsuffix |toolchain --------|------------------|-------------- -``1.1``|``-Python-2.7.15``|``foss/2018b`` - -### phonemizer - -The phonemizer allows simple phonemization of words and texts in many languages. Provides both the phonemize command-line tool and the Python function phonemizer.phonemize. It is using four backends: espeak, espeak-mbrola, festival and segments. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``2.2.1``|``-Python-3.8.2``|``gompi/2020a`` -``3.2.1``| |``gfbf/2023a`` - -### phono3py - -A simulation package of phonon-phonon interaction related properties. - -*homepage*: - -version |versionsuffix |toolchain --------------|------------------|------------------------------- -``1.12.5.35``|``-Python-2.7.14``|``intel/2017b`` -``1.12.7.55``|``-Python-2.7.14``|``foss/2018a``, ``intel/2018a`` -``2.7.0`` | |``foss/2023a`` - -### phonopy - -Phonopy is an open source package of phonon calculations based on the supercell approach. - -*homepage*: - -version |versionsuffix |toolchain --------------|------------------|------------------------------- -``1.10.1`` |``-Python-2.7.11``|``intel/2016a`` -``1.12.2.20``|``-Python-2.7.14``|``intel/2017b`` -``1.12.6.66``|``-Python-2.7.14``|``foss/2018a``, ``intel/2018a`` -``1.13.0.64``|``-Python-2.7.14``|``intel/2018a`` -``1.14.2`` |``-Python-2.7.15``|``intel/2018b`` -``2.0.0`` |``-Python-2.7.14``|``intel/2018a`` -``2.2.0`` |``-Python-3.7.2`` |``intel/2019a`` -``2.7.1`` |``-Python-3.7.4`` |``intel/2019b`` -``2.7.1`` |``-Python-3.8.2`` |``intel/2020a`` -``2.12.0`` | |``foss/2020b`` -``2.16.3`` | |``foss/2022a`` -``2.20.0`` | |``foss/2023a`` - -### photontorch - -Photontorch is a photonic simulator for highly parallel simulation and optimization of photonic circuits in time and frequency domain. Photontorch features CUDA enabled simulation and optimization of photonic circuits. It leverages the deep learning framework PyTorch to view the photonic circuit as essentially a recurrent neural network. This enables the use of native PyTorch optimizers to optimize the (physical) parameters of the circuit. - -*homepage*: - -version |toolchain ----------|-------------------------------------------------- -``0.4.1``|``foss/2020b``, ``foss/2022a``, ``fosscuda/2020b`` - -### phototonic - -Phototonic is an image viewer and organizer - -*homepage*: - -version|toolchain --------|------------------ -``2.1``|``GCCcore/10.3.0`` - -### PHYLIP - -PHYLIP is a free package of programs for inferring phylogenies. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------------------- -``3.696``|``foss/2016a``, ``intel/2016a`` -``3.697``|``GCC/12.3.0``, ``GCC/6.4.0-2.28``, ``GCC/9.3.0``, ``iccifort/2017.4.196-GCC-6.4.0-2.28`` - -### PhyloBayes-MPI - -A Bayesian software for phylogenetic reconstruction using mixture models - -*homepage*: - -version |toolchain -------------|--------------- -``20161021``|``intel/2016b`` - -### phylokit - -C++ library for high performance phylogenetics - -*homepage*: - -version|toolchain --------|-------------------- -``1.0``|``GCC/8.2.0-2.31.1`` - -### phylonaut - -Dynamic programming for phylogenetics applications - -*homepage*: - -version |toolchain -------------|--------------- -``20190626``|``gompi/2019a`` - -### PhyloPhlAn - -PhyloPhlAn is an integrated pipeline for large-scale phylogenetic profiling of genomes and metagenomes. PhyloPhlAn is an accurate, rapid, and easy-to-use method for large-scale microbial genome characterization and phylogenetic analysis at multiple levels of resolution. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``3.0`` |``-Python-3.8.2``|``foss/2020a`` -``3.0.2``| |``foss/2021a`` -``3.0.3``| |``foss/2022a`` - -### phyluce - -phyluce is a software package for working with data generated from sequence capture of UCE (ultra-conserved element) loci, as first published in [BCF2012]. Specifically, phyluce is a suite of programs to: 1) assemble raw sequence reads from Illumina platforms into contigs 2) determine which contigs represent UCE loci 3) filter potentially paralagous UCE loci 4) generate different sets of UCE loci across taxa of interest - -*homepage*: - -version |toolchain ----------|-------------- -``1.7.3``|``foss/2023a`` - -### PhyML - -PhyML is a software package that uses modern statistical approaches to analyse alignments of nucleotide or amino acid sequences in a phylogenetic framework. - -*homepage*: - -version |toolchain -----------------|-------------- -``3.3.20190321``|``foss/2018b`` -``3.3.20200621``|``foss/2020b`` -``3.3.20220408``|``foss/2023a`` - -### phyx - -phyx performs phylogenetics analyses on trees and sequences. - -*homepage*: - -version |toolchain ---------|-------------- -``1.01``|``foss/2019a`` -``1.3`` |``foss/2022a`` - -### picard - -A set of tools (in Java) for working with next generation sequencing data in the BAM format. - -*homepage*: - -version |versionsuffix |toolchain ------------|-------------------|---------- -``1.39`` | |``system`` -``1.100`` | |``system`` -``1.109`` | |``system`` -``1.119`` | |``system`` -``1.119`` |``-Java-1.7.0_80`` |``system`` -``1.120`` |``-Java-1.8.0_66`` |``system`` -``1.141`` |``-Java-1.8.0_74`` |``system`` -``2.0.1`` |``-Java-1.8.0_66`` |``system`` -``2.1.0`` | |``system`` -``2.1.0`` |``-Java-1.8.0_74`` |``system`` -``2.1.1`` |``-Java-1.8.0_112``|``system`` -``2.1.1`` |``-Java-1.8.0_74`` |``system`` -``2.2.4`` |``-Java-1.8.0_92`` |``system`` -``2.6.0`` |``-Java-1.8.0_131``|``system`` -``2.10.1`` |``-Java-1.8.0_131``|``system`` -``2.18.5`` |``-Java-1.8.0_162``|``system`` -``2.18.11``|``-Java-1.8.0_162``|``system`` -``2.18.14``|``-Java-1.8`` |``system`` -``2.18.17``|``-Java-1.8`` |``system`` -``2.18.27``|``-Java-1.8`` |``system`` -``2.20.6`` |``-Java-1.8`` |``system`` -``2.21.1`` |``-Java-11`` |``system`` -``2.21.6`` |``-Java-11`` |``system`` -``2.22.1`` |``-Java-11`` |``system`` -``2.25.0`` |``-Java-11`` |``system`` -``2.25.1`` |``-Java-11`` |``system`` -``2.25.5`` |``-Java-13`` |``system`` -``2.26.10``|``-Java-15`` |``system`` -``3.0.0`` |``-Java-17`` |``system`` - -### PICI-LIGGGHTS - -UoB Positron Imaging Centre's Improved LIGGGHTS distribution with an emphasis on the Python interface. - -*homepage*: - -version |toolchain ----------|-------------- -``3.8.1``|``foss/2022a`` - -### PICRUSt2 - -PICRUSt2 (Phylogenetic Investigation of Communities by Reconstruction of Unobserved States) is a software for predicting functional abundances based only on marker gene sequences. - -*homepage*: - -version |toolchain ----------|------------------------------ -``2.5.2``|``foss/2022a``, ``foss/2022b`` - -### pigz - -pigz, which stands for parallel implementation of gzip, is a fully functional replacement for gzip that exploits multiple processors and multiple cores to the hilt when compressing data. pigz was written by Mark Adler, and uses the zlib and pthread libraries. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------------------------------------------------------------- -``2.3.3``|``foss/2016b`` -``2.3.4``|``GCCcore/6.4.0`` -``2.4`` |``GCCcore/10.2.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``foss/2018a`` -``2.6`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``2.7`` |``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``2.8`` |``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### PIL - -The Python Imaging Library (PIL) adds image processing capabilities to your Python interpreter. This library supports many file formats, and provides powerful image processing and graphics capabilities. - -*homepage*: - -version |versionsuffix |toolchain ----------|---------------------------------|------------------------------- -``1.1.7``|``-Python-2.7.11`` |``intel/2016a`` -``1.1.7``|``-Python-2.7.11-freetype-2.6.3``|``intel/2016a`` -``1.1.7``|``-Python-2.7.12`` |``foss/2016b``, ``intel/2016b`` -``1.1.7``|``-Python-2.7.13`` |``intel/2017a`` -``1.1.7``|``-Python-2.7.15`` |``foss/2019a`` - -### PileOMeth - -PileOMeth processes a coordinate-sorted and indexed BAM or CRAM file containing some form of BS-seq alignments. PileOMeth extracts per-base methylation metrics from them. PileOMeth requires an indexed fasta file containing the reference genome as well. - -*homepage*: - -version |toolchain -----------|-------------- -``0.1.11``|``foss/2016b`` - -### Pillow - -Pillow is the 'friendly PIL fork' by Alex Clark and Contributors. PIL is the Python Imaging Library by Fredrik Lundh and Contributors. - -*homepage*: - -version |versionsuffix |toolchain -----------|---------------------------------|--------------------------------------------------- -``3.2.0`` |``-Python-2.7.11`` |``intel/2016a`` -``3.2.0`` |``-Python-2.7.11-freetype-2.6.3``|``foss/2016a``, ``intel/2016a`` -``3.4.2`` |``-Python-2.7.12`` |``intel/2016b`` -``3.4.2`` |``-Python-3.5.2`` |``foss/2016b``, ``intel/2016b`` -``3.4.2`` |``-Python-3.5.2-freetype-2.6.5`` |``intel/2016b`` -``4.1.0`` |``-Python-2.7.13`` |``intel/2017a`` -``4.1.1`` |``-Python-3.6.1`` |``intel/2017a`` -``4.2.1`` |``-Python-3.6.1`` |``intel/2017a`` -``4.3.0`` |``-Python-2.7.13`` |``intel/2017a`` -``4.3.0`` |``-Python-2.7.14`` |``intel/2017b`` -``4.3.0`` |``-Python-3.6.3`` |``foss/2017b`` -``5.0.0`` |``-Python-2.7.14`` |``foss/2017b``, ``intel/2017b``, ``intel/2018a`` -``5.0.0`` |``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``5.0.0`` |``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``5.3.0`` |``-Python-2.7.15`` |``foss/2018b`` -``5.3.0`` |``-Python-3.6.6`` |``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b`` -``6.0.0`` | |``GCCcore/8.2.0`` -``6.2.1`` | |``GCCcore/8.3.0`` -``6.2.2`` |``-Python-2.7.18`` |``foss/2020b`` -``7.0.0`` |``-Python-3.8.2`` |``GCCcore/9.3.0`` -``8.0.1`` | |``GCCcore/10.2.0`` -``8.2.0`` | |``GCCcore/10.3.0`` -``8.3.1`` | |``GCCcore/11.2.0`` -``8.3.2`` | |``GCCcore/11.2.0`` -``9.1.0`` | |``GCCcore/10.3.0`` -``9.1.1`` | |``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``9.2.0`` | |``GCCcore/10.2.0`` -``9.4.0`` | |``GCCcore/12.2.0`` -``10.0.0``| |``GCCcore/12.3.0`` -``10.2.0``| |``GCCcore/13.2.0`` - -### Pillow-SIMD - -Pillow is the 'friendly PIL fork' by Alex Clark and Contributors. PIL is the Python Imaging Library by Fredrik Lundh and Contributors. - -*homepage*: - -version |versionsuffix |toolchain ----------------|-----------------|--------------------------------------------------- -``5.0.0`` |``-Python-3.6.4``|``foss/2018a``, ``intel/2018a`` -``5.3.0.post0``|``-Python-3.6.6``|``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b`` -``6.0.x.post0``| |``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``7.1.2`` | |``GCCcore/10.2.0`` -``7.1.2`` |``-Python-3.8.2``|``GCCcore/9.3.0`` -``8.2.0`` | |``GCCcore/10.3.0`` -``8.3.1`` | |``GCCcore/11.2.0`` -``8.3.2`` | |``GCCcore/11.2.0`` -``9.2.0`` | |``GCCcore/11.3.0`` -``9.5.0`` | |``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### Pilon - -Pilon is an automated genome assembly improvement and variant detection tool - -*homepage*: - -version |versionsuffix |toolchain ---------|-------------------|---------- -``1.22``|``-Java-1.8`` |``system`` -``1.22``|``-Java-1.8.0_162``|``system`` -``1.23``|``-Java-1.8`` |``system`` -``1.23``|``-Java-11`` |``system`` - -### PIMS - -PIMS is a lazy-loading interface to sequential data with numpy-like slicing. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``0.4.1``|``-Python-2.7.14``|``intel/2017b`` - -### Pindel - -Pindel can detect breakpoints of large deletions, medium sized insertions, inversions, tandem duplications and other structural variants at single-based resolution from next-gen sequence data. It uses a pattern growth approach to identify the breakpoints of these variants from paired-end short reads. - -*homepage*: - -version |toolchain ---------------------|-------------------------------------------------- -``0.2.5b8`` |``foss/2016b`` -``0.2.5b9-20170508``|``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/6.4.0-2.28`` - -### Pingouin - -Pingouin is an open-source statistical package written in Python 3 and based mostly on Pandas and NumPy. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``0.3.8``|``-Python-3.7.4``|``foss/2019b`` - -### Pint - -Pint is a Python package to define, operate and manipulate physical quantities: the product of a numerical value and a unit of measurement. It allows arithmetic operations between them and conversions from and to different units. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------ -``0.14`` |``-Python-3.7.4``|``GCCcore/8.3.0`` -``0.19.2``| |``GCCcore/11.2.0`` -``0.20.1``| |``GCCcore/10.3.0`` -``0.22`` | |``GCCcore/11.3.0`` -``0.23`` | |``GCCcore/12.3.0`` - -### pip - -The PyPA recommended tool for installing Python packages. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``8.0.2``|``-Python-2.7.11``|``intel/2016a`` -``8.1.2``|``-Python-2.7.11``|``foss/2016a`` -``8.1.2``|``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` - -### PIPITS - -An automated pipeline for analyses of fungal internal transcribed spacer (ITS) sequences from the Illumina sequencing platform. - -*homepage*: - -version|versionsuffix |toolchain --------|-----------------|------------------------------ -``2.7``|``-Python-3.8.2``|``foss/2020a`` -``2.8``| |``foss/2021a`` -``3.0``| |``foss/2021a``, ``foss/2022a`` - -### PIRATE - -A toolbox for pangenome analysis and threshold evaluation. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``1.0.5``|``-R-4.2.1`` |``foss/2022a`` - -### pIRS - -pIRS (profile based Illumina pair-end Reads Simulator) is a program for simulating paired-end reads from a reference genome. It is optimized for simulating reads similar to those generated from the Illumina platform. - -*homepage*: - -version |toolchain ----------|--------------- -``2.0.2``|``gompi/2019b`` - -### Pisces - -Somatic and germline variant caller for amplicon data. Recommended caller for tumor-only workflows. - -*homepage*: - -version |toolchain -------------|----------------- -``5.2.7.47``|``GCCcore/6.4.0`` - -### piSvM - -piSvM is a parallel implementation of the Support Vector Machine (SVM) algorithm that allows efficient training and testing on a multiprocessor system. - -*homepage*: - -version|toolchain --------|--------------- -``1.3``|``intel/2017b`` - -### piSvM-JSC - -piSvM is a parallel implementation of the Support Vector Machine (SVM) algorithm that allows efficient training and testing on a multiprocessor system. This version is a fork of the original PiSvM to increase scalability. - -*homepage*: - -version |toolchain -----------------|--------------- -``1.2-20150622``|``intel/2017b`` - -### pixman - -Pixman is a low-level software library for pixel manipulation, providing features such as image compositing and trapezoid rasterization. Important users of pixman are the cairo graphics library and the X server. - -*homepage*: - -version |toolchain -----------|-------------------------------------------------------------------------------------------------------------------------------------------- -``0.34.0``|``GCCcore/5.4.0``, ``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``foss/2016a``, ``foss/2016b``, ``intel/2016a``, ``intel/2016b`` -``0.38.0``|``GCCcore/8.2.0`` -``0.38.4``|``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``0.40.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``0.42.2``|``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### pizzly - -Pizzly is a program for detecting gene fusions from RNA-Seq data of cancer samples. - -*homepage*: - -version |toolchain -----------|-------------- -``0.37.3``|``foss/2018b`` - -### pkg-config - -pkg-config is a helper tool used when compiling applications and libraries. It helps you insert the correct compiler options on the command line so an application can use gcc -o test test.c `pkg-config --libs --cflags glib-2.0` for instance, rather than hard-coding values on where to find glib (or other libraries). - -*homepage*: - -version |toolchain -----------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``0.28`` |``GCC/4.8.2``, ``GCC/4.9.2``, ``GNU/4.9.3-2.25`` -``0.29`` |``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` -``0.29.1``|``GCCcore/4.9.3``, ``GCCcore/5.4.0``, ``GCCcore/6.3.0``, ``foss/2016a``, ``foss/2016b``, ``foss/2017a``, ``gimkl/2017a``, ``intel/2016a``, ``intel/2016b``, ``intel/2017a`` -``0.29.2``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.2.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``intel/2017a``, ``system`` - -### pkgconf - -pkgconf is a program which helps to configure compiler and linker flags for development libraries. It is similar to pkg-config from freedesktop.org. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------------------- -``1.8.0``|``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``system`` -``1.9.3``|``GCCcore/12.2.0`` -``1.9.4``|``GCCcore/13.1.0`` -``1.9.5``|``GCCcore/12.3.0`` -``2.0.3``|``GCCcore/13.2.0`` -``2.2.0``|``GCCcore/13.3.0``, ``system`` - -### pkgconfig - -pkgconfig is a Python module to interface with the pkg-config command line tool - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------------------------------------------------------------------------------------------- -``1.1.0``|``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``1.1.0``|``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``1.1.0``|``-Python-3.5.1`` |``foss/2016a`` -``1.1.0``|``-Python-3.5.2`` |``foss/2016b``, ``intel/2016b`` -``1.2.2``|``-Python-2.7.13``|``foss/2017a``, ``intel/2017a`` -``1.2.2``|``-Python-2.7.14``|``foss/2017b``, ``fosscuda/2017b``, ``intel/2017b`` -``1.2.2``|``-Python-3.6.1`` |``foss/2017a``, ``intel/2017a`` -``1.2.2``|``-Python-3.6.3`` |``foss/2017b``, ``fosscuda/2017b``, ``intel/2017b`` -``1.3.1``|``-Python-2.7.14``|``foss/2018a``, ``intel/2018a`` -``1.3.1``|``-Python-2.7.15``|``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b`` -``1.3.1``|``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``1.3.1``|``-Python-3.6.6`` |``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b`` -``1.5.1``|``-Python-3.7.4`` |``GCCcore/8.3.0`` -``1.5.1``|``-Python-3.8.2`` |``GCCcore/9.3.0`` -``1.5.1``|``-python`` |``GCCcore/10.2.0``, ``GCCcore/8.2.0`` -``1.5.4``|``-python`` |``GCCcore/10.3.0`` -``1.5.5``|``-python`` |``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### PLAMS - -The Python Library for Automating Molecular Simulation (PLAMS) is powerful and flexible Python tool interfaced to the Amsterdam Modeling Suite engines ADF, BAND, DFTB, MOPAC, ReaxFF, and UFF. - -*homepage*: - -version |toolchain ----------|--------------- -``1.5.1``|``intel/2022a`` - -### planarity - -A library for implementing graph algorithms - -*homepage*: - -version |toolchain ------------|-------------- -``3.0.2.0``|``GCC/13.2.0`` - -### plantcv - -PlantCV: Plant phenotyping using computer vision. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``3.8.0``|``-Python-3.8.2``|``foss/2020a`` - -### plantri - -Plantri is a program that generates certain types of graphs that are imbedded on the sphere. Exactly one member of each isomorphism class is output, using an amount of memory almost independent of the number of graphs produced. This, together with the exceptionally fast operation and careful validation, makes the program suitable for processing very large numbers of graphs. Isomorphisms are defined with respect to the embeddings, so in some cases outputs may be isomorphic as abstract graphs. - -*homepage*: - -version|toolchain --------|------------------ -``5.4``|``GCCcore/13.2.0`` - -### PlaScope - -Plasmid exploration of bacterial genomes - -*homepage*: - -version |toolchain ----------|-------------- -``1.3.1``|``foss/2018b`` - -### PlasmaPy - -Open source Python ecosystem for plasma research and education - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``0.3.1``|``-Python-3.8.2``|``foss/2020a`` - -### PLAST - -PLAST is a parallel alignment search tool for comparing large protein banks - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``2.3.1``|``-Java-1.8.0_92``|``foss/2016a`` - -### Platanus - -PLATform for Assembling NUcleotide Sequences - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``1.2.1``|``-linux-x86_64``|``system`` -``1.2.4``| |``foss/2017a`` - -### Platypus - -Platypus is a tool designed for efficient and accurate variant-detection in high-throughput sequencing data. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``0.8.1``|``-Python-2.7.11``|``intel/2016a`` - -### Platypus-Opt - -Platypus is a framework for evolutionary computing in Python with a focus on multiobjective evolutionary algorithms (MOEAs). - -*homepage*: - -version |toolchain ----------|-------------- -``1.1.0``|``foss/2022a`` - -### plc - -plc is the public Planck Likelihood Code. It provides C and Fortran libraries that allow users to compute the log likelihoods of the temperature, polarization, and lensing maps. Optionally, it also provides a python version of this library, as well as tools to modify the predetermined options for some likelihoods (e.g. changing the high-ell and low-ell lmin and lmax values of the temperature). - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``3.0.1``|``-Python-2.7.15``|``foss/2019a``, ``intel/2018b`` -``3.0.1``|``-Python-3.7.4`` |``foss/2019b`` -``3.10`` | |``intel/2022a`` - -### PLINK - -PLINK is a free, open-source whole genome association analysis toolset, designed to perform a range of basic, large-scale analyses in a computationally efficient manner. - -*homepage*: - -version |toolchain ----------------------------|------------------------------ -``1.07`` |``foss/2016a``, ``foss/2016b`` -``1.07-x86_64`` |``system`` -``1.9b5`` |``golf/2020a`` -``1.9b_4.1-x86_64`` |``system`` -``1.9b_6.17-x86_64`` |``system`` -``1.9b_6.21-x86_64`` |``system`` -``2.00-alpha1-x86_64`` |``system`` -``2.00-alpha2-x86_64`` |``system`` -``2.00-alpha2-x86_64_avx2``|``system`` -``2.00a2.3`` |``GCC/10.3.0``, ``GCC/11.2.0`` -``2.00a2.3_x86_64`` |``system`` -``2.00a3.1`` |``GCC/11.2.0`` -``2.00a3.6`` |``GCC/11.3.0`` -``2.00a3.7`` |``foss/2022a``, ``gfbf/2023a`` - -### plinkliftover - -PLINKLiftOver is a utility enabling liftOver to work on genomics files from PLINK, allowing one to update the coordinates from one genome reference version to another. - -*homepage*: - -version |toolchain ----------|-------------- -``0.3.0``|``foss/2022b`` - -### plinkQC - -plinkQC is a R/CRAN package for genotype quality control in genetic association studies. It makes PLINK basic statistics (e.g.missing genotyping rates per individual, allele frequencies per genetic marker) and relationship functions easily accessible from within R and allows for automatic evaluation of the results. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``0.3.3``|``-R-4.0.0`` |``foss/2020a`` - -### PLINKSEQ - -PLINK/SEQ is an open-source C/C++ library for working with human genetic variation data. The specific focus is to provide a platform for analytic tool development for variation data from large-scale resequencing and genotyping projects, particularly whole-exome and whole-genome studies. It is independent of (but designed to be complementary to) the existing PLINK package. - -*homepage*: - -version |toolchain ---------|---------------------------------------------------------- -``0.10``|``GCC/6.4.0-2.28``, ``iccifort/2017.4.196-GCC-6.4.0-2.28`` - -### plmc - -Inference of couplings in proteins and RNAs from sequence variation. - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|------------------ -``20230121``|``-32bit`` |``GCCcore/12.3.0`` - -### plot1cell - -plot1cell: a package for advanced single cell data visualization - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``0.0.1``|``-R-4.2.1`` |``foss/2022a`` -``0.0.1``|``-R-4.2.2`` |``foss/2022b`` - -### Ploticus - -Ploticus is a free GPL software utility that can produce various types of plots and graphs - -*homepage*: - -version |toolchain ---------|----------------- -``2.42``|``GCCcore/7.3.0`` - -### plotly - -Easily translate 'ggplot2' graphs to an interactive web-based version and/or create custom web-based visualizations directly from R. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|--------------- -``4.7.1``|``-R-3.4.0`` |``intel/2017a`` -``4.8.0``|``-R-3.4.4`` |``intel/2018a`` - -### plotly-orca - -Orca is an Electron app that generates images and reports of Plotly things like plotly.js graphs, dash apps, dashboards from the command line. - -*homepage*: - -version |toolchain ----------|------------------------------------- -``1.3.0``|``GCCcore/8.3.0`` -``1.3.1``|``GCCcore/10.2.0``, ``GCCcore/9.3.0`` - -### plotly.py - -An open-source, interactive graphing library for Python - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``4.1.0`` |``intel/2019a`` -``4.4.1`` |``intel/2019b`` -``4.8.1`` |``GCCcore/9.3.0`` -``4.14.3``|``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``5.1.0`` |``GCCcore/10.3.0`` -``5.4.0`` |``GCCcore/11.2.0`` -``5.12.0``|``GCCcore/11.3.0`` -``5.13.1``|``GCCcore/12.2.0`` -``5.16.0``|``GCCcore/12.3.0`` -``5.18.0``|``GCCcore/13.2.0`` - -### plotutils - -The GNU plotutils package contains software for both programmers and technical users. Its centerpiece is libplot, a powerful C/C++ function library for exporting 2-D vector graphics in many file formats, both vector and bitmap. On the X Window System, it can also do 2-D vector graphics animations. libplot is device-independent, in the sense that its API (application programming interface) does not depend on the type of graphics file to be exported. A Postscript-like API is used both for file export and for graphics animations. A libplot programmer needs to learn only one API: not the details of many graphics file formats. - -*homepage*: - -version|toolchain --------|-------------- -``2.6``|``GCC/11.3.0`` - -### PLplot - -PLplot is a cross-platform software package for creating scientific plots whose (UTF-8) plot symbols and text are limited in practice only by what Unicode-aware system fonts are installed on a user's computer. - -*homepage*: - -version |versionsuffix |toolchain -----------|--------------------------------|--------------- -``5.11.1``|``-Java-1.7.0_80-Python-2.7.11``|``foss/2016a`` -``5.11.1``|``-Java-1.7.0_80-Python-2.7.12``|``intel/2016b`` - -### PLUMED - -PLUMED is an open source library for free energy calculations in molecular systems which works together with some of the most popular molecular dynamics engines. Free energy calculations can be performed as a function of many order parameters with a particular focus on biological problems, using state of the art methods such as metadynamics, umbrella sampling and Jarzynski-equation based steered MD. The software, written in C++, can be easily interfaced with both fortran and C/C++ codes. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------------------------ -``2.2.2``| |``intel/2016a`` -``2.2.3``| |``foss/2016b``, ``intel/2016b`` -``2.3.0``| |``foss/2016b``, ``foss/2017a``, ``intel/2016b`` -``2.3.4``| |``intel/2017b`` -``2.4.0``| |``foss/2018a``, ``intel/2017b``, ``intel/2018a`` -``2.4.0``|``-PathCV`` |``intel/2018a`` -``2.4.1``| |``iomkl/2018a`` -``2.4.2``| |``foss/2018b``, ``intel/2018b`` -``2.5.0``| |``intel/2018b`` -``2.5.0``|``-Python-2.7.15``|``foss/2018b``, ``fosscuda/2018b`` -``2.5.1``| |``foss/2019a``, ``intel/2018b`` -``2.5.1``|``-PathCV`` |``intel/2018b`` -``2.5.2``|``-Python-3.7.2`` |``intel/2019a`` -``2.5.3``|``-Python-3.7.4`` |``foss/2019b``, ``intel/2019b`` -``2.5.4``|``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b`` -``2.5b`` |``-Python-2.7.14``|``intel/2018a`` -``2.6.0``|``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``2.6.2``| |``foss/2020b``, ``intel/2020b`` -``2.7.0``| |``foss/2020b`` -``2.7.2``| |``foss/2021a``, ``intel/2021a`` -``2.7.3``| |``foss/2021b`` -``2.8.0``| |``foss/2021b`` -``2.8.1``| |``foss/2022a`` -``2.9.0``| |``foss/2022b``, ``foss/2023a`` - -### PLY - -PLY is yet another implementation of lex and yacc for Python. - -*homepage*: - -version |versionsuffix |toolchain ---------|-----------------|-------------------------------------- -``3.11``| |``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``3.11``|``-Python-3.6.4``|``foss/2018a`` -``3.11``|``-Python-3.7.4``|``GCCcore/8.3.0`` - -### PMIx - -Process Management for Exascale Environments PMI Exascale (PMIx) represents an attempt to provide an extended version of the PMI standard specifically designed to support clusters up to and including exascale sizes. The overall objective of the project is not to branch the existing pseudo-standard definitions - in fact, PMIx fully supports both of the existing PMI-1 and PMI-2 APIs - but rather to (a) augment and extend those APIs to eliminate some current restrictions that impact scalability, and (b) provide a reference implementation of the PMI-server that demonstrates the desired level of scalability. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------- -``1.2.5``|``GCCcore/6.4.0`` -``2.1.3``|``GCCcore/7.2.0``, ``GCCcore/7.3.0`` -``2.2.1``|``GCCcore/7.2.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0`` -``2.2.3``|``GCCcore/7.2.0``, ``GCCcore/7.3.0`` -``3.0.1``|``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``3.0.2``|``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``3.1.1``|``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0`` -``3.1.4``|``GCCcore/8.3.0`` -``3.1.5``|``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``3.2.3``|``GCCcore/10.3.0`` -``4.1.0``|``GCCcore/11.2.0`` -``4.1.2``|``GCCcore/11.3.0`` -``4.2.2``|``GCCcore/12.2.0`` -``4.2.4``|``GCCcore/12.3.0`` -``4.2.6``|``GCCcore/13.2.0`` -``5.0.2``|``GCCcore/13.3.0`` - -### pmt - -PMT is a high-level software library capable of collecting power consumption measurements on various hardware. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------------------------------- -``1.1.0``| |``GCCcore/11.3.0`` -``1.2.0``| |``GCCcore/11.3.0``, ``GCCcore/12.3.0`` -``1.2.0``|``-CUDA-11.7.0``|``GCCcore/11.3.0`` -``1.2.0``|``-CUDA-12.1.1``|``GCCcore/12.3.0`` - -### pmx - -pmx (formerly pymacs) is a small bunch of classes to read structure files such as pdb or gro and trajectory data in gromacs xtc format. Over the years it has been extended towards a versatile (bio-) molecular structure manipulation package with some additional functionalities, e.g. gromacs file parsers and scripts for setup and analysis of free energy calculations. - -*homepage*: - -version|versionsuffix |toolchain --------|------------------|-------------- -``2.0``|``-Python-2.7.18``|``foss/2020b`` - -### PnetCDF - -Parallel netCDF: A Parallel I/O Library for NetCDF File Access - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------------- -``1.8.1`` |``intel/2017a`` -``1.9.0`` |``intel/2018a`` -``1.10.0``|``foss/2018b``, ``intel/2018b`` -``1.12.1``|``gompi/2019b``, ``gompi/2020a``, ``gompic/2019b``, ``gompic/2020a``, ``iimpi/2020a`` -``1.12.2``|``gompi/2020b``, ``gompi/2021a``, ``gompic/2020b``, ``iimpi/2021a`` -``1.12.3``|``gompi/2021b``, ``gompi/2022a``, ``gompi/2023a``, ``iimpi/2022a`` -``1.13.0``|``iimpi/2023a`` - -### pocl - -PoCL is a portable open source (MIT-licensed) implementation of the OpenCL standard (1.2 with some 2.0 features supported). - -*homepage*: - -version|versionsuffix |toolchain --------|----------------|---------------------------------------------------------- -``1.2``| |``GCC/7.3.0-2.30`` -``1.3``| |``GCC/8.2.0-2.31.1``, ``gcccuda/2019a`` -``1.4``| |``GCC/8.3.0``, ``gcccuda/2019b`` -``1.5``| |``GCC/9.3.0`` -``1.6``| |``GCC/10.2.0``, ``gcccuda/2020b``, ``iccifort/2020.4.304`` -``1.8``| |``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0`` -``1.8``|``-CUDA-11.7.0``|``GCC/11.3.0`` -``4.0``| |``GCC/12.3.0`` -``4.0``|``-CUDA-12.1.1``|``GCC/12.3.0`` - -### pod5-file-format - -POD5 is a file format for storing nanopore dna data in an easily accessible way. The format is able to be written in a streaming manner which allows a sequencing instrument to directly write the format. - -*homepage*: - -version |toolchain ----------|-------------- -``0.1.8``|``foss/2022a`` - -### poetry - -Python packaging and dependency management made easy. Poetry helps you declare, manage and install dependencies of Python projects, ensuring you have the right stack everywhere. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------ -``1.0.9``|``-Python-3.8.2``|``GCCcore/9.3.0`` -``1.2.2``| |``GCCcore/11.3.0`` -``1.5.1``| |``GCCcore/12.3.0`` -``1.6.1``| |``GCCcore/13.2.0`` -``1.7.1``| |``GCCcore/12.3.0`` - -### polars - -Polars is a blazingly fast DataFrame library for manipulating structured data. The core is written in Rust and this module provides its interface for Python. - -*homepage*: - -version |toolchain -----------|-------------- -``0.15.6``|``foss/2022a`` -``0.20.2``|``gfbf/2023a`` - -### polymake - -polymake is open source software for research in polyhedral geometry. It deals with polytopes, polyhedra and fans as well as simplicial complexes, matroids, graphs, tropical hypersurfaces, and other objects. - -*homepage*: - -version |toolchain ----------|------------------------------ -``4.0r1``|``foss/2019b`` -``4.8`` |``foss/2021b``, ``gfbf/2022a`` - -### pomkl - -Toolchain with PGI C, C++ and Fortran compilers, alongside Intel MKL & OpenMPI. - -*homepage*: - -version |toolchain ------------|---------- -``2016.03``|``system`` -``2016.04``|``system`` -``2016.09``|``system`` - -### pompi - -Toolchain with PGI C, C++ and Fortran compilers, alongside OpenMPI. - -*homepage*: - -version |toolchain ------------|---------- -``2016.03``|``system`` -``2016.04``|``system`` -``2016.09``|``system`` - -### poppler - -Poppler is a PDF rendering library - -*homepage*: - -version |toolchain ------------|------------------------------ -``0.70.1`` |``foss/2018b`` -``0.90.1`` |``GCCcore/8.3.0`` -``21.06.1``|``GCC/10.2.0``, ``GCC/10.3.0`` -``22.01.0``|``GCC/11.2.0`` -``22.12.0``|``GCC/11.3.0`` -``23.09.0``|``GCC/12.3.0`` -``24.04.0``|``GCC/13.2.0`` - -### poppunk - -PopPUNK is a tool for clustering genomes. We refer to the clusters as variable-length-k-mer clusters, or VLKCs. Biologically, these clusters typically represent distinct strains. We refer to subclusters of strains as lineages. - -*homepage*: - -version |toolchain ----------|-------------- -``2.6.0``|``foss/2022a`` - -### popscle - -A suite of population scale analysis tools for single-cell genomics data including implementation of Demuxlet / Freemuxlet methods and auxilary tools - -*homepage*: - -version |toolchain ----------------------|-------------- -``0.1-beta`` |``foss/2019b`` -``0.1-beta-20210505``|``GCC/11.3.0`` - -### popt - -Popt is a C library for parsing command line parameters. - -*homepage*: - -version |toolchain ---------|----------------------------------------- -``1.14``|``GCC/4.8.2`` -``1.16``|``GCC/10.2.0``, ``GCC/4.9.2``, ``system`` - -### Porechop - -Porechop is a tool for finding and removing adapters from Oxford Nanopore reads. Adapters on the ends of reads are trimmed off, and when a read has an adapter in its middle, it is treated as chimeric and chopped into separate reads. Porechop performs thorough alignments to effectively find adapters, even at low sequence identity - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------------------------------- -``0.2.3``|``-Python-3.5.2``|``foss/2016b`` -``0.2.4``| |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``0.2.4``|``-Python-3.6.6``|``foss/2018b`` -``0.2.4``|``-Python-3.7.4``|``intel/2019b`` - -### porefoam - -Direct pore-scale simulation of single- and two-phase flow through confined media - -*homepage*: - -version |toolchain ---------------|-------------- -``2021-09-21``|``foss/2020a`` - -### poretools - -A toolkit for working with nanopore sequencing data from Oxford Nanopore. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``0.6.0``|``-Python-2.7.14``|``intel/2018a`` - -### PortAudio - -PortAudio is a free, cross-platform, open-source, audio I/O library. It lets you write simple audio programs in 'C' or C++ that will compile and run on many platforms including Windows, Macintosh OS X, and Unix (OSS/ALSA). It is intended to promote the exchange of audio software between developers on different platforms. Many applications use PortAudio for Audio I/O. - -*homepage*: - -version |toolchain -----------|-------------- -``19.7.0``|``foss/2022a`` - -### Portcullis - -Portcullis stands for PORTable CULLing of Invalid Splice junctions from pre-aligned RNA-seq data. It is known that RNAseq mapping tools generate many invalid junction predictions, particularly in deep datasets with high coverage over splice sites. In order to address this, instead for creating a new RNAseq mapper, with a focus on SJ accuracy we created a tool that takes in a BAM file generated by an RNAseq mapper of the user's own choice (e.g. Tophat2, Gsnap, STAR2 or HISAT2) as input (i.e. it's portable). It then, analyses and quantifies all splice junctions in the file before, filtering (culling) those which are unlikely to be genuine. Portcullis output's junctions in a variety of formats making it suitable for downstream analysis (such as differential splicing analysis and gene modelling) without additional work. Portcullis can also filter the original BAM file removing alignments associated with bad junctions. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``1.2.2``|``-Python-3.7.4``|``foss/2019b`` - -### PortMidi - -PortMidi is a library for software developers. It supports real-time input and output of MIDI data using a system-independent interface. PortMidi runs on Windows (using MME), Macintosh (using CoreMIDI), and Linux (using ALSA). - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``2.0.4``|``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### Postgres-XL - -Postgres-XL is a horizontally scalable open source SQL database cluster, flexible enough to handle varying database workloads: - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``9.5r1``|``-Python-2.7.11``|``intel/2016a`` - -### PostgreSQL - -PostgreSQL is a powerful, open source object-relational database system. It is fully ACID compliant, has full support for foreign keys, joins, views, triggers, and stored procedures (in multiple languages). It includes most SQL:2008 data types, including INTEGER, NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERVAL, and TIMESTAMP. It also supports storage of binary large objects, including pictures, sounds, or video. It has native programming interfaces for C/C++, Java, .Net, Perl, Python, Ruby, Tcl, ODBC, among others, and exceptional documentation. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|---------------------------------------------------------------- -``9.4.7``|``-Python-2.7.11``|``intel/2016a`` -``9.5.2``|``-Python-2.7.11``|``intel/2016a`` -``9.6.0``|``-Python-2.7.12``|``intel/2016b`` -``9.6.2``|``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``10.2`` |``-Python-2.7.14``|``intel/2018a`` -``10.3`` | |``foss/2018b`` -``10.3`` |``-Python-2.7.14``|``foss/2017b``, ``foss/2018a``, ``intel/2017b``, ``intel/2018a`` -``11.3`` |``-Python-2.7.15``|``GCCcore/8.2.0`` -``11.3`` |``-Python-3.7.2`` |``GCCcore/8.2.0`` -``12.4`` | |``GCCcore/9.3.0`` -``13.2`` | |``GCCcore/10.2.0`` -``13.3`` | |``GCCcore/10.3.0`` -``13.4`` | |``GCCcore/11.2.0`` -``14.4`` | |``GCCcore/11.3.0`` -``15.2`` | |``GCCcore/12.2.0`` -``16.1`` | |``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### POT - -POT (Python Optimal Transport) is a Python library provide several solvers for optimization problems related to Optimal Transport for signal, image processing and machine learning. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``0.5.1``|``-Python-3.6.6``|``intel/2018b`` -``0.9.0``| |``foss/2022a`` - -### POV-Ray - -The Persistence of Vision Raytracer, or POV-Ray, is a ray tracing program which generates images from a text-based scene description, and is available for a variety of computer platforms. POV-Ray is a high-quality, Free Software tool for creating stunning three-dimensional graphics. The source code is available for those wanting to do their own ports. - -*homepage*: - -version |toolchain -------------|--------------------------------------------------------------------------------- -``3.7.0.0`` |``intel/2016b`` -``3.7.0.7`` |``foss/2017b``, ``foss/2018b``, ``intel/2017b``, ``intel/2018a``, ``intel/2018b`` -``3.7.0.8`` |``GCC/10.2.0``, ``iccifort/2020.4.304`` -``3.7.0.10``|``GCC/11.3.0``, ``GCC/12.3.0`` - -### powerlaw - -powerlaw: A Python Package for Analysis of Heavy-Tailed Distributions - -*homepage*: - -version|toolchain --------|-------------- -``1.5``|``foss/2022a`` - -### pp-sketchlib - -Library of sketching functions used by PopPUNK - -*homepage*: - -version |toolchain ----------|-------------- -``2.1.1``|``foss/2022a`` - -### PPanGGOLiN - -PPanGGOLiN is a software suite used to create and manipulate prokaryotic pangenomes from a set of either genomic DNA sequences or provided genome annotations. It is designed to scale up to tens of thousands of genomes. It has the specificity to partition the pangenome using a statistical approach rather than using fixed thresholds which gives it the ability to work with low-quality data such as Metagenomic Assembled Genomes (MAGs) or Single-cell Amplified Genomes (SAGs) thus taking advantage of large scale environmental studies and letting users study the pangenome of uncultivable species. - -*homepage*: - -version |toolchain ------------|-------------- -``1.1.136``|``foss/2021b`` - -### PPfold - -PPfold is a new implementation of pfold, written in Java 6.0. It can predict the consensus secondary structure of RNA alignments through a stochastic context-free grammar coupled to an evolutionary model. It can also use data from chemical probing experiments to predict RNA secondary structure. PPfold is multithreaded, and can solve the structure of much longer alignments than pfold. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|---------- -``3.1.1``|``-Java-1.8.0_66``|``system`` - -### ppl - -The Parma Polyhedra Library (PPL) provides numerical abstractions especially targeted at applications in the field of analysis and verification of complex systems. - -*homepage*: - -version|toolchain --------|------------------------------------- -``1.2``|``GCCcore/11.3.0``, ``GCCcore/6.4.0`` - -### pplacer - -Pplacer places query sequences on a fixed reference phylogenetic tree to maximize phylogenetic likelihood or posterior probability according to a reference alignment. Pplacer is designed to be fast, to give useful information about uncertainty, and to offer advanced visualization and downstream analysis. - -*homepage*: - -version |toolchain ----------------|---------- -``1.1.alpha19``|``system`` - -### pplpy - -This Python package provides a wrapper to the C++ Parma Polyhedra Library (PPL). - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``0.8.4``|``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``0.8.4``|``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``0.8.9``| |``GCC/11.3.0`` - -### PRANK - -PRANK is a probabilistic multiple alignment program for DNA, codon and amino-acid sequences. PRANK is based on a novel algorithm that treats insertions correctly and avoids over-estimation of the number of deletion events. - -*homepage*: - -version |toolchain -----------|-------------------------------------------------------------------------------------------------------------- -``170427``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.3.0``, ``GCC/9.3.0``, ``intel/2018a`` - -### PRC - -PRC is a stand-alone program for aligning and scoring two profile hidden Markov models. This can be used to detect remote relationships between profiles more effectively than by doing simple profile-sequence comparisons. PRC takes into account all transition and emission probabilities in both hidden Markov models. - -*homepage*: - -version |toolchain ----------|--------------- -``1.5.6``|``intel/2018a`` - -### preCICE - -preCICE (Precise Code Interaction Coupling Environment) is a coupling library for partitioned multi-physics simulations, including, but not restricted to fluid-structure interaction and conjugate heat transfer simulations. Partitioned means that preCICE couples existing programs (solvers) capable of simulating a subpart of the complete physics involved in a simulation. This allows for the high flexibility that is needed to keep a decent time-to-solution for complex multi-physics scenarios. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------------------- -``2.1.1``|``-Python-3.8.2``|``foss/2020a`` -``2.2.0``|``-Python-3.8.2``|``foss/2020a``, ``intel/2020a`` -``2.5.0``| |``foss/2022a`` - -### premailer - -CSS blocks into inline style attributes for HTML emails - -*homepage*: - -version |toolchain -----------|------------------ -``3.10.0``|``GCCcore/12.3.0`` - -### PREQUAL - -A program to identify and mask regions with non-homologous adjacent characters in FASTA files. - -*homepage*: - -version |toolchain ---------|------------------ -``1.02``|``GCCcore/11.2.0`` - -### preseq - -Software for predicting library complexity and genome coverage in high-throughput sequencing. - -*homepage*: - -version |toolchain ----------|------------------------------- -``2.0.2``|``foss/2016b`` -``2.0.3``|``foss/2018b``, ``intel/2018a`` -``3.1.2``|``GCC/10.3.0``, ``GCC/11.2.0`` -``3.2.0``|``GCC/11.3.0``, ``GCC/12.2.0`` - -### presto - -Presto performs a fast Wilcoxon rank sum test and auROC analysis. - -*homepage*: - -version |versionsuffix|toolchain -------------------|-------------|-------------- -``1.0.0-20200718``|``-R-4.1.2`` |``foss/2021b`` -``1.0.0-20230113``|``-R-4.2.1`` |``foss/2022a`` -``1.0.0-20230501``|``-R-4.2.2`` |``foss/2022b`` -``1.0.0-20230501``|``-R-4.3.2`` |``foss/2023a`` - -### pretty-yaml - -PyYAML-based python module to produce pretty and readable YAML-serialized data. This module is for serialization only, see ruamel.yaml module for literate YAML parsing (keeping track of comments, spacing, line/column numbers of values, etc). - -*homepage*: - -version |toolchain ------------|------------------ -``19.12.0``|``GCCcore/8.3.0`` -``20.4.0`` |``GCCcore/9.3.0`` -``21.10.1``|``GCCcore/10.3.0`` -``23.9.5`` |``GCCcore/11.3.0`` - -### primecount - -primecount is a command-line program and C/C++ library that counts the number of primes ≤ x (maximum 1031) using highly optimized implementations of the combinatorial prime counting algorithms. - -*homepage*: - -version|toolchain --------|------------------ -``7.9``|``GCCcore/11.3.0`` - -### primecountpy - -This is a Cython interface to the C++ library primecount. - -*homepage*: - -version |toolchain ----------|------------------ -``0.1.0``|``GCCcore/11.3.0`` - -### Primer3 - -Primer3 is a widely used program for designing PCR primers (PCR = 'Polymerase Chain Reaction'). PCR is an essential and ubiquitous tool in genetics and molecular biology. Primer3 can also design hybridization probes and sequencing primers. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------- -``2.3.7``|``intel/2017b`` -``2.4.0``|``iccifort/2019.1.144-GCC-8.2.0-2.31.1``, ``intel/2018b`` -``2.5.0``|``GCC/9.3.0`` - -### PRINSEQ - -A bioinformatics tool to PRe-process and show INformation of SEQuence data. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|-------------- -``0.20.4``|``-Perl-5.28.0``|``foss/2018b`` -``0.20.4``|``-Perl-5.32.0``|``foss/2020b`` -``0.20.4``|``-Perl-5.34.0``|``foss/2021b`` - -### printproto - -X.org PrintProto protocol headers. - -*homepage*: - -version |toolchain ----------|--------------- -``1.0.5``|``intel/2016a`` - -### PRISMS-PF - -PRISMS-PF is a powerful, massively parallel finite element code for conducting phase field and other related simulations of microstructural evolution. - -*homepage*: - -version |toolchain ----------|------------------------------- -``2.1.1``|``foss/2019a``, ``intel/2019a`` -``2.2`` |``foss/2021a`` - -### ProbABEL - -Tool for genome-wide association analysis of imputed genetic data. - -*homepage*: - -version |toolchain ----------|----------------------------- -``0.5.0``|``GCCcore/9.3.0``, ``system`` - -### ProBiS - -ProBiS algorithm aligns and superimposes complete protein surfaces, surface motifs, or protein binding sites. - -*homepage*: - -version |toolchain -------------|--------------- -``20230403``|``gompi/2022b`` - -### prodigal - -Prodigal (Prokaryotic Dynamic Programming Genefinding Algorithm) is a microbial (bacterial and archaeal) gene finding program developed at Oak Ridge National Laboratory and the University of Tennessee. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.6.2``|``GCC/4.9.3-binutils-2.25`` -``2.6.3``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` - -### ProFit - -ProFit (pronounced Pro-Fit, not profit!) is designed to be the ultimate program for performing least squares fits of two or more protein structures. It performs a very simple and basic function, but allows as much flexibility as possible in performing this procedure. Thus one can specify subsets of atoms to be considered, specify zones to be fitted by number, sequence, or by sequence alignment. - -*homepage*: - -version|toolchain --------|-------------- -``3.3``|``GCC/10.3.0`` - -### PROJ - -Program proj is a standard Unix filter function which converts geographic longitude and latitude coordinates into cartesian coordinates - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------------- -``4.9.2``|``foss/2016a``, ``foss/2016b``, ``intel/2016a``, ``intel/2016b`` -``4.9.3``|``foss/2016b``, ``foss/2017b``, ``intel/2016b``, ``intel/2017a``, ``intel/2017b`` -``5.0.0``|``foss/2018a``, ``foss/2018b``, ``intel/2018a``, ``intel/2018b``, ``iomkl/2018a`` -``6.0.0``|``GCCcore/8.2.0`` -``6.2.1``|``GCCcore/8.3.0`` -``6.3.1``|``GCCcore/10.3.0`` -``7.0.0``|``GCCcore/9.3.0`` -``7.2.1``|``GCCcore/10.2.0`` -``8.0.1``|``GCCcore/10.3.0`` -``8.1.0``|``GCCcore/11.2.0`` -``9.0.0``|``GCCcore/11.3.0`` -``9.1.1``|``GCCcore/12.2.0`` -``9.2.0``|``GCCcore/12.3.0`` -``9.3.1``|``GCCcore/13.2.0`` - -### ProjectQ - -An open source software framework for quantum computing - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``0.4.2``|``-Python-3.6.6``|``intel/2018b`` - -### prokka - -Prokka is a software tool for the rapid annotation of prokaryotic genomes. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------------------------------------------------------------------------------------------------------------- -``1.11`` |``-BioPerl-1.7.0``|``foss/2016b`` -``1.13`` |``-BioPerl-1.7.2``|``intel/2018a`` -``1.13.4``| |``foss/2018b`` -``1.13.7``| |``gompi/2019a`` -``1.14.5``| |``gompi/2019a``, ``gompi/2019b``, ``gompi/2020b``, ``gompi/2021a``, ``gompi/2021b``, ``gompi/2022a``, ``gompi/2022b`` - -### prompt-toolkit - -prompt_toolkit is a Python library for building powerful interactive command lines and terminal applications. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|-------------------------------------- -``1.0.3`` |``-Python-2.7.11``|``foss/2016a`` -``1.0.3`` |``-Python-3.5.1`` |``foss/2016a`` -``1.0.6`` |``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``1.0.6`` |``-Python-3.5.2`` |``intel/2016b`` -``1.0.13``|``-Python-2.7.12``|``intel/2016b`` -``3.0.36``| |``GCCcore/12.2.0``, ``GCCcore/13.2.0`` - -### proovread - -PacBio hybrid error correction through iterative short read consensus - -*homepage*: - -version |toolchain -----------|--------------- -``2.14.1``|``intel/2017b`` - -### propy - -Propy is a protein description software. It allows analyzing sequence-derived structural and physicochemical features, which are very useful in representing and distinguishing proteins or peptides of different structural, functional and interaction properties. These have been widely used in developing methods and software for predicting protein structural and functional classes, protein-protein interactions, drug-target interactions, protein substrates, among others. - -*homepage*: - -version|versionsuffix |toolchain --------|------------------|-------------- -``1.0``|``-Python-2.7.13``|``foss/2017a`` - -### ProteinMPNN - -A deep learning based protein sequence design method is described that is widely applicable to current design challenges and shows outstanding performance in both in silico and experimental tests. - -*homepage*: - -version |versionsuffix |toolchain -------------------|----------------|-------------- -``1.0.1-20230627``|``-CUDA-11.7.0``|``foss/2022a`` - -### Proteinortho - -Proteinortho is a tool to detect orthologous genes within different species. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------------------|--------------- -``5.16b``|``-Python-3.6.4-Perl-5.26.1``|``foss/2018a`` -``6.2.3``| |``gompi/2021b`` - -### ProtHint - -ProtHint is a pipeline for predicting and scoring hints (in the form of introns, start and stop codons) in the genome of interest by mapping and spliced aligning predicted genes to a database of reference protein sequences. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|---------------------------------------- -``2.4.0``|``-Python-3.7.2``|``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -``2.4.0``|``-Python-3.7.4``|``iccifort/2019.5.281`` - -### protobuf - -Google Protocol Buffers - -*homepage*: - -version |toolchain ------------|-------------------------------------------------------------------- -``2.5.0`` |``GCCcore/10.2.0``, ``GCCcore/7.3.0``, ``GCCcore/8.3.0``, ``system`` -``2.6.1`` |``system`` -``3.0.2`` |``foss/2016a`` -``3.2.0`` |``foss/2016b``, ``intel/2016b`` -``3.3.0`` |``foss/2016b``, ``intel/2017a`` -``3.4.0`` |``GCCcore/6.4.0``, ``intel/2017a``, ``intel/2017b`` -``3.5.1`` |``intel/2017b`` -``3.6.0`` |``GCCcore/7.3.0`` -``3.6.1`` |``GCCcore/7.3.0`` -``3.6.1.2``|``GCCcore/8.2.0`` -``3.7.1`` |``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``3.10.0`` |``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``3.13.0`` |``GCCcore/9.3.0`` -``3.14.0`` |``GCCcore/10.2.0`` -``3.17.3`` |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``3.19.4`` |``GCCcore/11.3.0`` -``3.21.9`` |``GCCcore/10.3.0`` -``23.0`` |``GCCcore/12.2.0`` -``24.0`` |``GCCcore/12.3.0`` -``25.3`` |``GCCcore/13.2.0`` - -### protobuf-python - -Python Protocol Buffers runtime library. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|-------------------------------------- -``3.0.2`` |``-Python-2.7.11``|``foss/2016a`` -``3.0.2`` |``-Python-3.5.1`` |``foss/2016a`` -``3.2.0`` |``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``3.2.0`` |``-Python-3.5.2`` |``foss/2016b``, ``intel/2016b`` -``3.3.0`` |``-Python-2.7.13``|``intel/2017a`` -``3.3.0`` |``-Python-3.5.2`` |``foss/2016b`` -``3.3.0`` |``-Python-3.6.1`` |``intel/2017a`` -``3.4.0`` |``-Python-2.7.13``|``intel/2017a`` -``3.4.0`` |``-Python-2.7.14``|``intel/2017b`` -``3.4.0`` |``-Python-3.6.1`` |``intel/2017a`` -``3.4.0`` |``-Python-3.6.3`` |``intel/2017b`` -``3.6.0`` |``-Python-2.7.15``|``fosscuda/2018b`` -``3.6.0`` |``-Python-3.6.6`` |``foss/2018b``, ``fosscuda/2018b`` -``3.10.0``|``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b`` -``3.13.0``|``-Python-3.8.2`` |``foss/2020a``, ``fosscuda/2020a`` -``3.14.0``| |``GCCcore/10.2.0`` -``3.17.3``| |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``3.19.4``| |``GCCcore/11.3.0`` -``4.23.0``| |``GCCcore/12.2.0`` -``4.24.0``| |``GCCcore/12.3.0`` -``4.25.3``| |``GCCcore/13.2.0`` - -### protozero - -Minimalistic protocol buffer decoder and encoder in C++. - -*homepage*: - -version |toolchain ----------|----------------- -``1.6.8``|``GCCcore/7.3.0`` -``1.7.0``|``GCCcore/8.3.0`` - -### PRRTE - -PRRTE is the PMIx Reference RunTime Environment - -*homepage*: - -version |toolchain ----------|------------------ -``3.0.5``|``GCCcore/13.3.0`` - -### PRSice - -PRSice (pronounced 'precise') is a Polygenic Risk Score software for calculating, applying, evaluating and plotting the results of polygenic risk scores (PRS) analyses. - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``2.2.12``|``GCCcore/8.3.0`` -``2.3.1`` |``GCCcore/9.3.0`` -``2.3.3`` |``GCCcore/10.3.0``, ``GCCcore/9.3.0`` -``2.3.5`` |``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### PSASS - -PSASS (Pooled Sequencing Analysis for Sex Signal) is a software to compare pooled sequencing datasets from two groups (usually two sexes). Results from PSASS can be easily visualized using the sgtr R package. PSASS is integrated in a Snakemake workflow to perform all required steps starting from a genome and reads files. - -*homepage*: - -version |toolchain ----------|-------------- -``3.1.0``|``GCC/12.3.0`` - -### pscom - -ParaStation is a robust and efficient cluster middleware, consisting of a high-performance communication layer (MPI) and a sophisticated management layer. - -*homepage*: - -version |toolchain -------------|------------- -``5.0.43`` |``GCC/4.8.2`` -``5.0.44-1``|``GCC/4.9.2`` -``5.0.48-1``|``system`` - -### PSI - -PSI4 is an open-source suite of ab initio quantum chemistry programs designed for efficient, high-accuracy simulations of a variety of molecular properties. We can routinely perform computations with more than 2500 basis functions running serially or in parallel. - -*homepage*: - -version |versionsuffix |toolchain -------------------|---------------------|--------------- -``4.0b6-20160201``|``-mt-Python-2.7.11``|``intel/2016a`` - -### PSI4 - -PSI4 is an open-source suite of ab initio quantum chemistry programs designed for efficient, high-accuracy simulations of a variety of molecular properties. We can routinely perform computations with more than 2500 basis functions running serially or in parallel. - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------------|--------------- -``1.0`` |``-Python-2.7.11`` |``intel/2016a`` -``1.0`` |``-mt-Python-2.7.11`` |``intel/2016a`` -``1.2.1``|``-Python-2.7.15`` |``intel/2018b`` -``1.2.1``|``-Python-2.7.15-maxam8``|``intel/2018b`` -``1.3.1``|``-Python-3.7.2`` |``foss/2019a`` -``1.3.2``|``-Python-3.7.4`` |``intel/2019b`` -``1.7`` | |``foss/2021b`` - -### PsiCLASS - -PsiCLASS is a reference-based transcriptome assembler for single or multiple RNA-seq samples. - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.3``|``GCC/11.2.0`` - -### PSIPRED - -Accurate protein secondary structure prediction - -*homepage*: - -version |toolchain ---------|----------------------------- -``4.02``|``GCC/12.3.0``, ``GCC/8.3.0`` - -### PSM2 - -Low-level user-space communications interface for the Intel(R) OPA family of products. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------------------------------------------------------------------ -``12.0.1``|``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0`` - -### psmc - -This software package infers population size history from a diploid sequence using the Pairwise Sequentially Markovian Coalescent (PSMC) model. - -*homepage*: - -version |toolchain -------------------|------------------------------ -``0.6.5`` |``foss/2016a``, ``foss/2018a`` -``0.6.5_20221121``|``GCC/12.3.0`` - -### psmpi - -ParaStation MPI is an open source high-performance MPI 3.0 implementation, based on MPICH v3. It provides extra low level communication libraries and integration with various batch systems for tighter process control. - -*homepage*: - -version |versionsuffix|toolchain ------------|-------------|------------- -``5.1.0-1``| |``GCC/4.9.2`` -``5.1.5-1``| |``GCC/4.9.3`` -``5.1.5-1``|``-mt`` |``GCC/4.9.3`` - -### psmpi2 - -ParaStation is a robust and efficient cluster middleware, consisting of a high-performance communication layer (MPI) and a sophisticated management layer. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|------------- -``5.0.29``| |``GCC/4.8.2`` -``5.0.29``|``-mt`` |``GCC/4.8.2`` - -### PSolver - -Interpolating scaling function Poisson Solver Library - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------- -``1.7.6``|``foss/2017b``, ``foss/2018a``, ``foss/2018b``, ``intel/2017b``, ``intel/2018a``, ``intel/2018b`` -``1.8.3``|``foss/2020b``, ``foss/2021a``, ``foss/2021b``, ``intel/2020b``, ``intel/2021a``, ``intel/2021b`` - -### PSORTb - -PSORTb v3.0.4 is the most precise bacterial localization prediction tool available. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``3.0.4``|``-Perl-5.22.1``|``foss/2016a`` - -### psrecord - -psrecord is a small utility that uses the psutil library to record the CPU and memory activity of a process. - -*homepage*: - -version|versionsuffix |toolchain --------|------------------|--------------- -``1.1``|``-Python-2.7.14``|``intel/2018a`` -``1.1``|``-Python-2.7.15``|``intel/2018b`` -``1.1``|``-Python-3.6.4`` |``intel/2018a`` -``1.1``|``-Python-3.6.6`` |``intel/2018b`` - -### pstoedit - -pstoedit translates PostScript and PDF graphics into other vector formats - -*homepage*: - -version |toolchain ---------|------------------------------------ -``3.70``|``GCCcore/6.3.0``, ``GCCcore/6.4.0`` -``3.78``|``GCC/11.3.0`` - -### psutil - -A cross-platform process and system utilities module for Python - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------------------------------- -``4.2.0``|``-Python-2.7.11``|``intel/2016a`` -``4.3.0``|``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``5.4.3``|``-Python-2.7.14``|``intel/2017b`` -``5.4.7``|``-Python-2.7.15``|``foss/2018b`` -``5.4.7``|``-Python-3.6.6`` |``foss/2018b`` -``5.6.1``|``-Python-2.7.15``|``fosscuda/2018b`` -``5.6.3``| |``GCCcore/8.2.0`` -``5.9.3``| |``GCCcore/10.2.0``, ``GCCcore/11.3.0`` -``5.9.4``| |``GCCcore/11.2.0`` -``5.9.5``| |``GCCcore/12.2.0`` -``5.9.8``| |``GCCcore/12.3.0`` - -### psycopg - -Psycopg is the most popular PostgreSQL adapter for the Python programming language. - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``3.1.18``|``GCCcore/12.2.0``, ``GCCcore/13.2.0`` - -### psycopg2 - -Psycopg is the most popular PostgreSQL adapter for the Python programming language. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``2.7`` |``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``2.8.3``|``-Python-3.7.2`` |``foss/2019a`` -``2.8.6``|``-Python-3.8.2`` |``GCCcore/9.3.0`` -``2.9.5``| |``GCCcore/11.2.0`` -``2.9.6``| |``GCCcore/11.3.0`` -``2.9.9``| |``GCCcore/12.3.0`` - -### ptemcee - -ptemcee, pronounced "tem-cee", is fork of Daniel Foreman-Mackey's wonderful emcee to implement parallel tempering more robustly. If you're trying to characterise awkward, multi-model probability distributions, then ptemcee is your friend. - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.0``|``foss/2019a`` - -### PTESFinder - -Post-Transcriptional Exon Shuffling (PTES) Identification Pipeline - -*homepage*: - -version|toolchain --------|--------------- -``1`` |``intel/2017b`` - -### pubtcrs - -This repository contains C++ source code for the TCR clustering and correlation analyses described in the manuscript "Human T cell receptor occurrence patterns encode immune history, genetic background, and receptor specificity" by William S DeWitt III, Anajane Smith, Gary Schoch, John A Hansen, Frederick A Matsen IV and Philip Bradley, available on bioRxiv. - -*homepage*: - -version |toolchain -------------|--------------- -``20180622``|``intel/2019a`` - -### pugixml - -pugixml is a light-weight C++ XML processing library - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``1.11.4``|``GCCcore/10.3.0`` -``1.12.1``|``GCCcore/11.2.0``, ``GCCcore/11.3.0`` - -### pullseq - -Utility program for extracting sequences from a fasta/fastq file - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------- -``1.0.2``|``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/7.3.0`` - -### PuLP - -PuLP is an LP modeler written in Python. PuLP can generate MPS or LP files and call GLPK, COIN-OR CLP/CBC, CPLEX, GUROBI, MOSEK, XPRESS, CHOCO, MIPCL, SCIP to solve linear problems. - -*homepage*: - -version |toolchain ----------|-------------- -``2.5.1``|``foss/2021a`` -``2.7.0``|``foss/2022b`` -``2.8.0``|``foss/2023a`` - -### purge_dups - -purge haplotigs and overlaps in an assembly based on read depth - -*homepage*: - -version |toolchain ----------|-------------- -``1.2.5``|``foss/2021b`` - -### pv - -Pipe Viewer - monitor the progress of data through a pipe - -*homepage*: - -version |toolchain -----------|------------------ -``1.7.24``|``GCCcore/12.3.0`` - -### py - -library with cross-python path, ini-parsing, io, code, log facilities - -*homepage*: < https://pylib.readthedocs.org/> - -version |versionsuffix |toolchain -----------|------------------|-------------- -``1.4.31``|``-Python-2.7.11``|``foss/2016a`` -``1.4.31``|``-Python-3.5.1`` |``foss/2016a`` - -### py-aiger - -A python library for manipulating sequential and combinatorial circuits. This module provides the py-aiger extensions: aiger_bv, aiger_cnf, aiger_ptltl, aiger_coins, aiger_gridworld, aiger_dfa - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------ -``6.1.1`` |``-Python-3.8.2``|``GCCcore/9.3.0`` -``6.1.14``| |``GCCcore/10.2.0`` - -### py-aiger-bdd - -Aiger to BDD bridge. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``3.0.0``|``-Python-3.8.2``|``foss/2020a`` - -### py-c3d - -This is a small library for reading and writing C3D binary files. C3D files are a standard format for recording 3-dimensional time sequence data, especially data recorded by a 3D motion tracking apparatus. - -*homepage*: - -version |toolchain ----------|-------------- -``0.5.2``|``foss/2022a`` - -### py-cpuinfo - -py-cpuinfo gets CPU info with pure Python. - -*homepage*: - -version |toolchain ----------|-------------------------------------------------------------------------------------------------- -``5.0.0``|``system`` -``8.0.0``|``GCCcore/11.2.0`` -``9.0.0``|``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### py3Dmol - -A simple IPython/Jupyter widget to embed an interactive 3Dmol.js viewer in a notebook. - -*homepage*: - -version |toolchain ----------------|------------------ -``2.0.1.post1``|``GCCcore/11.3.0`` -``2.1.0`` |``GCCcore/12.3.0`` - -### pyABC - -Massively parallel, distributed and scalable ABC-SMC (Approximate Bayesian Computation - Sequential Monte Carlo) for parameter estimation of complex stochastic models. Implemented in Python with support of the R language. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``0.10.4``|``-Python-3.7.4``|``foss/2019b`` - -### PyAEDT - -PyAEDT is a Python library that interacts directly with the Ansys Electronics Desktop (AEDT) API, enabling straightforward and efficient automation in your workflow. - -*homepage*: - -version |toolchain ----------|------------------ -``0.8.7``|``GCCcore/12.3.0`` - -### PyAMG - -PyAMG is a library of Algebraic Multigrid (AMG) solvers with a convenient Python interface. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``3.0.1``|``-Python-2.7.11``|``intel/2016a`` -``4.0.0``| |``foss/2020b``, ``intel/2020b`` -``4.2.3``| |``foss/2021a`` -``5.1.0``| |``foss/2023a`` - -### PyAPS3 - -Python 3 Atmospheric Phase Screen - -*homepage*: - -version |versionsuffix |toolchain -------------|-----------------|-------------- -``20190407``|``-Python-3.7.2``|``foss/2019a`` - -### PyAV - -PyAV is a Pythonic binding for FFmpeg. We aim to provide all of the power and control of the underlying library, but manage the gritty details as much as possible. - -*homepage*: - -version |toolchain -----------|------------------ -``10.0.0``|``GCCcore/11.3.0`` - -### pybedtools - -pybedtools wraps and extends BEDTools and offers feature-level manipulations from within Python. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------------------------------- -``0.7.10``|``-Python-2.7.14``|``intel/2017b``, ``intel/2018a`` -``0.7.10``|``-Python-3.6.6`` |``foss/2018b`` -``0.8.0`` | |``foss/2019a``, ``intel/2019a`` -``0.8.1`` | |``foss/2019b`` -``0.8.2`` | |``GCC/10.2.0``, ``GCC/11.2.0``, ``iccifort/2020.4.304`` -``0.8.2`` |``-Python-2.7.18``|``GCC/10.2.0``, ``GCC/11.2.0`` -``0.9.0`` | |``GCC/11.3.0``, ``GCC/12.2.0`` -``0.9.1`` | |``foss/2023a`` - -### PyBerny - -PyBerny is an optimizer of molecular geometries with respect to the total energy, using nuclear gradient information. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------------------ -``0.6.2``|``-Python-3.8.2``|``intel/2020a`` -``0.6.3``| |``foss/2022a``, ``foss/2022b`` - -### pyBigWig - -A python extension, written in C, for quick access to bigBed files and access to and creation of bigWig files. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------------------------------------------------------ -``0.3.13``|``-Python-3.6.6``|``foss/2018b`` -``0.3.17``| |``GCCcore/8.2.0``, ``GCCcore/9.3.0`` -``0.3.18``| |``GCCcore/10.2.0``, ``foss/2021a``, ``foss/2021b``, ``foss/2022a`` -``0.3.22``| |``foss/2022b``, ``foss/2023a`` - -### pybind11 - -pybind11 is a lightweight header-only library that exposes C++ types in Python and vice versa, mainly to create Python bindings of existing C++ code. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|-------------------------------------- -``2.2.4`` |``-Python-3.6.4`` |``foss/2018a`` -``2.2.4`` |``-Python-3.6.6`` |``intel/2018b`` -``2.4.3`` |``-Python-3.7.4`` |``GCCcore/8.3.0`` -``2.4.3`` |``-Python-3.8.2`` |``GCCcore/9.3.0`` -``2.6.0`` | |``GCCcore/10.2.0`` -``2.6.2`` | |``GCCcore/10.3.0`` -``2.7.1`` | |``GCCcore/11.2.0`` -``2.7.1`` |``-Python-2.7.18``|``GCCcore/11.2.0`` -``2.9.2`` | |``GCCcore/11.3.0`` -``2.10.3``| |``GCCcore/12.2.0`` -``2.11.1``| |``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### pybind11-stubgen - -Static analysis tools and IDE usually struggle to understand python binary extensions. pybind11-stubgen generates stubs for python extensions to make them less opaque. While the CLI tool includes tweaks to target modules compiled specifically with pybind11 but it should work well with modules built with other libraries. - -*homepage*: - -version |toolchain ----------|------------------ -``2.5.1``|``GCCcore/12.3.0`` - -### pybinding - -Pybinding is a Python package for numerical tight-binding calculations in solid state physics. - -*homepage*: - -version |toolchain ----------|-------------- -``0.9.5``|``foss/2022a`` - -### PyBioLib - -PyBioLib is a Python package for running BioLib applications from Python scripts and the command line. BioLib is a library of biological data science applications. Applications on BioLib range from small bioinformatics utilities to state-of-the-art machine learning algorithms for predicting characteristics of biological molecules. - -*homepage*: - -version |toolchain ------------|------------------ -``1.1.988``|``GCCcore/11.3.0`` - -### PyCairo - -Python bindings for the cairo library - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|-------------------------------------- -``1.10.0``|``-Python-2.7.11``|``intel/2016a`` -``1.16.1``|``-Python-3.6.3`` |``foss/2017b`` -``1.16.2``|``-Python-2.7.14``|``intel/2017b`` -``1.18.0``|``-Python-2.7.14``|``intel/2018a`` -``1.18.0``|``-Python-2.7.15``|``foss/2018b`` -``1.18.0``|``-Python-3.6.6`` |``foss/2018b`` -``1.18.0``|``-Python-3.7.2`` |``GCCcore/8.2.0`` -``1.18.2``| |``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.20.0``| |``GCCcore/10.2.0`` -``1.20.1``| |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``1.21.0``| |``GCCcore/11.3.0`` -``1.24.0``| |``GCCcore/12.2.0`` -``1.25.0``| |``GCCcore/12.3.0`` -``1.25.1``| |``GCCcore/13.2.0`` - -### PyCalib - -Python library for classifier calibration - -*homepage*: - -version |toolchain ---------------|-------------- -``0.1.0.dev0``|``foss/2021b`` -``20230531`` |``gfbf/2022b`` - -### pyccel - -Python extension language using accelerators - -*homepage*: - -version |toolchain ----------|-------------- -``1.7.0``|``foss/2022a`` - -### PyCharm - -PyCharm Community Edition: Python IDE for Professional Developers - -*homepage*: - -version |toolchain -------------|---------- -``2017.2.3``|``system`` -``2019.3.1``|``system`` -``2021.1.1``|``system`` -``2022.2.2``|``system`` -``2022.3.2``|``system`` - -### PyCheMPS2 - -PyCheMPS2 is a python interface to CheMPS2, for compilation without MPI. CheMPS2 is a scientific library which contains a spin-adapted implementation of the density matrix renormalization group (DMRG) for ab initio quantum chemistry. - -*homepage*: - -version |toolchain -----------|------------------------------ -``1.8.12``|``foss/2022a``, ``foss/2022b`` - -### Pychopper - -A tool to identify, orient, trim and rescue full length cDNA reads. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``2.3.1``|``-Python-3.7.4``|``intel/2019b`` - -### PyCifRW - -PyCIFRW provides support for reading and writing CIF (Crystallographic Information Format) files using Python. - -*homepage*: - -version |toolchain ----------|----------------- -``4.4.2``|``GCCcore/8.3.0`` - -### PyClone - -PyClone is a Python package that wraps rclone and provides a threaded interface for an installation at the host or container level. - -*homepage*: - -version |toolchain -------------|------------------ -``2020.9b2``|``GCCcore/10.2.0`` - -### pycma - -A stochastic numerical optimization algorithm for difficult (non-convex, ill-conditioned, multi-modal, rugged, noisy) optimization problems in continuous search spaces, implemented in Python. - -*homepage*: - -version |toolchain ----------|--------------- -``2.7.0``|``intel/2019a`` - -### pycocotools - -Official APIs for the MS-COCO dataset - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|---------------------------------- -``2.0.0``|``-Python-3.7.4``|``foss/2019b``, ``fosscuda/2019b`` -``2.0.1``|``-Python-3.7.4``|``foss/2019b``, ``fosscuda/2019b`` -``2.0.2``|``-Python-3.8.2``|``foss/2020a``, ``fosscuda/2020a`` -``2.0.4``| |``foss/2021a`` -``2.0.6``| |``foss/2022a`` - -### pycodestyle - -pycodestyle is a tool to check your Python code against some of the style conventions in PEP 8. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------------------ -``2.5.0`` |``-Python-3.6.4``|``intel/2018a`` -``2.11.1``| |``foss/2022a``, ``foss/2023a`` - -### PyCogent - -PyCogent is a software library for genomic biology. It is a fully integrated and thoroughly tested framework for: controlling third-party applications; devising workflows; querying databases; conducting novel probabilistic analyses of biological sequence evolution; and generating publication quality graphics. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``1.5.3``|``-Python-2.7.12``|``intel/2016b`` -``1.9`` |``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``1.9`` |``-Python-2.7.15``|``foss/2018b`` - -### pycoQC - -PycoQC computes metrics and generates interactive QC plots for Oxford Nanopore technologies sequencing data. - -*homepage*: - -version |toolchain ----------|-------------- -``2.5.2``|``foss/2021a`` - -### pycubescd - -Charge-displacement analysis via natural orbitals for chemical valence in the four-component relativistic framework - -*homepage*: - -version |toolchain -------------|-------------- -``20220704``|``foss/2022a`` - -### PyCUDA - -PyCUDA lets you access Nvidia’s CUDA parallel computation API from Python. - -*homepage*: - -version |versionsuffix |toolchain -------------|-------------------------------|--------------------------------------- -``2016.1.2``|``-Python-2.7.12`` |``intel/2016b`` -``2017.1.1``|``-CUDA-9.0.176-Python-2.7.14``|``foss/2017b`` -``2017.1.1``|``-Python-2.7.14`` |``intel/2018a`` -``2018.1`` |``-Python-3.6.4-CUDA-9.1.85`` |``intel/2018a`` -``2019.1.2``|``-Python-3.7.4`` |``fosscuda/2019b``, ``intelcuda/2019b`` -``2020.1`` | |``fosscuda/2020b`` - -### PycURL - -PycURL is a Python interface to libcurl. PycURL can be used to fetch objects identified by a URL from a Python program, similar to the urllib Python module. PycURL is mature, very fast, and supports a lot of features. - -*homepage*: - -version |versionsuffix |toolchain -------------|-----------------|---------------------------------------------------------- -``7.43.0.5``|``-Python-3.7.4``|``GCCcore/8.3.0`` -``7.45.2`` | |``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``7.45.3`` | |``GCCcore/13.2.0`` - -### PyDamage - -Pydamage, is a Python software to automate the process of contig damage identification and estimation. After modelling the ancient DNA damage using the C to T transitions, Pydamage uses a likelihood ratio test to discriminate between truly ancient, and modern contigs originating from sample contamination. - -*homepage*: - -version |toolchain ---------|-------------- -``0.70``|``foss/2021a`` - -### pydantic - -Data validation and settings management using Python type hinting. - -*homepage*: - -version |versionsuffix |toolchain ------------|-----------------|-------------------------------------- -``1.6.1`` |``-Python-3.7.4``|``GCCcore/8.3.0`` -``1.10.2`` | |``GCCcore/11.2.0`` -``1.10.4`` | |``GCCcore/11.3.0`` -``1.10.13``| |``GCCcore/12.3.0`` -``2.5.3`` | |``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``2.6.4`` | |``GCCcore/13.2.0`` - -### PyDatastream - -Lightweight SOAP client - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``0.5.1``|``-Python-3.6.4``|``intel/2018a`` - -### pydicom - -Pure python package for DICOM medical file reading and writing. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------------------------------- -``0.9.9``|``-Python-2.7.11``|``intel/2016a`` -``1.2.2``| |``GCCcore/8.2.0`` -``1.4.2``| |``GCCcore/8.3.0`` -``2.1.2``| |``GCCcore/10.2.0`` -``2.1.2``|``-Python-3.8.2`` |``GCCcore/9.3.0`` -``2.2.2``| |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``2.3.0``| |``GCCcore/11.3.0`` -``2.4.4``| |``GCCcore/12.3.0`` - -### pydicom-seg - -Reading and writing of DICOM-SEG medical image segmentation storage files using pydicom as DICOM serialization/deserialization library. - -*homepage*: - -version |toolchain ----------|-------------- -``0.4.1``|``foss/2022a`` - -### pydlpoly - -Pydlpoly is a molecular dynamics simulation package which is a modified version of DL-POLY with a Python language interface. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|--------------- -``20150225``|``-Python-2.7.12``|``intel/2016b`` -``20150225``|``-Python-2.7.13``|``intel/2017a`` - -### pydot - -Python interface to Graphviz's Dot language. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------ -``1.4.1``|``GCCcore/9.3.0``, ``foss/2019b`` -``1.4.2``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``2.0.0``|``GCCcore/12.3.0`` - -### pyEGA3 - -A basic Python-based EGA download client - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------ -``3.0.33``|``-Python-3.7.2``|``GCCcore/8.2.0`` -``3.4.0`` |``-Python-3.7.4``|``GCCcore/8.3.0`` -``3.4.0`` |``-Python-3.8.2``|``GCCcore/9.3.0`` -``4.0.0`` | |``GCCcore/11.2.0`` -``5.0.2`` | |``GCCcore/12.3.0`` - -### pyenchant - -PyEnchant is a spellchecking library for Python, based on the excellent Enchant library. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``1.6.8``|``-Python-2.7.13``|``intel/2017a`` - -### PyEVTK - -EVTK (Export VTK) package allows exporting data to binary VTK files for visualization and data analysis with any of the visualization packages that support VTK files - -*homepage*: - -version |toolchain ----------|-------------- -``1.4.1``|``foss/2021b`` -``2.0.0``|``foss/2021b`` - -### PyEXR - -A simple EXR IO-library for Python that simplifies the use of OpenEXR. - -*homepage*: - -version |toolchain -----------|-------------- -``0.3.10``|``gfbf/2023a`` - -### pyFAI - -Python implementation of fast azimuthal integration. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|---------------------------------- -``0.19.0``|``-Python-3.7.4``|``foss/2019b``, ``fosscuda/2019b`` -``0.20.0``| |``foss/2020b``, ``fosscuda/2020b`` -``0.21.3``| |``foss/2021b`` - -### pyfaidx - -pyfaidx: efficient pythonic random access to fasta subsequences - -*homepage*: - -version |versionsuffix |toolchain ------------|-----------------|-------------------------------------- -``0.5.9.5``| |``GCCcore/10.2.0`` -``0.5.9.5``|``-Python-3.7.4``|``GCCcore/8.3.0`` -``0.6.3.1``| |``GCCcore/10.3.0`` -``0.7.0`` | |``GCCcore/11.2.0`` -``0.7.1`` | |``GCCcore/11.3.0`` -``0.7.2.1``| |``GCCcore/12.2.0`` -``0.8.1.1``| |``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### pyfasta - -fast, memory-efficient, pythonic (and command-line) access to fasta sequence files - -*homepage*: - -version |toolchain ----------|-------------- -``0.5.2``|``foss/2020b`` - -### PyFFmpeg - -Python FFmpeg wrapper - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|---------------- -``2.1beta``|``-Python-2.7.10``|``gimkl/2.11.5`` -``2.1beta``|``-Python-2.7.11``|``intel/2016a`` - -### pyFFTW - -A pythonic wrapper around FFTW, the FFT library, presenting a unified interface for all the supported transforms. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|---------------------------------- -``0.11.1``| |``intel/2019a`` -``0.11.1``|``-Python-3.6.6``|``foss/2018b`` -``0.12.0``| |``foss/2020b``, ``fosscuda/2020b`` -``0.13.1``| |``foss/2022a`` - -### pyfits - -The PyFITS module is a Python library providing access to FITS (Flexible Image Transport System) - -*homepage*: - -version|versionsuffix |toolchain --------|------------------|--------------- -``3.5``|``-Python-2.7.15``|``intel/2018b`` - -### PyFMI - -PyFMI is a package for loading and interacting with Functional Mock-Up Units (FMUs), which are compiled dynamic models compliant with the Functional Mock-Up Interface (FMI) - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``2.4.0``|``-Python-2.7.15``|``intel/2018b`` - -### PyFoam - -A Python library to control OpenFOAM-runs and manipulate OpenFOAM-data. - -*homepage*: - -version |toolchain -----------|-------------- -``2020.5``|``foss/2020b`` - -### PyFR - -PyFR is an open-source Python based framework for solving advection-diffusion type problems on streaming architectures using the Flux Reconstruction approach of Huynh. The framework is designed to solve a range of governing systems on mixed unstructured grids containing various element types. It is also designed to target a range of hardware platforms via use of an in-built domain specific language derived from the Mako templating engine. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------------------|------------------- -``1.7.6``|``-Python-3.6.4-CUDA-9.1.85``|``intel/2018a`` -``1.9.0``|``-Python-3.7.4`` |``intelcuda/2019b`` - -### PyFrag - -The PyFrag program is specially designed to facilitate the analysis of reaction mechanism in a more efficient and user-friendly way. PyFrag resolves three main challenges associated with the automatized computational exploration of reaction mechanisms: 1) the management of multiple parallel calculations to automatically find a reaction path; 2) the monitoring of the entire computational process along with the extraction and plotting of relevant information from large amounts of data; and 3) the analysis and presentation of these data in a clear and informative way. This module provides the Activation Strain Analysis (ASA) Module of PyFrag 2023 - -*homepage*: - -version |versionsuffix|toolchain ----------------------|-------------|--------------- -``2019-20220216`` |``-ASA`` |``intel/2020b`` -``2023-dev.20240220``|``-ASA`` |``intel/2022a`` - -### pyGAM - -pyGAM is a package for building Generalized Additive Models in Python, with an emphasis on modularity and performance. The API will be immediately familiar to anyone with experience of scikit-learn or scipy. - -*homepage*: - -version |toolchain ----------|-------------- -``0.9.1``|``gfbf/2023a`` - -### pygame - -Pygame is a set of Python modules designed for writing video games. Pygame adds functionality on top of the excellent SDL library. This allows you to create fully featured games and multimedia programs in the python language. - -*homepage*: - -version |toolchain ----------|------------------ -``2.1.0``|``GCCcore/11.3.0`` -``2.5.2``|``GCCcore/12.3.0`` - -### pygccxml - -Python package for easy C++ declarations navigation. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|-------------- -``20160706``|``-Python-2.7.11``|``foss/2016a`` -``20160706``|``-Python-3.5.1`` |``foss/2016a`` - -### pyGenomeTracks - -pyGenomeTracks aims to produce high-quality genome browser tracks that are highly customizable. - -*homepage*: - -version|toolchain --------|-------------- -``3.7``|``foss/2021b`` -``3.8``|``foss/2022a`` - -### PyGEOS - -PyGEOS is a C/Python library with vectorized geometry functions. The geometry operations are done in the open-source geometry library GEOS. PyGEOS wraps these operations in NumPy ufuncs providing a performance improvement when operating on arrays of geometries. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------------------ -``0.7.1`` |``-Python-3.7.4``|``foss/2019b`` -``0.8`` |``-Python-3.8.2``|``foss/2020a`` -``0.10.2``| |``intel/2020b`` -``0.14`` | |``gfbf/2022b``, ``gfbf/2023a`` - -### pyGIMLi - -pyGIMLi is an open-source multi-method library for solving inverse and forward tasks related to geophysical problems. Written in C++ and Python, it offers both efficiency and flexibility allowing you to quickly build your own robust inversion applications for the geophysical problem at hand. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|-------------- -``20160803``|``-Python-2.7.11``|``foss/2016a`` -``20160803``|``-Python-3.5.1`` |``foss/2016a`` - -### Pygments - -Generic syntax highlighter suitable for use in code hosting, forums, wikis or other applications that need to prettify source code. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``2.1.3``|``-Python-2.7.11``|``foss/2016a`` -``2.1.3``|``-Python-3.5.1`` |``foss/2016a`` - -### pygmo - -pygmo is a scientific Python library for massively parallel optimization. - -*homepage*: - -version |toolchain -----------|---------------------------------------------- -``2.16.1``|``foss/2020b`` -``2.18.0``|``foss/2021a``, ``foss/2021b``, ``foss/2022a`` - -### PyGObject - -PyGObject is a Python package which provides bindings for GObject based libraries such as GTK, GStreamer, WebKitGTK, GLib, GIO and many more. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|-------------------------------------- -``2.28.6``|``-Python-2.7.11``|``intel/2016a`` -``2.28.6``|``-Python-2.7.14``|``intel/2017b`` -``2.28.7``|``-Python-2.7.14``|``intel/2018a`` -``2.28.7``|``-Python-2.7.15``|``foss/2018b`` -``3.34.0``|``-Python-2.7.16``|``GCCcore/8.3.0`` -``3.34.0``|``-Python-3.7.2`` |``GCCcore/8.2.0`` -``3.34.0``|``-Python-3.7.4`` |``GCCcore/8.3.0`` -``3.42.1``| |``GCCcore/11.3.0`` -``3.44.1``| |``GCCcore/12.2.0`` -``3.46.0``| |``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### pygraphviz - -PyGraphviz is a Python interface to the Graphviz graph layout and visualization package. With PyGraphviz you can create, edit, read, write, and draw graphs using Python to access the Graphviz graph data structure and layout algorithms. - -*homepage*: - -version |toolchain ---------|------------------------------ -``1.5`` |``foss/2019b`` -``1.7`` |``foss/2020b``, ``foss/2021a`` -``1.10``|``GCCcore/11.3.0`` -``1.11``|``GCCcore/12.3.0`` - -### pygrib - -Python interface for reading and writing GRIB data - -*homepage*: - -version |toolchain ----------|-------------- -``2.0.4``|``foss/2019a`` - -### PyGTK - -PyGTK lets you to easily create programs with a graphical user interface using the Python programming language. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|-------------------------------- -``2.24.0``|``-Python-2.7.11``|``intel/2016a`` -``2.24.0``|``-Python-2.7.14``|``intel/2017b``, ``intel/2018a`` -``2.24.0``|``-Python-2.7.15``|``foss/2018b`` - -### PyGTS - -PyGTS is a python package used to construct, manipulate, and perform computations on triangulated surfaces. It is a hand-crafted and pythonic binding for the GNU Triangulated Surface (GTS) Library. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``0.3.1``|``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``0.3.1``|``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``0.3.1``|``-Python-2.7.14``|``intel/2018a`` - -### PyGWAS - -PyGWAS is a library for running Genome Wide Association studies. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``1.2.0``|``-Python-2.7.11``|``foss/2016a`` -``1.3.1``|``-Python-2.7.11``|``foss/2016a`` -``1.4.0``|``-Python-2.7.11``|``foss/2016a`` -``1.5.0``|``-Python-2.7.11``|``foss/2016a`` -``1.6.1``|``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``1.7.1``|``-Python-2.7.13``|``foss/2017a`` - -### pyhdf - -Python wrapper around the NCSA HDF version 4 library - -*homepage*: - -version |toolchain -----------|-------------- -``0.10.1``|``foss/2019a`` - -### PyHMMER - -HMMER is a biological sequence analysis tool that uses profile hidden Markov models to search for sequence homologs. HMMER3 is developed and maintained by the Eddy/Rivas Laboratory at Harvard University. pyhmmer is a Python package, implemented using the Cython language, that provides bindings to HMMER3. It directly interacts with the HMMER internals, which has the following advantages over CLI wrappers (like hmmer-py) - -*homepage*: - -version |toolchain -----------|--------------- -``0.10.6``|``gompi/2023a`` - -### PyImageJ - -PyImageJ provides a set of wrapper functions for integration between ImageJ2 and Python. It also supports the original ImageJ API and data structures. A major advantage of this approach is the ability to combine ImageJ and ImageJ2 with other tools available from the Python software ecosystem, including NumPy, SciPy, scikit-image, CellProfiler, OpenCV, ITK and many more. - -*homepage*: - -version |toolchain ----------|-------------- -``1.3.1``|``foss/2021a`` - -### PyInstaller - -PyInstaller bundles a Python application and all its dependencies into a single package. The user can run the packaged app without installing a Python interpreter or any modules. - -*homepage*: - -version |toolchain ----------|------------------ -``6.3.0``|``GCCcore/12.3.0`` - -### pyiron - -An integrated development environment (IDE) for computational materials science. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``0.2.5``|``-Python-3.7.2``|``intel/2019a`` -``0.3.0``|``-Python-3.8.2``|``intel/2020a`` -``0.5.1``| |``foss/2023a`` - -### Pyke3 - -Pyke introduces a form of Logic Programming (inspired by Prolog) to the Python community by providing a knowledge-based inference engine (expert system) written in 100% Python. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``1.1.1``|``-Python-3.6.6``|``intel/2018b`` - -### pylift - -pylift is an uplift library that provides, primarily: (1) Fast uplift modeling implementations and (2) Evaluation tools (UpliftEval class). - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``0.1.5``|``-Python-3.7.4``|``foss/2019b`` -``0.1.5``|``-Python-3.8.2``|``foss/2020a`` - -### Pylint - -Pylint is a tool that checks for errors in Python code, tries to enforce a coding standard and looks for code smells. It can also look for certain type errors, it can recommend suggestions about how particular blocks can be refactored and can offer you details about the code's complexity. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------------------------ -``1.9.3`` |``-Python-2.7.15``|``foss/2018b``, ``intel/2018b``, ``iomkl/2018b`` -``1.9.5`` |``-Python-2.7.15``|``GCCcore/8.2.0`` -``1.9.5`` |``-Python-2.7.16``|``GCCcore/8.3.0`` -``2.7.4`` | |``GCCcore/10.2.0`` -``2.17.4``| |``GCCcore/12.2.0`` - -### pylipid - -PyLipID is a python package for analyzing lipid interactions with membrane proteins from Molecular Dynamics Simulations. - -*homepage*: - -version |toolchain -----------|-------------- -``1.5.14``|``foss/2021b`` - -### pyMannKendall - -A python package for non parametric Mann Kendall family of trend tests. - -*homepage*: - -version |toolchain ----------|-------------- -``1.4.3``|``foss/2022a`` - -### pymatgen - -Python Materials Genomics is a robust materials analysis code that defines core object representations for structures and molecules with support for many electronic structure codes. - -*homepage*: - -version |versionsuffix |toolchain ---------------|------------------|------------------------- -``3.5.0`` |``-Python-2.7.11``|``intel/2016.02-GCC-4.9`` -``4.1.1`` |``-Python-2.7.12``|``intel/2016b`` -``4.3.2`` |``-Python-2.7.12``|``intel/2016b`` -``4.7.3`` |``-Python-2.7.13``|``intel/2017a`` -``2017.10.16``|``-Python-2.7.14``|``intel/2017b`` -``2017.10.16``|``-Python-3.6.3`` |``intel/2017b`` -``2022.0.4`` | |``foss/2020b`` -``2023.3.10`` | |``foss/2022a`` -``2023.12.18``| |``foss/2023a`` - -### pymatgen-db - -Pymatgen-db is a database add-on for the Python Materials Genomics (pymatgen) materials analysis library. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``0.6.5``|``-Python-2.7.13``|``intel/2017a`` - -### pymbar - -The pymbar package contains the pymbar suite of tools for the analysis of simulated and experimental data with the multistate Bennett acceptance ratio (MBAR) estimator. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``3.0.3``|``-Python-3.6.3``|``intel/2017b`` -``3.0.3``|``-Python-3.8.2``|``intel/2020a`` - -### PyMC - -PyMC is a probabilistic programming library for Python that allows users to build Bayesian models with a simple Python API and fit them using Markov chain Monte Carlo (MCMC) methods. - -*homepage*: - -version |toolchain ----------|------------------------------- -``2.3.8``|``foss/2021b``, ``intel/2021b`` -``5.9.0``|``foss/2023a`` - -### PyMC3 - -Probabilistic Programming in Python: Bayesian Modeling and Probabilistic Machine Learning with Theano - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------------------------------------------------------------- -``3.8`` |``-Python-3.7.4``|``foss/2019b``, ``intel/2019b`` -``3.11.1``| |``foss/2021b``, ``fosscuda/2020b``, ``intel/2020b``, ``intel/2021b`` - -### pymca - -The PyMca X-Ray Fluorescence Toolkit, including PyMca5 and fisx. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|---------------------------------- -``5.6.3``| |``foss/2020b``, ``fosscuda/2020b`` -``5.6.3``|``-Python-3.7.4``|``foss/2019b``, ``fosscuda/2019b`` -``5.7.6``| |``foss/2021b`` - -### pymemcache - -A comprehensive, fast, pure-Python memcached client. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------------------- -``2.1.1``|``-Python-3.6.4``|``foss/2018a``, ``intel/2018a`` - -### PyMOL - -PyMOL is a Python-enhanced molecular graphics tool. It excels at 3D visualization of proteins, small molecules, density, surfaces, and trajectories. It also includes molecular editing, ray tracing, and movies. Open Source PyMOL is free to everyone! - -*homepage*: - -version |toolchain ----------|-------------- -``2.5.0``|``foss/2020b`` - -### PyNAST - -PyNAST is a reimplementation of the NAST sequence aligner, which has become a popular tool for adding new 16s rRNA sequences to existing 16s rRNA alignments. This reimplementation is more flexible, faster, and easier to install and maintain than the original NAST implementation. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``1.2.2``|``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``1.2.2``|``-Python-2.7.15``|``foss/2018b`` - -### pyobjcryst - -Python bindings to ObjCryst++, the Object-Oriented Crystallographic Library. - -*homepage*: - -version |versionsuffix |toolchain ----------------|-----------------|--------------- -``2.1.0.post2``|``-Python-3.8.2``|``intel/2020a`` -``2.2.1`` | |``foss/2021b`` - -### PyOD - -PyOD is a comprehensive and scalable Python toolkit for detecting outlying objects in multivariate data. - -*homepage*: - -version |toolchain ----------|------------------------------- -``0.8.7``|``foss/2020b``, ``intel/2020b`` - -### pyodbc - -pyodbc is an open source Python module that makes accessing ODBC databases simple. It implements the DB API 2.0 specification but is packed with even more Pythonic convenience. - -*homepage*: - -version |toolchain -----------|-------------- -``4.0.39``|``foss/2022b`` - -### Pyomo - -Pyomo is a Python-based open-source software package that supports a diverse set of optimization capabilities for formulating and analyzing optimization models. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------ -``5.5.0``|``-Python-2.7.15``|``foss/2018b`` -``5.5.0``|``-Python-3.6.6`` |``foss/2018b`` -``6.0.1``| |``foss/2020b``, ``foss/2021a`` -``6.4.2``| |``foss/2022a`` -``6.5.0``| |``foss/2022b`` - -### PyOpenCL - -PyOpenCL lets you access GPUs and other massively parallel compute devices from Python. - -*homepage*: - -version |versionsuffix |toolchain --------------|-----------------|--------------------------------------------------- -``2020.2.2`` |``-Python-3.7.4``|``fosscuda/2019b`` -``2021.1.2`` | |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b`` -``2021.2.13``| |``foss/2021b`` -``2021.2.13``|``-CUDA-11.4.1`` |``foss/2021b`` -``2023.1.4`` | |``foss/2022a``, ``foss/2023a`` -``2023.1.4`` |``-CUDA-11.7.0`` |``foss/2022a`` -``2023.1.4`` |``-CUDA-12.1.1`` |``foss/2023a`` - -### PyOpenGL - -PyOpenGL is the most common cross platform Python binding to OpenGL and related APIs. - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|--------------------------------------------------------- -``3.1.1a1``| |``GCCcore/8.2.0`` -``3.1.1a1``|``-Python-2.7.11``|``intel/2016a`` -``3.1.1a1``|``-Python-2.7.12``|``foss/2016b`` -``3.1.1a1``|``-Python-2.7.14``|``foss/2018a``, ``intel/2017b`` -``3.1.3b2``|``-Python-2.7.14``|``intel/2018a`` -``3.1.3b2``|``-Python-2.7.15``|``foss/2018b`` -``3.1.5`` | |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/8.3.0`` -``3.1.6`` | |``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``3.1.7`` | |``GCCcore/12.3.0`` - -### pyparsing - -The pyparsing module is an alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions. The pyparsing module provides a library of classes that client code uses to construct the grammar directly in Python code. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------ -``2.4.6``|``-Python-2.7.16``|``GCCcore/8.3.0`` -``3.0.9``| |``GCCcore/11.3.0`` -``3.1.1``| |``GCCcore/12.3.0`` - -### pyperf - -The Python pyperf module is a toolkit to write, run and analyze benchmarks - -*homepage*: - -version |toolchain ----------|------------------ -``2.5.0``|``GCCcore/11.3.0`` -``2.6.0``|``GCCcore/12.2.0`` - -### pyplusplus - -Py++ is a code generator for Boost.Python that simplifies writing Python bindings of a C/C++ library The tool is implemented as a Python module which is controlled by a user script. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|-------------- -``20160707``|``-Python-2.7.11``|``foss/2016a`` -``20160707``|``-Python-3.5.1`` |``foss/2016a`` - -### pypmt - -PMT is a high-level software library capable of collecting power consumption measurements on various hardware. - -*homepage*: - -version |toolchain ----------|------------------------------ -``1.1.0``|``foss/2022a``, ``gfbf/2023a`` -``1.2.0``|``foss/2022a``, ``gfbf/2023a`` - -### PYPOWER - -PYPOWER is a power flow and Optimal Power Flow (OPF) solver. It is a port of MATPOWER to the Python programming language. - -*homepage*: - -version |toolchain -----------|-------------- -``5.1.15``|``foss/2020b`` - -### pyproj - -Python interface to PROJ4 library for cartographic transformations - -*homepage*: - -version |versionsuffix |toolchain ----------------|-----------------|-------------------------------------- -``2.1.3`` | |``GCCcore/8.2.0`` -``2.4.2`` |``-Python-3.7.4``|``GCCcore/8.3.0`` -``2.6.1.post1``|``-Python-3.8.2``|``GCCcore/9.3.0`` -``3.0.1`` | |``GCCcore/10.2.0`` -``3.1.0`` | |``GCCcore/10.3.0`` -``3.3.1`` | |``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``3.4.0`` | |``GCCcore/11.3.0`` -``3.5.0`` | |``GCCcore/12.2.0`` -``3.6.0`` | |``GCCcore/12.3.0`` - -### PyPSA - -PyPSA is an open source toolbox for simulating and optimising modern power systems that include features such as conventional generators with unit commitment, variable wind and solar generation, storage units, coupling to other energy sectors, and mixed alternating and direct current networks. PyPSA is designed to scale well with large networks and long time series. - -*homepage*: - -version |toolchain -----------|-------------- -``0.17.1``|``foss/2020b`` - -### PyPy - -A fast, compliant alternative implementation of Python - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|---------- -``7.3.12``|``-3.10`` |``system`` - -### pyqstem - -QSTEM is a program for quantitative image simulation in electron microscopy, including TEM, STEM and CBED image simulation. This project interfaces the QSTEM code with Python and the Atomic Simulation Environment (ASE) to provide a single environment for building models, simulating and analysing images. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|---------------------------------- -``1.0.3``|``-ASE-3.22.0`` |``foss/2020b``, ``fosscuda/2020b`` -``1.0.3``|``-Python-3.6.6``|``foss/2018b``, ``intel/2018b`` - -### PyQt - -PyQt is a set of Python v2 and v3 bindings for Digia's Qt application framework. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------- -``4.11.4``|``-Python-2.7.11``|``intel/2016a`` -``4.11.4``|``-Python-2.7.12``|``intel/2016b`` -``4.12`` |``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``4.12`` |``-Python-2.7.13``|``intel/2017a`` -``4.12.1``|``-Python-2.7.14``|``foss/2018a`` -``4.12.3``|``-Python-2.7.15``|``fosscuda/2018b`` - -### PyQt-builder - -PyQt-builder is the PEP 517 compliant build system for PyQt and projects that extend PyQt. It extends the SIP build system and uses Qt’s qmake to perform the actual compilation and installation of extension modules. - -*homepage*: - -version |toolchain -----------|------------------ -``1.15.4``|``GCCcore/12.3.0`` - -### PyQt5 - -PyQt5 is a set of Python bindings for v5 of the Qt application framework from The Qt Company. - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|---------------------------------------------------------- -``5.7`` |``-Python-2.7.11``|``foss/2016a`` -``5.7.1`` |``-Python-2.7.12``|``intel/2016b`` -``5.8.2`` |``-Python-2.7.13``|``intel/2017a`` -``5.9.2`` |``-Python-2.7.14``|``foss/2017b``, ``intel/2017b``, ``intel/2018a`` -``5.9.2`` |``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``5.11.3`` |``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``5.12.1`` |``-Python-2.7.15``|``GCCcore/8.2.0`` -``5.12.1`` |``-Python-3.7.2`` |``GCCcore/8.2.0`` -``5.13.2`` |``-Python-3.7.4`` |``GCCcore/8.3.0`` -``5.15.1`` | |``GCCcore/10.2.0`` -``5.15.1`` |``-Python-3.8.2`` |``GCCcore/9.3.0`` -``5.15.4`` | |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``5.15.5`` | |``GCCcore/11.3.0`` -``5.15.7`` | |``GCCcore/12.2.0`` -``5.15.10``| |``GCCcore/12.3.0`` - -### PyQtGraph - -PyQtGraph is a pure-python graphics and GUI library built on PyQt5/PySide2 and numpy. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|---------------------------------- -``0.10.0``|``-Python-3.6.4``|``intel/2018a`` -``0.10.0``|``-Python-3.6.6``|``foss/2018b``, ``intel/2018b`` -``0.10.0``|``-Python-3.7.2``|``intel/2019a`` -``0.11.0``|``-Python-3.7.4``|``foss/2019b`` -``0.11.1``| |``foss/2020b``, ``fosscuda/2020b`` -``0.12.3``| |``foss/2021a`` -``0.13.3``| |``foss/2022a`` -``0.13.7``| |``foss/2023a`` - -### pyradiomics - -Open-source python package for the extraction of Radiomics features from 2D and 3D images and binary masks. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``3.0.1``| |``foss/2021a`` -``3.0.1``|``-Python-3.7.4``|``foss/2019b`` - -### PyRe - -PyRe (Python Reliability) is a Python module for structural reliability analysis. - -*homepage*: - -version |versionsuffix |toolchain -------------------|-----------------|------------------------------- -``5.0.3-20190221``|``-Python-3.7.4``|``foss/2019b``, ``intel/2019b`` - -### PyRETIS - -PyRETIS is a Python library for rare event molecular simulations with emphasis on methods based on transition interface sampling and replica exchange transition interface sampling. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------------------- -``2.1.0``|``-Python-3.6.6``|``intel/2018b`` -``2.5.0``| |``foss/2020b``, ``intel/2020b`` -``2.5.0``|``-Python-3.8.2``|``foss/2020a``, ``intel/2020a`` - -### pyringe - -Debugger capable of attaching to and injecting code into python processes. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``1.0.2``|``-Python-2.7.11``|``intel/2016a`` - -### pyro-api - -Pyro is a flexible, scalable deep probabilistic programming library built on PyTorch. - -*homepage*: - -version |toolchain ----------|------------------ -``0.1.2``|``fosscuda/2020b`` - -### pyro-ppl - -Pyro is a flexible, scalable deep probabilistic programming library built on PyTorch. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|------------------ -``1.5.2``| |``fosscuda/2020b`` -``1.8.0``|``-CUDA-11.3.1``|``foss/2021a`` -``1.8.4``| |``foss/2022a`` -``1.8.4``|``-CUDA-11.7.0``|``foss/2022a`` -``1.9.0``| |``foss/2023a`` -``1.9.0``|``-CUDA-12.1.1``|``foss/2023a`` - -### Pyro4 - -Pyro means PYthon Remote Objects. It is a library that enables you to build applications in which objects can talk to eachother over the network, with minimal programming effort. - -*homepage*: - -version |versionsuffix |toolchain ---------|------------------|-------------- -``4.47``|``-Python-2.7.11``|``foss/2016a`` - -### PyRosetta - -PyRosetta is an interactive Python-based interface to the powerful Rosetta molecular modeling suite. It enables users to design their own custom molecular modeling algorithms using Rosetta sampling methods and energy functions. - -*homepage*: - -version |versionsuffix |toolchain ------------------|-----------------|----------------- -``4.release-292``|``-Python-3.7.4``|``GCCcore/8.3.0`` - -### Pysam - -Pysam is a python module for reading and manipulating Samfiles. It's a lightweight wrapper of the samtools C-API. Pysam also includes an interface for tabix. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|-------------------------------------------------------------------------------------------------------------- -``0.8.4`` |``-Python-2.7.12``|``intel/2016b`` -``0.9.1.4`` |``-Python-2.7.12``|``foss/2016b`` -``0.10.0`` |``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``0.12.0.1``|``-Python-2.7.13``|``intel/2017a`` -``0.12.0.1``|``-Python-2.7.14``|``intel/2017b`` -``0.12.0.1``|``-Python-3.6.3`` |``intel/2017b`` -``0.13`` |``-Python-2.7.14``|``intel/2017b`` -``0.13.0`` |``-Python-3.6.3`` |``intel/2017b`` -``0.14`` |``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``0.14`` |``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``0.14`` |``-Python-3.6.4`` |``intel/2018a`` -``0.14.1`` |``-Python-2.7.14``|``foss/2018a``, ``intel/2018a`` -``0.14.1`` |``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``0.15.1`` |``-Python-2.7.15``|``foss/2018b``, ``intel/2018b`` -``0.15.1`` |``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``0.15.2`` | |``GCC/8.2.0-2.31.1``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -``0.15.3`` | |``GCC/8.3.0``, ``iccifort/2019.5.281`` -``0.16.0.1``| |``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/8.3.0``, ``GCC/9.3.0``, ``iccifort/2020.1.217``, ``iccifort/2020.4.304`` -``0.16.0.1``|``-Python-2.7.18``|``GCC/10.2.0`` -``0.17.0`` | |``GCC/11.2.0`` -``0.17.0`` |``-Python-2.7.18``|``GCC/11.2.0`` -``0.18.0`` | |``GCC/11.2.0`` -``0.19.1`` | |``GCC/11.3.0`` -``0.20.0`` | |``GCC/11.3.0`` -``0.21.0`` | |``GCC/12.2.0`` -``0.22.0`` | |``GCC/12.3.0``, ``GCC/13.2.0`` - -### pysamstats - -A Python utility for calculating statistics against genome positions based on sequence alignments from a SAM or BAM file. - -*homepage*: - -version |toolchain ----------|-------------- -``1.1.2``|``foss/2020b`` - -### PySAT - -PySAT is a Python toolkit, which aims at providing a simple and unified interface to a number of state-of-art Boolean satisfiability (SAT) solvers as well as to a variety of cardinality and pseudo-Boolean encodings. - -*homepage*: - -version |versionsuffix |toolchain ----------------|-----------------|-------------- -``0.1.6.dev11``|``-Python-3.8.2``|``GCC/9.3.0`` -``0.1.7.dev1`` | |``GCC/10.2.0`` - -### pyScaf - -pyScaf orders contigs from genome assemblies utilising several types of information - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``0.12a4``|``-Python-2.7.14``|``intel/2017b`` - -### pySCENIC - -pySCENIC is a lightning-fast python implementation of the SCENIC pipeline (Single-Cell rEgulatory Network Inference and Clustering) which enables biologists to infer transcription factors, gene regulatory networks and cell types from single-cell RNA-seq data. - -*homepage*: - -version |versionsuffix |toolchain --------------------|-----------------|------------------------------- -``0.10.3`` |``-Python-3.8.2``|``foss/2020a``, ``intel/2020a`` -``0.12.1`` | |``foss/2022a`` -``0.12.1-20240311``| |``foss/2023a`` - -### PySCF - -PySCF is an open-source collection of electronic structure modules powered by Python. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|----------------------------------------------- -``1.6.3``|``-Python-3.7.2``|``foss/2019a`` -``1.7.6``| |``foss/2020b``, ``foss/2021a``, ``gomkl/2021a`` -``2.1.1``| |``foss/2022a`` -``2.4.0``| |``foss/2022b`` - -### pyseer - -pyseer was first written a python reimplementation of seer, which was written in C++. pyseer uses linear models with fixed or mixed effects to estimate the effect of genetic variation in a bacterial population on a phenotype of interest, while accounting for potentially very strong confounding population structure. This allows for genome-wide association studies (GWAS) to be performed in clonal organisms such as bacteria and viruses. - -*homepage*: - -version |toolchain -----------|-------------- -``1.3.11``|``foss/2022b`` - -### pysheds - -Simple and fast watershed delineation in python. - -*homepage*: - -version |toolchain ------------|-------------- -``0.2.7.1``|``foss/2020b`` - -### pyshp - -Pure Python read/write support for ESRI Shapefile format - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------ -``1.2.12``|``-Python-3.6.2``|``foss/2017b`` -``2.1.3`` | |``GCCcore/10.2.0`` - -### PySide2 - -PySide2 is the official Python module from the Qt for Python project, which provides access to the complete Qt 5.12+ framework. - -*homepage*: - -version |toolchain -------------|------------------ -``5.14.2.3``|``GCCcore/10.2.0`` - -### PySINDy - -" PySINDy is a sparse regression package with several implementations for the Sparse Identification of Nonlinear Dynamical systems (SINDy) method introduced in Brunton et al. (2016a), including the unified optimization approach of Champion et al. (2019), SINDy with control from Brunton et al. (2016b), Trapping SINDy from Kaptanoglu et al. (2021), SINDy-PI from Kaheman et al. (2020), PDE-FIND from Rudy et al. (2017), and so on. A comprehensive literature review is given in de Silva et al. (2020) and Kaptanoglu, de Silva et al. (2021). - -*homepage*: - -version |toolchain ----------|-------------- -``1.7.3``|``foss/2022a`` - -### pyslim - -A Python API for reading and modifying tskit tree sequence files produced by SLiM, or modifying files produced by other programs (e.g., msprime, fwdpy11, and tsinfer) for use in SLiM. - -*homepage*: - -version |toolchain ----------|------------------------------ -``1.0.1``|``foss/2021b``, ``foss/2022a`` - -### pysndfx - -A lightweight Python wrapper for SoX - Sound eXchange. Supported effects range from EQ and compression to phasers, reverb and pitch shifters. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``0.3.6``|``-Python-3.7.4``|``foss/2019b`` - -### Pysolar - -Pysolar is a collection of Python libraries for simulating the irradiation of any point on earth by the sun. - -*homepage*: - -version|versionsuffix |toolchain --------|-----------------|----------------- -``0.7``|``-Python-3.6.3``|``intel/2017b`` -``0.7``|``-Python-3.6.4``|``intel/2018a`` -``0.8``|``-Python-3.6.6``|``intel/2018b`` -``0.8``|``-Python-3.7.2``|``GCCcore/8.2.0`` - -### pyspoa - -Python bindings to spoa. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|---------------------------------------------- -``0.0.4``|``-Python-3.7.4``|``GCC/8.3.0`` -``0.0.8``| |``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0`` -``0.0.9``| |``GCC/11.3.0``, ``GCC/12.2.0`` -``0.2.1``| |``GCC/12.3.0`` - -### pysqlite - -pysqlite is an interface to the SQLite 3.x embedded relational database engine. It is almost fully compliant with the Python database API version 2.0 also exposes the unique features of SQLite. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``2.8.2``|``-Python-2.7.11``|``foss/2016a`` - -### PyStan - -Python interface to Stan, a package for Bayesian inference using the No-U-Turn sampler, a variant of Hamiltonian Monte Carlo. - -*homepage*: - -version |versionsuffix |toolchain -------------|-----------------|------------------------------- -``2.19.0.0``|``-Python-3.6.4``|``intel/2018a`` -``2.19.1.1``| |``foss/2020b``, ``intel/2020b`` -``3.5.0`` | |``foss/2021b`` - -### pysteps - -Pysteps is an open-source and community-driven Python library for probabilistic precipitation nowcasting, i.e. short-term ensemble prediction systems. - -*homepage*: - -version |toolchain ----------|-------------- -``1.7.1``|``foss/2022a`` - -### pystran - -Toolset of dynamical model STRucture ANalysis algorithms - -*homepage*: - -version |versionsuffix |toolchain ---------------|------------------|--------------- -``2017.04.20``|``-Python-2.7.14``|``intel/2017b`` - -### PyTables - -PyTables is a package for managing hierarchical datasets and designed to efficiently and easily cope with extremely large amounts of data. PyTables is built on top of the HDF5 library, using the Python language and the NumPy package. It features an object-oriented interface that, combined with C extensions for the performance-critical parts of the code (generated using Cython), makes it a fast, yet extremely easy to use tool for interactively browsing, processing and searching very large amounts of data. One important feature of PyTables is that it optimizes memory and disk resources so that data takes much less space (specially if on-flight compression is used) than other solutions such as relational or object oriented databases. - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|----------------------------------------------------------------------------------- -``3.2.2`` |``-Python-2.7.12``|``foss/2016b`` -``3.2.3.1``|``-Python-2.7.12``|``intel/2016b`` -``3.3.0`` |``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``3.3.0`` |``-Python-3.5.2`` |``intel/2016b`` -``3.4.2`` |``-Python-2.7.13``|``foss/2017a`` -``3.4.2`` |``-Python-3.6.1`` |``intel/2017a`` -``3.4.2`` |``-Python-3.6.3`` |``intel/2017b`` -``3.4.2`` |``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``3.4.4`` |``-Python-2.7.15``|``foss/2018b`` -``3.4.4`` |``-Python-3.5.1`` |``foss/2016a`` -``3.4.4`` |``-Python-3.6.6`` |``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b`` -``3.5.2`` | |``intel/2019a`` -``3.5.2`` |``-Python-2.7.14``|``intel/2018a`` -``3.5.2`` |``-Python-2.7.16``|``intel/2019b`` -``3.5.2`` |``-Python-2.7.18``|``foss/2020b`` -``3.6.1`` | |``foss/2020b``, ``foss/2021a``, ``foss/2021b``, ``fosscuda/2020b``, ``intel/2020b`` -``3.6.1`` |``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b`` -``3.6.1`` |``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``3.8.0`` | |``foss/2022a``, ``foss/2022b``, ``foss/2023a`` -``3.9.2`` | |``foss/2023b`` - -### PyTensor - -Optimizing compiler for evaluating mathematical expressions on CPUs and GPUs - -*homepage*: - -version |toolchain -----------|-------------- -``2.17.1``|``gfbf/2023a`` - -### pytesseract - -Python-tesseract is an optical character recognition (OCR) tool for python. That is, it will recognize and "read" the text embedded in images. Python-tesseract is a wrapper for Google's Tesseract-OCR Engine. It is also useful as a stand-alone invocation script to tesseract, as it can read all image types supported by the Pillow and Leptonica imaging libraries, including jpeg, png, gif, bmp, tiff, and others. Additionally, if used as a script, Python-tesseract will print the recognized text instead of writing it to a file. - -*homepage*: - -version |toolchain -----------|------------------ -``0.3.10``|``GCCcore/11.3.0`` - -### pytest - -The pytest framework makes it easy to write small, readable tests, and can scale to support complex functional testing for applications and libraries. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``3.0.1``|``-Python-2.7.11``|``foss/2016a`` -``3.0.1``|``-Python-3.5.1`` |``foss/2016a`` -``3.8.0``|``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``3.8.2``|``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``3.8.2``|``-Python-2.7.15``|``intel/2018b`` -``3.8.2``|``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``3.8.2``|``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``4.3.0``|``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``4.4.0``|``-Python-2.7.15``|``foss/2018b``, ``intel/2018b`` -``4.4.0``|``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``6.0.1``|``-Python-3.7.4`` |``GCCcore/8.3.0`` -``7.1.3``| |``GCCcore/11.2.0`` -``7.2.2``| |``GCCcore/11.2.0`` -``7.4.2``| |``GCCcore/12.3.0`` - -### pytest-benchmark - -A pytest fixture for benchmarking code. - -*homepage*: - -version |toolchain ----------|------------------ -``3.4.1``|``GCCcore/10.2.0`` - -### pytest-cpp - -Use pytest runner to discover and execute C++ tests. - -*homepage*: - -version |toolchain ----------|------------------ -``2.3.0``|``GCCcore/11.3.0`` - -### pytest-flakefinder - -Runs tests multiple times to expose flakiness. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------ -``1.1.0``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### pytest-rerunfailures - -pytest plugin to re-run tests to eliminate flaky failures. - -*homepage*: - -version |toolchain ---------|-------------------------------------- -``11.1``|``GCCcore/11.3.0`` -``12.0``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``14.0``|``GCCcore/13.2.0`` - -### pytest-shard - -pytest plugin to support parallelism across multiple machines. Shards tests based on a hash of their test name enabling easy parallelism across machines, suitable for a wide variety of continuous integration services. Tests are split at the finest level of granularity, individual test cases, enabling parallelism even if all of your tests are in a single file (or even single parameterized test method). - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------ -``0.1.2``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### pytest-workflow - -Configure workflow/pipeline tests using yaml files. pytest-workflow is a workflow-system agnostic testing framework that aims to make pipeline/workflow testing easy by using YAML files for the test configuration. Whether you write your pipelines in WDL, snakemake, nextflow, bash or any other workflow framework, pytest-workflow makes testing easy. pytest-workflow is build on top of the pytest test framework. - -*homepage*: - -version |toolchain ----------|------------------ -``2.0.1``|``GCCcore/12.2.0`` -``2.1.0``|``GCCcore/13.2.0`` - -### pytest-xdist - -xdist: pytest distributed testing plugin The pytest-xdist plugin extends pytest with some unique test execution modes: * test run parallelization: if you have multiple CPUs or hosts you can use those for a combined test run. This allows to speed up development or to use special resources of remote machines. * --looponfail: run your tests repeatedly in a subprocess. After each run pytest waits until a file in your project changes and then re-runs the previously failing tests. This is repeated until all tests pass after which again a full run is performed. * Multi-Platform coverage: you can specify different Python interpreters or different platforms and run tests in parallel on all of them. Before running tests remotely, pytest efficiently “rsyncs” your program source code to the remote place. All test results are reported back and displayed to your local terminal. You may specify different Python versions and interpreters. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``2.1.0``|``GCCcore/10.2.0`` -``2.3.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``2.5.0``|``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``3.3.1``|``GCCcore/12.3.0`` - -### pythermalcomfort - -Package to calculate several thermal comfort indices (e.g. PMV, PPD, SET, adaptive) and convert physical variables. - -*homepage*: - -version |toolchain -----------|-------------- -``2.8.10``|``foss/2022a`` - -### PYTHIA - -PYTHIA is a program for the generation of high-energy physics collision events, i.e. for the description of collisions at high energies between electrons, protons, photons and heavy nuclei. It contains theory and models for a number of physics aspects, including hard and soft interactions, parton distributions, initial- and final-state parton showers, multiparton interactions, fragmentation and decay. It is largely based on original research, but also borrows many formulae and other knowledge from the literature. As such it is categorized as a general purpose Monte Carlo event generator. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``8.226``|``-Python-2.7.13``|``intel/2017a`` -``8.309``| |``foss/2022b`` - -### Python - -Python is a programming language that lets you work more quickly and integrate your systems more effectively. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.7.9`` |``-bare`` |``GCC/4.8.4``, ``GCC/4.9.2`` -``2.7.10``| |``gimkl/2.11.5`` -``2.7.10``|``-bare`` |``GCC/4.9.3-2.25``, ``GNU/4.9.3-2.25`` -``2.7.11``| |``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016.02-GCC-4.9``, ``intel/2016a``, ``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25`` -``2.7.11``|``-bare`` |``GCC/4.9.3-2.25`` -``2.7.11``|``-libX11-1.6.3``|``intel/2016a`` -``2.7.12``| |``foss/2016b``, ``intel/2016b``, ``iomkl/2017a`` -``2.7.12``|``-bare`` |``GCC/5.4.0-2.26``, ``GCCcore/4.9.3``, ``iccifort/2016.3.210-GCC-5.4.0-2.26`` -``2.7.13``| |``foss/2017a``, ``intel/2017a`` -``2.7.13``|``-bare`` |``GCCcore/6.3.0`` -``2.7.14``| |``foss/2017b``, ``foss/2018a``, ``fosscuda/2017b``, ``fosscuda/2018a``, ``intel/2017b``, ``intel/2018.01``, ``intel/2018a``, ``intelcuda/2017b``, ``iomkl/2018a`` -``2.7.14``|``-bare`` |``GCCcore/6.4.0`` -``2.7.15``| |``GCCcore/8.2.0``, ``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b``, ``iomkl/2018b`` -``2.7.15``|``-bare`` |``GCCcore/7.2.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0`` -``2.7.16``| |``GCCcore/8.3.0`` -``2.7.16``|``-bare`` |``GCCcore/8.3.0`` -``2.7.18``| |``GCCcore/10.2.0``, ``GCCcore/11.2.0``, ``GCCcore/12.3.0``, ``GCCcore/9.3.0`` -``2.7.18``|``-bare`` |``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/9.3.0`` -``3.5.1`` | |``foss/2016a``, ``intel/2016a`` -``3.5.2`` | |``foss/2016.04``, ``foss/2016b``, ``intel/2016b`` -``3.5.2`` |``-bare`` |``GCC/5.4.0-2.26``, ``iccifort/2016.3.210-GCC-5.4.0-2.26`` -``3.6.1`` | |``foss/2017a``, ``intel/2017a`` -``3.6.2`` | |``foss/2017b``, ``intel/2017b``, ``intel/2018.00`` -``3.6.3`` | |``foss/2017b``, ``fosscuda/2017b``, ``intel/2017b``, ``intel/2018.01``, ``intelcuda/2017b`` -``3.6.4`` | |``foss/2017a``, ``foss/2018a``, ``fosscuda/2018a``, ``golf/2018a``, ``iimkl/2018a``, ``intel/2018a``, ``iomkl/2018.02``, ``iomkl/2018a`` -``3.6.6`` | |``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b``, ``iomkl/2018b`` -``3.7.0`` | |``foss/2018b``, ``intel/2018b``, ``iomkl/2018b`` -``3.7.2`` | |``GCCcore/8.2.0`` -``3.7.4`` | |``GCCcore/8.3.0`` -``3.8.2`` | |``GCCcore/9.3.0`` -``3.8.6`` | |``GCCcore/10.2.0`` -``3.9.5`` | |``GCCcore/10.3.0`` -``3.9.5`` |``-bare`` |``GCCcore/10.3.0`` -``3.9.6`` | |``GCCcore/11.2.0`` -``3.9.6`` |``-bare`` |``GCCcore/11.2.0`` -``3.10.4``| |``GCCcore/11.3.0`` -``3.10.4``|``-bare`` |``GCCcore/11.3.0`` -``3.10.8``| |``GCCcore/12.2.0`` -``3.10.8``|``-bare`` |``GCCcore/12.2.0`` -``3.11.2``|``-bare`` |``GCCcore/12.2.0`` -``3.11.3``| |``GCCcore/12.3.0`` -``3.11.5``| |``GCCcore/13.2.0`` -``3.12.3``| |``GCCcore/13.3.0`` - -### Python-bundle - -Python distribution with a number of widely used extensions incl. NumPy, SciPy, Matplotlib, JupyterLab, MPI4PY, ... - -*homepage*: - -version |toolchain -----------|-------------- -``3.10.4``|``foss/2022a`` - -### Python-bundle-PyPI - -Bundle of Python packages from PyPI - -*homepage*: - -version |toolchain ------------|------------------ -``2023.06``|``GCCcore/12.3.0`` -``2023.10``|``GCCcore/13.2.0`` - -### python-casacore - -Python-casacore is a set of Python bindings for casacore, a c++ library used in radio astronomy. Python-casacore replaces the old pyrap. - -*homepage*: - -version |toolchain ----------|-------------- -``3.5.2``|``foss/2023b`` - -### python-docx - -python-docx is a Python library for creating and updating Microsoft Word (.docx) files - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``0.8.11``|``GCCcore/10.2.0``, ``GCCcore/12.2.0`` - -### python-hl7 - -A simple library for parsing messages of Health Level 7 (HL7) version 2.x into Python objects. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|----------------- -``0.3.4``|``-Python-3.7.4``|``GCCcore/8.3.0`` - -### python-igraph - -Python interface to the igraph high performance graph library, primarily aimed at complex network research and analysis. - -*homepage*: - -version |versionsuffix |toolchain ----------------|------------------|---------------------------------- -``0.7.1.post6``|``-Python-2.7.14``|``intel/2017b`` -``0.7.1.post6``|``-Python-3.6.6`` |``foss/2018b`` -``0.8.0`` | |``foss/2019b``, ``foss/2020a`` -``0.9.0`` | |``foss/2020b``, ``fosscuda/2020b`` -``0.9.6`` | |``foss/2021a`` -``0.9.8`` | |``foss/2021b`` -``0.10.3`` | |``foss/2022a`` -``0.10.6`` | |``foss/2022b`` -``0.11.4`` | |``foss/2023a`` - -### python-irodsclient - -A python API for iRODS - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``1.1.4``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``2.0.0``|``GCCcore/12.3.0`` - -### python-isal - -Faster zlib and gzip compatible compression and decompression by providing python bindings for the isa-l library. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------- -``0.11.0``|``GCCcore/10.3.0`` -``0.11.1``|``GCCcore/10.2.0``, ``GCCcore/11.2.0`` -``1.1.0`` |``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``1.6.1`` |``GCCcore/13.2.0`` - -### python-Levenshtein - -Python extension for computing string edit distances and similarities. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``0.12.0``|``-Python-3.6.6``|``foss/2018b`` -``0.12.0``|``-Python-3.7.4``|``foss/2019b`` -``0.12.1``| |``foss/2020b`` - -### python-libsbml - -LibSBML Python API. - -*homepage*: - -version |toolchain -----------|------------------------------ -``5.19.7``|``foss/2021a`` -``5.20.2``|``foss/2021b``, ``foss/2023b`` - -### python-louvain - -Louvain algorithm for community detection - -*homepage*: - -version |toolchain ---------|------------------------------ -``0.15``|``foss/2021b`` -``0.16``|``foss/2022a``, ``foss/2023a`` - -### python-mujoco - -This package is the canonical Python bindings for the MuJoCo physics engine. The mujoco package provides direct access to raw MuJoCo C API functions, structs, constants, and enumerations. Structs are provided as Python classes, with Pythonic initialization and deletion semantics. - -*homepage*: - -version |toolchain ----------|-------------- -``2.2.2``|``foss/2022a`` -``3.1.4``|``foss/2023a`` - -### python-parasail - -Python Bindings for the Parasail C Library - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------------------------------------------ -``1.1.12``|``-Python-2.7.14``|``intel/2018a`` -``1.1.16``|``-Python-3.6.6`` |``foss/2018b`` -``1.2`` |``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b``, ``intel/2019b`` -``1.2.2`` |``-Python-3.8.2`` |``intel/2020a`` -``1.2.3`` |``-Python-3.8.2`` |``foss/2020a`` -``1.2.4`` | |``foss/2020b``, ``foss/2021a``, ``foss/2021b``, ``fosscuda/2020b`` -``1.3.3`` | |``foss/2022a`` -``1.3.4`` | |``foss/2022b``, ``foss/2023a`` - -### python-telegram-bot - -This library provides a pure Python, asynchronous interface for the Telegram Bot API. It's compatible with Python versions 3.7+. - -*homepage*: - -version |toolchain -----------|------------------ -``20.0a0``|``GCCcore/10.2.0`` - -### python-weka-wrapper3 - -Python3 wrapper for the Weka Machine Learning Workbench - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``0.1.11``|``-Python-3.7.4``|``foss/2019b`` - -### python-xxhash - -xxhash is a Python binding for the xxHash library by Yann Collet. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``2.0.2``|``GCCcore/10.2.0`` -``3.1.0``|``GCCcore/11.3.0`` -``3.2.0``|``GCCcore/12.2.0`` -``3.4.1``|``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### pythran - -Pythran is an ahead of time compiler for a subset of the Python language, with a focus on scientific computing. It takes a Python module annotated with a few interface description and turns it into a native Python module with the same interface, but (hopefully) faster. - -*homepage*: - -version |versionsuffix |toolchain ----------------|-----------------|-------------- -``0.9.4.post1``|``-Python-3.7.4``|``foss/2019b`` - -### PyTorch - -Tensors and Dynamic neural networks in Python with strong GPU acceleration. PyTorch is a deep learning framework that puts Python first. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------------------|-------------------------------------------------------------- -``0.3.1`` |``-Python-2.7.14`` |``fosscuda/2017b`` -``0.3.1`` |``-Python-3.6.3`` |``fosscuda/2017b`` -``0.3.1`` |``-Python-3.6.4`` |``intel/2018a`` -``0.3.1`` |``-Python-3.6.4-CUDA-9.1.85``|``foss/2018a`` -``0.4.1`` |``-Python-3.6.4`` |``intel/2018a`` -``1.0.1`` |``-Python-3.6.6`` |``foss/2018b``, ``fosscuda/2018b`` -``1.1.0`` |``-Python-3.7.2`` |``foss/2019a`` -``1.2.0`` |``-Python-3.7.2`` |``foss/2019a``, ``fosscuda/2019a`` -``1.3.1`` | |``fosscuda/2020b`` -``1.3.1`` |``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b`` -``1.4.0`` |``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b`` -``1.6.0`` |``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b`` -``1.6.0`` |``-Python-3.7.4-imkl`` |``fosscuda/2019b`` -``1.7.1`` | |``foss/2020b``, ``fosscuda/2020b`` -``1.7.1`` |``-Python-3.7.4`` |``fosscuda/2019b`` -``1.7.1`` |``-Python-3.8.2`` |``fosscuda/2020a`` -``1.8.1`` | |``foss/2020b``, ``fosscuda/2020b`` -``1.8.1`` |``-Python-3.7.4`` |``fosscuda/2019b`` -``1.9.0`` | |``foss/2020b``, ``fosscuda/2020b`` -``1.9.0`` |``-imkl`` |``fosscuda/2020b`` -``1.10.0``| |``foss/2021a``, ``fosscuda/2020b`` -``1.10.0``|``-CUDA-11.3.1`` |``foss/2021a`` -``1.11.0``|``-CUDA-11.3.1`` |``foss/2021a`` -``1.12.0``| |``foss/2022a`` -``1.12.0``|``-CUDA-11.7.0`` |``foss/2022a`` -``1.12.1``| |``foss/2021a``, ``foss/2021b``, ``foss/2022a`` -``1.12.1``|``-CUDA-11.3.1`` |``foss/2021a`` -``1.12.1``|``-CUDA-11.5.2`` |``foss/2021b`` -``1.12.1``|``-CUDA-11.7.0`` |``foss/2022a`` -``1.13.1``| |``foss/2022a``, ``foss/2022b`` -``1.13.1``|``-CUDA-11.7.0`` |``foss/2022a``, ``foss/2022b`` -``2.0.1`` | |``foss/2022a``, ``foss/2022b`` -``2.1.2`` | |``foss/2022a``, ``foss/2022b``, ``foss/2023a``, ``foss/2023b`` -``2.1.2`` |``-CUDA-12.1.1`` |``foss/2023a`` - -### pytorch-3dunet - -PyTorch implementation of 3D U-Net and its variants: - UNet3D: Standard 3D U-Net based on 3D U-Net: Learning Dense Volumetric Segmentation from Sparse Annotation - ResidualUNet3D: Residual 3D U-Net based on Superhuman Accuracy on the SNEMI3D Connectomics Challenge - ResidualUNetSE3D: Similar to ResidualUNet3D with the addition of Squeeze and Excitation blocks based on Deep Learning Semantic Segmentation for High- Resolution Medical Volumes. Original squeeze and excite paper: Squeeze-and- Excitation Networks The code allows for training the U-Net for both: semantic segmentation (binary and multi-class) and regression problems (e.g. de-noising, learning deconvolutions). - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``1.6.0``|``-CUDA-11.7.0``|``foss/2022a`` - -### PyTorch-bundle - -PyTorch with compatible versions of official Torch extensions. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|-------------- -``1.12.1``|``-CUDA-11.7.0``|``foss/2022a`` -``1.13.1``|``-CUDA-11.7.0``|``foss/2022a`` -``2.1.2`` | |``foss/2023a`` -``2.1.2`` |``-CUDA-12.1.1``|``foss/2023a`` - -### pytorch-CycleGAN-pix2pix - -PyTorch implementations for both unpaired and paired image-to-image translation. - -*homepage*: - -version |versionsuffix |toolchain -------------|----------------|-------------- -``20230314``|``-CUDA-11.7.0``|``foss/2022a`` - -### PyTorch-Geometric - -PyTorch Geometric (PyG) is a geometric deep learning extension library for PyTorch. - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------------------|---------------------------------- -``1.3.2``|``-Python-3.7.4`` |``foss/2019b`` -``1.4.2``|``-Python-3.7.4-PyTorch-1.4.0``|``foss/2019b`` -``1.6.3``| |``foss/2020b``, ``fosscuda/2020b`` -``1.6.3``|``-Python-3.7.4-PyTorch-1.8.1``|``fosscuda/2019b`` -``2.0.1``|``-PyTorch-1.9.0`` |``fosscuda/2020b`` -``2.1.0``|``-PyTorch-1.12.0`` |``foss/2022a`` -``2.1.0``|``-PyTorch-1.12.0-CUDA-11.7.0``|``foss/2022a`` -``2.1.0``|``-PyTorch-1.12.1-CUDA-11.3.1``|``foss/2021a`` -``2.5.0``|``-PyTorch-2.1.2-CUDA-12.1.1`` |``foss/2023a`` - -### PyTorch-Ignite - -Ignite is a high-level library to help with training and evaluating neural networks in PyTorch flexibly and transparently. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|-------------- -``0.4.9`` |``-CUDA-11.3.1``|``foss/2021a`` -``0.4.12``| |``foss/2022a`` -``0.4.12``|``-CUDA-11.7.0``|``foss/2022a`` -``0.4.13``| |``foss/2023a`` - -### PyTorch-Image-Models - -PyTorch Image Models (timm) is a collection of image models, layers, utilities, optimizers, schedulers, data-loaders / augmentations, and reference training / validation scripts that aim to pull together a wide variety of SOTA models with ability to reproduce ImageNet training results. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``0.9.2``| |``foss/2022a`` -``0.9.2``|``-CUDA-11.7.0``|``foss/2022a`` - -### PyTorch-Lightning - -PyTorch Lightning is the lightweight PyTorch wrapper for ML researchers. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``1.5.9``| |``foss/2021a`` -``1.5.9``|``-CUDA-11.3.1``|``foss/2021a`` -``1.7.7``| |``foss/2022a`` -``1.7.7``|``-CUDA-11.7.0``|``foss/2022a`` -``1.8.4``| |``foss/2022a`` -``1.8.4``|``-CUDA-11.7.0``|``foss/2022a`` -``2.1.2``| |``foss/2022b`` -``2.2.1``| |``foss/2023a`` -``2.2.1``|``-CUDA-12.1.1``|``foss/2023a`` - -### PyTorch3D - -PyTorch3D is FAIR's library of reusable components for deep learning with 3D data. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------ -``0.4.0``|``-PyTorch-1.7.1``|``fosscuda/2020b`` - -### PyTorchVideo - -PyTorchVideo is a deeplearning library with a focus on video understanding work. PytorchVideo provides reusable, modular and efficient components needed to accelerate the video understanding research. PyTorchVideo is developed using PyTorch and supports different deeplearning video components like video models, video datasets, and video-specific transforms. - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------------------|-------------- -``0.1.5``|``-PyTorch-1.12.0`` |``foss/2022a`` -``0.1.5``|``-PyTorch-1.12.0-CUDA-11.7.0``|``foss/2022a`` - -### PyVCF - -A Variant Call Format reader for Python. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------- -``0.6.8``|``-Python-2.7.16``|``GCC/8.3.0`` - -### PyVCF3 - -A VCFv4.0 and 4.1 parser for Python. The intent of this module is to mimic the csv module in the Python stdlib, as opposed to more flexible serialization formats like JSON or YAML. vcf will attempt to parse the content of each record based on the data types specified in the meta-information lines -- specifically the ##INFO and ##FORMAT lines. If these lines are missing or incomplete, it will check against the reserved types mentioned in the spec. Failing that, it will just return strings. PyVCF3 has been created because the Official PyVCF repository is no longer maintained and do not accept any pull requests. This fork is for python 3 only and has been published on pyPI as PyVCF3. - -*homepage*: - -version |toolchain ----------|------------------ -``1.0.3``|``GCCcore/11.3.0`` - -### PyVista - -3D plotting and mesh analysis through a streamlined interface for the Visualization Toolkit (VTK) - -*homepage*: - -version |toolchain -----------|-------------- -``0.43.8``|``foss/2023a`` - -### pyWannier90 - -A Wannier90 Python interface for VASP and PySCF - -*homepage*: - -version |toolchain ---------------|------------------------------- -``2021-12-07``|``foss/2021a``, ``gomkl/2021a`` - -### PyWavelets - -PyWavelets is open source wavelet transform software for Python. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------- -``1.1.1``| |``intelcuda/2020b`` -``1.1.1``|``-Python-3.7.4``|``intel/2019b`` - -### PyWBGT - -Cython source code for estimating wet bulb globe temperature (WBGT) from datasets of standard meterological measurements using models developed by Liljegren et al (2008) - -*homepage*: - -version |toolchain ----------|------------------------------ -``1.0.0``|``foss/2021b``, ``foss/2022a`` - -### pyXDF - -Python package for working with XDF files. - -*homepage*: - -version |toolchain -----------|-------------- -``1.16.3``|``foss/2021a`` -``1.16.5``|``gfbf/2023a`` - -### PyYAML - -PyYAML is a YAML parser and emitter for the Python programming language. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------------------------------------------------------------ -``3.11`` |``-Python-2.7.11``|``intel/2016a`` -``3.12`` | |``system`` -``3.12`` |``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``3.12`` |``-Python-2.7.13``|``intel/2017a`` -``3.12`` |``-Python-2.7.14``|``foss/2017b``, ``foss/2018a``, ``fosscuda/2017b``, ``intel/2017b``, ``intel/2018a`` -``3.12`` |``-Python-3.5.2`` |``intel/2016b`` -``3.12`` |``-Python-3.6.1`` |``intel/2017a`` -``3.12`` |``-Python-3.6.3`` |``foss/2017b``, ``fosscuda/2017b``, ``intel/2017b`` -``3.12`` |``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``3.13`` | |``system`` -``3.13`` |``-Python-2.7.15``|``fosscuda/2018b``, ``intel/2018b`` -``3.13`` |``-Python-3.6.6`` |``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b`` -``5.1`` | |``GCCcore/8.2.0`` -``5.1.2``| |``GCCcore/8.3.0`` -``5.3`` | |``GCCcore/9.3.0`` -``5.3.1``| |``GCCcore/10.2.0`` -``5.4.1``| |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``5.4.1``|``-Python-2.7.18``|``GCCcore/11.2.0`` -``6.0`` | |``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``6.0.1``| |``GCCcore/13.2.0`` - -### PyZMQ - -Python bindings for ZeroMQ - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------------|------------------------------- -``15.2.0``|``-Python-2.7.11-zmq4``|``foss/2016a``, ``intel/2016a`` -``15.2.0``|``-Python-3.5.1-zmq4`` |``intel/2016a`` -``15.3.0``|``-Python-2.7.11-zmq4``|``foss/2016a`` -``15.3.0``|``-Python-3.5.1-zmq4`` |``foss/2016a`` -``15.4.0``|``-Python-2.7.12-zmq4``|``intel/2016b`` -``15.4.0``|``-Python-3.5.2-zmq4`` |``intel/2016b`` -``16.0.2``|``-Python-2.7.12-zmq4``|``foss/2016b``, ``intel/2016b`` -``16.0.2``|``-Python-2.7.13-zmq4``|``foss/2017a``, ``intel/2017a`` -``16.0.2``|``-Python-3.5.2-zmq4`` |``foss/2016b``, ``intel/2016b`` -``16.0.3``|``-Python-2.7.14-zmq4``|``intel/2017b`` -``17.0.0``|``-Python-2.7.14-zmq4``|``foss/2018a`` -``17.0.0``|``-Python-3.6.4-zmq4`` |``foss/2018a`` -``18.1.1``|``-Python-3.7.4`` |``GCCcore/8.3.0`` -``22.3.0``| |``GCCcore/10.3.0`` -``24.0.1``| |``GCCcore/11.3.0`` -``25.1.0``| |``GCCcore/12.2.0`` -``25.1.1``| |``GCCcore/12.3.0`` -``25.1.2``| |``GCCcore/13.2.0`` - -## Q - - -[q2-krona](#q2-krona) - [Q6](#q6) - [QCA](#qca) - [qcat](#qcat) - [QCG-PilotJob](#qcg-pilotjob) - [qcint](#qcint) - [QCxMS](#qcxms) - [QD](#qd) - [QDD](#qdd) - [QEMU](#qemu) - [qforce](#qforce) - [QGIS](#qgis) - [Qhull](#qhull) - [QIIME](#qiime) - [QIIME2](#qiime2) - [Qiskit](#qiskit) - [QJson](#qjson) - [qmflows](#qmflows) - [QML](#qml) - [qnorm](#qnorm) - [qpth](#qpth) - [qrupdate](#qrupdate) - [QScintilla](#qscintilla) - [Qt](#qt) - [Qt5](#qt5) - [Qt5Webkit](#qt5webkit) - [Qt6](#qt6) - [Qtconsole](#qtconsole) - [QtKeychain](#qtkeychain) - [QTLtools](#qtltools) - [qtop](#qtop) - [QtPy](#qtpy) - [Qualimap](#qualimap) - [Quandl](#quandl) - [QuantumESPRESSO](#quantumespresso) - [QUAST](#quast) - [QuaZIP](#quazip) - [QuickFF](#quickff) - [QuickPIC](#quickpic) - [QuickTree](#quicktree) - [Quip](#quip) - [Quorum](#quorum) - [QuPath](#qupath) - [QuTiP](#qutip) - [Qwt](#qwt) - [QwtPolar](#qwtpolar) - - -### q2-krona - -QIIME2 plugin for creating Krona plots - -*homepage*: - -version |toolchain -------------|------------------ -``20220124``|``GCCcore/11.3.0`` - -### Q6 - -EVB, FEP and LIE simulator. - -*homepage*: - -version |toolchain -------------|--------------- -``20180205``|``gompi/2019a`` - -### QCA - -Taking a hint from the similarly-named Java Cryptography Architecture, QCA aims to provide a straightforward and cross-platform crypto API, using Qt datatypes and conventions. QCA separates the API from the implementation, using plugins known as Providers. The advantage of this model is to allow applications to avoid linking to or explicitly depending on any particular cryptographic library. This allows one to easily change or upgrade crypto implementations without even needing to recompile the application! QCA should work everywhere Qt does, including Windows/Unix/MacOSX. - -*homepage*: - -version |toolchain ----------|-------------------------------------------------- -``2.1.0``|``foss/2016a``, ``intel/2016b`` -``2.1.3``|``GCCcore/8.2.0``, ``foss/2016b``, ``intel/2016b`` -``2.3.5``|``GCCcore/11.2.0`` - -### qcat - -qcat is a Python command-line tool for demultiplexing Oxford Nanopore reads from FASTQ files - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------------------- -``1.1.0``| |``foss/2022b`` -``1.1.0``|``-Python-3.7.4``|``foss/2019b``, ``intel/2019b`` -``1.1.0``|``-Python-3.8.2``|``intel/2020a`` - -### QCG-PilotJob - -A python service for easy execution of many tasks inside a single allocation. - -*homepage*: - -version |toolchain -----------|---------------------------------------------- -``0.12.3``|``foss/2021a`` -``0.13.1``|``foss/2022a``, ``gfbf/2022b``, ``gfbf/2023b`` - -### qcint - -libcint is an open source library for analytical Gaussian integrals. qcint is an optimized libcint branch for the x86-64 platform. - -*homepage*: - -version |toolchain -----------|-------------- -``3.0.18``|``foss/2019a`` - -### QCxMS - -QCxMS is a quantum chemical based program to calculate electron ionization (EI) and collision induced dissociation (CID) mass spectra using Born-Oppenheimer Molecular Dynamics (BO-MD). It is the successor of the QCEIMS program, in which the EI part is exchanged to x to account for the greater general applicibility of the program. - -*homepage*: - -version |toolchain ----------|---------- -``5.0.3``|``system`` - -### QD - -Quad Double computation package - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|-------------- -``0.8.9`` | |``foss/2021a`` -``2.3.17``|``-20160110``|``NVHPC/21.2`` - -### QDD - -A user-friendly program to select microsatellite markers and design primers from large sequencing projects. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|--------------- -``3.1.2``|``-Perl-5.28.0``|``intel/2018b`` - -### QEMU - -QEMU is a generic and open source machine emulator and virtualizer. - -*homepage*: - -version |toolchain -----------|--------------- -``2.10.1``|``intel/2017b`` - -### qforce - -Quantum Mechanically augmented molecular force fields. Q-Force is a software package for deriving all-atom force fields from quantum mechanical calculations in an automated manner. - -*homepage*: - -version |toolchain -----------|-------------- -``0.6.11``|``foss/2022a`` - -### QGIS - -QGIS is a user friendly Open Source Geographic Information System (GIS) - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|--------------- -``2.14.12``|``-Python-2.7.12``|``intel/2016b`` -``2.18.4`` |``-Python-2.7.12``|``foss/2016b`` -``3.4.12`` |``-Python-3.7.2`` |``foss/2019a`` -``3.28.1`` | |``foss/2021b`` - -### Qhull - -Qhull computes the convex hull, Delaunay triangulation, Voronoi diagram, halfspace intersection about a point, furthest-site Delaunay triangulation, and furthest-site Voronoi diagram. The source code runs in 2-d, 3-d, 4-d, and higher dimensions. Qhull implements the Quickhull algorithm for computing the convex hull. - -*homepage*: - -version |toolchain -----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``2015.2``|``GCCcore/5.4.0``, ``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``foss/2016a``, ``foss/2016b``, ``foss/2017b``, ``intel/2016a``, ``intel/2016b``, ``intel/2017a`` -``2019.1``|``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``2020.2``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### QIIME - -QIIME is an open-source bioinformatics pipeline for performing microbiome analysis from raw DNA sequencing data. - -*homepage*: - -version |toolchain ----------|---------- -``1.9.1``|``system`` - -### QIIME2 - -QIIME 2 is a powerful, extensible, and decentralized microbiome bioinformatics platform that is free, open source, and community developed. - -*homepage*: - -version |toolchain -------------|-------------- -``2017.10`` |``system`` -``2018.2`` |``system`` -``2019.4`` |``system`` -``2019.7`` |``system`` -``2020.8`` |``system`` -``2020.11`` |``system`` -``2021.8`` |``system`` -``2022.8`` |``system`` -``2022.11`` |``system`` -``2023.5.1``|``foss/2022a`` -``2023.7.0``|``foss/2022a`` - -### Qiskit - -Qiskit is an open-source framework for working with noisy quantum computers at the level of pulses, circuits, and algorithms. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``0.11.1``|``-Python-3.7.2``|``foss/2019a`` -``0.12.0``|``-Python-3.7.2``|``foss/2019a`` -``0.31.0``| |``foss/2021a`` - -### QJson - -QJson is a Qt-based library that maps JSON data to QVariant objects and vice versa. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------------------- -``0.9.0``|``GCCcore/10.2.0``, ``GCCcore/8.2.0``, ``foss/2016b``, ``intel/2016b`` - -### qmflows - -This library tackles the construction and efficient execution of computational chemistry workflows. This allows computational chemists to use the emerging massively parallel compute environments in an easy manner and focus on interpretation of scientific data rather than on tedious job submission procedures and manual data processing. - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.0``|``foss/2022a`` - -### QML - -QML is a Python2/3-compatible toolkit for representation learning of properties of molecules and solids. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``0.2.10``|``-Python-2.7.13``|``intel/2017a`` - -### qnorm - -Fast-ish (and correct!) quantile normalization in Python - -*homepage*: - -version |toolchain ----------|------------------------------ -``0.8.1``|``foss/2022a``, ``foss/2023a`` - -### qpth - -A fast and differentiable QP solver for PyTorch. - -*homepage*: - -version |versionsuffix |toolchain --------------------|-----------------|-------------- -``0.0.13-20190626``|``-Python-3.7.2``|``foss/2019a`` - -### qrupdate - -qrupdate is a Fortran library for fast updates of QR and Cholesky decompositions. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.1.2``|``GCC/5.4.0-2.26``, ``GCC/8.2.0-2.31.1``, ``GCCcore/10.2.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/6.4.0``, ``GCCcore/8.3.0``, ``foss/2016a``, ``foss/2018a``, ``foss/2018b``, ``intel/2016a``, ``intel/2016b``, ``intel/2017a`` - -### QScintilla - -QScintilla is a port to Qt of Neil Hodgson's Scintilla C++ editor control - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------- -``2.9.4`` |``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``2.10`` |``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``2.11.2``|``-Python-3.7.2`` |``GCCcore/8.2.0`` -``2.11.6``| |``GCCcore/11.2.0`` - -### Qt - -Qt is a comprehensive cross-platform C++ application framework. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``3.3.8``| |``intel/2016a`` -``4.8.6``| |``system`` -``4.8.7``| |``GCCcore/8.2.0``, ``foss/2016a``, ``foss/2016b``, ``foss/2017a``, ``foss/2017b``, ``foss/2018a``, ``foss/2018b``, ``fosscuda/2018b``, ``gimkl/2.11.5``, ``intel/2016a``, ``intel/2016b``, ``intel/2017a``, ``intel/2017b``, ``intel/2018a`` -``4.8.7``|``-GLib-2.48.0``|``foss/2016a``, ``intel/2016a`` - -### Qt5 - -Qt is a comprehensive cross-platform C++ application framework. - -*homepage*: - -version |toolchain ------------|------------------------------------------------------------------------------------ -``5.6.0`` |``foss/2016a``, ``intel/2016a`` -``5.7.0`` |``foss/2016a``, ``foss/2016b``, ``intel/2016a``, ``intel/2016b`` -``5.7.1`` |``intel/2016b`` -``5.8.0`` |``foss/2017a``, ``foss/2017b``, ``intel/2016b``, ``intel/2017a``, ``intel/2017b`` -``5.9.3`` |``foss/2017b`` -``5.9.8`` |``fosscuda/2018b`` -``5.10.1`` |``foss/2018a``, ``foss/2018b``, ``fosscuda/2018b``, ``intel/2018a``, ``intel/2018b`` -``5.11.2`` |``foss/2018b`` -``5.12.3`` |``GCCcore/8.2.0`` -``5.13.1`` |``GCCcore/8.3.0`` -``5.14.1`` |``GCCcore/9.3.0`` -``5.14.2`` |``GCCcore/10.2.0`` -``5.15.2`` |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``5.15.5`` |``GCCcore/11.3.0`` -``5.15.7`` |``GCCcore/12.2.0`` -``5.15.10``|``GCCcore/12.3.0`` -``5.15.13``|``GCCcore/13.2.0`` - -### Qt5Webkit - -Qt Port of WebKit. WebKit is an open source web browser engine. - -*homepage*: - -version |toolchain -------------------|---------------------------------------------------------- -``5.212.0-alpha3``|``GCCcore/8.2.0`` -``5.212.0-alpha4``|``GCCcore/10.2.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` - -### Qt6 - -Qt is a comprehensive cross-platform C++ application framework. - -*homepage*: - -version |toolchain ----------|------------------ -``6.5.2``|``GCCcore/12.3.0`` -``6.6.3``|``GCCcore/13.2.0`` - -### Qtconsole - -A rich Qt-based console for working with Jupyter kernels, supporting rich media output, session export, and more. The Qtconsole is a very lightweight application that largely feels like a terminal, but provides a number of enhancements only possible in a GUI, such as inline figures, proper multiline editing with syntax highlighting, graphical calltips, and more. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|---------------------------------- -``4.7.7``|``-Python-3.7.4``|``foss/2019b``, ``fosscuda/2019b`` -``5.0.2``| |``GCCcore/10.2.0`` -``5.3.2``| |``GCCcore/11.2.0`` -``5.4.0``| |``GCCcore/11.3.0`` -``5.5.1``| |``GCCcore/12.3.0`` - -### QtKeychain - -Platform-independent Qt API for storing passwords securely. - -*homepage*: - -version |toolchain -----------|--------------------------------- -``0.9.1`` |``GCCcore/8.2.0``, ``foss/2018b`` -``0.13.2``|``GCCcore/11.2.0`` - -### QTLtools - -QTLtools is a tool set for molecular QTL discovery and analysis. It allows to go from the raw sequence data to collection of molecular Quantitative Trait Loci (QTLs) in few easy-to-perform steps. - -*homepage*: - -version |toolchain ----------|--------------- -``1.1`` |``intel/2016b`` -``1.3.1``|``foss/2020b`` - -### qtop - -qtop is a nifty command-line tool for monitoring queueing systems, esp. PBS/torque. It tries to fit as much information as possible in your screen's real estate, by stitching together the output of commands like pbsnodes -a, qstat & qstat -q. It is possible to write wrappers for other platforms -people have done so for SGE, OAR etc- or, even examine traces offline and present the sampled information. - -*homepage*: - -version|versionsuffix|toolchain --------|-------------|---------- -``53`` |``-1`` |``system`` - -### QtPy - -QtPy is a small abstraction layer that lets you write applications using a single API call to either PyQt or PySide. It provides support for PyQt5, PyQt4, PySide2 and PySide. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------ -``1.9.0``| |``GCCcore/10.2.0`` -``1.9.0``|``-Python-3.7.4``|``GCCcore/8.3.0`` -``2.2.1``| |``GCCcore/11.2.0`` -``2.3.0``| |``GCCcore/11.3.0`` -``2.4.1``| |``GCCcore/12.3.0`` - -### Qualimap - -Qualimap 2 is a platform-independent application written in Java and R that provides both a Graphical User Inteface (GUI) and a command-line interface to facilitate the quality control of alignment sequencing data and its derivatives like feature counts. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``2.2.1``|``-R-3.6.0`` |``foss/2019a`` -``2.2.1``|``-R-4.0.3`` |``foss/2020b`` -``2.2.1``|``-R-4.1.2`` |``foss/2021b`` - -### Quandl - -A Python library for Quandl’s RESTful API. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------------------ -``3.4.2``|``-Python-3.6.4``|``intel/2018a`` -``3.4.8``| |``foss/2019a`` -``3.6.1``| |``foss/2020b``, ``foss/2021a`` - -### QuantumESPRESSO - -Quantum ESPRESSO is an integrated suite of computer codes for electronic-structure calculations and materials modeling at the nanoscale. It is based on density-functional theory, plane waves, and pseudopotentials (both norm-conserving and ultrasoft). - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|------------------------------------------------------------------------------------------------- -``5.3.0``| |``intel/2016.02-GCC-4.9`` -``5.4.0``| |``intel/2016.02-GCC-4.9`` -``5.4.0``|``-hybrid`` |``foss/2016b`` -``6.0`` | |``intel/2016b`` -``6.1`` | |``intel/2017a`` -``6.2`` | |``intel/2017b`` -``6.2.1``| |``iomkl/2017b`` -``6.3`` | |``foss/2018b``, ``intel/2018b`` -``6.4.1``| |``intel/2019a`` -``6.5`` | |``intel/2019a``, ``intel/2019b`` -``6.6`` | |``foss/2019b``, ``foss/2020a``, ``foss/2020b``, ``intel/2019b``, ``intel/2020a`` -``6.7`` | |``foss/2019b``, ``foss/2020b``, ``foss/2021a``, ``intel/2019b``, ``intel/2021a``, ``iomkl/2019b`` -``6.8`` | |``foss/2021a``, ``foss/2021b``, ``intel/2021a`` -``7.0`` | |``foss/2021b``, ``intel/2021b`` -``7.1`` | |``foss/2022a``, ``intel/2022a`` -``7.2`` | |``foss/2022b``, ``foss/2023a``, ``intel/2022b`` -``7.3`` | |``foss/2023a``, ``intel/2023a`` - -### QUAST - -QUAST evaluates genome assemblies by computing various metrics. It works both with and without reference genomes. The tool accepts multiple assemblies, thus is suitable for comparison. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|---------------------------------------------- -``4.6.0``|``-Python-3.5.2`` |``foss/2016b`` -``4.6.3``|``-Python-3.6.4`` |``foss/2018a`` -``5.0.2``| |``foss/2020b``, ``foss/2021a``, ``foss/2021b`` -``5.0.2``|``-Python-2.7.15``|``foss/2018b``, ``foss/2019a`` -``5.0.2``|``-Python-2.7.18``|``foss/2020b`` -``5.0.2``|``-Python-3.7.2`` |``foss/2019a`` -``5.0.2``|``-Python-3.8.2`` |``foss/2020a`` -``5.2.0``| |``foss/2022a`` - -### QuaZIP - -QuaZIP is the C++ wrapper for Gilles Vollant's ZIP/UNZIP package (AKA Minizip) using Trolltech's Qt library. - -*homepage*: - -version |toolchain ----------|----------------- -``0.8.1``|``GCCcore/8.2.0`` - -### QuickFF - -QuickFF is a Python package developed at the Center for Molecular Modeling (CMM) to quickly derive accurate force fields from ab initio calculations. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``2.1.4``|``-Python-2.7.12``|``intel/2016b`` -``2.2.0``|``-Python-2.7.14``|``intel/2017b`` -``2.2.4``|``-Python-3.7.2`` |``intel/2019a`` -``2.2.4``|``-Python-3.8.2`` |``intel/2020a`` -``2.2.7``| |``foss/2023a`` -``2.2.7``|``-Python-3.8.2`` |``intel/2020a`` - -### QuickPIC - -QuickPIC is a 3D parallel (MPI & OpenMP Hybrid) Quasi-Static PIC code, which is developed based on the framework UPIC. QuickPIC can efficiently simulate plasma based accelerator problems. This is the UCLA Plasma Simulation Group's official open-source repository for QuickPIC. - -*homepage*: - -version |toolchain -------------|--------------- -``20210224``|``gompi/2021b`` - -### QuickTree - -QuickTree is an efficient implementation of the Neighbor-Joining algorithm (PMID: 3447015), capable of reconstructing phylogenies from huge alignments in time less than the age of the universe. - -*homepage*: - -version|toolchain --------|-------------- -``2.5``|``GCC/12.2.0`` - -### Quip - -Quip compresses next-generation sequencing data with extreme prejudice. It supports input and output in the FASTQ and SAM/BAM formats, compressing large datasets to as little as 15% of their original size. - -*homepage*: - -version |toolchain ----------|------------- -``1.1.8``|``GCC/4.8.2`` - -### Quorum - -QuorUM is an error corrector for Illumina reads - -*homepage*: - -version |toolchain ----------|--------------- -``1.1.1``|``intel/2017a`` - -### QuPath - -QuPath is open source software for bioimage analysis. QuPath is often used for digital pathology applications because it offers a powerful set of tools for working with whole slide images - but it can be applied to lots of other kinds of image as well. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|------------------ -``0.5.0``|``-Java-17`` |``GCCcore/12.3.0`` - -### QuTiP - -QuTiP is open-source software for simulating the dynamics of open quantum systems. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``4.1.0``|``-Python-2.7.12``|``intel/2016b`` -``4.3.1``|``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` - -### Qwt - -The Qwt library contains GUI Components and utility classes which are primarily useful for programs with a technical background. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------- -``6.1.2``|``intel/2016a`` -``6.1.3``|``foss/2016b``, ``intel/2016b`` -``6.1.4``|``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``foss/2018b`` -``6.1.5``|``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``6.2.0``|``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/12.2.0`` - -### QwtPolar - -The QwtPolar library contains classes for displaying values on a polar coordinate system. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------------------- -``1.1.1``|``GCCcore/10.2.0``, ``GCCcore/8.2.0``, ``foss/2016b``, ``intel/2016b`` - -## R - - -[R](#r) - [R-bundle-Bioconductor](#r-bundle-bioconductor) - [R-bundle-CRAN](#r-bundle-cran) - [R-INLA](#r-inla) - [R-keras](#r-keras) - [R-MXM](#r-mxm) - [R-opencv](#r-opencv) - [R-tesseract](#r-tesseract) - [R-transport](#r-transport) - [R2jags](#r2jags) - [Racon](#racon) - [radeontop](#radeontop) - [radian](#radian) - [RaGOO](#ragoo) - [Ragout](#ragout) - [RagTag](#ragtag) - [rampart](#rampart) - [randfold](#randfold) - [randrproto](#randrproto) - [rapidcsv](#rapidcsv) - [RapidJSON](#rapidjson) - [rapidNJ](#rapidnj) - [rapidtide](#rapidtide) - [RAPSearch2](#rapsearch2) - [Raptor](#raptor) - [Rascaf](#rascaf) - [RASPA2](#raspa2) - [rasterio](#rasterio) - [rasterstats](#rasterstats) - [Ratatosk](#ratatosk) - [Raven](#raven) - [RAxML](#raxml) - [RAxML-NG](#raxml-ng) - [Ray-assembler](#ray-assembler) - [Ray-project](#ray-project) - [Raysect](#raysect) - [RBFOpt](#rbfopt) - [RCall](#rcall) - [rclone](#rclone) - [Rcorrector](#rcorrector) - [RcppGSL](#rcppgsl) - [rCUDA](#rcuda) - [RDFlib](#rdflib) - [RDKit](#rdkit) - [RDP-Classifier](#rdp-classifier) - [RE2](#re2) - [re2c](#re2c) - [Reads2snp](#reads2snp) - [Reapr](#reapr) - [ReaxFF](#reaxff) - [RECON](#recon) - [Red](#red) - [Redis](#redis) - [redis-py](#redis-py) - [Redundans](#redundans) - [ReFrame](#reframe) - [regionmask](#regionmask) - [RegTools](#regtools) - [Relate](#relate) - [RELION](#relion) - [remake](#remake) - [ReMatCh](#rematch) - [REMORA](#remora) - [renderproto](#renderproto) - [RepastHPC](#repasthpc) - [RepeatMasker](#repeatmasker) - [RepeatModeler](#repeatmodeler) - [RepeatScout](#repeatscout) - [request](#request) - [requests](#requests) - [RERconverge](#rerconverge) - [ResistanceGA](#resistancega) - [resolos](#resolos) - [Restrander](#restrander) - [rethinking](#rethinking) - [retworkx](#retworkx) - [RevBayes](#revbayes) - [RFdiffusion](#rfdiffusion) - [rgdal](#rgdal) - [rgeos](#rgeos) - [Rgurobi](#rgurobi) - [rhdf5](#rhdf5) - [RHEIA](#rheia) - [RheoTool](#rheotool) - [Rhodium](#rhodium) - [rickflow](#rickflow) - [RInChI](#rinchi) - [rioxarray](#rioxarray) - [ripunzip](#ripunzip) - [rising](#rising) - [Rivet](#rivet) - [rjags](#rjags) - [RLCard](#rlcard) - [rmarkdown](#rmarkdown) - [Rmath](#rmath) - [rMATS-turbo](#rmats-turbo) - [RMBlast](#rmblast) - [RNA-Bloom](#rna-bloom) - [RNA-SeQC](#rna-seqc) - [RNAclust](#rnaclust) - [RNAcode](#rnacode) - [RNAIndel](#rnaindel) - [RNAmmer](#rnammer) - [rnaQUAST](#rnaquast) - [RNAz](#rnaz) - [RnBeads](#rnbeads) - [Roary](#roary) - [ROCm](#rocm) - [rocm-cmake](#rocm-cmake) - [ROCm-CompilerSupport](#rocm-compilersupport) - [rocm-smi](#rocm-smi) - [rocminfo](#rocminfo) - [ROCR-Runtime](#rocr-runtime) - [ROCT-Thunk-Interface](#roct-thunk-interface) - [ROI_PAC](#roi_pac) - [ROME](#rome) - [ROOT](#root) - [root_numpy](#root_numpy) - [rootpy](#rootpy) - [Rosetta](#rosetta) - [rpmrebuild](#rpmrebuild) - [RPostgreSQL](#rpostgresql) - [rpy2](#rpy2) - [RQGIS3](#rqgis3) - [RSEM](#rsem) - [RSeQC](#rseqc) - [RStan](#rstan) - [rstanarm](#rstanarm) - [RStudio-Server](#rstudio-server) - [RTG-Tools](#rtg-tools) - [Rtree](#rtree) - [ruamel.yaml](#ruamel.yaml) - [Ruby](#ruby) - [Ruby-Tk](#ruby-tk) - [ruffus](#ruffus) - [ruptures](#ruptures) - [Rust](#rust) - [rustworkx](#rustworkx) - - -### R - -R is a free software environment for statistical computing and graphics. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------------------|--------------------------------------------------- -``3.2.3``| |``foss/2016a``, ``foss/2016b``, ``intel/2016a`` -``3.2.3``|``-bare`` |``foss/2016a``, ``intel/2016a`` -``3.2.3``|``-libX11-1.6.3`` |``intel/2016a`` -``3.3.1``| |``foss/2016a``, ``foss/2016b``, ``intel/2016b`` -``3.3.3``|``-X11-20160819`` |``foss/2016b``, ``intel/2016b`` -``3.3.3``|``-X11-20170314`` |``intel/2017a`` -``3.4.0``|``-X11-20170314`` |``intel/2017a`` -``3.4.1``|``-X11-20160819`` |``foss/2016b`` -``3.4.3``|``-X11-20171023`` |``foss/2017b``, ``intel/2017b`` -``3.4.3``|``-X11-20171023-HDF5-1.8.19``|``intel/2017b`` -``3.4.4``|``-X11-20180131`` |``foss/2018a``, ``intel/2018a``, ``iomkl/2018a`` -``3.5.0``|``-X11-20180131`` |``iomkl/2018a`` -``3.5.1``| |``foss/2018b``, ``intel/2018b`` -``3.5.1``|``-Python-2.7.15`` |``foss/2018b`` -``3.5.1``|``-bare`` |``foss/2018b`` -``3.6.0``| |``foss/2019a``, ``fosscuda/2019a``, ``intel/2019a`` -``3.6.2``| |``foss/2019b``, ``fosscuda/2019b``, ``intel/2019b`` -``3.6.3``| |``foss/2020a`` -``4.0.0``| |``foss/2020a``, ``fosscuda/2020a`` -``4.0.3``| |``foss/2020b``, ``fosscuda/2020b`` -``4.0.4``| |``foss/2020b``, ``fosscuda/2020b`` -``4.0.5``| |``foss/2020b``, ``fosscuda/2020b`` -``4.1.0``| |``foss/2021a`` -``4.1.2``| |``foss/2021b`` -``4.2.0``| |``foss/2021b`` -``4.2.1``| |``foss/2022a`` -``4.2.2``| |``foss/2022b`` -``4.3.2``| |``gfbf/2023a`` -``4.3.3``| |``gfbf/2023b`` - -### R-bundle-Bioconductor - -Bioconductor provides tools for the analysis and coprehension of high-throughput genomic data. - -*homepage*: - -version |versionsuffix|toolchain ---------|-------------|------------------------------- -``3.2`` |``-R-3.2.3`` |``foss/2016a``, ``intel/2016a`` -``3.3`` |``-R-3.3.1`` |``intel/2016b`` -``3.5`` |``-R-3.4.0`` |``intel/2017a`` -``3.6`` |``-R-3.4.3`` |``foss/2017b``, ``intel/2017b`` -``3.6`` |``-R-3.4.4`` |``intel/2018a`` -``3.7`` |``-R-3.5.0`` |``iomkl/2018a`` -``3.7`` |``-R-3.5.1`` |``foss/2018b`` -``3.8`` |``-R-3.5.1`` |``foss/2018b`` -``3.9`` |``-R-3.6.0`` |``foss/2019a`` -``3.10``| |``foss/2019b`` -``3.11``|``-R-4.0.0`` |``foss/2020a`` -``3.12``|``-R-4.0.3`` |``foss/2020b`` -``3.13``|``-R-4.1.0`` |``foss/2021a`` -``3.14``|``-R-4.1.2`` |``foss/2021b`` -``3.15``|``-R-4.2.0`` |``foss/2021b`` -``3.15``|``-R-4.2.1`` |``foss/2022a`` -``3.16``|``-R-4.2.2`` |``foss/2022b`` -``3.18``|``-R-4.3.2`` |``foss/2023a`` - -### R-bundle-CRAN - -Bundle of R packages from CRAN - -*homepage*: - -version |toolchain ------------|-------------- -``2023.12``|``foss/2023a`` - -### R-INLA - -R-INLA is a package in R that do approximate Bayesian inference for Latent Gaussian Models. - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|-------------- -``21.05.02``|``-R-4.0.4`` |``foss/2020b`` - -### R-keras - -Interface to 'Keras' , a high-level neural networks 'API'. - -*homepage*: - -version |versionsuffix |toolchain ------------|-------------------------|---------------------------------- -``2.1.6`` |``-R-3.4.4`` |``foss/2018a`` -``2.2.5.0``|``-Python-3.7.2-R-3.6.0``|``foss/2019a``, ``fosscuda/2019a`` -``2.2.5.0``|``-Python-3.7.4-R-3.6.2``|``foss/2019b``, ``fosscuda/2019b`` -``2.4.0`` |``-R-4.0.4`` |``foss/2020b``, ``fosscuda/2020b`` - -### R-MXM - -MXM: Feature Selection (Including Multiple Solutions) and Bayesian Networks - -*homepage*: - -version |toolchain ----------|-------------- -``1.5.5``|``foss/2021b`` - -### R-opencv - -Experimenting with computer vision and machine learning in R. This package exposes some of the available OpenCV algorithms, such as edge, body or face detection. These can either be applied to analyze static images, or to filter live video footage from a camera device. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``0.2.0``|``-R-4.0.0`` |``foss/2020a`` - -### R-tesseract - -The R extension for using tesseract - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``4.0`` |``-R-3.5.1`` |``foss/2018b`` -``5.1.0``|``-R-4.2.1`` |``foss/2022a`` - -### R-transport - -transport: Computation of Optimal Transport Plans and Wasserstein Distances - -*homepage*: - -version |toolchain -----------|-------------- -``0.13-0``|``foss/2021b`` - -### R2jags - -Providing wrapper functions to implement Bayesian analysis in JAGS. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``0.7-1``|``-R-4.2.1`` |``foss/2022a`` - -### Racon - -Ultrafast consensus module for raw de novo genome assembly of long uncorrected reads. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------ -``1.3.2`` |``GCCcore/8.2.0`` -``1.4.7`` |``GCCcore/8.2.0``, ``gcccuda/2019b`` -``1.4.10``|``GCC/7.3.0-2.30`` -``1.4.13``|``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.4.21``|``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``1.5.0`` |``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### radeontop - -View your GPU utilization, both for the total activity percent and individual blocks. - -*homepage*: - -version|toolchain --------|------------------ -``1.3``|``GCCcore/10.3.0`` - -### radian - -radian is an alternative console for the R program with multiline editing and rich syntax highlight. - -*homepage*: - -version |toolchain ----------|-------------- -``0.6.9``|``foss/2022b`` - -### RaGOO - -A tool to order and orient genome assembly contigs via Minimap2 alignments to a reference genome - -*homepage*: - -version |versionsuffix |toolchain ---------|-----------------|-------------- -``1.11``|``-Python-3.6.6``|``foss/2018b`` - -### Ragout - -Ragout (Reference-Assisted Genome Ordering UTility) is a tool for chromosome-level scaffolding using multiple references. Given initial assembly fragments (contigs/scaffolds) and one or multiple related references (complete or draft), it produces a chromosome-scale assembly (as a set of scaffolds). - -*homepage*: - -version|versionsuffix |toolchain --------|------------------|-------------- -``2.0``|``-Python-2.7.12``|``foss/2016b`` -``2.3``| |``foss/2020b`` - -### RagTag - -RagTag is a collection of software tools for scaffolding and improving modern genome assemblies. Tasks include: homology-based misassembly correction, homology-based assembly scaffolding and patching, and scaffold merging. RagTag also provides command line utilities for working with common genome assembly file formats. - -*homepage*: - -version |toolchain ----------|-------------- -``2.0.1``|``foss/2020b`` -``2.1.0``|``foss/2022a`` - -### rampart - -Read Assignment, Mapping, and Phylogenetic Analysis in Real Time. - -*homepage*: - -version |versionsuffix |toolchain -------------|-----------------|-------------- -``1.2.0`` | |``foss/2020b`` -``1.2.0rc3``|``-Python-3.6.6``|``foss/2018b`` - -### randfold - -Minimum free energy of folding randomization test software - -*homepage*: - -version |toolchain ----------|------------------------------- -``2.0.1``|``foss/2018b``, ``intel/2016b`` - -### randrproto - -Xrandr protocol and ancillary headers - -*homepage*: - -version |toolchain ----------|------------------------------- -``1.5.0``|``foss/2016a``, ``intel/2016a`` - -### rapidcsv - -Rapidcsv is a C++ header-only library for CSV parsing. While the name admittedly was inspired by the rapidjson project, the objectives are not the same. The goal of rapidcsv is to be an easy-to-use CSV library enabling rapid development. For optimal performance (be it CPU or memory usage) a CSV parser implemented for the specific use-case is likely to be more performant. - -*homepage*: - -version |toolchain ---------|------------------ -``8.62``|``GCCcore/11.2.0`` -``8.64``|``GCCcore/11.3.0`` - -### RapidJSON - -A fast JSON parser/generator for C++ with both SAX/DOM style API - -*homepage*: - -version |toolchain -------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.1.0`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.1.0-20230928``|``GCCcore/12.3.0`` - -### rapidNJ - -RapidNJ is an algorithmic engineered implementation of canonical neighbour-joining. It uses an efficient search heuristic to speed-up the core computations of the neighbour-joining method that enables RapidNJ to outperform other state-of-the-art neighbour-joining implementations. - -*homepage*: - -version |toolchain ----------|------------------ -``2.3.3``|``GCCcore/11.3.0`` - -### rapidtide - -Rapidtide is a suite of python programs used to perform time delay analysis on functional imaging data to find time lagged correlations between the voxelwise time series and other time series. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``1.8.0``|``-Python-3.7.2``|``intel/2019a`` - -### RAPSearch2 - -RAPSearch stands for Reduced Alphabet based Protein similarity Search - -*homepage*: - -version |toolchain ---------|------------- -``2.24``|``GCC/9.3.0`` - -### Raptor - -Set of parsers and serializers that generate Resource Description Framework (RDF) triples by parsing syntaxes or serialize the triples into a syntax. - -*homepage*: - -version |toolchain -----------|------------------ -``2.0.16``|``GCCcore/10.3.0`` - -### Rascaf - -Rascaf (RnA-seq SCAFfolder) uses continuity and order information from paired-end RNA-seq reads to improve a draft assembly, particularly in the gene regions. - -*homepage*: - -version |toolchain ----------|--------------- -``1.0.2``|``intel/2017a`` - -### RASPA2 - -RASPA is a software package for simulating adsorption and diffusion of molecules in flexible nanoporous materials. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``2.0.3`` |``-Python-2.7.12``|``intel/2016b`` -``2.0.41``| |``foss/2020b`` -``2.0.47``| |``foss/2022a`` - -### rasterio - -Rasterio reads and writes geospatial raster data. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``1.1.7`` |``-Python-3.8.2``|``foss/2020a`` -``1.2.3`` | |``foss/2020b`` -``1.2.10``| |``foss/2021b`` -``1.3.4`` | |``foss/2022a`` -``1.3.8`` | |``foss/2022b`` -``1.3.9`` | |``foss/2023a`` - -### rasterstats - -rasterstats is a Python module for summarizing geospatial raster datasets based on vector geometries. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``0.15.0``|``-Python-3.8.2``|``foss/2020a`` -``0.19.0``| |``foss/2022a`` - -### Ratatosk - -Phased hybrid error correction of long reads using colored de Bruijn graphs - -*homepage*: - -version|toolchain --------|-------------- -``0.4``|``GCC/10.2.0`` - -### Raven - -Raven is a de novo genome assembler for long uncorrected reads. - -*homepage*: - -version |toolchain ----------|-------------- -``1.8.1``|``GCC/11.2.0`` - -### RAxML - -RAxML search algorithm for maximum likelihood based inference of phylogenetic trees. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------------------------------------------------------------------------------------------------------------- -``8.2.4`` |``-hybrid-avx2`` |``foss/2016a`` -``8.2.9`` |``-hybrid-avx2`` |``foss/2016a`` -``8.2.10``|``-hybrid-avx2`` |``intel/2017a`` -``8.2.11``|``-hybrid-avx`` |``foss/2017b``, ``intel/2017b`` -``8.2.11``|``-hybrid-avx2`` |``foss/2017b``, ``intel/2017b``, ``intel/2018a`` -``8.2.11``|``-hybrid-sse3`` |``foss/2017b``, ``intel/2017b`` -``8.2.12``|``-avx2`` |``gompi/2022b`` -``8.2.12``|``-hybrid-avx2`` |``gompi/2020a``, ``gompi/2020b``, ``gompi/2021a``, ``gompi/2021b``, ``iimpi/2019b``, ``intel/2018b``, ``intel/2019a`` -``8.2.12``|``-pthreads-avx2``|``GCC/10.2.0`` - -### RAxML-NG - -RAxML-NG is a phylogenetic tree inference tool which uses maximum-likelihood (ML) optimality criterion. Its search heuristic is based on iteratively performing a series of Subtree Pruning and Regrafting (SPR) moves, which allows to quickly navigate to the best-known ML tree. - -*homepage*: - -version |toolchain ----------|------------------------------ -``0.9.0``|``GCC/8.3.0``, ``gompi/2019b`` -``1.0.1``|``gompi/2019b`` -``1.0.2``|``gompi/2020b`` -``1.0.3``|``GCC/10.2.0`` -``1.1.0``|``GCC/11.2.0`` -``1.2.0``|``GCC/12.2.0``, ``GCC/12.3.0`` - -### Ray-assembler - -Parallel genome assemblies for parallel DNA sequencing - -*homepage*: - -version |toolchain ----------|--------------- -``2.3.1``|``iimpi/2019a`` - -### Ray-project - -Ray is a fast and simple framework for building and running distributed applications. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------------------ -``0.8.4`` |``-Python-3.7.4``|``foss/2019b`` -``1.0.1`` |``-Python-3.7.4``|``fosscuda/2019b`` -``1.9.2`` | |``foss/2021b`` -``1.13.0``| |``foss/2021a``, ``foss/2021b`` -``2.2.0`` | |``foss/2022a`` - -### Raysect - -Raysect is an OOP ray-tracing framework for Python - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------------------- -``0.6.0``|``-Python-3.6.6``|``intel/2018b`` -``0.7.1``| |``foss/2020b``, ``intel/2020b`` - -### RBFOpt - -RBFOpt is a Python library for black-box optimization (also known as derivative-free optimization). - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``4.1.1``| |``intel/2019a`` -``4.1.1``|``-Python-3.6.6``|``intel/2018b`` - -### RCall - -This package facilitates communication between R and Julia and allows the user to call R packages from within Julia, providing the best of both worlds. - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------------|-------------- -``0.13.17``|``-R-4.2.1-Julia-1.9.2``|``foss/2022a`` - -### rclone - -Rclone is a command line program to sync files and directories to and from a variety of online storage services - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|---------- -``1.42`` |``-amd64`` |``system`` -``1.54.1``|``-amd64`` |``system`` -``1.56.0``|``-amd64`` |``system`` -``1.57.0``| |``system`` -``1.63.1``|``-amd64`` |``system`` -``1.65.2``| |``system`` -``1.66.0``| |``system`` - -### Rcorrector - -Rcorrector(RNA-seq error CORRECTOR) is a kmer-based error correction method for RNA-seq data. - -*homepage*: - -version |toolchain ----------|--------------- -``1.0.2``|``intel/2017a`` - -### RcppGSL - -The 'RcppGSL' package provides an easy-to-use interface between 'GSL' data structures and R using concepts from 'Rcpp' which is itself a package that eases the interfaces between R and C++. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``0.3.8``|``-R-4.0.4`` |``foss/2020b`` - -### rCUDA - -The rCUDA Framework enables the concurrent usage of CUDA-compatible devices remotely. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------------------|---------- -``4.0.1``|``_linux_64_Ubuntu10.04`` |``system`` -``5.0`` |``_linux_64_scientificLinux6``|``system`` - -### RDFlib - -RDFLib is a Python library for working with RDF, a simple yet powerful language for representing information. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``4.2.2``|``GCCcore/8.3.0``, ``foss/2019a`` -``5.0.0``|``GCCcore/10.2.0`` -``6.2.0``|``GCCcore/10.3.0``, ``GCCcore/11.3.0`` -``7.0.0``|``GCCcore/12.3.0`` - -### RDKit - -RDKit is a collection of cheminformatics and machine-learning software written in C++ and Python. - -*homepage*: - -version |versionsuffix |toolchain --------------|-----------------|------------------------------- -``2018.09.3``|``-Python-3.6.6``|``intel/2018b`` -``2019.09.3``|``-Python-3.7.4``|``foss/2019b`` -``2020.03.3``|``-Python-3.8.2``|``foss/2020a``, ``intel/2020a`` -``2020.09.3``|``-Python-3.7.4``|``foss/2019b`` -``2021.03.4``| |``foss/2021a`` -``2022.03.5``| |``foss/2021b`` -``2022.09.4``| |``foss/2022a`` -``2023.03.3``| |``foss/2021a`` - -### RDP-Classifier - -The RDP Classifier is a naive Bayesian classifier that can rapidly and accurately provides taxonomic assignments from domain to genus, with confidence estimates for each assignment. - -*homepage*: - -version |versionsuffix |toolchain ---------|------------------|---------- -``2.7`` |``-Java-1.7.0_60``|``system`` -``2.12``|``-Java-1.8`` |``system`` -``2.13``|``-Java-11`` |``system`` -``2.13``|``-Java-17`` |``system`` - -### RE2 - -RE2 is a fast, safe, thread-friendly alternative to backtracking regular expression engines like those used in PCRE, Perl, and Python. It is a C++ library. - -*homepage*: - -version |toolchain ---------------|-------------------------------------- -``2020-07-01``|``GCCcore/8.3.0`` -``2021-06-01``|``GCCcore/10.2.0`` -``2022-02-01``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``2022-06-01``|``GCCcore/11.3.0`` -``2023-03-01``|``GCCcore/12.2.0`` -``2023-08-01``|``GCCcore/12.3.0`` -``2024-03-01``|``GCCcore/13.2.0`` - -### re2c - -re2c is a free and open-source lexer generator for C and C++. Its main goal is generating fast lexers: at least as fast as their reasonably optimized hand-coded counterparts. Instead of using traditional table-driven approach, re2c encodes the generated finite state automata directly in the form of conditional jumps and comparisons. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``1.1.1``|``GCCcore/8.2.0`` -``1.2.1``|``GCCcore/8.3.0`` -``1.3`` |``GCCcore/9.3.0`` -``2.0.3``|``GCCcore/10.2.0`` -``2.1.1``|``GCCcore/10.3.0`` -``2.2`` |``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``3.0`` |``GCCcore/12.2.0`` -``3.1`` |``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### Reads2snp - -reads2snp is a SNP and genotype caller: it predicts the genotype of distinct individuals at distinct positions of a set of sequences based on read mapping / read counts. Its typical input is a bam file. Its typical output is a vcf file. It is written in C++, based on the bio++ libraries, multi-threaded with openMP, available under Linux and MacOS - -*homepage*: - -version|toolchain --------|---------- -``2.0``|``system`` - -### Reapr - -A tool that evaluates the accuracy of a genome assembly using mapped paired end reads, without the use of a reference genome for comparison. - -*homepage*: - -version |toolchain -----------|-------------- -``1.0.18``|``foss/2019a`` - -### ReaxFF - -simulation code of the REAXFF Reactive force field program - -*homepage*: - -version|versionsuffix|toolchain --------|-------------|-------------- -``2.0``|``-param`` |``GCC/11.3.0`` -``2.0``|``-sim`` |``GCC/11.3.0`` - -### RECON - -Patched version of RECON to be used with RepeatModeler. - -*homepage*: - -version |toolchain ---------|------------------------------ -``1.08``|``GCC/10.2.0``, ``GCC/11.3.0`` - -### Red - -Red (REpeat Detector) - -*homepage*: - -version |toolchain ---------------|---------------------------------------- -``2015-05-22``|``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` - -### Redis - -Redis is an open source (BSD licensed), in-memory data structure store, used as a database, cache, and message broker. Redis provides data structures such as strings, hashes, lists, sets, sorted sets with range queries, bitmaps, hyperloglogs, geospatial indexes, and streams. Redis has built-in replication, Lua scripting, LRU eviction, transactions, and different levels of on-disk persistence, and provides high availability via Redis Sentinel and automatic partitioning with Redis Cluster. - -*homepage*: - -version |toolchain ----------|------------------------------ -``6.2.6``|``GCC/10.3.0``, ``GCC/11.2.0`` -``7.0.8``|``GCC/11.3.0`` -``7.2.3``|``GCCcore/12.3.0`` -``7.2.4``|``GCCcore/13.2.0`` - -### redis-py - -The Python interface to the Redis key-value store. - -*homepage*: - -version |toolchain ----------|------------------ -``4.3.1``|``foss/2021a`` -``4.3.3``|``foss/2021b`` -``4.5.1``|``foss/2022a`` -``5.0.1``|``GCCcore/12.3.0`` - -### Redundans - -Redundans is a pipeline that assists an assembly of heterozygous/polymorphic genomes. - -*homepage*: - -version |toolchain ----------|--------------- -``0.13c``|``intel/2017b`` - -### ReFrame - -ReFrame is a framework for writing regression tests for HPC systems. - -*homepage*: - -version |toolchain -----------|---------- -``2.18`` |``system`` -``2.19`` |``system`` -``2.20`` |``system`` -``2.21`` |``system`` -``3.0`` |``system`` -``3.2`` |``system`` -``3.3`` |``system`` -``3.4.1`` |``system`` -``3.5.0`` |``system`` -``3.5.1`` |``system`` -``3.5.2`` |``system`` -``3.6.2`` |``system`` -``3.6.3`` |``system`` -``3.7.3`` |``system`` -``3.8.0`` |``system`` -``3.9.0`` |``system`` -``3.9.1`` |``system`` -``3.10.1``|``system`` -``3.11.0``|``system`` -``3.11.1``|``system`` -``3.11.2``|``system`` -``3.12.0``|``system`` -``4.0.1`` |``system`` -``4.0.5`` |``system`` -``4.2.0`` |``system`` -``4.3.2`` |``system`` -``4.3.3`` |``system`` - -### regionmask - -regionmask creates masks of geographical regions. It determines to which geographic region each grid point belongs. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------------------ -``0.9.0`` | |``foss/2021b``, ``foss/2022a`` -``0.9.0`` |``-Python-3.8.2``|``foss/2020a`` -``0.10.0``| |``foss/2022b`` - -### RegTools - -RegTools is a set of tools that integrate DNA-seq and RNA-seq data to help interpret mutations in a regulatory and splicing context. - -*homepage*: - -version |toolchain ----------|------------------------------ -``0.4.2``|``foss/2020b`` -``0.5.2``|``foss/2020b``, ``foss/2021b`` -``1.0.0``|``foss/2022b`` - -### Relate - -Software for estimating genome-wide genealogies for thousands of samples - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|-------------- -``20211123``|``-R-4.0.3`` |``foss/2020b`` - -### RELION - -RELION (for REgularised LIkelihood OptimisatioN, pronounce rely-on) is a stand-alone computer program that employs an empirical Bayesian approach to refinement of (multiple) 3D reconstructions or 2D class averages in electron cryo-microscopy (cryo-EM). - -*homepage*: - -version |versionsuffix |toolchain ------------------------|----------------|------------------------------------------------------------------------------------------------------------ -``1.4`` | |``intel/2016b`` -``1.4`` |``-single`` |``intel/2016b`` -``2.0.1`` | |``intel/2016b`` -``2.1`` | |``foss/2017b``, ``foss/2018a``, ``fosscuda/2017b``, ``fosscuda/2018a``, ``intel/2017b``, ``intelcuda/2017b`` -``2.1`` |``-CUDA-9.1.85``|``foss/2018a`` -``3.0.4`` | |``foss/2017b``, ``intel/2017b`` -``3.0_beta.2018.08.02``| |``fosscuda/2018a``, ``intel/2018a`` - -### remake - -remake is an enhanced version of GNU Make that adds improved error reporting, better tracing, profiling and a debugger - -*homepage*: - -version |toolchain ----------------|------------------ -``4.3+dbg-1.6``|``GCCcore/11.3.0`` - -### ReMatCh - -Reads mapping against target sequences, checking mapping and consensus sequences production - -*homepage*: - -version|versionsuffix |toolchain --------|------------------|-------------- -``3.2``|``-Python-2.7.12``|``foss/2016b`` - -### REMORA - -REsource MOnitoring for Remote Applications - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------------- -``1.8.2``|``foss/2017a``, ``foss/2018a``, ``intel/2017a``, ``intel/2018a`` -``1.8.3``|``gompi/2019a`` - -### renderproto - -Xrender protocol and ancillary headers - -*homepage*: - -version |toolchain ---------|------------------------------------------------------------------ -``0.11``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a``, ``intel/2017b`` - -### RepastHPC - -The Repast Suite is a family of advanced, free, and open source agent-based modeling and simulation platforms that have collectively been under continuous development for over 15 years: Repast for High Performance Computing 2.2.0, released on 30 September 2016, is a lean and expert-focused C++-based modeling system that is designed for use on large computing clusters and supercomputers. - -*homepage*: - -version |toolchain ----------|-------------- -``2.2.0``|``foss/2016a`` - -### RepeatMasker - -RepeatMasker is a program that screens DNA sequences for interspersed repeats and low complexity DNA sequences. - -*homepage*: - -version |versionsuffix |toolchain -------------|----------------------|---------------------------------------------------------- -``4.0.8`` |``-Perl-5.26.0-HMMER``|``GCC/6.4.0-2.28``, ``iccifort/2017.4.196-GCC-6.4.0-2.28`` -``4.0.8`` |``-Perl-5.28.0-HMMER``|``intel/2018b`` -``4.0.9-p2``|``-HMMER`` |``gompi/2019b`` -``4.1.2-p1``| |``foss/2020b`` -``4.1.4`` | |``foss/2022a`` -``4.1.5`` | |``foss/2021a``, ``foss/2022a`` - -### RepeatModeler - -RepeatModeler is a de novo transposable element (TE) family identification and modeling package. - -*homepage*: - -version |toolchain -----------|-------------- -``2.0.2a``|``foss/2020b`` -``2.0.4`` |``foss/2022a`` - -### RepeatScout - -De Novo Repeat Finder, Price A.L., Jones N.C. and Pevzner P.A. Developed and tested with our multiple sequence version of RepeatScout ( 1.0.6 ) - -*homepage*: - -version |toolchain ----------|------------------------------ -``1.0.6``|``GCC/10.2.0``, ``GCC/11.3.0`` - -### request - -Request is designed to be the simplest way possible to make http calls. It supports HTTPS and follows redirects by default. - -*homepage*: - -version |versionsuffix |toolchain -----------|-------------------|------------------ -``2.88.1``|``-nodejs-12.19.0``|``fosscuda/2020b`` - -### requests - -Python http for humans - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------- -``2.10.0``|``-Python-2.7.11``|``foss/2016a`` -``2.10.0``|``-Python-3.5.1`` |``foss/2016a`` -``2.11.1``|``-Python-2.7.12``|``intel/2016b`` -``2.11.1``|``-Python-3.5.2`` |``intel/2016b`` -``2.13.0``|``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` - -### RERconverge - -RERconverge is a set of software written in R that estimates the correlation between relative evolutionary rates of genes and the evolution of a convergent binary or continuous trait across a phylogeny. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|------------------------------- -``0.1.0``|``-R-3.4.3`` |``foss/2017b``, ``intel/2017b`` - -### ResistanceGA - -An R package to optimize resistance surfaces using Genetic Algorithms. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------------|-------------- -``4.2-5``|``-R-4.2.1-Julia-1.9.2``|``foss/2022a`` - -### resolos - -Resolos is a toolkit written in Python for maintaining reproducible environments for scientific computations. It's main goal is to enable researchers to easily replicate environments through space (running code on HPC environment) and time (environment preservation for long term archival). For installation and detailed usage, check out the documentation. - -*homepage*: - -version |toolchain ----------|------------------ -``0.3.5``|``GCCcore/11.3.0`` - -### Restrander - -A fast, accurate program for orienting and quality-checking cDNA sequencing reads. - -*homepage*: - -version |toolchain -------------|------------------ -``20230713``|``GCCcore/12.2.0`` - -### rethinking - -R package that contains tools for conducting both quick quadratic approximation of the posterior distribution as well as Hamiltonian Monte Carlo. - -*homepage*: - -version |versionsuffix|toolchain ------------------|-------------|-------------- -``2.40-20230914``|``-R-4.3.2`` |``foss/2023a`` - -### retworkx - -retworkx is a general purpose graph library for python3 written in Rust to take advantage of the performance and safety that Rust provides. It was built as a replacement for qiskit's previous (and current) networkx usage (hence the name) but is designed to provide a high performance general purpose graph library for any python application. The project was originally started to build a faster directed graph to use as the underlying data structure for the DAG at the center of qiskit-terra's transpiler, but it has since grown to cover all the graph usage in Qiskit and other applications. - -*homepage*: - -version |toolchain ----------|-------------- -``0.9.0``|``foss/2021a`` - -### RevBayes - -RevBayes provides an interactive environment for statistical computation in phylogenetics. It is primarily intended for modeling, simulation, and Bayesian inference in evolutionary biology, particularly phylogenetics. - -*homepage*: - -version |toolchain ----------|------------------------------ -``1.1.1``|``GCC/10.2.0``, ``GCC/11.2.0`` -``1.2.1``|``gompi/2022a`` - -### RFdiffusion - -RFdiffusion is an open source method for structure generation, with or without conditional information (a motif, target etc). It can perform a whole range of protein design challenges as we have outlined in the RFdiffusion paper. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``1.1.0``| |``foss/2022a`` -``1.1.0``|``-CUDA-11.7.0``|``foss/2022a`` - -### rgdal - -Provides bindings to the 'Geospatial' Data Abstraction Library ('GDAL') (>= 1.11.4 and <= 2.5.0) and access to projection/transformation operations from the 'PROJ.4' library. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|-------------- -``1.4-4`` |``-R-3.6.0`` |``foss/2019a`` -``1.4-8`` |``-R-3.6.2`` |``foss/2019b`` -``1.4-8`` |``-R-4.0.0`` |``foss/2020a`` -``1.5-16``|``-R-4.0.0`` |``foss/2020a`` -``1.5-23``|``-R-4.0.4`` |``foss/2020b`` -``1.5-23``|``-R-4.1.0`` |``foss/2021a`` -``1.6-6`` | |``foss/2022a`` - -### rgeos - -R interface to Geometry Engine - Open Source (GEOS) using the C API for topology operations on geometries - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|--------------- -``0.3-17``|``-R-3.2.3`` |``intel/2016a`` -``0.5-1`` |``-R-3.6.0`` |``foss/2019a`` -``0.5-2`` |``-R-3.6.2`` |``foss/2019b`` -``0.5-5`` |``-R-4.0.0`` |``foss/2020a`` -``0.5-5`` |``-R-4.1.0`` |``foss/2021a`` - -### Rgurobi - -Gurobi Optimizer 9.5 interface - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``9.1.2``|``-R-4.1.0`` |``foss/2021a`` -``9.5.0``|``-R-4.1.0`` |``foss/2021a`` - -### rhdf5 - -This R/Bioconductor package provides an interface between HDF5 and R. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|--------------- -``2.16.0``|``-R-3.2.3`` |``intel/2016a`` -``2.18.0``|``-R-3.3.1`` |``intel/2016b`` - -### RHEIA - -Robust design optimization of renewable Hydrogen and dErIved energy cArrier systems - -*homepage*: - -version |toolchain ----------|-------------- -``1.1.6``|``foss/2022a`` - -### RheoTool - -RheoTool is an open-source toolbox based on OpenFOAM to simulate Generalized Newtonian Fluids (GNF) and viscoelastic fluids under pressure-driven and/or electrically-driven flows. - -*homepage*: - -version|toolchain --------|-------------- -``5.0``|``foss/2019b`` - -### Rhodium - -Rhodium is an open source Python library for robust decision making (RDM) and multiobjective robust decision making (MORDM), and exploratory modelling (EM). - -*homepage*: - -version |toolchain ----------|-------------- -``1.2.0``|``foss/2022a`` - -### rickflow - -Running and Analyzing OpenMM Jobs - -*homepage*: - -version |versionsuffix |toolchain -------------------|-----------------|--------------- -``0.7.0`` |``-Python-3.7.4``|``intel/2019b`` -``0.7.0-20200529``|``-Python-3.7.4``|``intel/2019b`` - -### RInChI - -The reaction IUPAC International Chemical Identifier (RInChI TM) is a non-proprietary identifier for chemical reactions that can be used in printed and electronic data sources thus enabling easier linking of diverse data compilations. - -*homepage*: - -version |versionsuffix|toolchain ---------|-------------|---------- -``1.00``|``-x86_64`` |``system`` - -### rioxarray - -Geospatial xarray extension powered by rasterio - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|--------------- -``0.0.12``|``-Python-3.7.2``|``intel/2019a`` -``0.0.24``|``-Python-3.7.4``|``foss/2019b`` -``0.1.1`` |``-Python-3.8.2``|``foss/2020a`` -``0.11.1``| |``foss/2021b`` -``0.14.0``| |``foss/2022a`` -``0.15.0``| |``foss/2023a`` - -### ripunzip - -A tool to unzip files in parallel. - -*homepage*: - -version |toolchain ----------|---------- -``0.4.0``|``system`` - -### rising - -Provides everything needed for high performance data loading and augmentation in PyTorch. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|------------------------------ -``0.2.2``| |``foss/2021a``, ``foss/2022a`` -``0.2.2``|``-CUDA-11.3.1``|``foss/2021a`` -``0.2.2``|``-CUDA-11.7.0``|``foss/2022a`` - -### Rivet - -Rivet toolkit (Robust Independent Validation of Experiment and Theory) To use your own analysis you must append the path to `RIVET_ANALYSIS_PATH`. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``3.1.7``|``-HepMC3-3.2.5``|``gompi/2022a`` -``3.1.9``|``-HepMC3-3.2.6``|``gompi/2023a`` - -### rjags - -The rjags package is an interface to the JAGS library. - -*homepage*: - -version |versionsuffix|toolchain ---------|-------------|---------------------------------- -``4-6`` |``-R-3.4.0`` |``intel/2017a`` -``4-6`` |``-R-3.4.3`` |``intel/2017b`` -``4-8`` |``-R-3.5.1`` |``foss/2018b`` -``4-9`` |``-R-3.6.0`` |``foss/2019a`` -``4-10``| |``foss/2019b`` -``4-10``|``-R-4.0.0`` |``foss/2020a`` -``4-10``|``-R-4.0.3`` |``foss/2020b``, ``fosscuda/2020b`` -``4-10``|``-R-4.0.4`` |``foss/2020b``, ``fosscuda/2020b`` -``4-10``|``-R-4.0.5`` |``foss/2020b``, ``fosscuda/2020b`` -``4-10``|``-R-4.1.0`` |``foss/2021a`` -``4-12``|``-R-4.1.2`` |``foss/2021b`` -``4-13``|``-R-4.2.1`` |``foss/2022a`` -``4-13``|``-R-4.2.2`` |``foss/2022b`` - -### RLCard - -RLCard is a toolkit for Reinforcement Learning (RL) in card games. - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.9``|``foss/2022a`` - -### rmarkdown - -Convert R Markdown documents into a variety of formats. - -*homepage*: - -version |versionsuffix|toolchain ---------|-------------|-------------- -``2.20``|``-R-4.1.0`` |``foss/2021a`` - -### Rmath - -Rmath is the standalone version of the R math library. Rmath can be used in your own C/C++ routines. - -*homepage*: - -version |toolchain ----------|--------------- -``3.3.1``|``intel/2016b`` -``4.0.4``|``foss/2020b`` - -### rMATS-turbo - -rMATS turbo is the C/Cython version of rMATS (refer to https://rnaseq-mats.sourceforge.io). - -*homepage*: - -version |toolchain ----------|-------------- -``4.1.1``|``foss/2020b`` -``4.2.0``|``gfbf/2023a`` - -### RMBlast - -RMBlast is a RepeatMasker compatible version of the standard NCBI BLAST suite. The primary difference between this distribution and the NCBI distribution is the addition of a new program 'rmblastn' for use with RepeatMasker and RepeatModeler. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``2.2.28``|``-Python-2.7.11``|``foss/2016a`` -``2.9.0`` | |``gompi/2019b`` -``2.10.0``| |``gompi/2019b`` -``2.11.0``| |``gompi/2020b`` -``2.13.0``| |``gompi/2022a`` -``2.14.0``| |``gompi/2021a`` - -### RNA-Bloom - -RNA-Bloom is a fast and memory-efficient de novo transcript sequence assembler. - -*homepage*: - -version |toolchain ----------|-------------- -``1.2.3``|``GCC/8.3.0`` -``1.4.3``|``GCC/11.2.0`` -``2.0.1``|``GCC/12.3.0`` - -### RNA-SeQC - -Fast, efficient RNA-Seq metrics for quality control and process optimization - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------|------------------------------ -``1.1.8``|``-Java-1.8`` |``foss/2018b`` -``1.1.8``|``-Java-1.8.0_121``|``foss/2016b`` -``1.1.8``|``-Java-11`` |``GCCcore/11.2.0`` -``2.4.2``| |``foss/2021a``, ``foss/2021b`` - -### RNAclust - -RNAclust is a perl script summarizing all the single steps required for clustering of structured RNA motifs, i.e. identifying groups of RNA sequences sharing a secondary structure motif. It requires as input a multiple FASTA file. - -*homepage*: - -version|versionsuffix |toolchain --------|-----------------|-------------- -``1.3``|``-Perl-5.24.0`` |``foss/2016b`` -``1.3``|``-Python-3.6.6``|``foss/2018b`` - -### RNAcode - -RNAcode - Analyze the protein coding potential in multiple sequence alignments - -*homepage*: - -version|toolchain --------|-------------- -``0.3``|``foss/2017a`` - -### RNAIndel - -RNAIndel calls coding indels and classifies them into somatic, germline, and artifact from tumor RNA-Seq data. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``0.3.0``|``-Python-3.6.6``|``intel/2018b`` -``1.0.0``|``-Python-3.6.6``|``intel/2018b`` - -### RNAmmer - -This is an example description. - -*homepage*: - -version|versionsuffix |toolchain --------|----------------|--------------- -``1.2``|``-Perl-5.28.0``|``intel/2018b`` - -### rnaQUAST - -rnaQUAST is a tool for evaluating RNA-Seq assemblies using reference genome and gene database. In addition, rnaQUAST is also capable of estimating gene database coverage by raw reads and de novo quality assessment using third-party software. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``1.5.2``|``-Python-2.7.15``|``foss/2018b`` -``2.2.0``|``-Python-3.8.2`` |``foss/2020a`` -``2.2.2``| |``foss/2021b`` - -### RNAz - -RNAz is a program for predicting structurally conserved and thermodynamically stable RNA secondary structures in multiple sequence alignments. - -*homepage*: - -version|toolchain --------|------------------------------ -``2.1``|``foss/2016b``, ``foss/2018b`` - -### RnBeads - -RnBeads is an R package for comprehensive analysis of DNA methylation data obtained with any experimental protocol that provides single-CpG resolution. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|-------------- -``2.6.0`` |``-R-4.0.0`` |``foss/2020a`` -``2.14.0``|``-R-4.2.1`` |``foss/2022a`` - -### Roary - -Rapid large-scale prokaryote pan genome analysis - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|---------------------------------------------- -``3.12.0``| |``system`` -``3.12.0``|``-Perl-5.26.1``|``intel/2018a`` -``3.13.0``| |``foss/2020a``, ``foss/2021a``, ``foss/2022a`` - -### ROCm - -AMD ROCm is the first open-source software development platform for HPC/Hyperscale-class GPU computing. AMD ROCm brings the UNIX philosophy of choice, minimalism and modular software development to GPU computing. - -*homepage*: - -version |toolchain ----------|------------------ -``4.5.0``|``GCCcore/11.2.0`` - -### rocm-cmake - -ROCM cmake modules provides cmake modules for common build tasks needed for the ROCM software stack - -*homepage*: - -version |toolchain ----------|------------------ -``4.5.0``|``GCCcore/11.2.0`` - -### ROCm-CompilerSupport - -The compiler support repository provides various Lightning Compiler related services - -*homepage*: - -version |toolchain ----------|------------------ -``4.5.0``|``GCCcore/11.2.0`` - -### rocm-smi - -The ROCm System Management Interface Library, or ROCm SMI library, is part of the Radeon Open Compute ROCm software stack. It is a C library for Linux that provides a user space interface for applications to monitor and control GPU applications. - -*homepage*: - -version |toolchain ----------|------------------ -``4.5.0``|``GCCcore/11.2.0`` -``5.4.4``|``GCCcore/11.3.0`` -``5.6.0``|``GCCcore/11.3.0`` - -### rocminfo - -ROCm Application for Reporting System Info - -*homepage*: - -version |toolchain ----------|------------------ -``4.5.0``|``GCCcore/11.2.0`` - -### ROCR-Runtime - -The user-mode API interfaces and libraries necessary for host applications to launch compute kernels to available HSA ROCm kernel agents - -*homepage*: - -version |toolchain ----------|------------------ -``4.5.0``|``GCCcore/11.2.0`` - -### ROCT-Thunk-Interface - -The user-mode API interfaces used to interact with the ROCk driver - -*homepage*: - -version |toolchain ----------|------------------ -``4.5.0``|``GCCcore/11.2.0`` - -### ROI_PAC - -Repeat Orbit Interferometry PACkage (ROI_PAC), software for processing synthetic aperture radar data to produce differential interferograms - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|--------------- -``3.0.1``|``-Perl-5.24.1``|``intel/2017a`` - -### ROME - -The ROME (Refinement and Optimization via Machine Learning for cryo-EM) Software package is one of the major research products at the Intel® PCCSB. - -*homepage*: - -version |toolchain ----------|----------------- -``1.1.2``|``intel/2019.02`` - -### ROOT - -The ROOT system provides a set of OO frameworks with all the functionality needed to handle and analyze large amounts of data in a very efficient way. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|------------------------------- -``6.10.02`` |``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``6.10.04`` |``-Python-2.7.13``|``intel/2017a`` -``6.10.08`` |``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``6.14.06`` |``-Python-2.7.15``|``foss/2018b`` -``6.14.06`` |``-Python-3.6.6`` |``foss/2018b`` -``6.20.04`` |``-Python-3.7.4`` |``foss/2019b`` -``6.22.08`` | |``foss/2020b`` -``6.24.06`` | |``foss/2021b`` -``6.26.06`` | |``foss/2022a`` -``6.26.10`` | |``foss/2022b`` -``6.30.06`` | |``foss/2023a`` -``v5.34.34``|``-Python-2.7.11``|``intel/2016a`` -``v5.34.36``|``-Python-2.7.11``|``intel/2016a`` -``v6.06.02``|``-Python-2.7.12``|``intel/2016b`` -``v6.08.02``|``-Python-2.7.11``|``foss/2016a`` - -### root_numpy - -root_numpy is a Python extension module that provides an efficient interface between ROOT and NumPy. root_numpy’s internals are compiled C++ and can therefore handle large amounts of data much faster than equivalent pure Python implementations. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``4.8.0``|``-Python-3.6.6``|``foss/2018b`` - -### rootpy - -The rootpy project is a community-driven initiative aiming to provide a more pythonic interface with ROOT on top of the existing PyROOT bindings. Given Python’s reflective and dynamic nature, rootpy also aims to improve ROOT design flaws and supplement existing ROOT functionality. The scientific Python community also offers a multitude of powerful packages such as SciPy, NumPy, matplotlib, scikit-learn, and PyTables, but a suitable interface between them and ROOT has been lacking. rootpy provides the interfaces and conversion mechanisms required to liberate your data and to take advantage of these alternatives if needed. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``0.8.0``|``-Python-2.7.11``|``foss/2016a`` -``1.0.1``|``-Python-3.6.6`` |``foss/2018b`` - -### Rosetta - -Rosetta is the premier software suite for modeling macromolecular structures. As a flexible, multi-purpose application, it includes tools for structure prediction, design, and remodeling of proteins and nucleic acids. - -*homepage*: - -version |toolchain ------------------|-------------- -``3.7`` |``foss/2016b`` -``2016.13.58602``|``foss/2016a`` -``2016.46.59086``|``foss/2016b`` - -### rpmrebuild - -rpmrebuild is a tool to build an RPM file from a package that has already been installed in a basic use - -*homepage*: - -version |toolchain ---------|---------- -``2.11``|``system`` - -### RPostgreSQL - -Database interface and 'PostgreSQL' driver for 'R'. This package provides a Database Interface 'DBI' compliant driver for 'R' to access 'PostgreSQL' database systems. - -*homepage*: - -version |toolchain ----------|-------------- -``0.7-5``|``foss/2022a`` -``0.7-6``|``gfbf/2023a`` - -### rpy2 - -rpy2 is an interface to R running embedded in a Python process. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------ -``2.7.9`` |``-Python-2.7.12``|``foss/2016b`` -``2.8.2`` |``-Python-2.7.13``|``intel/2017a`` -``3.2.6`` |``-Python-3.7.4`` |``foss/2019b`` -``3.4.5`` | |``foss/2021a``, ``foss/2021b`` -``3.5.15``| |``foss/2023a`` - -### RQGIS3 - -RQGIS3 establishes an interface between R and QGIS3, i.e., it allows the user to access QGIS3 functionalities from within R. - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|-------------- -``20190903``|``-R-3.6.0`` |``foss/2019a`` - -### RSEM - -RNA-Seq by Expectation-Maximization - -*homepage*: - -version |toolchain -----------|------------------------------------------------ -``1.2.26``|``GNU/4.9.3-2.25`` -``1.2.30``|``foss/2016a``, ``intel/2016b`` -``1.3.0`` |``foss/2016b``, ``intel/2017a`` -``1.3.1`` |``foss/2017b``, ``intel/2017b``, ``intel/2018a`` -``1.3.2`` |``foss/2018b`` -``1.3.3`` |``foss/2019b``, ``foss/2021b``, ``foss/2022a`` - -### RSeQC - -RSeQC provides a number of useful modules that can comprehensively evaluate high throughput sequence data especially RNA-seq data. Some basic modules quickly inspect sequence quality, nucleotide composition bias, PCR bias and GC bias, while RNA-seq specific modules evaluate sequencing saturation, mapped reads distribution, coverage uniformity, strand specificity, transcript level RNA integrity etc. - -*homepage*: - -version |versionsuffix |toolchain ----------|--------------------------|------------------------------ -``2.6.4``|``-Python-2.7.12-R-3.3.1``|``foss/2016b`` -``2.6.4``|``-Python-2.7.14`` |``intel/2018a`` -``3.0.0``|``-Python-3.6.6`` |``foss/2018b`` -``4.0.0``| |``foss/2021a``, ``foss/2021b`` -``4.0.0``|``-Python-3.8.2`` |``foss/2020a`` - -### RStan - -RStan is the R interface to Stan. Stan is a state-of-the-art platform for statistical modeling and high-performance statistical computation. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|------------------------------- -``2.18.2``|``-R-3.4.3`` |``foss/2017b``, ``intel/2017b`` -``2.18.2``|``-R-3.5.1`` |``foss/2018b`` - -### rstanarm - -Estimates previously compiled regression models using the 'rstan' package, which provides the R interface to the Stan C++ library for Bayesian estimation. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|-------------- -``2.19.3``|``-R-3.6.2`` |``foss/2019b`` - -### RStudio-Server - -This is the RStudio Server version. RStudio is a set of integrated tools designed to help you be more productive with R. The server can be started with: rserver --server-daemonize=0 --www-port=8787 If you need a database config one can be created with: MYTMP=`mktemp -d` && echo -e "provider=sqlite\ndirectory=${MYTMP}/sqlite" > "${MYTMP}/db.conf" and then used with: rserver ... --database-config-file="${MYTMP}/db.conf" - -*homepage*: - -version |versionsuffix |toolchain ------------------|--------------------|------------------ -``1.2.5033`` |``-Java-11`` |``fosscuda/2019b`` -``1.2.5042`` |``-Java-11`` |``foss/2019b`` -``1.3.959`` |``-Java-11-R-4.0.0``|``foss/2020a`` -``1.3.1093`` |``-Java-11-R-4.0.0``|``foss/2020a`` -``1.4.1717`` |``-Java-11-R-4.1.0``|``foss/2021a`` -``2022.07.2+576``|``-Java-11-R-4.2.1``|``foss/2022a`` -``2023.12.1+402``|``-Java-11-R-4.3.3``|``gfbf/2023b`` - -### RTG-Tools - -RTG Tools contains utilities to easily manipulate and accurately compare multiple VCF files, as well as utilities for processing other common NGS data formats. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|---------- -``3.9.1`` |``-Java-1.8``|``system`` -``3.12.1``|``-Java-11`` |``system`` - -### Rtree - -Rtree is a ctypes Python wrapper of libspatialindex that provides a number of advanced spatial indexing features for the spatially curious Python user. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------ -``0.8.3``|``-Python-2.7.14``|``intel/2018a`` -``1.0.1``| |``GCCcore/12.2.0`` -``1.2.0``| |``GCCcore/12.3.0`` - -### ruamel.yaml - -ruamel.yaml is a YAML 1.2 loader/dumper package for Python. - -*homepage*: - -version |toolchain ------------|------------------------------------------------------------------------------ -``0.17.21``|``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``0.17.32``|``GCCcore/12.3.0`` -``0.18.6`` |``GCCcore/13.2.0`` - -### Ruby - -Ruby is a dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write. - -*homepage*: - -version |toolchain ----------|------------------------------------------------ -``2.1.6``|``system`` -``2.3.1``|``intel/2016b``, ``system`` -``2.3.3``|``system`` -``2.3.4``|``system`` -``2.4.2``|``foss/2017b`` -``2.5.0``|``foss/2018a``, ``intel/2017a``, ``intel/2017b`` -``2.5.1``|``foss/2018a``, ``intel/2018a`` -``2.6.1``|``GCCcore/7.3.0`` -``2.6.3``|``GCCcore/8.2.0`` -``2.7.1``|``GCCcore/8.3.0`` -``2.7.2``|``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``3.0.1``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``3.0.3``|``GCCcore/11.3.0`` -``3.0.5``|``GCCcore/11.3.0`` -``3.2.2``|``GCCcore/12.2.0`` -``3.3.0``|``GCCcore/12.3.0`` - -### Ruby-Tk - -Ruby Tk interface module using tcltklib - -*homepage*: - -version |versionsuffix |toolchain ----------|---------------|------------------------------- -``0.2.0``|``-Ruby-2.5.1``|``foss/2018a``, ``intel/2018a`` - -### ruffus - -Ruffus is a Computation Pipeline library for python. It is open-sourced, powerful and user-friendly, and widely used in science and bioinformatics. - -*homepage*: - -version |toolchain ----------|---------------------------------- -``2.8.4``|``GCCcore/11.3.0``, ``foss/2021b`` - -### ruptures - -ruptures is a Python library for off-line change point detection. This package provides methods for the analysis and segmentation of non-stationary signals. Implemented algorithms include exact and approximate detection for various parametric and non-parametric models. ruptures focuses on ease of use by providing a well-documented and consistent interface. In addition, thanks to its modular structure, different algorithms and models can be connected and extended within this package. - -*homepage*: - -version |toolchain ----------|-------------- -``1.1.8``|``foss/2022a`` - -### Rust - -Rust is a systems programming language that runs blazingly fast, prevents segfaults, and guarantees thread safety. - -*homepage*: - -version |toolchain -----------|-------------------------------------------------------------------------- -``1.8.0`` |``foss/2016a`` -``1.12.0``|``foss/2016b`` -``1.12.1``|``foss/2016b`` -``1.18.0``|``foss/2017a`` -``1.21.0``|``foss/2017b`` -``1.22.1``|``GCCcore/6.4.0`` -``1.29.2``|``GCCcore/7.3.0`` -``1.30.1``|``GCCcore/6.4.0`` -``1.35.0``|``GCCcore/8.2.0`` -``1.37.0``|``GCCcore/8.3.0`` -``1.42.0``|``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.52.1``|``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``1.54.0``|``GCCcore/11.2.0`` -``1.56.0``|``GCCcore/11.2.0`` -``1.60.0``|``GCCcore/10.3.0``, ``GCCcore/11.3.0`` -``1.65.0``|``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``1.70.0``|``GCCcore/12.3.0`` -``1.73.0``|``GCCcore/13.2.0`` -``1.75.0``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``1.76.0``|``GCCcore/13.2.0`` -``1.78.0``|``GCCcore/13.3.0`` - -### rustworkx - -rustworkx (previously retworkx) is a general purpose graph library for Python written in Rust to take advantage of the performance and safety that Rust provides. It is designed to provide a high performance general purpose graph library for any Python application. - -*homepage*: - -version |toolchain -----------|-------------- -``0.12.1``|``foss/2022a`` - -## S - - -[S-Lang](#s-lang) - [s3fs](#s3fs) - [S4](#s4) - [Sabre](#sabre) - [safestringlib](#safestringlib) - [Safetensors](#safetensors) - [SAGE](#sage) - [Sailfish](#sailfish) - [SALib](#salib) - [Salmon](#salmon) - [SALMON-TDDFT](#salmon-tddft) - [Sambamba](#sambamba) - [samblaster](#samblaster) - [Samcef](#samcef) - [samclip](#samclip) - [samplot](#samplot) - [SAMtools](#samtools) - [sansa](#sansa) - [SAP](#sap) - [SAS](#sas) - [Satsuma2](#satsuma2) - [savvy](#savvy) - [Saxon-HE](#saxon-he) - [SBCL](#sbcl) - [sbt](#sbt) - [ScaFaCoS](#scafacos) - [ScaLAPACK](#scalapack) - [Scalasca](#scalasca) - [SCALCE](#scalce) - [Scalene](#scalene) - [scanpy](#scanpy) - [scArches](#scarches) - [scCODA](#sccoda) - [sceasy](#sceasy) - [SCENIC](#scenic) - [scGeneFit](#scgenefit) - [SCGid](#scgid) - [scGSVA](#scgsva) - [scHiCExplorer](#schicexplorer) - [Schrodinger](#schrodinger) - [scib](#scib) - [scib-metrics](#scib-metrics) - [sciClone](#sciclone) - [ScientificPython](#scientificpython) - [scikit-allel](#scikit-allel) - [scikit-bio](#scikit-bio) - [scikit-build](#scikit-build) - [scikit-build-core](#scikit-build-core) - [scikit-cuda](#scikit-cuda) - [scikit-extremes](#scikit-extremes) - [scikit-image](#scikit-image) - [scikit-learn](#scikit-learn) - [scikit-lego](#scikit-lego) - [scikit-misc](#scikit-misc) - [scikit-multilearn](#scikit-multilearn) - [scikit-optimize](#scikit-optimize) - [scikit-plot](#scikit-plot) - [scikit-uplift](#scikit-uplift) - [SCIP](#scip) - [SCIPhI](#sciphi) - [scipy](#scipy) - [SciPy-bundle](#scipy-bundle) - [SciTools-Iris](#scitools-iris) - [SCnorm](#scnorm) - [Scoary](#scoary) - [SCons](#scons) - [SCOOP](#scoop) - [SCopeLoomR](#scopeloomr) - [Score-P](#score-p) - [SCOTCH](#scotch) - [scp](#scp) - [scPred](#scpred) - [Scrappie](#scrappie) - [SCReadCounts](#screadcounts) - [scrublet](#scrublet) - [scVelo](#scvelo) - [scvi-tools](#scvi-tools) - [Scythe](#scythe) - [SDCC](#sdcc) - [SDL](#sdl) - [SDL2](#sdl2) - [SDL2_gfx](#sdl2_gfx) - [SDL2_image](#sdl2_image) - [SDL2_mixer](#sdl2_mixer) - [SDL2_ttf](#sdl2_ttf) - [SDL_image](#sdl_image) - [SDSL](#sdsl) - [Seaborn](#seaborn) - [SEACells](#seacells) - [SearchGUI](#searchgui) - [SeaView](#seaview) - [SECAPR](#secapr) - [Seeder](#seeder) - [segemehl](#segemehl) - [segment-anything](#segment-anything) - [segmentation-models](#segmentation-models) - [segmentation-models-pytorch](#segmentation-models-pytorch) - [SeisSol](#seissol) - [SelEstim](#selestim) - [SELFIES](#selfies) - [SemiBin](#semibin) - [semla](#semla) - [Sentence-Transformers](#sentence-transformers) - [SentencePiece](#sentencepiece) - [sentinelsat](#sentinelsat) - [sep](#sep) - [SEPP](#sepp) - [Seq-Gen](#seq-gen) - [seq2HLA](#seq2hla) - [SeqAn](#seqan) - [SeqAn3](#seqan3) - [SeqKit](#seqkit) - [SeqLib](#seqlib) - [Seqmagick](#seqmagick) - [SeqPrep](#seqprep) - [seqtk](#seqtk) - [Serf](#serf) - [setuptools](#setuptools) - [setuptools-rust](#setuptools-rust) - [Seurat](#seurat) - [SeuratData](#seuratdata) - [SeuratDisk](#seuratdisk) - [SeuratWrappers](#seuratwrappers) - [sf](#sf) - [sfftk](#sfftk) - [Shannon](#shannon) - [SHAP](#shap) - [shapAAR](#shapaar) - [SHAPEIT](#shapeit) - [SHAPEIT4](#shapeit4) - [Shapely](#shapely) - [sharutils](#sharutils) - [Shasta](#shasta) - [ShengBTE](#shengbte) - [shift](#shift) - [SHORE](#shore) - [Short-Pair](#short-pair) - [shovill](#shovill) - [shrinkwrap](#shrinkwrap) - [SHTns](#shtns) - [Sibelia](#sibelia) - [SICER2](#sicer2) - [sickle](#sickle) - [Siesta](#siesta) - [SignalP](#signalp) - [silhouetteRank](#silhouetterank) - [silx](#silx) - [simanneal](#simanneal) - [simint](#simint) - [SimNIBS](#simnibs) - [SimPEG](#simpeg) - [SIMPLE](#simple) - [Simple-DFTD3](#simple-dftd3) - [SimpleElastix](#simpleelastix) - [SimpleITK](#simpleitk) - [simpy](#simpy) - [Simstrat](#simstrat) - [SimVascular](#simvascular) - [SingleM](#singlem) - [Singular](#singular) - [sinto](#sinto) - [SiNVICT](#sinvict) - [SIONlib](#sionlib) - [SIP](#sip) - [siscone](#siscone) - [SISSO](#sisso) - [SISSO++](#sisso++) - [SKESA](#skesa) - [sketchmap](#sketchmap) - [skewer](#skewer) - [sklearn-pandas](#sklearn-pandas) - [sklearn-som](#sklearn-som) - [skorch](#skorch) - [sktime](#sktime) - [SlamDunk](#slamdunk) - [SLATEC](#slatec) - [SLEPc](#slepc) - [slepc4py](#slepc4py) - [sleuth](#sleuth) - [slidingwindow](#slidingwindow) - [SLiM](#slim) - [slow5tools](#slow5tools) - [slurm-drmaa](#slurm-drmaa) - [smafa](#smafa) - [smallgenomeutilities](#smallgenomeutilities) - [SMAP](#smap) - [SMARTdenovo](#smartdenovo) - [SMC++](#smc++) - [smfishHmrf](#smfishhmrf) - [smithwaterman](#smithwaterman) - [Smoldyn](#smoldyn) - [smooth-topk](#smooth-topk) - [SMRT-Link](#smrt-link) - [SMV](#smv) - [snakemake](#snakemake) - [SNAP](#snap) - [SNAP-ESA](#snap-esa) - [SNAP-ESA-python](#snap-esa-python) - [SNAP-HMM](#snap-hmm) - [SNAPE-pooled](#snape-pooled) - [snaphu](#snaphu) - [snappy](#snappy) - [Sniffles](#sniffles) - [snippy](#snippy) - [snp-sites](#snp-sites) - [snpEff](#snpeff) - [SNPhylo](#snphylo) - [SNPomatic](#snpomatic) - [SOAPaligner](#soapaligner) - [SOAPdenovo-Trans](#soapdenovo-trans) - [SOAPdenovo2](#soapdenovo2) - [SOAPfuse](#soapfuse) - [socat](#socat) - [SOCI](#soci) - [SolexaQA++](#solexaqa++) - [solo](#solo) - [sonic](#sonic) - [SoPlex](#soplex) - [SoQt](#soqt) - [SortMeRNA](#sortmerna) - [SoupX](#soupx) - [SoX](#sox) - [SoXt](#soxt) - [SpaceRanger](#spaceranger) - [Spack](#spack) - [spaCy](#spacy) - [SPAdes](#spades) - [spaln](#spaln) - [Spark](#spark) - [sparse-neighbors-search](#sparse-neighbors-search) - [sparsehash](#sparsehash) - [SpatialDE](#spatialde) - [spatialreg](#spatialreg) - [spdlog](#spdlog) - [SpectrA](#spectra) - [spectral.methods](#spectral.methods) - [speech_tools](#speech_tools) - [SPEI](#spei) - [spektral](#spektral) - [spglib](#spglib) - [spglib-python](#spglib-python) - [Sphinx](#sphinx) - [Sphinx-RTD-Theme](#sphinx-rtd-theme) - [SpiceyPy](#spiceypy) - [SpiecEasi](#spieceasi) - [SplAdder](#spladder) - [SPLASH](#splash) - [SpliceMap](#splicemap) - [split-seq](#split-seq) - [splitRef](#splitref) - [SPM](#spm) - [spoa](#spoa) - [SPOOLES](#spooles) - [SPOTPY](#spotpy) - [SPRNG](#sprng) - [Spyder](#spyder) - [SQLAlchemy](#sqlalchemy) - [SQLite](#sqlite) - [SqueezeMeta](#squeezemeta) - [Squidpy](#squidpy) - [SRA-Toolkit](#sra-toolkit) - [sradownloader](#sradownloader) - [SRPRISM](#srprism) - [SRST2](#srst2) - [SSAHA2](#ssaha2) - [SSN](#ssn) - [SSPACE_Basic](#sspace_basic) - [SSW](#ssw) - [STACEY](#stacey) - [Stack](#stack) - [Stacks](#stacks) - [STAMP](#stamp) - [StaMPS](#stamps) - [Stampy](#stampy) - [STAR](#star) - [STAR-CCM+](#star-ccm+) - [STAR-Fusion](#star-fusion) - [stardist](#stardist) - [starparser](#starparser) - [stars](#stars) - [Stata](#stata) - [Statistics-R](#statistics-r) - [statsmodels](#statsmodels) - [STEAK](#steak) - [STIR](#stir) - [stpipeline](#stpipeline) - [strace](#strace) - [Strainberry](#strainberry) - [STREAM](#stream) - [strelka](#strelka) - [StringTie](#stringtie) - [stripy](#stripy) - [STRique](#strique) - [Structure](#structure) - [Structure_threader](#structure_threader) - [STRUMPACK](#strumpack) - [suave](#suave) - [SuAVE-biomat](#suave-biomat) - [Subread](#subread) - [subset-bam](#subset-bam) - [subunit](#subunit) - [Subversion](#subversion) - [suds](#suds) - [SuiteSparse](#suitesparse) - [SUMACLUST](#sumaclust) - [SUMATRA](#sumatra) - [SUMO](#sumo) - [SUNDIALS](#sundials) - [SunPy](#sunpy) - [SuperLU](#superlu) - [SuperLU_DIST](#superlu_dist) - [supermagic](#supermagic) - [supernova](#supernova) - [SUPPA](#suppa) - [SURVIVOR](#survivor) - [SVclone](#svclone) - [SVDetect](#svdetect) - [SVDquest](#svdquest) - [SVG](#svg) - [SVIM](#svim) - [svist4get](#svist4get) - [swarm](#swarm) - [SWASH](#swash) - [SWAT+](#swat+) - [swifter](#swifter) - [SWIG](#swig) - [SWIPE](#swipe) - [swissknife](#swissknife) - [SymEngine](#symengine) - [SymEngine-python](#symengine-python) - [SYMMETRICA](#symmetrica) - [SYMPHONY](#symphony) - [sympy](#sympy) - [synapseclient](#synapseclient) - [synthcity](#synthcity) - [SyRI](#syri) - [sysbench](#sysbench) - [Szip](#szip) - - -### S-Lang - -S-Lang is a multi-platform programmer's library designed to allow a developer to create robust multi-platform software. It provides facilities required by interactive applications such as display/screen management, keyboard input, keymaps, and so on. - -*homepage*: - -version |toolchain ----------|------------- -``2.3.0``|``GCC/4.9.2`` - -### s3fs - -S3FS builds on aiobotocore to provide a convenient Python filesystem interface for S3.. - -*homepage*: - -version |toolchain --------------|-------------- -``2023.12.2``|``foss/2023a`` - -### S4 - -S4 stands for Stanford Stratified Structure Solver, a frequency domain code to solve the linear Maxwell’s equations in layered periodic structures. Internally, it uses Rigorous Coupled Wave Analysis (RCWA, also called the Fourier Modal Method (FMM)) and the S-matrix algorithm. - -*homepage*: - -version |toolchain -------------------|-------------- -``1.1.1-20180610``|``foss/2017b`` - -### Sabre - -Sabre is a tool that will demultiplex barcoded reads into separate files. It will work on both single-end and paired-end data in fastq format. It simply compares the provided barcodes with each read and separates the read into its appropriate barcode file, after stripping the barcode from the read (and also stripping the quality values of the barcode bases). - -*homepage*: - -version |toolchain ---------------|-------------- -``2013-09-28``|``GCC/12.2.0`` - -### safestringlib - -The Secure Development Lifecycle (SDL) recommends banning certain C Library functions because they directly contribute to security vulnerabilities such as buffer overflows. However routines for the manipulation of strings and memory buffers are common in software and firmware, and are essential to accomplish certain programming tasks. Safer replacements for these functions that avoid or prevent serious security vulnerabilities (e.g. buffer overflows, string format attacks, conversion overflows/underflows, etc.) are available in the SafeString Library. - -*homepage*: - -version |toolchain -------------|---------------------------- -``20240228``|``intel-compilers/2023.1.0`` - -### Safetensors - -Safetensors is a new simple format for storing tensors safely (as opposed to pickle) and that is still fast (zero-copy). Safetensors is really fast. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``0.3.1``| |``foss/2022a`` -``0.3.1``|``-CUDA-11.7.0``|``foss/2022a`` - -### SAGE - -S.A.G.E. (Statistical Analysis for Genetic Epidemiology) is free software package containing programs for use in the genetic analysis of family, pedigree and individual data. - -*homepage*: - -version|toolchain --------|---------- -``6.3``|``system`` -``6.4``|``system`` - -### Sailfish - -Sailfish is a software tool that implements a novel, alignment-free algorithm for the estimation of isoform abundances directly from a set of reference sequences and RNA-seq reads. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``0.10.1``| |``gompi/2019b`` -``0.10.1``|``-Python-2.7.12``|``foss/2016b`` - -### SALib - -Sensitivity Analysis Library in Python (Numpy). Contains Sobol, Morris, Fractional Factorial and FAST methods. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``1.1.3``|``-Python-2.7.14``|``intel/2017b`` - -### Salmon - -Salmon is a wicked-fast program to produce a highly-accurate, transcript-level quantification estimates from RNA-seq data. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|-------------------------------- -``0.8.2`` | |``system`` -``0.8.2`` |``-Python-2.7.12``|``foss/2016b`` -``0.11.2``| |``intel/2018a`` -``0.12.0``| |``foss/2018b`` -``0.14.1``| |``foss/2018b`` -``0.14.2``| |``gompi/2019a`` -``1.0.0`` | |``gompi/2019a``, ``gompi/2019b`` -``1.1.0`` | |``gompi/2019b`` -``1.2.0`` | |``gompi/2019b`` -``1.3.0`` | |``gompi/2020a`` -``1.4.0`` | |``GCC/11.2.0``, ``gompi/2020b`` -``1.9.0`` | |``GCC/11.3.0`` -``1.10.1``| |``GCC/12.2.0`` - -### SALMON-TDDFT - -SALMON is an open-source computer program for ab-initio quantum-mechanical calculations of electron dynamics at the nanoscale that takes place in various situations of light-matter interactions. It is based on time-dependent density functional theory, solving time-dependent Kohn-Sham equation in real time and real space with norm-conserving pseudopotentials. - -*homepage*: - -version |toolchain ----------|------------------------------- -``1.2.1``|``foss/2018b``, ``intel/2018b`` - -### Sambamba - -Sambamba is a high performance modern robust and fast tool (and library), written in the D programming language, for working with SAM and BAM files. Current functionality is an important subset of samtools functionality, including view, index, sort, markdup, and depth. - -*homepage*: - -version |toolchain ----------|-------------- -``0.6.6``|``system`` -``0.7.1``|``system`` -``0.8.0``|``GCC/10.2.0`` -``0.8.2``|``GCC/10.3.0`` -``1.0.1``|``GCC/11.3.0`` - -### samblaster - -samblaster is a fast and flexible program for marking duplicates in read-id grouped1 paired-end SAM files. - -*homepage*: - -version |toolchain -----------|---------------------------------------------- -``0.1.24``|``foss/2018b`` -``0.1.26``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.3.0`` - -### Samcef - -FEM solver solution suite for basic linear structures to advanced, flexible nonlinear mechanisms and thermal applications. - -*homepage*: - -version |toolchain ------------|---------- -``17.0-03``|``system`` - -### samclip - -Filter SAM file for soft and hard clipped alignments. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|--------------------------------------------------------- -``0.2`` |``-Perl-5.28.0``|``GCCcore/7.3.0`` -``0.4.0``| |``GCCcore/10.2.0``, ``GCCcore/11.2.0``, ``GCCcore/9.3.0`` - -### samplot - -Plot structural variant signals from many BAMs and CRAMs. - -*homepage*: - -version |toolchain ----------|-------------- -``1.3.0``|``foss/2021b`` - -### SAMtools - -SAM Tools provide various utilities for manipulating alignments in the SAM format, including sorting, merging, indexing and generating alignments in a per-position format. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|--------------------------------------------------------------------------------------------------------------------------------------- -``0.1.17``| |``intel/2017a`` -``0.1.19``| |``GCC/10.3.0``, ``foss/2016a``, ``foss/2016b`` -``0.1.20``| |``GCC/12.3.0``, ``GCC/8.3.0``, ``foss/2018b``, ``intel/2017a``, ``intel/2017b``, ``intel/2018a``, ``intel/2018b``, ``intel/2019b`` -``1.2`` | |``foss/2016b`` -``1.3`` | |``foss/2016a``, ``intel/2016a`` -``1.3.1`` | |``foss/2016a``, ``foss/2016b``, ``intel/2016a``, ``intel/2016b`` -``1.3.1`` |``-HTSlib-1.3.2``|``intel/2016b`` -``1.4`` | |``foss/2016b``, ``intel/2016b``, ``intel/2017a`` -``1.4.1`` | |``intel/2017a`` -``1.5`` | |``foss/2016b``, ``intel/2017a`` -``1.6`` | |``GCC/6.4.0-2.28``, ``foss/2017a``, ``iccifort/2017.4.196-GCC-6.4.0-2.28``, ``intel/2017b`` -``1.7`` | |``foss/2018a``, ``intel/2018a`` -``1.8`` | |``intel/2018a`` -``1.9`` | |``GCC/6.4.0-2.28``, ``GCC/7.3.0-2.30``, ``GCC/8.2.0-2.31.1``, ``foss/2018b``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1``, ``intel/2018b`` -``1.10`` | |``GCC/8.2.0-2.31.1``, ``GCC/8.3.0``, ``GCC/9.3.0``, ``iccifort/2019.5.281`` -``1.11`` | |``GCC/10.2.0``, ``GCC/9.3.0``, ``iccifort/2020.4.304`` -``1.12`` | |``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/9.3.0`` -``1.13`` | |``GCC/10.3.0``, ``GCC/11.3.0``, ``GCC/12.3.0`` -``1.14`` | |``GCC/11.2.0`` -``1.15`` | |``GCC/11.2.0`` -``1.15.1``| |``GCC/11.2.0``, ``GCC/11.3.0`` -``1.16.1``| |``GCC/11.2.0``, ``GCC/11.3.0`` -``1.17`` | |``GCC/12.2.0`` -``1.18`` | |``GCC/12.3.0`` -``1.19.2``| |``GCC/13.2.0`` - -### sansa - -Structural variant (SV) annotation, a companion to the 'dolly' tool. - -*homepage*: - -version |toolchain ----------|--------------- -``0.0.7``|``gompi/2020b`` - -### SAP - -SAP is a pairwise structure alignment via double dynamic programming - -*homepage*: - -version |toolchain ----------|-------------- -``1.1.3``|``GCC/11.3.0`` - -### SAS - -SAS is a software suite for advanced analytics, multivariate analyses, business intelligence, data management, and predictive analytics. - -*homepage*: - -version|toolchain --------|---------- -``9.4``|``system`` - -### Satsuma2 - -Satsuma2 is an optimised version of Satsuma, a tool to reliably align large and complex DNA sequences providing maximum sensitivity (to find all there is to find), specificity (to only find real homology) and speed (to accommodate the billions of base pairs in vertebrate genomes). - -*homepage*: - -version |toolchain -------------|-------------- -``20220304``|``GCC/11.3.0`` - -### savvy - -Interface to various variant calling formats. - -*homepage*: - -version |toolchain ----------|-------------------- -``1.3.0``|``GCC/8.2.0-2.31.1`` - -### Saxon-HE - -Open Source SAXON XSLT processor developed by Saxonica Limited. - -*homepage*: - -version |versionsuffix |toolchain -------------|-------------------|---------- -``9.7.0.4`` |``-Java-1.7.0_79`` |``system`` -``9.7.0.21``|``-Java-1.8.0_162``|``system`` -``9.9.1.7`` |``-Java-13`` |``system`` -``12.4`` |``-Java-21`` |``system`` - -### SBCL - -Steel Bank Common Lisp (SBCL) is a high performance Common Lisp compiler. It is open source / free software, with a permissive license. In addition to the compiler and runtime system for ANSI Common Lisp, it provides an interactive environment including a debugger, a statistical profiler, a code coverage tool, and many other extensions. - -*homepage*: - -version |toolchain -----------|------------------ -``2.0.9`` |``GCCcore/9.3.0`` -``2.2.1`` |``GCCcore/10.3.0`` -``2.3.11``|``GCCcore/11.3.0`` -``2.4.1`` |``GCCcore/12.3.0`` - -### sbt - -sbt is a build tool for Scala, Java, and more. - -*homepage*: - -version |versionsuffix |toolchain -----------|-------------------|---------- -``1.0.2`` |``-Java-1.8.0_152``|``system`` -``1.3.13``|``-Java-1.8`` |``system`` -``1.3.13``|``-Java-8`` |``system`` -``1.6.2`` |``-Java-8`` |``system`` - -### ScaFaCoS - -ScaFaCoS is a library of scalable fast coulomb solvers. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------- -``1.0.1``|``foss/2020a``, ``foss/2020b``, ``foss/2021a``, ``foss/2021b``, ``intel/2020a`` -``1.0.4``|``foss/2022a``, ``foss/2022b``, ``foss/2023a`` - -### ScaLAPACK - -The ScaLAPACK (or Scalable LAPACK) library includes a subset of LAPACK routines redesigned for distributed memory MIMD parallel computers. - -*homepage*: - -version |versionsuffix |toolchain ----------|---------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------ -``2.0.2``| |``gompi/2019b``, ``gompic/2019b`` -``2.0.2``|``-BLIS-0.3.2`` |``gompi/2018b`` -``2.0.2``|``-OpenBLAS-0.2.13-LAPACK-3.5.0``|``gmvapich2/1.7.20`` -``2.0.2``|``-OpenBLAS-0.2.15-LAPACK-3.6.0``|``gmpich/2016a``, ``gmvapich2/2016a``, ``gompi/2016a`` -``2.0.2``|``-OpenBLAS-0.2.18-LAPACK-3.6.0``|``gompi/2016.04``, ``gompi/2016.06`` -``2.0.2``|``-OpenBLAS-0.2.18-LAPACK-3.6.1``|``gompi/2016.07``, ``gompi/2016b`` -``2.0.2``|``-OpenBLAS-0.2.19-LAPACK-3.6.1``|``gompi/2016.09`` -``2.0.2``|``-OpenBLAS-0.2.19-LAPACK-3.7.0``|``gompi/2017a`` -``2.0.2``|``-OpenBLAS-0.2.20`` |``gimpi/2017b``, ``gimpi/2018a``, ``gimpic/2017b``, ``gmpich/2017.08``, ``gompi/2017b``, ``gompi/2018a``, ``gompic/2017b``, ``gompic/2018a`` -``2.0.2``|``-OpenBLAS-0.3.1`` |``gompi/2018b``, ``gompic/2018b`` -``2.0.2``|``-OpenBLAS-0.3.3`` |``gompi/2018.08`` -``2.0.2``|``-OpenBLAS-0.3.5`` |``gompi/2019a``, ``gompic/2019a`` -``2.1.0``| |``gompi/2020a``, ``gompi/2020b``, ``gompic/2020a``, ``gompic/2020b`` -``2.1.0``|``-bf`` |``gompi/2020a``, ``gompi/2020b``, ``gompi/2021a``, ``iimpi/2020b`` -``2.1.0``|``-bl`` |``gompi/2020b`` -``2.1.0``|``-fb`` |``gompi/2021a``, ``gompi/2021b`` -``2.2`` |``-amd`` |``gompi/2020a`` -``2.2.0``|``-fb`` |``gompi/2022.05``, ``gompi/2022.10``, ``gompi/2022a``, ``gompi/2022b``, ``gompi/2023.09``, ``gompi/2023a``, ``gompi/2023b``, ``gompi/2024.05``, ``nvompi/2022.07`` - -### Scalasca - -Scalasca is a software tool that supports the performance optimization of parallel programs by measuring and analyzing their runtime behavior. The analysis identifies potential performance bottlenecks -- in particular those concerning communication and synchronization -- and offers guidance in exploring their causes. - -*homepage*: - -version |toolchain ----------|--------------------------------- -``2.3`` |``foss/2016a`` -``2.5`` |``gompi/2019a``, ``gompi/2020a`` -``2.6`` |``gompi/2021a``, ``gompic/2020b`` -``2.6.1``|``gompi/2022a`` - -### SCALCE - -SCALCE [skeɪlz] is a FASTQ compression tool that uses locally consistet parsing to obtain better compression rate. SCALCE has been specifically designed for Illumina reads but it can handle other technologies (that generate base pair reads) if the read length is the same throughout the file. - -*homepage*: - -version|toolchain --------|------------- -``2.7``|``GCC/4.8.2`` - -### Scalene - -Scalene is a high-performance CPU, GPU and memory profiler for Python that does a number of things that other Python profilers do not and cannot do. It runs orders of magnitude faster than other profilers while delivering far more detailed information. - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``1.5.13``|``GCCcore/11.2.0`` -``1.5.20``|``GCCcore/11.3.0`` -``1.5.26``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``1.5.35``|``GCCcore/13.2.0`` - -### scanpy - -Scanpy is a scalable toolkit for analyzing single-cell gene expression data built jointly with anndata. It includes preprocessing, visualization, clustering, trajectory inference and differential expression testing. The Python-based implementation efficiently deals with datasets of more than one million cells. - -*homepage*: - -version |toolchain ----------|------------------------------ -``1.7.2``|``foss/2020b`` -``1.8.1``|``foss/2020b``, ``foss/2021a`` -``1.8.2``|``foss/2021b`` -``1.9.1``|``foss/2021b``, ``foss/2022a`` -``1.9.8``|``foss/2023a`` - -### scArches - -Single-cell architecture surgery (scArches) is a package for reference-based analysis of single-cell data. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``0.5.6``| |``foss/2021a`` -``0.5.6``|``-CUDA-11.3.1``|``foss/2021a`` - -### scCODA - -scCODA allows for identification of compositional changes in high-throughput sequencing count data, especially cell compositions from scRNA-seq. - -*homepage*: - -version |toolchain ----------|------------------------------ -``0.1.9``|``foss/2021a``, ``foss/2023a`` - -### sceasy - -sceasy is a package that helps easy conversion of different single-cell data formats to each other - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``0.0.7``|``-R-4.2.1`` |``foss/2022a`` - -### SCENIC - -SCENIC Suite is a set of tools to study and decipher gene regulation. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``1.2.4``|``-R-4.1.0`` |``foss/2021a`` -``1.3.0``|``-R-4.2.1`` |``foss/2022a`` -``1.3.0``|``-R-4.3.2`` |``foss/2023a`` - -### scGeneFit - -Python code for genetic marker selection using linear programming. - -*homepage*: - -version |toolchain ----------|-------------- -``1.0.2``|``foss/2021a`` - -### SCGid - -A consensus approach to contig filtering and genome prediction from single-cell sequencing libraries - -*homepage*: - -version |toolchain ----------|-------------- -``0.9b0``|``foss/2021b`` - -### scGSVA - -scGSVA provides wrap functions to do GSVA analysis for single cell data. And scGSVA includes functions to build annotation for almost all species. scGSVA also provides function to generate figures based on the GSVA results. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|-------------- -``0.0.14``|``-R-4.2.1`` |``foss/2022a`` - -### scHiCExplorer - -The scHiCExplorer is a software to demultiplex, process, correct, normalize, manipulate, analyse and visualize single-cell Hi-C data. - -*homepage*: - -version|toolchain --------|-------------- -``7`` |``foss/2022a`` - -### Schrodinger - -Schrodinger aims to provide integrated software solutions and services that truly meet its customers needs. We want to empower researchers around the world to achieve their goals of improving human health and quality of life through advanced computational techniques that transform the way chemists design compounds and materials. - -*homepage*: - -version |toolchain -----------|---------- -``2020-4``|``system`` -``2021-4``|``system`` -``2022-1``|``system`` -``2022-2``|``system`` -``2022-3``|``system`` - -### scib - -Benchmarking atlas-level data integration in single-cell genomics. - -*homepage*: - -version |toolchain ----------|-------------- -``1.1.1``|``foss/2022a`` -``1.1.3``|``foss/2021a`` -``1.1.4``|``foss/2023a`` - -### scib-metrics - -Accelerated and Python-only metrics for benchmarking single-cell integration outputs - -*homepage*: - -version |toolchain ----------|-------------- -``0.3.3``|``foss/2021a`` - -### sciClone - -An R package for inferring the subclonal architecture of tumors - -*homepage*: - -version|versionsuffix|toolchain --------|-------------|-------------- -``1.1``|``-R-3.5.1`` |``foss/2018b`` - -### ScientificPython - -ScientificPython is a collection of Python modules for scientific computing. It contains support for geometry, mathematical functions, statistics, physical units, IO, visualization, and parallelization. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``2.9.4``|``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` - -### scikit-allel - -This package provides utilities for exploratory analysis of large scale genetic variation data. It is based on numpy, scipy and other general-purpose Python scientific libraries. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``1.1.8``|``-Python-2.7.13``|``foss/2017a`` -``1.2.1``|``-Python-3.8.2`` |``foss/2020a`` -``1.3.2``| |``foss/2020b`` -``1.3.3``| |``foss/2021a`` - -### scikit-bio - -scikit-bio is an open-source, BSD-licensed Python 3 package providing data structures, algorithms and educational resources for bioinformatics. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------------------------------------------------------- -``0.5.6``|``-Python-3.8.2``|``foss/2020a`` -``0.5.7``| |``foss/2020b``, ``foss/2021a``, ``foss/2021b``, ``foss/2022a`` -``0.6.0``| |``foss/2023a`` - -### scikit-build - -Scikit-Build, or skbuild, is an improved build system generator for CPython C/C++/Fortran/Cython extensions. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|---------------------------------------------------------------------------------------------------------------- -``0.10.0``|``-Python-3.6.6``|``foss/2018b``, ``intel/2018b`` -``0.10.0``|``-Python-3.8.2``|``foss/2020a``, ``fosscuda/2020a`` -``0.11.1``| |``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b``, ``intelcuda/2020b`` -``0.15.0``| |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``0.17.2``| |``GCCcore/12.2.0`` -``0.17.6``| |``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### scikit-build-core - -Scikit-build-core is a complete ground-up rewrite of scikit-build on top of modern packaging APIs. It provides a bridge between CMake and the Python build system, allowing you to make Python modules with CMake. - -*homepage*: - -version |toolchain ----------|------------------ -``0.5.0``|``GCCcore/12.3.0`` -``0.9.3``|``GCCcore/13.2.0`` - -### scikit-cuda - -SciKit-cuda, a.k.a. skcuda, provides Python interfaces to many of the functions in the CUDA device/runtime, CUBLAS, CUFFT, and CUSOLVER libraries distributed as part of NVIDIA's CUDA Programming Toolkit. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------ -``0.5.3``|``-Python-3.7.4``|``fosscuda/2019b`` - -### scikit-extremes - -scikit-extremes is a basic statistical package to perform univariate extreme value calculations using Python - -*homepage*: - -version |toolchain --------------|-------------- -``2022.4.10``|``foss/2022a`` - -### scikit-image - -scikit-image is a collection of algorithms for image processing. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------------------------------------------------ -``0.12.3``|``-Python-2.7.11``|``foss/2016a`` -``0.12.3``|``-Python-2.7.12``|``intel/2016b`` -``0.12.3``|``-Python-3.5.2`` |``foss/2016b``, ``intel/2016b`` -``0.13.0``|``-Python-2.7.13``|``intel/2017a`` -``0.13.0``|``-Python-3.6.1`` |``intel/2017a`` -``0.13.0``|``-Python-3.6.3`` |``foss/2017b`` -``0.13.1``|``-Python-2.7.14``|``intel/2017b`` -``0.13.1``|``-Python-3.6.3`` |``foss/2017b`` -``0.13.1``|``-Python-3.6.4`` |``foss/2018a`` -``0.14.0``|``-Python-3.6.4`` |``intel/2018a`` -``0.14.1``|``-Python-3.6.6`` |``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b`` -``0.15.0``|``-Python-3.7.2`` |``foss/2019a`` -``0.16.2``|``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b``, ``intel/2019b`` -``0.17.1``|``-Python-3.8.2`` |``foss/2020a`` -``0.18.1``| |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b``, ``intelcuda/2020b`` -``0.18.3``| |``foss/2021a`` -``0.19.1``| |``foss/2021b`` -``0.19.3``| |``foss/2022a`` -``0.21.0``| |``foss/2022b`` -``0.22.0``| |``foss/2023a`` - -### scikit-learn - -Scikit-learn integrates machine learning algorithms in the tightly-knit scientific Python world, building upon numpy, scipy, and matplotlib. As a machine-learning module, it provides versatile tools for data mining and analysis in any field of science and engineering. It strives to be simple and efficient, accessible to everybody, and reusable in various contexts. - -*homepage*: - -version |versionsuffix |toolchain -----------|---------------------------------|------------------------------------------------------------------------ -``0.16.1``|``-Python-2.7.13`` |``foss/2017a`` -``0.17.1``|``-Python-2.7.11`` |``foss/2016a``, ``intel/2016a`` -``0.17.1``|``-Python-2.7.11-freetype-2.6.3``|``intel/2016a`` -``0.17.1``|``-Python-2.7.12`` |``intel/2016b`` -``0.17.1``|``-Python-3.5.1`` |``foss/2016a``, ``intel/2016a`` -``0.18`` |``-Python-2.7.12`` |``intel/2016b`` -``0.18`` |``-Python-3.5.2`` |``intel/2016b`` -``0.18.1``|``-Python-2.7.12`` |``foss/2016b``, ``intel/2016b`` -``0.18.1``|``-Python-2.7.13`` |``intel/2017a`` -``0.18.1``|``-Python-3.5.2`` |``foss/2016b``, ``intel/2016b`` -``0.18.1``|``-Python-3.6.1`` |``intel/2017a`` -``0.18.2``|``-Python-3.6.1`` |``intel/2017a`` -``0.19.0``|``-Python-3.6.1`` |``intel/2017a`` -``0.19.1``|``-Python-2.7.13`` |``foss/2017a`` -``0.19.1``|``-Python-2.7.14`` |``foss/2017b``, ``fosscuda/2017b``, ``intel/2017b``, ``intelcuda/2017b`` -``0.19.1``|``-Python-3.6.3`` |``foss/2017b``, ``fosscuda/2017b``, ``intel/2017b``, ``intelcuda/2017b`` -``0.19.1``|``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``0.20.0``|``-Python-2.7.15`` |``foss/2018b``, ``intel/2018b`` -``0.20.0``|``-Python-3.6.6`` |``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b`` -``0.20.2``|``-Python-2.7.15`` |``foss/2018b`` -``0.20.2``|``-Python-3.6.6`` |``foss/2018b`` -``0.20.3``| |``foss/2019a``, ``fosscuda/2019a``, ``intel/2019a`` -``0.20.4``|``-Python-2.7.16`` |``intel/2019b`` -``0.20.4``|``-Python-2.7.18`` |``foss/2020b``, ``foss/2021b`` -``0.21.3``|``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b``, ``intel/2019b`` -``0.23.1``|``-Python-3.8.2`` |``foss/2020a``, ``fosscuda/2020a``, ``intel/2020a``, ``intelcuda/2020a`` -``0.23.2``| |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b``, ``intelcuda/2020b`` -``0.24.2``| |``foss/2021a``, ``intel/2021a`` -``1.0.1`` | |``foss/2021b``, ``intel/2021b`` -``1.0.2`` | |``foss/2021b`` -``1.1.2`` | |``foss/2022a``, ``intel/2022a`` -``1.2.1`` | |``gfbf/2022b`` -``1.3.1`` | |``gfbf/2023a``, ``iimkl/2023a`` -``1.3.2`` | |``gfbf/2023b`` -``1.4.0`` | |``gfbf/2023b`` -``1.4.2`` | |``gfbf/2023a`` - -### scikit-lego - -We love scikit learn but very often we find ourselves writing custom transformers, metrics and models. The goal of this project is to attempt to consolidate these into a package that offers code quality/testing. - -*homepage*: - -version |toolchain -----------|-------------- -``0.6.16``|``foss/2022a`` -``0.7.4`` |``foss/2023a`` - -### scikit-misc - -Miscellaneous tools for data analysis and scientific computing - -*homepage*: - -version |toolchain ----------|------------------------------ -``0.1.4``|``foss/2021a``, ``foss/2022a`` -``0.3.1``|``foss/2023a`` - -### scikit-multilearn - -Scikit-multilearn is a BSD-licensed library for multi-label classification that is built on top of the well-known scikit-learn ecosystem. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``0.2.0``|``-Python-3.6.6``|``foss/2018b`` - -### scikit-optimize - -Scikit-Optimize, or skopt, is a simple and efficient library to minimize (very) expensive and noisy black-box functions. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------------------ -``0.5.2``|``-Python-3.6.6``|``intel/2018b`` -``0.7.4``|``-Python-3.7.4``|``foss/2019b`` -``0.8.1``|``-Python-3.8.2``|``foss/2020a`` -``0.9.0``| |``foss/2021a``, ``foss/2022a`` - -### scikit-plot - -Scikit-plot is the result of an unartistic data scientist's dreadful realization that *visualization is one of the most crucial components in the data science process, not just a mere afterthought*. - -*homepage*: - -version |toolchain ----------|-------------- -``0.3.7``|``foss/2022b`` - -### scikit-uplift - -scikit-uplift is a Python module for classic approaches for uplift modeling built on top of scikit-learn. Uplift prediction aims to estimate the causal impact of a treatment at the individual level. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``0.2.0``|``-Python-3.8.2``|``foss/2020a`` - -### SCIP - -SCIP is currently one of the fastest non-commercial solvers for mixed integer programming (MIP) and mixed integer nonlinear programming (MINLP). It is also a framework for constraint integer programming and branch-cut-and-price. It allows for total control of the solution process and the access of detailed information down to the guts of the solver. - -*homepage*: - -version |toolchain ----------|-------------- -``3.2.1``|``GCC/11.3.0`` - -### SCIPhI - -Single-cell mutation identification via phylogenetic inference (SCIPhI) is a new approach to mutation detection in individual tumor cells by leveraging the evolutionary relationship among cells. - -*homepage*: - -version |toolchain ----------|--------------- -``0.1.3``|``intel/2018b`` - -### scipy - -SciPy is a collection of mathematical algorithms and convenience functions built on the Numpy extension for Python. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|---------------------------------- -``0.16.0``|``-Python-2.7.12``|``intel/2016b`` -``0.17.0``|``-Python-2.7.11``|``intel/2016a`` -``0.19.0``|``-Python-3.5.2`` |``intel/2016b`` -``1.4.1`` |``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b`` - -### SciPy-bundle - -Bundle of Python packages for scientific software - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|------------------------------------------------------------------------ -``2019.03``| |``foss/2019a``, ``fosscuda/2019a``, ``intel/2019a``, ``intelcuda/2019a`` -``2019.10``|``-Python-2.7.16``|``foss/2019b``, ``fosscuda/2019b``, ``intel/2019b`` -``2019.10``|``-Python-3.7.2`` |``intel/2019a`` -``2019.10``|``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b``, ``intel/2019b``, ``intelcuda/2019b`` -``2020.03``|``-Python-2.7.18``|``foss/2020a``, ``fosscuda/2020a``, ``intel/2020a`` -``2020.03``|``-Python-3.8.2`` |``foss/2020a``, ``fosscuda/2020a``, ``intel/2020a``, ``intelcuda/2020a`` -``2020.11``| |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b``, ``intelcuda/2020b`` -``2020.11``|``-Python-2.7.18``|``foss/2020b`` -``2021.05``| |``foss/2021a``, ``gomkl/2021a``, ``intel/2021a`` -``2021.10``| |``foss/2021b``, ``intel/2021b`` -``2021.10``|``-Python-2.7.18``|``foss/2021b`` -``2022.05``| |``foss/2022.05``, ``foss/2022a``, ``intel/2022.05``, ``intel/2022a`` -``2023.02``| |``gfbf/2022b`` -``2023.07``| |``gfbf/2023a``, ``iimkl/2023a`` -``2023.11``| |``gfbf/2023.09``, ``gfbf/2023b`` - -### SciTools-Iris - -A powerful, format-agnostic, community-driven Python package for analysing and visualising Earth science data. - -*homepage*: - -version |toolchain ----------|-------------- -``3.2.1``|``foss/2022a`` -``3.9.0``|``foss/2023a`` - -### SCnorm - -This package implements SCnorm — a method to normalize single-cell RNA-seq data. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|--------------- -``0.99.7``|``-R-3.4.0`` |``intel/2017a`` - -### Scoary - -Microbial pan-GWAS using the output from Roary - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``1.6.16``| |``foss/2021a`` -``1.6.16``|``-Python-2.7.14``|``intel/2018a`` - -### SCons - -SCons is a software construction tool. - -*homepage*: - -version |versionsuffix |toolchain ----------------|-----------------------|--------------------------------------------------------------------------------- -``2.4.1`` |``-Python-2.7.11`` |``foss/2016a`` -``2.5.0`` |``-Python-2.7.12`` |``foss/2016b``, ``intel/2016b`` -``2.5.1`` | |``intel/2017a`` -``2.5.1`` |``-Python-2.7.12`` |``foss/2016b``, ``intel/2016b`` -``2.5.1`` |``-Python-2.7.13`` |``intel/2017a`` -``3.0.1`` |``-Python-2.7.14`` |``foss/2017b``, ``foss/2018a``, ``intel/2017b``, ``intel/2018a``, ``iomkl/2018a`` -``3.0.1`` |``-Python-2.7.15`` |``foss/2018b``, ``fosscuda/2018b`` -``3.0.1`` |``-Python-2.7.15-bare``|``GCCcore/7.3.0`` -``3.0.1`` |``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``3.0.1`` |``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``3.0.4`` |``-Python-2.7.15`` |``foss/2018b`` -``3.0.5`` | |``GCCcore/8.2.0`` -``3.0.5`` |``-Python-2.7.15`` |``GCCcore/8.2.0`` -``3.0.5`` |``-Python-3.7.2`` |``GCCcore/8.2.0`` -``3.1.1`` | |``GCCcore/8.3.0`` -``3.1.2`` | |``GCCcore/9.3.0`` -``4.0.1`` | |``GCCcore/10.2.0`` -``4.1.0.post1``| |``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``4.2.0`` | |``GCCcore/11.2.0`` -``4.4.0`` | |``GCCcore/11.3.0`` -``4.5.2`` | |``GCCcore/12.3.0`` -``4.6.0`` | |``GCCcore/13.2.0`` - -### SCOOP - -SCOOP (Scalable COncurrent Operations in Python) is a distributed task module allowing concurrent parallel programming on various environments, from heterogeneous grids to supercomputers. - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|----------------- -``0.6.2`` |``-Python-2.7.12``|``intel/2016b`` -``0.7.1.1``| |``GCCcore/8.2.0`` -``0.7.1.1``|``-Python-2.7.11``|``intel/2016a`` -``0.7.1.1``|``-Python-2.7.14``|``intel/2017b`` -``0.7.1.1``|``-Python-3.5.1`` |``intel/2016a`` - -### SCopeLoomR - -An R package (compatible with SCope) to create generic .loom files and extend them with other data e.g.: SCENIC regulons, Seurat clusters and markers, ... - -*homepage*: - -version |versionsuffix|toolchain --------------------|-------------|-------------- -``0.13.0`` |``-R-4.1.2`` |``foss/2021b`` -``0.13.0_20220408``|``-R-4.2.1`` |``foss/2022a`` - -### Score-P - -The Score-P measurement infrastructure is a highly scalable and easy-to-use tool suite for profiling, event tracing, and online analysis of HPC applications. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|------------------------------------------------------------------------------------------------------- -``2.0.1``| |``foss/2016a`` -``6.0`` | |``gompi/2019a``, ``gompi/2019b``, ``gompi/2020a``, ``gompic/2019a``, ``gompic/2019b``, ``gompic/2020a`` -``7.0`` | |``gompi/2020b``, ``gompi/2021a``, ``gompic/2020b`` -``7.1`` |``-CUDA-11.3.1``|``gompi/2021a`` -``8.0`` | |``gompi/2021b``, ``gompi/2022a`` -``8.0`` |``-CUDA-11.4.1``|``gompi/2021b`` -``8.0`` |``-CUDA-11.7.0``|``gompi/2022a`` -``8.1`` | |``gompi/2022b``, ``gompi/2023a`` -``8.1`` |``-CUDA-12.0.0``|``gompi/2022b`` -``8.1`` |``-CUDA-12.1.1``|``gompi/2023a`` -``8.3`` | |``gompi/2022b`` -``8.4`` | |``gompi/2023b`` -``8.4`` |``-CUDA-12.4.0``|``gompi/2023b`` - -### SCOTCH - -Software package and libraries for sequential and parallel graph partitioning, static mapping, and sparse matrix block ordering, and sequential mesh and hypergraph partitioning. - -*homepage*: - -version |versionsuffix|toolchain --------------------|-------------|----------------------------------------------------------------------------------------------------------------------------------------------------- -``5.1.12b_esmumps``| |``foss/2017b`` -``6.0.4`` | |``foss/2016a``, ``foss/2016b``, ``foss/2017b``, ``gimkl/2.11.5``, ``intel/2016a``, ``intel/2016b``, ``intel/2017a``, ``intel/2017b``, ``intel/2018a`` -``6.0.4`` |``-64bitint``|``foss/2017b`` -``6.0.6`` | |``foss/2018a``, ``foss/2018b``, ``gompi/2019a``, ``iimpi/2019a``, ``intel/2018a`` -``6.0.9`` | |``gompi/2019b``, ``gompi/2020a``, ``iimpi/2019b``, ``iimpi/2020a``, ``iimpic/2019b`` -``6.1.0`` | |``gompi/2020b``, ``gompi/2021a``, ``iimpi/2020b``, ``iimpi/2021a`` -``6.1.2`` | |``gompi/2021b``, ``iimpi/2021b`` -``7.0.1`` | |``gompi/2022a``, ``iimpi/2022a`` -``7.0.1`` |``-int64`` |``gompi/2022a`` -``7.0.3`` | |``gompi/2022b``, ``gompi/2023a`` -``7.0.4`` | |``gompi/2023b`` - -### scp - -The scp.py module uses a paramiko transport to send and recieve files via the scp1 protocol. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``0.10.2``|``-Python-2.7.12``|``intel/2016b`` -``0.13.1``|``-Python-2.7.15``|``intel/2018b`` -``0.13.2``|``-Python-2.7.15``|``intel/2018b`` - -### scPred - -scPred package for cell type prediction from scRNA-seq data - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``1.9.2``|``-R-4.1.2`` |``foss/2021b`` - -### Scrappie - -Scrappie is a technology demonstrator for the Oxford Nanopore Research Algorithms group. - -*homepage*: - -version |toolchain ----------|--------------- -``1.3.2``|``intel/2018a`` - -### SCReadCounts - -SCReadCounts is a computational tool for a cell-level assessment of the read counts bearing a particular nucleotide at genomic positions of interest from single cell RNA sequencing (scRNA-seq) data. - -*homepage*: - -version |toolchain ----------|-------------- -``1.4.0``|``foss/2023b`` - -### scrublet - -Single-Cell Remover of Doublets - Python code for identifying doublets in single-cell RNA-seq data - -*homepage*: - -version |toolchain ----------|-------------- -``0.2.3``|``foss/2022a`` - -### scVelo - -scVelo is a scalable toolkit for estimating and analyzing RNA velocities in single cells using dynamical modeling. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``0.1.24``|``-Python-3.7.4``|``foss/2019b`` -``0.2.3`` | |``foss/2021a`` -``0.3.1`` | |``foss/2023a`` - -### scvi-tools - -scvi-tools (single-cell variational inference tools) is a package for probabilistic modeling and analysis of single-cell omics data, built on top of PyTorch and AnnData. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|-------------- -``0.16.4``| |``foss/2021a`` -``0.16.4``|``-CUDA-11.3.1``|``foss/2021a`` - -### Scythe - -Scythe uses a Naive Bayesian approach to classify contaminant substrings in sequence reads. It considers quality information, which can make it robust in picking out 3'-end adapters, which often include poor quality bases. - -*homepage*: - -version |toolchain ----------|----------------- -``0.994``|``GCCcore/9.3.0`` - -### SDCC - -SDCC is a retargettable, optimizing ANSI - C compiler suite that targets the Intel MCS51 based microprocessors (8031, 8032, 8051, 8052, etc.), Maxim (formerly Dallas) DS80C390 variants, Freescale (formerly Motorola) HC08 based (hc08, s08) and Zilog Z80 based MCUs (z80, z180, gbz80, Rabbit 2000/3000, Rabbit 3000A). Work is in progress on supporting the Microchip PIC16 and PIC18 targets. It can be retargeted for other microprocessors. - -*homepage*: - -version |toolchain ----------|---------- -``3.3.0``|``system`` - -### SDL - -SDL: Simple DirectMedia Layer, a cross-platform multimedia library - -*homepage*: - -version |toolchain -----------|----------------- -``1.2.15``|``GCCcore/6.4.0`` - -### SDL2 - -SDL: Simple DirectMedia Layer, a cross-platform multimedia library - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------------------- -``2.0.4`` |``intel/2016b`` -``2.0.8`` |``GCCcore/6.4.0``, ``foss/2017b``, ``intel/2017b``, ``intel/2018a`` -``2.0.9`` |``GCCcore/8.2.0``, ``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b`` -``2.0.10``|``GCCcore/8.3.0`` -``2.0.14``|``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``2.0.20``|``GCCcore/11.2.0`` -``2.0.22``|``GCCcore/11.3.0`` -``2.26.3``|``GCCcore/12.2.0`` -``2.28.2``|``GCCcore/12.3.0`` -``2.28.5``|``GCCcore/13.2.0`` - -### SDL2_gfx - -Graphics drawing primitives library for SDL2 - -*homepage*: - -version |toolchain ----------|------------------ -``1.0.4``|``GCCcore/11.3.0`` - -### SDL2_image - -This is a simple library to load images of various formats as SDL surfaces. It can load BMP, GIF, JPEG, LBM, PCX, PNG, PNM (PPM/PGM/PBM), QOI, TGA, XCF, XPM, and simple SVG format images. It can also load AVIF, JPEG-XL, TIFF, and WebP images, depending on build options (see the note below for details.) - -*homepage*: - -version |toolchain ----------|------------------ -``2.0.3``|``GCCcore/6.4.0`` -``2.6.3``|``GCCcore/11.3.0`` -``2.8.2``|``GCCcore/12.3.0`` - -### SDL2_mixer - -Due to popular demand, here is a simple multi-channel audio mixer. It supports 8 channels of 16 bit stereo audio, plus a single channel of music. It can load FLAC, MP3, Ogg, VOC, and WAV format audio. It can also load MIDI, MOD, and Opus audio, depending on build options (see the note below for details.) - -*homepage*: - -version |toolchain ----------|------------------ -``2.6.3``|``GCCcore/11.3.0`` -``2.8.0``|``GCCcore/12.3.0`` - -### SDL2_ttf - -This library is a wrapper around the FreeType and Harfbuzz libraries, allowing you to use TrueType fonts to render text in SDL applications. - -*homepage*: - -version |toolchain -----------|------------------ -``2.20.2``|``GCCcore/11.3.0`` -``2.22.0``|``GCCcore/12.3.0`` - -### SDL_image - -SDL_image is an image file loading library. - -*homepage*: - -version |toolchain -----------|----------------- -``1.2.12``|``GCCcore/6.4.0`` - -### SDSL - -The Succinct Data Structure Library (SDSL) is a powerful and flexible C++11 library implementing succinct data structures. - -*homepage*: - -version |toolchain -------------------|----------------- -``2.1.1-20191211``|``GCCcore/8.3.0`` - -### Seaborn - -Seaborn is a Python visualization library based on matplotlib. It provides a high-level interface for drawing attractive statistical graphics. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|----------------------------------------------------------------------------------------- -``0.7.1`` |``-Python-2.7.12``|``intel/2016b`` -``0.8.1`` |``-Python-2.7.13``|``foss/2017a`` -``0.8.1`` |``-Python-2.7.14``|``intel/2018a`` -``0.9.0`` |``-Python-2.7.14``|``foss/2017b``, ``fosscuda/2017b``, ``intel/2017b``, ``intel/2018a``, ``intelcuda/2017b`` -``0.9.0`` |``-Python-2.7.15``|``foss/2018b``, ``foss/2019a``, ``intel/2018b``, ``intel/2019a`` -``0.9.0`` |``-Python-3.6.3`` |``foss/2017b``, ``fosscuda/2017b``, ``intel/2017b``, ``intelcuda/2017b`` -``0.9.0`` |``-Python-3.6.4`` |``intel/2018a`` -``0.9.0`` |``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``0.9.0`` |``-Python-3.7.2`` |``foss/2019a``, ``intel/2019a`` -``0.9.1`` |``-Python-2.7.16``|``foss/2019b`` -``0.9.1`` |``-Python-2.7.18``|``foss/2020b`` -``0.10.0``|``-Python-3.7.4`` |``foss/2019b``, ``intel/2019b`` -``0.10.1``| |``intel/2020b`` -``0.10.1``|``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``0.11.1``| |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b`` -``0.11.2``| |``foss/2021a``, ``foss/2021b``, ``intel/2021b`` -``0.12.1``| |``foss/2022a`` -``0.12.2``| |``foss/2022b`` -``0.13.2``| |``gfbf/2023a``, ``gfbf/2023b`` - -### SEACells - -SEACells algorithm for Inference of transcriptional and epigenomic cellular states from single-cell genomics data - -*homepage*: - -version |toolchain -------------|-------------- -``20230731``|``foss/2021a`` - -### SearchGUI - -SearchGUI is a user-friendly open-source graphical user interface for configuring and running proteomics identification search engines and de novo sequencing algorithms, currently supporting X! Tandem, MS-GF+, MS Amanda, MyriMatch, Comet, Tide, Andromeda, OMSSA, Novor and DirecTag. - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------|---------- -``3.3.3``|``-Java-1.8.0_152``|``system`` - -### SeaView - -SeaView is a multiplatform, graphical user interface for multiple sequence alignment and molecular phylogeny. - -*homepage*: - -version |toolchain ----------|------------------ -``5.0.5``|``GCCcore/11.2.0`` - -### SECAPR - -SECAPR is a bioinformatics pipeline for the rapid and user-friendly processing of targeted enriched Illumina sequences, from raw reads to alignments - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|-------------- -``1.1.15``|``-Python-2.7.16``|``foss/2019b`` - -### Seeder - -Seeder is a framework for DNA motif discovery. - -*homepage*: - -version |versionsuffix |toolchain ---------|----------------|----------------- -``0.01``|``-Perl-5.28.1``|``GCCcore/8.2.0`` - -### segemehl - -segemehl is a software to map short sequencer reads to reference genomes. Unlike other methods, segemehl is able to detect not only mismatches but also insertions and deletions. Furthermore, segemehl is not limited to a specific read length and is able to map primer- or polyadenylation contaminated reads correctly. segemehl implements a matching strategy based on enhanced suffix arrays (ESA). Segemehl now supports the SAM format, reads gziped queries to save both disk and memory space and allows bisulfite sequencing mapping and split read mapping. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------------ -``0.2.0``|``foss/2016b``, ``intel/2017b``, ``intel/2018a`` -``0.3.4``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/8.3.0``, ``foss/2018b``, ``iccifort/2020.4.304`` - -### segment-anything - -The Segment Anything Model (SAM) produces high quality object masks from input prompts such as points or boxes, and it can be used to generate masks for all objects in an image. It has been trained on a dataset of 11 million images and 1.1 billion masks, and has strong zero-shot performance on a variety of segmentation tasks. - -*homepage*: - -version|toolchain --------|-------------- -``1.0``|``foss/2022a`` - -### segmentation-models - -Python library with Neural Networks for Image Segmentation based on Keras and TensorFlow. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|---------------------------------- -``1.0.1``|``-Python-3.7.4``|``foss/2019b``, ``fosscuda/2019b`` - -### segmentation-models-pytorch - -Python library with Neural Networks for Image Segmentation based on PyTorch. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``0.3.3``| |``foss/2022a`` -``0.3.3``|``-CUDA-11.7.0``|``foss/2022a`` - -### SeisSol - -SeisSol is a software package for simulating wave propagation and dynamic rupture based on the arbitrary high-order accurate derivative discontinuous Galerkin method (ADER-DG). - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|-------------- -``201703``|``-Python-2.7.15``|``foss/2018b`` - -### SelEstim - -SelEstim is aimed at distinguishing neutral from selected polymorphisms and estimate the intensity of selection at the latter. The SelEstim model accounts explicitly for positive selection, and it is assumed that all marker loci in the dataset are responding to selection, to some extent - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|---------- -``1.1.4``|``-Linux-64bits``|``system`` - -### SELFIES - -Robust representation of semantically constrained graphs, in particular for molecules in chemistry - -*homepage*: - -version |toolchain ----------|-------------- -``2.1.1``|``GCC/11.2.0`` - -### SemiBin - -SemiBin: Metagenomic Binning Using Siamese Neural Networks for short and long reads - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``2.0.2``| |``foss/2022a`` -``2.0.2``|``-CUDA-11.7.0``|``foss/2022a`` - -### semla - -R interface to the Apache Arrow C++ library - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``1.1.6``|``-R-4.3.2`` |``foss/2023a`` - -### Sentence-Transformers - -Sentence Transformers provides an easy method to compute dense vector representations for sentences, paragraphs, and images - -*homepage*: - -version |toolchain ----------|-------------- -``2.2.2``|``foss/2022b`` - -### SentencePiece - -Unsupervised text tokenizer for Neural Network-based text generation. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------------------ -``0.1.85``|``-Python-3.7.4``|``GCC/8.3.0`` -``0.1.94``|``-Python-3.8.2``|``GCC/9.3.0`` -``0.1.96``| |``GCC/10.2.0``, ``GCC/10.3.0`` -``0.1.97``| |``GCC/11.3.0`` -``0.1.99``| |``GCC/12.2.0`` -``0.2.0`` | |``GCC/12.3.0`` - -### sentinelsat - -Sentinelsat makes searching, downloading and retrieving the metadata of Sentinel satellite images from the Copernicus Open Access Hub easy. - -*homepage*: - -version |toolchain ----------|------------------ -``1.2.1``|``GCCcore/11.3.0`` - -### sep - -Python and C library for Source Extraction and Photometry. (this easyconfig provides python library only) - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``1.0.3``|``-Python-2.7.15``|``foss/2018b``, ``intel/2018b`` - -### SEPP - -SATe-enabled Phylogenetic Placement - addresses the problem of phylogenetic placement of short reads into reference alignments and trees. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|---------------------------------------------- -``4.3.10``|``-Python-3.7.4``|``foss/2019b`` -``4.3.10``|``-Python-3.8.2``|``foss/2020a`` -``4.4.0`` | |``foss/2020b`` -``4.5.0`` | |``foss/2021a`` -``4.5.1`` | |``foss/2021b``, ``foss/2022a``, ``foss/2022b`` - -### Seq-Gen - -Seq-Gen is a program that will simulate the evolution of nucleotide or amino acid sequences along a phylogeny, using common models of the substitution process. - -*homepage*: - -version |toolchain ----------|--------------- -``1.3.4``|``intel/2017b`` - -### seq2HLA - -In-silico method written in Python and R to determine HLA genotypes of a sample. seq2HLA takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie index comprising all HLA alleles and outputs the most likely HLA class I and class II genotypes (in 4 digit resolution), a p-value for each call, and the expression of each class. - -*homepage*: - -version|versionsuffix |toolchain --------|------------------|--------------- -``2.3``|``-Python-2.7.14``|``intel/2018a`` -``2.3``|``-Python-2.7.15``|``foss/2018b`` - -### SeqAn - -SeqAn is an open source C++ library of efficient algorithms and data structures for the analysis of sequences with the focus on biological data - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|----------------------------------------------------------------------------------------------------------------------------------- -``1.4.2``|``-library`` |``system`` -``2.3.2``| |``foss/2016b`` -``2.4.0``| |``GCC/8.2.0-2.31.1``, ``GCCcore/10.2.0``, ``GCCcore/11.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``foss/2018b``, ``intel/2018b`` - -### SeqAn3 - -SeqAn is an open source C++ library of efficient algorithms and data structures for the analysis of sequences with the focus on biological data. Our library applies a unique generic design that guarantees high performance, generality, extensibility, and integration with other libraries. SeqAn is easy to use and simplifies the development of new software tools with a minimal loss of performance. - -*homepage*: - -version |toolchain ----------|---------- -``3.0.0``|``system`` - -### SeqKit - -SeqKit - a cross-platform and ultrafast toolkit for FASTA/Q file manipulation - -*homepage*: - -version |toolchain -----------|---------- -``0.8.1`` |``system`` -``0.13.2``|``system`` -``2.1.0`` |``system`` -``2.2.0`` |``system`` -``2.3.1`` |``system`` - -### SeqLib - -C++ interface to HTSlib, BWA-MEM and Fermi. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------- -``1.2.0``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/12.3.0``, ``GCC/9.3.0`` - -### Seqmagick - -We often have to convert between sequence formats and do little tasks on them, and it's not worth writing scripts for that. Seqmagick is a kickass little utility built in the spirit of imagemagick to expose the file format conversion in Biopython in a convenient way. Instead of having a big mess of scripts, there is one that takes arguments. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``0.6.1``|``-Python-2.7.11``|``foss/2016a`` -``0.6.2``|``-Python-2.7.15``|``foss/2018b`` -``0.8.6``| |``foss/2023a`` - -### SeqPrep - -Tool for stripping adaptors and/or merging paired reads with overlap into single reads. - -*homepage*: - -version |toolchain ----------|----------------- -``1.3.2``|``GCCcore/7.3.0`` - -### seqtk - -Seqtk is a fast and lightweight tool for processing sequences in the FASTA or FASTQ format. It seamlessly parses both FASTA and FASTQ files which can also be optionally compressed by gzip. - -*homepage*: - -version|toolchain --------|-------------------------------------------------------------------------------------------------------------------------------------------------- -``1.2``|``foss/2016b``, ``intel/2017a`` -``1.3``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/8.2.0-2.31.1``, ``GCC/8.3.0``, ``GCC/9.3.0``, ``foss/2018a``, ``foss/2018b`` -``1.4``|``GCC/12.2.0``, ``GCC/12.3.0`` - -### Serf - -The serf library is a high performance C-based HTTP client library built upon the Apache Portable Runtime (APR) library - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.3.9``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/9.3.0``, ``foss/2017b``, ``intel/2017b``, ``iomkl/2018a`` - -### setuptools - -Easily download, build, install, upgrade, and uninstall Python packages - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|------------------ -``1.4.2`` | |``system`` -``41.0.1``|``-py3`` |``system`` -``64.0.3``| |``GCCcore/12.2.0`` - -### setuptools-rust - -setuptools-rust is a plugin for setuptools to build Rust Python extensions implemented with PyO3 or rust-cpython. - -*homepage*: - -version |toolchain ----------|------------------ -``1.6.0``|``GCCcore/12.3.0`` -``1.8.0``|``GCCcore/13.2.0`` - -### Seurat - -Seurat is an R package designed for QC, analysis, and exploration of single cell RNA-seq data. - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|--------------- -``1.4.0.16``|``-R-3.4.0`` |``intel/2017a`` -``2.3.4`` |``-R-3.4.4`` |``intel/2018a`` -``2.3.4`` |``-R-3.5.1`` |``foss/2018b`` -``3.1.2`` |``-R-3.6.0`` |``foss/2019a`` -``3.1.5`` |``-R-4.0.0`` |``foss/2020a`` -``4.0.1`` |``-R-4.0.3`` |``foss/2020b`` -``4.0.3`` |``-R-4.0.3`` |``foss/2020b`` -``4.1.0`` |``-R-4.1.0`` |``foss/2021a`` -``4.2.0`` |``-R-4.2.1`` |``foss/2022a`` -``4.3.0`` |``-R-4.1.2`` |``foss/2021b`` -``4.3.0`` |``-R-4.2.1`` |``foss/2022a`` -``4.4.0`` |``-R-4.2.2`` |``foss/2022b`` -``5.0.1`` |``-R-4.2.2`` |``foss/2022b`` -``5.1.0`` |``-R-4.3.2`` |``foss/2023a`` - -### SeuratData - -SeuratData is a mechanism for distributing datasets in the form of Seurat objects using R's internal package and data management systems. - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|-------------- -``20210514``|``-R-4.0.3`` |``foss/2020b`` - -### SeuratDisk - -Interfaces for HDF5-based Single Cell File Formats - -*homepage*: - -version |versionsuffix|toolchain ---------------|-------------|-------------- -``0.0.0.9020``|``-R-4.2.1`` |``foss/2022a`` -``20231104`` |``-R-4.3.2`` |``foss/2023a`` - -### SeuratWrappers - -SeuratWrappers is a collection of community-provided methods and extensions for Seurat - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|-------------- -``20210528``|``-R-4.0.3`` |``foss/2020b`` -``20221022``|``-R-4.2.1`` |``foss/2022a`` - -### sf - -Support for simple features, a standardized way to encode spatial vector data. Binds to GDAL for reading and writing data, to GEOS for geometrical operations, and to PROJ for projection conversions and datum transformations. - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------------|-------------- -``0.9-5``|``-R-4.0.0-Python-3.8.2``|``foss/2020a`` - -### sfftk - -sfftk is a set of utilities that facilitate creation, conversion and modification of Electron Microscopy Data Bank - Segmentation File Format (EMDB-SFF) files. EMDB-SFF is an open, community-driven file format to handle annotated segmentations and subtomogram averages that facilitates segmentation file interchange. It is written in Python and provides both a command-line suite of commands and a Python API. - -*homepage*: - -version |toolchain ----------|-------------- -``0.7.4``|``foss/2021a`` - -### Shannon - -Shannon is a program for assembling transcripts from RNA-Seq data - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|--------------- -``20170511``|``-Python-2.7.13``|``intel/2017a`` - -### SHAP - -SHAP (SHapley Additive exPlanations) is a game theoretic approach to explain the output of any machine learning model. It connects optimal credit allocation with local explanations using the classic Shapley values from game theory and their related extensions. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``0.35.0``|``-Python-3.7.4``|``foss/2019b`` -``0.41.0``| |``foss/2022a`` -``0.42.1``| |``foss/2022a`` -``0.42.1``|``-Python-3.7.4``|``foss/2019b`` - -### shapAAR - -An R package for the extraction, analysis and classification of (not only) archaeological objects from scanned images. - -*homepage*: - -version |versionsuffix|toolchain -------------------|-------------|-------------- -``0.1.0-20180425``|``-R-3.6.0`` |``foss/2019a`` - -### SHAPEIT - -SHAPEIT is a fast and accurate method for estimation of haplotypes (aka phasing) from genotype or sequencing data. - -*homepage*: - -version |versionsuffix |toolchain -----------|---------------|---------- -``2.r837``|``.GLIBCv2.12``|``system`` -``2.r904``|``.glibcv2.17``|``system`` - -### SHAPEIT4 - -SHAPEIT4 is a fast and accurate method for estimation of haplotypes (aka phasing) for SNP array and high coverage sequencing data. - -*homepage*: - -version |toolchain ----------|---------------------------------------------- -``4.1.3``|``foss/2019b`` -``4.2.0``|``foss/2019b``, ``foss/2020a``, ``foss/2020b`` -``4.2.2``|``foss/2020b``, ``foss/2021a`` - -### Shapely - -Shapely is a BSD-licensed Python package for manipulation and analysis of planar geometric objects. It is based on the widely deployed GEOS (the engine of PostGIS) and JTS (from which GEOS is ported) libraries. - -*homepage*: - -version |versionsuffix |toolchain ----------------|-----------------|------------------------------------------------------- -``1.7.0`` |``-Python-3.7.2``|``foss/2019a`` -``1.7.0`` |``-Python-3.7.4``|``GCC/8.3.0``, ``iccifort/2019.5.281`` -``1.7.1`` |``-Python-3.8.2``|``GCC/9.3.0`` -``1.8.1.post1``| |``GCC/11.2.0`` -``1.8.2`` | |``foss/2021b``, ``foss/2022a`` -``1.8a1`` | |``GCC/10.2.0``, ``GCC/10.3.0``, ``iccifort/2020.4.304`` -``2.0.1`` | |``foss/2022b``, ``gfbf/2023a`` - -### sharutils - -GNU shar makes so-called shell archives out of many files, preparing them for transmission by electronic mail services, while unshar helps unpacking shell archives after reception. - -*homepage*: - -version |toolchain ---------|----------------- -``4.15``|``GCCcore/6.3.0`` - -### Shasta - -The goal of the Shasta long read assembler is to rapidly produce accurate assembled sequence using DNA reads generated by Oxford Nanopore flow cells as input. Computational methods used by the Shasta assembler include: Using a run-length representation of the read sequence. This makes the assembly process more resilient to errors in homopolymer repeat counts, which are the most common type of errors in Oxford Nanopore reads. Using in some phases of the computation a representation of the read sequence based on markers, a fixed subset of short k-mers (k ≈ 10). - -*homepage*: - -version |toolchain ----------|-------------- -``0.8.0``|``foss/2020b`` - -### ShengBTE - -A solver for the Boltzmann transport equation for phonons. - -*homepage*: - -version |toolchain ----------|-------------- -``1.1.1``|``foss/2021a`` -``1.5.0``|``foss/2022a`` - -### shift - -Shift is a framework for Self-Healing Independent File Transfer that provides high performance and resilience for local and remote transfers through a variety of techniques. - -*homepage*: - -version|toolchain --------|--------------- -``4.0``|``intel/2016a`` - -### SHORE - -SHORE, for Short Read, is a mapping and analysis pipeline for short read data produced on the Illumina platform. - -*homepage*: - -version |toolchain ----------|-------------- -``0.9.3``|``foss/2016a`` - -### Short-Pair - -Sensitive Short Read Homology Search for Paired-End Reads - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|-------------- -``20170125``| |``foss/2021b`` -``20170125``|``-Python-2.7.15``|``foss/2018b`` - -### shovill - -Faster SPAdes assembly of Illumina reads - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``0.9.0``|``-Python-2.7.14``|``foss/2018a`` -``1.0.4``|``-Python-2.7.15``|``foss/2018b`` -``1.1.0``| |``gompi/2021b`` - -### shrinkwrap - -A std::streambuf wrapper for compression formats. - -*homepage*: - -version |toolchain ---------------|------------------ -``1.0.0-beta``|``GCCcore/8.2.0`` -``1.1.0`` |``GCCcore/10.2.0`` - -### SHTns - -Spherical Harmonic Transform library aimed at high performance numerical simulations in spherical geometries. - -*homepage*: - -version |toolchain ----------|-------------- -``2.7`` |``foss/2021b`` -``3.5.1``|``foss/2021b`` - -### Sibelia - -Sibelia: A comparative genomics tool: It assists biologists in analysing the genomic variations that correlate with pathogens, or the genomic changes that help microorganisms adapt in different environments. Sibelia will also be helpful for the evolutionary and genome rearrangement studies for multiple strains of microorganisms. - -*homepage*: - -version |toolchain ----------|------------------------------ -``3.0.6``|``foss/2016b`` -``3.0.7``|``foss/2018b``, ``foss/2020b`` - -### SICER2 - -Redesigned and improved ChIP-seq broad peak calling tool SICER - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``1.0.3``|``-Python-3.8.2``|``foss/2020a`` - -### sickle - -Windowed Adaptive Trimming for fastq files using quality - -*homepage*: - -version |toolchain ---------|------------------------------- -``1.33``|``foss/2017a``, ``intel/2018a`` - -### Siesta - -SIESTA is both a method and its computer program implementation, to perform efficient electronic structure calculations and ab initio molecular dynamics simulations of molecules and solids. - -*homepage*: - -version |versionsuffix|toolchain ----------------|-------------|------------------------------------------------------------------------------------------------ -``4.0`` | |``foss/2017b``, ``intel/2017a`` -``4.0.1`` | |``intel/2017a`` -``4.1-b2`` | |``intel/2017a`` -``4.1-b3`` | |``intel/2017a`` -``4.1-b4`` | |``foss/2018b``, ``intel/2018b`` -``4.1-MaX-1.0``| |``intel/2019b`` -``4.1-MaX-1.0``|``-PEXSI`` |``intel/2019b`` -``4.1.5`` | |``foss/2020a``, ``foss/2021a``, ``foss/2021b``, ``foss/2022a``, ``intel/2020a``, ``intel/2022a`` - -### SignalP - -SignalP predicts the presence and location of signal peptide cleavage sites in amino acid sequences from different organisms - -*homepage*: - -version |versionsuffix |toolchain ---------|---------------------|------------------------------ -``5.0b``|``-Linux`` |``system`` -``6.0g``|``-fast`` |``foss/2021b``, ``foss/2022a`` -``6.0g``|``-fast-CUDA-11.7.0``|``foss/2022a`` -``6.0h``|``-fast`` |``foss/2022b`` - -### silhouetteRank - -silhouetteRank is a tool for finding spatially variable genes based on computing silhouette coefficient from binarized spatial gene expression data - -*homepage*: - -version |toolchain -------------|-------------- -``1.0.5.13``|``foss/2022a`` - -### silx - -The silx project provides a collection of Python packages to support the development of data assessment, reduction and analysis applications at synchrotron radiation facilities. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|---------------------------------- -``0.13.2``|``-Python-3.7.4``|``foss/2019b``, ``fosscuda/2019b`` -``0.14.0``| |``foss/2020b``, ``fosscuda/2020b`` -``1.0.0`` | |``foss/2021b`` - -### simanneal - -This module performs simulated annealing optimization to find the optimal state of a system. It is inspired by the metallurgic process of annealing whereby metals must be cooled at a regular schedule in order to settle into their lowest energy state. - -*homepage*: - -version |toolchain ----------|-------------- -``0.5.0``|``GCC/11.3.0`` - -### simint - -Simint is a vectorized implementation of the Obara-Saika (OS) method of calculating electron repulsion integrals. Speedup is gained by vectorizing the primitive loop of the OS algorithm, with additional vectorization and optimizations left to the compiler. - -*homepage*: - -version|versionsuffix |toolchain --------|------------------------|-------------- -``0.7``|``-lmax-5-vec-avx-psi4``|``GCC/11.2.0`` - -### SimNIBS - -SimNIBS is a free and open source software package for the Simulation of Non-invasive Brain Stimulation - -*homepage*: - -version |toolchain ----------|-------------- -``3.2.4``|``foss/2020b`` -``4.0.1``|``foss/2023a`` - -### SimPEG - -Simulation and Parameter Estimation in Geophysics: a python package for simulation and gradient based parameter estimation in the context of geophysical applications. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------- -``0.3.1`` |``-Python-2.7.12``|``intel/2016b`` -``0.14.1``|``-Python-3.8.2`` |``intel/2020a`` -``0.18.1``| |``foss/2021b``, ``intel/2021b`` - -### SIMPLE - -Single-particle IMage Processing Linux Engine SIMPLE is an open-source software package for analysis of cryogenic transmission electron microscopy (cryo-EM) movies of single-particles (Single-Particle Analysis, SPA). - -*homepage*: - -version |toolchain ----------|-------------- -``2.5`` |``foss/2018a`` -``3.0.0``|``foss/2020b`` - -### Simple-DFTD3 - -Reimplementation of the D3 dispersion correction. The s-dftd3 project aims to provide a user-friendly and uniform interface to the D3 dispersion model and for the calculation of DFT-D3 dispersion corrections. - -*homepage*: - -version |toolchain ----------|-------------- -``0.7.0``|``foss/2022a`` - -### SimpleElastix - -Multi-lingual medical image registration library. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``0.10.0``|``-Python-3.6.3``|``foss/2017b`` -``0.10.0``|``-Python-3.6.4``|``foss/2018a`` -``1.1.0`` |``-Python-3.7.4``|``foss/2019b`` - -### SimpleITK - -SimpleITK is a simplified programming interface to the algorithms and data structures of the Insight Toolkit (ITK). - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|---------------------------------- -``1.1.0`` |``-Python-2.7.15``|``foss/2018b`` -``1.1.0`` |``-Python-3.6.4`` |``foss/2018a`` -``1.1.0`` |``-Python-3.6.6`` |``foss/2018b`` -``1.2.4`` |``-Python-3.7.4`` |``foss/2019b`` -``2.1.0`` | |``foss/2020b``, ``fosscuda/2020b`` -``2.1.1`` | |``foss/2021a`` -``2.1.1.2``| |``foss/2021b``, ``foss/2022a`` -``2.3.1`` | |``foss/2023a`` - -### simpy - -SimPy is a process-based discrete-event simulation framework based on standard Python. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|--------------- -``3.0.11``| |``intel/2019a`` -``3.0.11``|``-Python-3.6.6``|``intel/2018b`` - -### Simstrat - -Simstrat is a one-dimensional physical lake model for the simulation of stratification and mixing in deep stratified lakes. - -*homepage*: - -version |toolchain ---------|-------------- -``3.01``|``GCC/10.3.0`` - -### SimVascular - -SimVascular is an open source software suite for cardiovascular simulation, providing a complete pipeline from medical image data to 3D model construction, meshing, and blood flow simulation. - -*homepage*: - -version |toolchain --------------|--------------- -``2.16.0406``|``intel/2016b`` - -### SingleM - -SingleM is a tool to find the abundances of discrete operational taxonomic units (OTUs) directly from shotgun metagenome data, without heavy reliance on reference sequence databases. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``0.12.1``|``-Python-2.7.15``|``intel/2019a`` - -### Singular - -Singular is a computer algebra system for polynomial computations, with special emphasis on commutative and non-commutative algebra, algebraic geometry, and singularity theory. - -*homepage*: - -version |toolchain -------------|-------------------------------- -``4.1.2`` |``GCC/8.2.0-2.31.1``, ``system`` -``4.3.2p10``|``gfbf/2022a`` -``4.4.0`` |``gfbf/2023b`` - -### sinto - -Sinto is a toolkit for processing aligned single-cell data. - -*homepage*: - -version |toolchain ----------|-------------- -``0.7.4``|``foss/2021a`` - -### SiNVICT - -SiNVICT is a tool for the detection of SNVs and indels from cfDNA/ctDNA samples obtained by ultra-deep sequencing. - -*homepage*: - -version |toolchain -----------------|------------- -``1.0-20180817``|``GCC/9.3.0`` - -### SIONlib - -SIONlib is a scalable I/O library for parallel access to task-local files. The library not only supports writing and reading binary data to or from several thousands of processors into a single or a small number of physical files, but also provides global open and close functions to access SIONlib files in parallel. This package provides a stripped-down installation of SIONlib for use with performance tools (e.g., Score-P), with renamed symbols to avoid conflicts when an application using SIONlib itself is linked against a tool requiring a different SIONlib version. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------------------------------------------------------------------------------------------- -``1.6.1``| |``foss/2016a`` -``1.6.1``|``-tools`` |``foss/2016a`` -``1.7.1``| |``foss/2017a`` -``1.7.1``|``-tools`` |``foss/2017a`` -``1.7.4``|``-tools`` |``GCCcore/8.2.0`` -``1.7.6``|``-tools`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.7.7``|``-tools`` |``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### SIP - -SIP is a tool that makes it very easy to create Python bindings for C and C++ libraries. - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|---------------------------------------------------------------- -``4.18`` |``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``4.18.1`` |``-Python-2.7.11``|``foss/2016a`` -``4.18.1`` |``-Python-2.7.12``|``intel/2016b`` -``4.19`` |``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``4.19.2`` |``-Python-2.7.13``|``intel/2017a`` -``4.19.8`` |``-Python-2.7.14``|``foss/2017b``, ``foss/2018a``, ``intel/2017b``, ``intel/2018a`` -``4.19.8`` |``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``4.19.13``|``-Python-2.7.15``|``fosscuda/2018b`` -``6.8.1`` | |``GCCcore/12.3.0`` - -### siscone - -Hadron Seedless Infrared-Safe Cone jet algorithm - -*homepage*: - -version |toolchain ----------|------------------ -``3.0.5``|``GCCcore/11.3.0`` -``3.0.6``|``GCCcore/12.3.0`` - -### SISSO - -A data-driven method combining symbolic regression and compressed sensing toward accurate & interpretable models. - -*homepage*: - -version |toolchain -----------------|--------------- -``3.0.2`` |``iimpi/2021b`` -``3.1-20220324``|``iimpi/2021b`` - -### SISSO++ - -C++ implementation of SISSO with built in Python bindings for an efficient python interface - -*homepage*: - -version|toolchain --------|-------------- -``1.1``|``foss/2021b`` - -### SKESA - -SKESA is a de-novo sequence read assembler for cultured single isolate genomes based on DeBruijn graphs. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``2.2`` | |``foss/2018a`` -``2.3.0``| |``foss/2018b`` -``2.4.0``|``_saute.1.3.0_1``|``gompi/2021b`` - -### sketchmap - -Sketch-map is a dimensionality reduction algorithm that is particularly well suited to examining the high-dimensionality data that is routinely produced in atomistic simulations. - -*homepage*: - -version |toolchain -------------|--------------- -``20170130``|``intel/2016b`` - -### skewer - -skewer implements the bit-masked k-difference matching algorithm dedicated to the task of adapter trimming and it is specially designed for processing next-generation sequencing (NGS) paired-end sequences. - -*homepage*: - -version |toolchain ----------|--------------- -``0.2.2``|``intel/2016b`` - -### sklearn-pandas - -This module provides a bridge between Scikit-Learn's machine learning methods and pandas-style Data Frames. In particular, it provides a way to map DataFrame columns to transformations, which are later recombined into features. - -*homepage*: - -version |toolchain ----------|-------------- -``2.2.0``|``foss/2021b`` - -### sklearn-som - -A simple, planar self-organizing map with methods similar to clustering methods in Scikit Learn. - -*homepage*: - -version |toolchain ----------|-------------- -``1.1.0``|``foss/2020b`` - -### skorch - -A scikit-learn compatible neural network library that wraps PyTorch. - -*homepage*: - -version |versionsuffix |toolchain -----------|-------------------------------|-------------- -``0.11.0``|``-PyTorch-1.10.0`` |``foss/2021a`` -``0.11.0``|``-PyTorch-1.10.0-CUDA-11.3.1``|``foss/2021a`` -``0.15.0``|``-PyTorch-2.1.2`` |``foss/2023a`` -``0.15.0``|``-PyTorch-2.1.2-CUDA-12.1.1`` |``foss/2023a`` - -### sktime - -sktime is a library for time series analysis in Python. It provides a unified interface for multiple time series learning tasks. Currently, this includes time series classification, regression, clustering, annotation, and forecasting. It comes with time series algorithms and scikit-learn compatible tools to build, tune and validate time series models. - -*homepage*: - -version |toolchain -----------|-------------- -``0.25.0``|``gfbf/2023a`` - -### SlamDunk - -SlamDunk is a novel, fully automated software tool for automated, robust, scalable and reproducible SLAMseq data analysis. - -*homepage*: - -version |toolchain ----------|-------------- -``0.4.3``|``foss/2021b`` - -### SLATEC - -SLATEC Common Mathematical Library, a comprehensive software library containing over 1400 general purpose mathematical and statistical routines written in Fortran 77. - -*homepage*: - -version|toolchain --------|------------------------------------------------------------------------- -``4.1``|``GCC/6.4.0-2.28``, ``GCC/8.3.0``, ``iccifort/2018.1.163-GCC-6.4.0-2.28`` - -### SLEPc - -SLEPc (Scalable Library for Eigenvalue Problem Computations) is a software library for the solution of large scale sparse eigenvalue problems on parallel computers. It is an extension of PETSc and can be used for either standard or generalized eigenproblems, with real or complex arithmetic. It can also be used for computing a partial SVD of a large, sparse, rectangular matrix, and to solve quadratic eigenvalue problems. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------- -``3.8.3`` | |``foss/2017b`` -``3.9.2`` | |``foss/2018a`` -``3.11.0``| |``foss/2018b`` -``3.12.2``|``-Python-2.7.16``|``intel/2019b`` -``3.12.2``|``-Python-3.7.4`` |``foss/2019b``, ``intel/2019b`` -``3.12.2``|``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``3.14.2``| |``foss/2020b`` -``3.15.1``| |``foss/2021a`` -``3.17.2``| |``foss/2022a`` -``3.18.2``| |``intel/2021b`` -``3.20.1``| |``foss/2023a`` - -### slepc4py - -Python bindings for SLEPc, the Scalable Library for Eigenvalue Problem Computations. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``3.9.0`` |``-Python-3.6.4``|``foss/2018a`` -``3.12.0``|``-Python-3.7.4``|``foss/2019b`` -``3.15.1``| |``foss/2021a`` - -### sleuth - -Investigate RNA-Seq transcript abundance from kallisto and perform differential expression analysis. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|--------------- -``0.29.0``|``-R-3.4.0`` |``intel/2017a`` -``0.30.0``|``-R-3.5.1`` |``foss/2018b`` - -### slidingwindow - -slidingwindow is a simple little Python library for computing a set of windows into a larger dataset, designed for use with image-processing algorithms that utilise a sliding window to break the processing up into a series of smaller chunks. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``0.0.13``|``-Python-2.7.15``|``intel/2018b`` -``0.0.13``|``-Python-3.6.6`` |``intel/2018b`` - -### SLiM - -SLiM is an evolutionary simulation framework that combines a powerful engine for population genetic simulations with the capability of modeling arbitrarily complex evolutionary scenarios. - -*homepage*: - -version |toolchain ----------|-------------- -``3.4`` |``GCC/9.3.0`` -``4.0`` |``GCC/11.2.0`` -``4.0.1``|``GCC/11.3.0`` - -### slow5tools - -slow5tools is a toolkit for converting (FAST5 <-> SLOW5), compressing, viewing, indexing and manipulating data in SLOW5 format. - -*homepage*: - -version |toolchain ----------|--------------- -``0.4.0``|``gompi/2021b`` - -### slurm-drmaa - -DRMAA for Slurm Workload Manager (Slurm) is an implementation of Open Grid Forum Distributed Resource Management Application API (DRMAA) version 1 for submission and control of jobs to Slurm. Using DRMAA, grid applications builders, portal developers and ISVs can use the same high-level API to link their software with different cluster/resource management systems. - -*homepage*: - -version |toolchain ----------|------------------ -``1.1.3``|``GCCcore/12.2.0`` - -### smafa - -Smafa attempts to align or cluster pre-aligned biological sequences, handling sequences which are all the same length. - -*homepage*: - -version |toolchain ----------|----------------- -``0.4.0``|``GCCcore/8.2.0`` - -### smallgenomeutilities - -The smallgenomeutilities are a collection of scripts that is useful for dealing and manipulating NGS data of small viral genomes. They are written in Python 3 with a small number of dependencies. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``0.2.1``|``-Python-3.6.6``|``foss/2018b`` - -### SMAP - -SMAP is an analysis tool for stack-based NGS read mapping - -*homepage*: - -version |toolchain ----------|-------------- -``4.6.5``|``foss/2022a`` - -### SMARTdenovo - -SMARTdenovo is a de novo assembler for PacBio and Oxford Nanopore (ONT) data. It produces an assembly from all-vs-all raw read alignments without an error correction stage. It also provides tools to generate accurate consensus sequences, though a platform dependent consensus polish tools (e.g. Quiver for PacBio or Nanopolish for ONT) are still required for higher accuracy. - -*homepage*: - -version |toolchain -------------|-------------- -``20180219``|``foss/2018b`` - -### SMC++ - -SMC++ is a program for estimating the size history of populations from whole genome sequence data. - -*homepage*: - -version |toolchain -----------|-------------- -``1.15.4``|``foss/2022a`` - -### smfishHmrf - -smFish spatial pattern mining and cell type prediction - -*homepage*: - -version |toolchain ----------|-------------- -``1.3.3``|``foss/2022a`` - -### smithwaterman - -smith-waterman-gotoh alignment algorithm. - -*homepage*: - -version |toolchain -------------|--------------------------------------------------------------------------------------------------------------------- -``20160702``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0``, ``GCCcore/9.3.0`` - -### Smoldyn - -Smoldyn is a computer program for cell-scale biochemical simulations. It simulates each molecule of interest individually to capture natural stochasticity and to yield nanometer-scale spatial resolution. It treats other molecules implicitly, enabling it to simulate hundreds of thousands of molecules over several minutes of real time. Simulated molecules diffuse, react, are confined by surfaces, and bind to membranes much as they would in a real biological system. - -*homepage*: - -version |toolchain ---------|-------------- -``2.48``|``foss/2016a`` - -### smooth-topk - -Smooth Loss Functions for Deep Top-k Classification - -*homepage*: - -version |versionsuffix |toolchain -----------------|----------------|-------------- -``1.0-20210817``| |``foss/2021a`` -``1.0-20210817``|``-CUDA-11.3.1``|``foss/2021a`` - -### SMRT-Link - -PacBio's open-source SMRT Analysis software suite is designed for use with Single Molecule, Real-Time (SMRT) Sequencing data. You can analyze, visualize, and manage your data through an intuitive GUI or command-line interface. You can also integrate SMRT Analysis in your existing data workflow through the extensive set of APIs provided - -*homepage*: - -version |versionsuffix |toolchain ------------------|-------------------|---------- -``5.1.0.26412`` |``-cli-tools-only``|``system`` -``6.0.0.47841`` |``-cli-tools-only``|``system`` -``12.0.0.177059``|``-cli-tools-only``|``system`` - -### SMV - -Smokeview is a visualization program that displays output of FDS and CFAST simulations. - -*homepage*: - -version |toolchain -----------|----------------------- -``6.7.17``|``iccifort/2020.4.304`` - -### snakemake - -The Snakemake workflow management system is a tool to create reproducible and scalable data analyses. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------------------- -``5.2.2`` |``-Python-3.6.4``|``intel/2018a`` -``5.2.4`` |``-Python-3.6.6``|``foss/2018b``, ``intel/2018b`` -``5.7.1`` |``-Python-3.7.2``|``foss/2019a`` -``5.26.1``|``-Python-3.8.2``|``intel/2020a`` -``6.1.0`` | |``foss/2020b`` -``6.6.1`` | |``foss/2021a`` -``6.10.0``| |``foss/2021b`` -``7.18.2``| |``foss/2021b`` -``7.22.0``| |``foss/2022a`` -``7.32.3``| |``foss/2022b`` -``8.4.2`` | |``foss/2023a`` - -### SNAP - -Scalable Nucleotide Alignment Program -- a fast and accurate read aligner for high-throughput sequencing data - -*homepage*: - -version |toolchain ---------------|---------------------------------------------- -``1.0beta.23``|``intel/2017b`` -``2.0.1`` |``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0`` - -### SNAP-ESA - -The Sentinel Application Platform (SNAP) is a common architecture for all Sentinel Toolboxes being jointly developed by Brockmann Consult, SkyWatch and C-S. The SNAP architecture is ideal for Earth Observation processing and analysis due to the following technological innovations: Extensibility, Portability, Modular Rich Client Platform, Generic EO Data Abstraction, Tiled Memory Management, and a Graph Processing Framework. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|---------- -``8.0`` |``-Java-1.8``|``system`` -``9.0.0``|``-Java-11`` |``system`` - -### SNAP-ESA-python - -Python interface to the Sentinel Application Platform (SNAP) API - -*homepage*: - -version |versionsuffix |toolchain ----------|---------------------------|------------------ -``8.0`` |``-Java-1.8-Python-2.7.18``|``GCCcore/10.2.0`` -``9.0.0``|``-Java-11-Python-2.7.18`` |``GCCcore/11.2.0`` - -### SNAP-HMM - -SNAP is a general purpose gene finding program suitable for both eukaryotic and prokaryotic genomes. SNAP is an acroynm for Semi-HMM-based Nucleic Acid Parser. - -*homepage*: - -version |toolchain ---------------|------------------------------------------------------------------------- -``2013-11-29``|``GCC/6.4.0-2.28``, ``GCC/8.3.0``, ``iccifort/2017.4.196-GCC-6.4.0-2.28`` -``20190603`` |``GCC/10.2.0`` -``20221022`` |``GCC/11.3.0`` - -### SNAPE-pooled - -SNAPE-pooled computes the probability distribution for the frequency of the minor allele in a certain population, at a certain position in the genome. - -*homepage*: - -version |toolchain -------------|-------------- -``20150707``|``GCC/11.3.0`` -``r32`` |``foss/2016a`` - -### snaphu - -SNAPHU is an implementation of the Statistical-cost, Network-flow Algorithm for Phase Unwrapping proposed by Chen and Zebker - -*homepage*: - -version |toolchain ----------|--------------------------------------------------- -``1.4.2``|``GCCcore/6.3.0``, ``intel/2016b``, ``intel/2017a`` - -### snappy - -Snappy is a compression/decompression library. It does not aim for maximum compression, or compatibility with any other compression library; instead, it aims for very high speeds and reasonable compression. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------------------------------------ -``1.1.2`` |``GCC/4.9.2`` -``1.1.3`` |``GCC/4.9.3``, ``GCC/4.9.3-2.25`` -``1.1.6`` |``system`` -``1.1.7`` |``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``intel/2017a``, ``intel/2017b`` -``1.1.8`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/9.3.0`` -``1.1.9`` |``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``1.1.10``|``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### Sniffles - -A fast structural variant caller for long-read sequencing, Sniffles2 accurately detect SVs on germline, somatic and population-level for PacBio and Oxford Nanopore read data. - -*homepage*: - -version |toolchain ----------|-------------- -``2.0.7``|``GCC/11.3.0`` - -### snippy - -Rapid haploid variant calling and core genome alignment - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------------|-------------- -``4.4.1``|``-Perl-5.28.0`` |``foss/2018b`` -``4.6.0``| |``GCC/10.2.0`` -``4.6.0``|``-Java-13-Python-3.8.2``|``GCC/9.3.0`` -``4.6.0``|``-R-4.1.2`` |``foss/2021b`` - -### snp-sites - -Finds SNP sites from a multi-FASTA alignment file. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------- -``2.5.1``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/9.3.0`` - -### snpEff - -SnpEff is a variant annotation and effect prediction tool. It annotates and predicts the effects of genetic variants (such as amino acid changes). - -*homepage*: - -version |versionsuffix |toolchain ---------|-------------------------|------------------ -``3.6`` |``-Java-1.7.0_80`` |``system`` -``4.1d``|``-Java-1.7.0_80`` |``system`` -``4.3t``|``-Java-1.8`` |``system`` -``5.0`` |``-Java-13`` |``system`` -``5.0`` |``-Java-13-Python-3.8.2``|``GCCcore/9.3.0`` -``5.0e``|``-Java-11`` |``GCCcore/11.2.0`` -``5.0e``|``-Java-13`` |``GCCcore/10.2.0`` - -### SNPhylo - -SNPhylo: a pipeline to generate a phylogenetic tree from huge SNP data - -*homepage*: - -version |versionsuffix |toolchain -------------|--------------------------|------------------------------- -``20140701``| |``foss/2016a``, ``intel/2016a`` -``20160204``|``-Python-2.7.14-R-3.4.3``|``foss/2017b``, ``intel/2017b`` - -### SNPomatic - -High throughput sequencing technologies generate large amounts of short reads. Mapping these to a reference sequence consumes large amounts of processing time and memory, and read mapping errors can lead to noisy or incorrect alignments. SNP-o-matic is a fast, memory-efficient, and stringent read mapping tool offering a variety of analytical output functions, with an emphasis on genotyping. - -*homepage*: - -version|toolchain --------|----------------- -``1.0``|``GCCcore/9.3.0`` - -### SOAPaligner - -SOAPaligner/soap2 is a member of the SOAP (Short Oligonucleotide Analysis Package). It is an updated version of SOAP software for short oligonucleotide alignment. - -*homepage*: - -version |versionsuffix |toolchain ---------|-----------------|---------- -``2.21``|``_Linux-x86_64``|``system`` - -### SOAPdenovo-Trans - -SOAPdenovo-Trans is a de novo transcriptome assembler basing on the SOAPdenovo framework, adapt to alternative splicing and different expression level among transcripts. - -*homepage*: - -version |toolchain ----------|--------------- -``1.0.4``|``intel/2017a`` -``1.0.5``|``GCC/12.3.0`` - -### SOAPdenovo2 - -SOAPdenovo is a novel short-read assembly method that can build a de novo draft assembly for human-sized genomes. The program is specially designed to assemble Illumina short reads. It creates new opportunities for building reference sequences and carrying out accurate analyses of unexplored genomes in a cost effective way. SOAPdenovo2 is the successor of SOAPdenovo. - -*homepage*: - -version |toolchain ---------|------------------------------------------------------------------------------------------- -``r240``|``GCC/5.4.0-2.26`` -``r241``|``GCC/6.4.0-2.28``, ``foss/2018a``, ``iccifort/2017.4.196-GCC-6.4.0-2.28``, ``intel/2018a`` - -### SOAPfuse - -SOAPfuse is an open source tool developed for genome-wide detection of fusion transcripts from paired-end RNA-Seq data. - -*homepage*: - -version |versionsuffix |toolchain ---------|----------------|-------------- -``1.27``|``-Perl-5.24.0``|``foss/2016b`` -``1.27``|``-Perl-5.28.0``|``foss/2018b`` - -### socat - -socat is a relay for bidirectional data transfer between two independent data channels. - -*homepage*: - -version |toolchain ------------|----------------- -``1.7.3.3``|``GCCcore/8.2.0`` - -### SOCI - -SOCI is a database access library for C++ that makes the illusion of embedding SQL queries in the regular C++ code, staying entirely within the Standard C++. - -*homepage*: - -version |toolchain ----------|-------------------------------------------------------------- -``4.0.1``|``GCC/10.2.0``, ``GCCcore/9.3.0`` -``4.0.2``|``GCC/10.3.0`` -``4.0.3``|``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0``, ``GCC/13.2.0`` - -### SolexaQA++ - -SolexaQA calculates sequence quality statistics and creates visual representations of data quality for second-generation sequencing data. Originally developed for the Illumina system (historically known as “Solexa”), SolexaQA now also supports Ion Torrent and 454 data. - -*homepage*: - -version |toolchain ----------|-------------- -``3.1.5``|``foss/2016b`` - -### solo - -Doublet detection via semi-supervised deep learning - -*homepage*: - -version|toolchain --------|-------------- -``1.3``|``foss/2022a`` - -### sonic - -Sonic is a simple algorithm for speeding up or slowing down speech. However, it's optimized for speed ups of over 2X, unlike previous algorithms for changing speech rate. The Sonic library is a very simple ANSI C library that is designed to easily be integrated into streaming voice applications, like TTS back ends. - -*homepage*: - -version |toolchain -------------|------------------------------- -``20180202``|``gfbf/2023a``, ``gompi/2020a`` - -### SoPlex - -SoPlex is an optimization package for solving linear programming problems (LPs) based on an advanced implementation of the primal and dual revised simplex algorithm. It provides special support for the exact solution of LPs with rational input data. It can be used as a standalone solver reading MPS or LP format files via a command line interface as well as embedded into other programs via a C++ class library. - -*homepage*: - -version |toolchain ----------|-------------- -``2.2.1``|``GCC/11.3.0`` - -### SoQt - -SoQt is a library which provides the glue between Systems in Motion's Coin high-level 3D visualization library and the Qt 2D user interface library. - -*homepage*: - -version |toolchain ----------|------------------------------ -``1.6.0``|``GCC/10.3.0``, ``GCC/11.2.0`` - -### SortMeRNA - -SortMeRNA is a biological sequence analysis tool for filtering, mapping and OTU-picking NGS reads. - -*homepage*: - -version|toolchain --------|----------------------------- -``2.1``|``GCC/9.3.0``, ``foss/2016a`` - -### SoupX - -" Quantify, profile and remove ambient mRNA contamination (the "soup") from droplet based single cell RNA-seq experiments. Implements the method described in Young et al. (2018) . - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``1.6.2``|``-R-4.2.1`` |``foss/2022a`` - -### SoX - -Sound eXchange, the Swiss Army knife of audio manipulation - -*homepage*: - -version |toolchain -----------|----------------------------------------------------- -``14.4.2``|``GCC/8.3.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### SoXt - -SoXt is an Xt/Motif glue library for Coin. It can also be used on top of the SGI or TGS implementation of Open Inventor, and is designed to be source code compatible with SGI's InventorXt library. - -*homepage*: - -version |toolchain ----------|-------------- -``1.4.0``|``GCC/11.2.0`` - -### SpaceRanger - -Space Ranger is a set of analysis pipelines that process Visium spatial RNA-seq output and brightfield microscope images in order to detect tissue, align reads, generate feature-spot matrices, perform clustering and gene expression analysis, and place spots in spatial context on the slide image. - -*homepage*: - -version |toolchain ----------|------------------------------ -``1.1.0``|``GCC/9.3.0`` -``1.2.2``|``GCC/9.3.0`` -``1.3.0``|``GCC/10.3.0`` -``1.3.1``|``GCC/11.2.0`` -``2.0.0``|``GCC/11.2.0`` -``2.0.1``|``GCC/11.3.0`` -``2.1.0``|``GCC/11.3.0``, ``GCC/12.2.0`` - -### Spack - -Spack is a package manager for supercomputers, Linux, and macOS. It makes installing scientific software easy. With Spack, you can build a package with multiple versions, configurations, platforms, and compilers, and all of these builds can coexist on the same machine. - -*homepage*: - -version |toolchain -----------|---------- -``0.10.0``|``system`` -``0.11.2``|``system`` -``0.12.1``|``system`` -``0.16.2``|``system`` -``0.17.0``|``system`` -``0.17.2``|``system`` -``0.21.2``|``system`` - -### spaCy - -Industrial-strength Natural Language Processing (NLP) in Python. - -*homepage*: - -version |toolchain ----------|-------------- -``3.4.4``|``foss/2022a`` - -### SPAdes - -Genome assembler for single-cell and isolates data sets - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|---------------------------------------------- -``3.9.0`` | |``foss/2016a``, ``foss/2016b`` -``3.10.1``| |``foss/2016b``, ``foss/2017a`` -``3.11.1``| |``foss/2017b``, ``foss/2018a`` -``3.12.0``| |``foss/2016b``, ``foss/2018a``, ``foss/2018b`` -``3.13.0``| |``GCC/10.3.0``, ``foss/2018b`` -``3.13.1``| |``GCC/8.2.0-2.31.1`` -``3.14.0``|``-Python-3.7.2`` |``GCC/8.2.0-2.31.1`` -``3.14.0``|``-Python-3.7.4`` |``GCC/8.3.0`` -``3.14.1``|``-Python-3.8.2`` |``GCC/9.3.0`` -``3.15.2``| |``GCC/10.2.0`` -``3.15.2``|``-Python-2.7.18``|``GCC/10.2.0`` -``3.15.3``| |``GCC/10.3.0``, ``GCC/11.2.0`` -``3.15.4``| |``GCC/12.2.0``, ``GCC/12.3.0`` -``3.15.5``| |``GCC/11.3.0`` - -### spaln - -Spaln (space-efficient spliced alignment) is a stand-alone program that maps and aligns a set of cDNA or protein sequences onto a whole genomic sequence in a single job. - -*homepage*: - -version |toolchain ------------|---------------------------------------- -``2.3.3c`` |``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -``2.4.03`` |``iccifort/2019.5.281`` -``2.4.12`` |``GCC/10.2.0``, ``GCC/11.2.0`` -``2.4.13f``|``GCC/11.3.0`` - -### Spark - -Spark is Hadoop MapReduce done in memory - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------------------------------|---------------------------------- -``1.3.0``| |``system`` -``1.4.1``| |``system`` -``1.5.0``| |``system`` -``1.6.0``| |``system`` -``1.6.1``| |``system`` -``2.0.0``| |``system`` -``2.0.2``| |``system`` -``2.2.0``|``-Hadoop-2.6-Java-1.8.0_144`` |``system`` -``2.2.0``|``-Hadoop-2.6-Java-1.8.0_152`` |``system`` -``2.2.0``|``-Hadoop-2.6-Java-1.8.0_152-Python-3.6.3``|``intel/2017b`` -``2.3.0``|``-Hadoop-2.7-Java-1.8.0_162`` |``system`` -``2.4.0``|``-Hadoop-2.7-Java-1.8`` |``system`` -``2.4.0``|``-Hadoop-2.7-Java-1.8-Python-3.6.6`` |``intel/2018b`` -``2.4.0``|``-Python-2.7.15`` |``foss/2018b``, ``intel/2018b`` -``2.4.0``|``-Python-3.6.6`` |``intel/2018b`` -``2.4.5``|``-Python-3.7.4-Java-1.8`` |``intel/2019b`` -``3.0.0``|``-Python-2.7.15`` |``foss/2018b``, ``intel/2018b`` -``3.1.1``| |``foss/2020b``, ``fosscuda/2020b`` -``3.1.1``|``-Python-3.8.2`` |``foss/2020a`` -``3.2.1``| |``foss/2021b`` -``3.3.1``| |``foss/2022a`` -``3.5.0``| |``foss/2023a`` -``3.5.1``|``-Java-17`` |``foss/2023a`` - -### sparse-neighbors-search - -A Python/C++ implementation of an approximate nearest neighbor search for sparse data structures based on the idea of local sensitive hash functions. - -*homepage*: - -version|toolchain --------|-------------- -``0.7``|``foss/2022a`` - -### sparsehash - -An extremely memory-efficient hash_map implementation. 2 bits/entry overhead! The SparseHash library contains several hash-map implementations, including implementations that optimize for space or speed. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------------------------------------ -``2.0.2``|``foss/2016a`` -``2.0.3``|``GCCcore/5.4.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``foss/2016b``, ``intel/2017a`` -``2.0.4``|``GCCcore/10.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0``, ``GCCcore/9.3.0`` - -### SpatialDE - -SpatialDE is a method to identify genes which significantly depend on spatial coordinates in non-linear and non-parametric ways. The intended applications are spatially resolved RNA-sequencing from e.g. Spatial Transcriptomics, or in situ gene expression measurements from e.g. SeqFISH or MERFISH. - -*homepage*: - -version |toolchain ----------|-------------- -``1.1.3``|``foss/2022a`` - -### spatialreg - -A collection of all the estimation functions for spatial cross-sectional models (on lattice/areal data using spatial weights matrices) contained up to now in 'spdep', 'sphet' and 'spse'. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``1.1-5``|``-R-3.6.2`` |``foss/2019b`` -``1.1-8``|``-R-4.1.0`` |``foss/2021a`` - -### spdlog - -Very fast, header-only/compiled, C++ logging library. - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``1.9.2`` |``GCCcore/10.3.0`` -``1.10.0``|``GCCcore/11.2.0`` -``1.11.0``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``1.12.0``|``GCCcore/13.2.0`` - -### SpectrA - -Spectra stands for Sparse Eigenvalue Computation Toolkit as a Redesigned ARPACK. It is a C++ library for large scale eigenvalue problems, built on top of Eigen, an open source linear algebra library. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------- -``1.0.0``|``GCC/10.2.0`` -``1.0.1``|``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### spectral.methods - -Contains some implementations of Singular Spectrum Analysis (SSA) for the gapfilling and spectral decomposition of time series. - -*homepage*: - -version |versionsuffix|toolchain --------------|-------------|--------------- -``0.7.2.133``|``-R-3.4.3`` |``intel/2017b`` -``0.7.2.133``|``-R-3.4.4`` |``intel/2018a`` - -### speech_tools - -The Edinburgh Speech Tools Library is a collection of C++ class, functions and related programs for manipulating the sorts of objects used in speech processing. It includes support for reading and writing waveforms, parameter files (LPC, Ceptra, F0) in various formats and converting between them. It also includes support for linguistic type objects and support for various label files and ngrams (with smoothing). - -*homepage*: <['http://festvox.org/festival/']> - -version |toolchain ----------|------------------------------------- -``2.5.0``|``GCCcore/12.3.0``, ``GCCcore/9.3.0`` - -### SPEI - -A simple Python package to calculate drought indices for time series such as the SPI, SPEI and SGI. - -*homepage*: - -version |toolchain ----------|-------------- -``0.3.5``|``foss/2022a`` - -### spektral - -Spektral is a Python library for graph deep learning. The main goal of this project is to provide a simple but flexible framework for creating graph neural networks (GNNs). - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``1.1.0``|``-CUDA-11.4.1``|``foss/2021b`` - -### spglib - -Spglib is a C library for finding and handling crystal symmetries. - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``1.9.2`` |``intel/2016.02-GCC-4.9`` -``1.9.9`` |``intel/2017b`` -``1.16.1``|``GCCcore/10.2.0`` -``1.16.2``|``GCCcore/10.3.0`` -``2.0.2`` |``GCCcore/11.3.0``, ``GCCcore/12.2.0`` - -### spglib-python - -Spglib for Python. Spglib is a library for finding and handling crystal symmetries written in C. - -*homepage*: - -version |versionsuffix |toolchain -----------------|------------------|-------------------------------------------------------- -``1.9.4.2`` |``-Python-2.7.12``|``intel/2016b`` -``1.9.5`` |``-Python-2.7.12``|``intel/2016b`` -``1.9.9.38`` |``-Python-2.7.13``|``intel/2017a`` -``1.10.0.2`` |``-Python-2.7.14``|``intel/2017b`` -``1.10.0.2`` |``-Python-3.6.3`` |``intel/2017b`` -``1.14.1.post0``|``-Python-3.7.2`` |``intel/2019a`` -``1.16.0`` | |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b`` -``1.16.0`` |``-Python-3.7.4`` |``fosscuda/2019b``, ``intel/2019b``, ``intelcuda/2019b`` -``1.16.0`` |``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``1.16.1`` | |``foss/2021a``, ``gomkl/2021a``, ``intel/2021a`` -``1.16.3`` | |``foss/2021b``, ``intel/2021b`` -``2.0.0`` | |``foss/2022a``, ``intel/2022a`` -``2.0.2`` | |``gfbf/2022b`` -``2.1.0`` | |``gfbf/2023a``, ``iimkl/2023a`` - -### Sphinx - -Sphinx is a tool that makes it easy to create intelligent and beautiful documentation. It was originally created for the new Python documentation, and it has excellent facilities for the documentation of Python projects, but C/C++ is already supported as well, and it is planned to add special support for other languages as well. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``1.4.8``|``-Python-2.7.11``|``foss/2016a`` -``1.4.8``|``-Python-3.5.1`` |``foss/2016a`` -``1.8.1``|``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``1.8.1``|``-Python-2.7.15``|``foss/2018b`` -``1.8.1``|``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``1.8.1``|``-Python-3.6.4`` |``foss/2018a`` -``1.8.1``|``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``1.8.3``|``-Python-3.6.4`` |``intel/2018a`` - -### Sphinx-RTD-Theme - -Sphinx theme designed to provide a great reader experience for documentation users on both desktop and mobile devices. - -*homepage*: - -version |toolchain ----------|------------------ -``1.1.1``|``GCCcore/10.2.0`` - -### SpiceyPy - -SpiceyPy is a Python wrapper for the NAIF C SPICE Toolkit (N65) - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``1.1.0``|``-Python-2.7.12``|``intel/2016b`` -``1.1.1``|``-Python-3.6.1`` |``intel/2017a`` -``2.1.0``|``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``2.1.0``|``-Python-3.6.4`` |``foss/2018a`` - -### SpiecEasi - -Sparse InversE Covariance estimation for Ecological Association and Statistical Inference - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|--------------- -``1.0.0`` |``-R-3.4.4`` |``intel/2018a`` -``1.1.1`` |``-R-4.2.1`` |``foss/2022a`` -``20160830``|``-R-3.3.1`` |``intel/2016b`` - -### SplAdder - -Splicing Adder is a toolbox for alternative splicing analysis based on RNA-Seq alignment data. Briefly, the software takes a given annotation and RNA-Seq read alignments in standardized formats, transforms the annotation into a splicing graph representation, augments the splicing graph with additional information extracted from the read data, extracts alternative splicing events from the graph and quantifies the events based on the alignment data. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``2.4.2``|``-Python-3.8.2``|``foss/2020a`` - -### SPLASH - -SPLASH is a free and open source visualisation tool for Smoothed Particle Hydrodynamics (SPH) simulations. - -*homepage*: - -version |toolchain ----------|-------------- -``2.8.0``|``foss/2018b`` - -### SpliceMap - -SpliceMap is a de novo splice junction discovery and alignment tool. It offers high sensitivity and support for arbitrary RNA-seq read lengths. - -*homepage*: - -version |toolchain ------------|------------------ -``3.3.5.2``|``GCC/7.3.0-2.30`` - -### split-seq - -Analysis tools for split-seq. - -*homepage*: - -version |versionsuffix |toolchain -------------|-----------------|-------------- -``20190717``|``-Python-3.6.6``|``foss/2018b`` - -### splitRef - -splitRef splits a reference haplotype file into smaller files with subsets of markers. The current version is a pre-release. - -*homepage*: - -version |toolchain ----------|---------- -``0.0.2``|``system`` - -### SPM - -SPM (Statistical Parametric Mapping) refers to the construction and assessment of spatially extended statistical processes used to test hypo- theses about functional imaging data. These ideas have been instantiated in software that is called SPM. The SPM software package has been designed for the analysis of brain imaging data sequences. The sequences can be a series of images from different cohorts, or time-series from the same subject. The current release is designed for the analysis of fMRI, PET, SPECT, EEG and MEG. - -*homepage*: - -version |versionsuffix |toolchain ---------------|-----------------|---------- -``12.5_r7771``|``-MATLAB-2021a``|``system`` -``12.5_r7771``|``-MATLAB-2021b``|``system`` - -### spoa - -Spoa (SIMD POA) is a c++ implementation of the partial order alignment (POA) algorithm which is used to generate consensus sequences - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------ -``3.0.1``|``GCC/7.3.0-2.30`` -``3.4.0``|``GCC/10.2.0`` -``4.0.0``|``GCC/8.3.0`` -``4.0.7``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0`` -``4.1.0``|``GCC/12.3.0`` - -### SPOOLES - -SPOOLES is a library for solving sparse real and complex linear systems of equations, written in the C language using object oriented design. - -*homepage*: - -version|toolchain --------|------------------------------------------------- -``2.2``|``gompi/2021a``, ``gompi/2022b``, ``gompi/2023a`` - -### SPOTPY - -SPOTPY is a Python framework that enables the use of Computational optimization techniques for calibration, uncertainty and sensitivity analysis techniques of almost every (environmental-) model. - -*homepage*: - -version |toolchain -----------|--------------- -``1.5.14``|``intel/2021b`` - -### SPRNG - -Scalable Parallel Pseudo Random Number Generators Library - -*homepage*: - -version |toolchain ---------|-------------- -``2.0b``|``foss/2016a`` - -### Spyder - -Spyder is an interactive Python development environment providing MATLAB-like features in a simple and light-weighted software. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``3.1.4``|``-Python-2.7.13``|``intel/2017a`` -``3.3.1``|``-Python-3.6.4`` |``foss/2018a`` -``3.3.2``|``-Python-3.6.6`` |``foss/2018b`` -``4.1.5``|``-Python-3.7.2`` |``foss/2019a`` -``4.1.5``|``-Python-3.8.2`` |``foss/2020a`` - -### SQLAlchemy - -SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL. SQLAlchemy provides a full suite of well known enterprise-level persistence patterns, designed for efficient and high-performing database access, adapted into a simple and Pythonic domain language. - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``2.0.25``|``GCCcore/12.3.0`` -``2.0.29``|``GCCcore/12.2.0``, ``GCCcore/13.2.0`` - -### SQLite - -SQLite: SQL Database Engine in a C Library - -*homepage*: - -version |toolchain -------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``3.8.8.1`` |``GCC/4.8.4``, ``GCC/4.9.2`` -``3.8.10.2``|``GCC/4.9.3-2.25``, ``GNU/4.9.3-2.25``, ``gimkl/2.11.5`` -``3.9.2`` |``GCC/4.9.3-2.25``, ``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016.02-GCC-4.9``, ``intel/2016a``, ``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25`` -``3.13.0`` |``GCC/4.9.3-2.25``, ``GCC/5.4.0-2.26``, ``GCCcore/6.3.0``, ``foss/2016.04``, ``foss/2016a``, ``foss/2016b``, ``iccifort/2016.3.210-GCC-5.4.0-2.26``, ``intel/2016b`` -``3.14.1`` |``GCCcore/4.9.3`` -``3.17.0`` |``GCCcore/6.3.0`` -``3.20.1`` |``GCCcore/6.4.0`` -``3.21.0`` |``GCCcore/6.4.0`` -``3.23.0`` |``GCCcore/6.4.0`` -``3.24.0`` |``GCCcore/7.2.0``, ``GCCcore/7.3.0`` -``3.26.0`` |``GCCcore/8.2.0`` -``3.27.2`` |``GCCcore/8.2.0`` -``3.29.0`` |``GCCcore/8.3.0`` -``3.31.1`` |``GCCcore/9.3.0`` -``3.33.0`` |``GCCcore/10.2.0`` -``3.35.4`` |``GCCcore/10.3.0`` -``3.36`` |``GCCcore/11.2.0`` -``3.38.3`` |``GCCcore/11.3.0`` -``3.39.4`` |``GCCcore/12.2.0`` -``3.41.2`` |``GCCcore/13.1.0`` -``3.42.0`` |``GCCcore/12.3.0`` -``3.43.1`` |``GCCcore/13.2.0`` -``3.45.3`` |``GCCcore/13.3.0`` - -### SqueezeMeta - -SqueezeMeta is a full automatic pipeline for metagenomics/metatranscriptomics, covering all steps of the analysis. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``0.4.3``|``-Python-2.7.15``|``foss/2018b`` -``1.0.0``|``-Python-2.7.15``|``foss/2018b`` -``1.5.0``| |``foss/2021b`` - -### Squidpy - -Squidpy is a tool for the analysis and visualization of spatial molecular data. - -*homepage*: - -version |toolchain ----------|-------------- -``1.2.2``|``foss/2021b`` -``1.4.1``|``foss/2023a`` - -### SRA-Toolkit - -The SRA Toolkit, and the source-code SRA System Development Kit (SDK), will allow you to programmatically access data housed within SRA and convert it from the SRA format - -*homepage*: - -version |versionsuffix |toolchain ------------|-------------------|-------------------------------- -``2.3.5`` |``-centos_linux64``|``system`` -``2.5.4-1``|``-centos_linux64``|``system`` -``2.5.7`` |``-centos_linux64``|``system`` -``2.8.2-1``|``-centos_linux64``|``system`` -``2.9.0`` |``-centos_linux64``|``system`` -``2.9.2`` |``-ubuntu64`` |``system`` -``2.9.4`` |``-centos_linux64``|``system`` -``2.9.6-1``|``-centos_linux64``|``system`` -``2.10.4`` | |``gompi/2019b`` -``2.10.5`` |``-centos_linux64``|``system`` -``2.10.8`` | |``gompi/2020a`` -``2.10.9`` | |``gompi/2020b`` -``3.0.0`` | |``gompi/2021b`` -``3.0.0`` |``-centos_linux64``|``system`` -``3.0.3`` | |``gompi/2022a`` -``3.0.5`` | |``gompi/2021a``, ``gompi/2022b`` -``3.0.10`` | |``gompi/2023a`` - -### sradownloader - -SRAdownloader takes the annotation table from the SRA run selector tool and retrieves the raw fastq files for the selected samples - -*homepage*: - -version|toolchain --------|------------------ -``3.9``|``GCCcore/11.3.0`` - -### SRPRISM - -Single Read Paired Read Indel Substitution Minimizer - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|------------------ -``3.0.0``| |``foss/2018b`` -``3.1.1``|``-Java-11`` |``GCCcore/8.2.0`` -``3.1.2``| |``GCCcore/10.2.0`` - -### SRST2 - -Short Read Sequence Typing for Bacterial Pathogens - -*homepage*: - -version |versionsuffix |toolchain -------------------|------------------|-------------- -``0.2.0-20210620``|``-Python-2.7.18``|``foss/2020b`` - -### SSAHA2 - -SSAHA2 (Sequence Search and Alignment by Hashing Algorithm) is a pairwise sequence alignment program designed for the efficient mapping of sequencing reads onto genomic reference sequences. SSAHA2 reads of most sequencing platforms (ABI-Sanger, Roche 454, Illumina-Solexa) and a range of output formats (SAM, CIGAR, PSL etc.) are supported. A pile-up pipeline for analysis and genotype calling is available as a separate package. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|---------- -``2.5.5``|``-i686`` |``system`` -``2.5.5``|``-x86_64`` |``system`` - -### SSN - -Spatial statistical modeling and prediction for data on stream networks, including models based on in-stream distance. Models are created using moving average constructions. Spatial linear models, including explanatory variables, can be fit with (restricted) maximum likelihood. Mapping and other graphical functions are included. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|-------------- -``1.1.14``|``-R-3.6.0`` |``foss/2019a`` - -### SSPACE_Basic - -SSPACE Basic, SSAKE-based Scaffolding of Pre-Assembled Contigs after Extension - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``2.1.1``|``-Perl-5.24.1`` |``intel/2017a`` -``2.1.1``|``-Perl-5.26.0`` |``intel/2017b`` -``2.1.1``|``-Python-2.7.18``|``GCC/10.2.0`` - -### SSW - -SSW is a fast implementation of the Smith-Waterman algorithm, which uses the Single-Instruction Multiple-Data (SIMD) instructions to parallelize the algorithm at the instruction level. SSW library provides an API that can be flexibly used by programs written in C, C++ and other languages. We also provide a software that can do protein and genome alignment directly. Current version of our implementation is ~50 times faster than an ordinary Smith-Waterman. It can return the Smith-Waterman score, alignment location and traceback path (cigar) of the optimal alignment accurately; and return the sub-optimal alignment score and location heuristically. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------- -``1.1`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/12.3.0``, ``GCCcore/9.3.0`` -``1.2.4``|``GCCcore/10.3.0`` - -### STACEY - -The BEAST2 package STACEY can be used for species delimitation and species tree estimation, based on the multispecies coalescent model. - -*homepage*: - -version |toolchain ----------|-------------- -``1.2.5``|``GCC/10.2.0`` - -### Stack - -Stack is a cross-platform program for developing Haskell projects. It is intended for Haskellers both new and experienced. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|---------- -``2.3.3`` |``-x86_64`` |``system`` -``2.11.1``|``-x86_64`` |``system`` -``2.13.1``|``-x86_64`` |``system`` - -### Stacks - -Stacks is a software pipeline for building loci from short-read sequences, such as those generated on the Illumina platform. Stacks was developed to work with restriction enzyme-based data, such as RAD-seq, for the purpose of building genetic maps and conducting population genomics and phylogeography. - -*homepage*: - -version |toolchain ---------------|------------------------------------------------------------------------------ -``1.40`` |``foss/2016a`` -``1.42`` |``foss/2016a`` -``1.44`` |``foss/2016a`` -``1.45`` |``foss/2016a`` -``1.46`` |``intel/2017a`` -``1.47`` |``foss/2016a`` -``1.48`` |``intel/2017b``, ``intel/2018b`` -``2.0`` |``foss/2018a``, ``intel/2018a`` -``2.0Beta7c`` |``intel/2017b`` -``2.0Beta8c`` |``intel/2017b`` -``2.0Beta9`` |``intel/2018a`` -``2.0Beta10a``|``foss/2018a`` -``2.2`` |``foss/2018a`` -``2.3b`` |``foss/2018a`` -``2.3e`` |``foss/2018b`` -``2.5`` |``iccifort/2019.5.281`` -``2.41`` |``GCC/8.2.0-2.31.1``, ``foss/2018b``, ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -``2.53`` |``foss/2019b``, ``iccifort/2019.5.281`` -``2.54`` |``foss/2020a`` -``2.62`` |``foss/2022a`` - -### STAMP - -STAMP is a tool for characterizing similarities between transcription factor binding motifs - -*homepage*: - -version|toolchain --------|-------------------------------- -``1.2``|``intel/2016a`` -``1.3``|``intel/2016a``, ``intel/2016b`` - -### StaMPS - -A software package to extract ground displacements from time series of synthetic aperture radar (SAR) acquisitions. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|--------------- -``3.3b1``|``-Perl-5.24.1``|``intel/2017a`` - -### Stampy - -Stampy is a package for the mapping of short reads from illumina sequencing machines onto a reference genome. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``1.0.31``|``-Python-2.7.12``|``intel/2016b`` -``1.0.32``|``-Python-2.7.14``|``intel/2018a`` - -### STAR - -STAR aligns RNA-seq reads to a reference genome using uncompressed suffix arrays. - -*homepage*: - -version |toolchain -------------------------|-------------------------------------------------------------- -``2.4.2a`` |``foss/2018b`` -``2.5.0a`` |``GNU/4.9.3-2.25`` -``2.5.2a`` |``foss/2016a`` -``2.5.2b`` |``intel/2016b`` -``2.5.3a`` |``GCC/8.3.0``, ``GCC/9.3.0``, ``intel/2017a``, ``intel/2017b`` -``2.5.4b`` |``foss/2016b``, ``foss/2017b``, ``intel/2017b`` -``2.6.0c`` |``foss/2018a``, ``intel/2018a`` -``2.6.1c`` |``foss/2018b`` -``2.7.0d`` |``foss/2018b`` -``2.7.0f`` |``GCC/8.2.0-2.31.1``, ``foss/2018b`` -``2.7.1a`` |``GCC/8.2.0-2.31.1``, ``foss/2018b`` -``2.7.2b`` |``GCC/8.3.0`` -``2.7.3a`` |``GCC/8.3.0``, ``GCC/9.3.0`` -``2.7.4a`` |``GCC/9.3.0`` -``2.7.5b`` |``GCC/9.3.0`` -``2.7.6a`` |``GCC/10.2.0``, ``GCC/9.3.0`` -``2.7.7a`` |``GCC/10.2.0``, ``GCC/9.3.0`` -``2.7.8a`` |``GCC/10.2.0`` -``2.7.9a`` |``GCC/10.3.0``, ``GCC/11.2.0`` -``2.7.10a_alpha_220601``|``GCC/10.3.0`` -``2.7.10b`` |``GCC/11.3.0``, ``GCC/12.2.0`` -``2.7.11a`` |``GCC/12.2.0``, ``GCC/12.3.0`` -``2.7.11b`` |``GCC/12.3.0``, ``GCC/13.2.0`` - -### STAR-CCM+ - -STAR-CCM+ is a multiphysics computational fluid dynamics (CFD) software for the simulation of products operating under real-world conditions. - -*homepage*: - -version |versionsuffix|toolchain --------------|-------------|---------- -``13.04.011``| |``system`` -``17.02.008``| |``system`` -``17.02.008``|``-r8`` |``system`` -``17.04.008``| |``system`` -``17.04.008``|``-r8`` |``system`` -``17.06.007``| |``system`` -``17.06.007``|``-r8`` |``system`` -``18.02.008``| |``system`` -``18.02.008``|``-r8`` |``system`` -``18.06.006``| |``system`` -``18.06.006``|``-r8`` |``system`` -``2302`` | |``system`` -``2302`` |``-r8`` |``system`` -``2310`` | |``system`` -``2310`` |``-r8`` |``system`` - -### STAR-Fusion - -STAR-Fusion uses the STAR aligner to identify candidate fusion transcripts supported by Illumina reads. STAR-Fusion further processes the output generated by the STAR aligner to map junction reads and spanning reads to a reference annotation set. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------------------|-------------------- -``1.5.0``|``-Perl-5.28.0`` |``foss/2018b`` -``1.6.0``|``-Perl-5.28.1-Python-3.7.2``|``GCC/8.2.0-2.31.1`` -``1.8.1``|``-Python-3.7.4`` |``foss/2019b`` - -### stardist - -Object Detection with Star-convex Shapes. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``0.8.3``| |``foss/2021b`` -``0.8.3``|``-CUDA-11.4.1``|``foss/2021b`` - -### starparser - -Use this package to manipulate Relion star files, including counting, modifying, plotting, and sifting the data. At the very least, this is a useful alternative to awk commands, which can get awkward. Below is a description of the command- line options with some examples. Alternatively, use starparser within Relion or load the modules in your own Python scripts. - -*homepage*: - -version |toolchain ---------|-------------- -``1.49``|``foss/2022a`` - -### stars - -Reading, manipulating, writing and plotting spatiotemporal arrays (raster and vector data cubes) in R, using GDAL bindings provided by sf, and NetCDF bindings by ncmeta and RNetCDF. - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------------|-------------- -``0.4-3``|``-R-4.0.0-Python-3.8.2``|``foss/2020a`` - -### Stata - -Stata is a complete, integrated statistical software package that provides everything you need for data analysis, data management, and graphics. - -*homepage*: - -version|versionsuffix|toolchain --------|-------------|---------- -``15`` | |``system`` -``16`` |``-legacy`` |``system`` -``17`` | |``system`` - -### Statistics-R - -Perl interface with the R statistical program - -*homepage*: - -version |toolchain ---------|-------------- -``0.34``|``foss/2020a`` - -### statsmodels - -Statsmodels is a Python module that provides classes and functions for the estimation of many different statistical models, as well as for conducting statistical tests, and statistical data exploration. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------------------------------------------- -``0.6.1`` |``-Python-2.7.13``|``foss/2017a`` -``0.6.1`` |``-Python-3.5.1`` |``intel/2016a`` -``0.6.1`` |``-Python-3.5.2`` |``intel/2016b`` -``0.8.0`` |``-Python-2.7.13``|``intel/2017a`` -``0.9.0`` |``-Python-2.7.15``|``foss/2018b``, ``intel/2018b`` -``0.9.0`` |``-Python-2.7.16``|``intel/2019b`` -``0.9.0`` |``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``0.10.1``| |``foss/2019a`` -``0.11.0``|``-Python-3.7.4`` |``foss/2019b``, ``intel/2019b`` -``0.11.1``|``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``0.12.1``| |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b`` -``0.12.2``| |``foss/2021a`` -``0.13.1``| |``foss/2021b``, ``foss/2022a``, ``intel/2021b`` -``0.14.0``| |``gfbf/2022b`` -``0.14.1``| |``gfbf/2023a``, ``gfbf/2023b`` - -### STEAK - -Detects integrations of any sort in high-throughput sequencing (HTS) data. STEAK was built for validating and discovering transposable element (TE) and retroviral integrations in a variety of HTS data. The software performs on both single-end (SE) and paired-end ( PE) libraries and on a variety of HTS sequencing strategies. It can be applied to a broad range of research interests and clinical uses such as population genetic studies and detecting polymorphic integrations. - -*homepage*: - -version |versionsuffix |toolchain ---------------|------------------|-------------- -``2019.09.12``| |``foss/2021b`` -``2019.09.12``|``-Python-2.7.16``|``foss/2019b`` - -### STIR - -Software for Tomographic Image Reconstruction - -*homepage*: - -version|toolchain --------|--------------- -``3.0``|``intel/2018a`` - -### stpipeline - -The ST Pipeline contains the tools and scripts needed to process and analyze the raw files generated with the Spatial Transcriptomics method in FASTQ format to generated datasets for down-stream analysis. The ST pipeline can also be used to process single cell data as long as a file with barcodes identifying each cell is provided. The ST Pipeline can also process RNA-Seq datasets generated with or without UMIs. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``1.7.3``|``-Python-2.7.15``|``foss/2018b`` -``1.7.6``|``-Python-3.7.2`` |``foss/2019a`` -``1.7.6``|``-Python-3.7.4`` |``foss/2019b`` - -### strace - -strace is a diagnostic, debugging and instructional userspace utility for Linux. It is used to monitor and tamper with interactions between processes and the Linux kernel, which include system calls, signal deliveries, and changes of process state. - -*homepage*: - -version |toolchain ---------|------------------ -``5.14``|``GCCcore/11.2.0`` -``6.6`` |``GCCcore/12.2.0`` - -### Strainberry - -Strainberry is a method that performs strain separation in low-complexity metagenomes using error-prone long-read technologies. It exploits state-of-the-art tools for variant calling, haplotype phasing, and genome assembly, in order to achieve single-sample assembly of strains with higher quality than other state-of-the-art long-read assemblers. - -*homepage*: - -version|toolchain --------|-------------- -``1.1``|``foss/2022a`` - -### STREAM - -The STREAM benchmark is a simple synthetic benchmark program that measures sustainable memory bandwidth (in MB/s) and the corresponding computation rate for simple vector kernels. - -*homepage*: - -version |toolchain ---------|---------------------------------------------------------------------------------------------------------------------------------------------------------------- -``5.10``|``GCC/11.3.0``, ``GCC/7.3.0-2.30``, ``GCC/8.2.0-2.31.1``, ``GCC/9.3.0``, ``iccifort/2020.1.217``, ``intel-compilers/2022.2.1``, ``intel/2016b``, ``intel/2018b`` - -### strelka - -Strelka2 is a fast and accurate small variant caller optimized for analysis of germline variation in small cohorts and somatic variation in tumor/normal sample pairs. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------- -``2.9.7`` | |``intel/2018a`` -``2.9.9`` | |``foss/2018b`` -``2.9.10``|``-Python-2.7.15``|``foss/2018b``, ``intel/2018b`` - -### StringTie - -StringTie is a fast and highly efficient assembler of RNA-Seq alignments into potential transcripts - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|---------------------------------- -``1.3.0`` | |``intel/2016b`` -``1.3.3`` | |``GCCcore/6.4.0``, ``intel/2017a`` -``1.3.3b``| |``foss/2016b`` -``1.3.5`` | |``GCCcore/8.2.0``, ``foss/2018b`` -``2.0.3`` | |``GCCcore/7.3.0`` -``2.1.0`` | |``foss/2018b`` -``2.1.1`` | |``GCC/8.3.0`` -``2.1.3`` | |``GCC/8.3.0``, ``GCC/9.3.0`` -``2.1.4`` | |``GCC/8.3.0``, ``GCC/9.3.0`` -``2.1.7`` | |``GCC/10.3.0`` -``2.2.1`` | |``GCC/11.2.0`` -``2.2.1`` |``-Python-2.7.18``|``GCC/11.2.0`` - -### stripy - -A Python interface to TRIPACK and STRIPACK Fortran code for (constrained) triangulation in Cartesian coordinates and on a sphere. Stripy is an object-oriented package and includes routines from SRFPACK and SSRFPACK for interpolation (nearest neighbor, linear and hermite cubic) and to evaluate derivatives (Renka 1996a,b and 1997a,b). - -*homepage*: - -version |toolchain ----------|-------------- -``2.1.0``|``foss/2021a`` - -### STRique - -STRique is a python package to analyze repeat expansion and methylation states of short tandem repeats (STR) in Oxford Nanopore Technology (ONT) long read sequencing data. - -*homepage*: - -version |toolchain ----------|-------------- -``0.4.2``|``foss/2021b`` - -### Structure - -The program structure is a free software package for using multi-locus genotype data to investigate population structure. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------------------------------------------------- -``2.3.4``|``GCC/11.3.0``, ``GCC/12.2.0``, ``GCC/8.2.0-2.31.1``, ``iccifort/2019.3.199-GCC-8.3.0-2.32``, ``iccifort/2019.5.281`` - -### Structure_threader - -A program to parallelize the runs of Structure, fastStructure, MavericK and ALStructure software. - -*homepage*: - -version |toolchain -----------|-------------- -``1.3.10``|``foss/2022b`` - -### STRUMPACK - -STRUMPACK - STRUctured Matrix PACKage - Fast linear solvers and preconditioner for both dense and sparse systems using low-rank structured factorization with randomized sampling. - -*homepage*: - -version |toolchain ----------|------------------------------- -``6.1.0``|``foss/2020b``, ``intel/2020b`` - -### suave - -suave is an interactive web application to visualize read depth ratios between two samples and the structural variants of one of the samples (typically the "case" sample in a case/control setup such as tumor/normal comparison). - -*homepage*: - -version |toolchain -------------|-------------- -``20160529``|``foss/2020b`` - -### SuAVE-biomat - -Surface Assessment via Grid Evaluation (SuAVE) for Every Surface Curvature and Cavity Shape - -*homepage*: - -version |toolchain -------------------|--------------- -``2.0.0-20230815``|``intel/2023a`` - -### Subread - -High performance read alignment, quantification and mutation discovery - -*homepage*: - -version |toolchain -------------|--------------------------------------------- -``1.5.0-p1``|``foss/2016a``, ``foss/2016b`` -``1.6.3`` |``foss/2018b`` -``1.6.4`` |``foss/2018b`` -``2.0.0`` |``GCC/7.3.0-2.30``, ``GCC/8.3.0`` -``2.0.2`` |``GCC/10.2.0`` -``2.0.3`` |``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/9.3.0`` -``2.0.4`` |``GCC/11.3.0`` - -### subset-bam - -subset-bam is a tool to subset a 10x Genomics BAM file based on a tag, most commonly the cell barcode tag. - -*homepage*: - -version |toolchain ----------|------------------ -``1.1.0``|``GCCcore/10.3.0`` - -### subunit - -Subunit is a streaming protocol for test results. - -*homepage*: - -version |toolchain ----------|------------------ -``1.4.3``|``GCCcore/12.2.0`` - -### Subversion - -Subversion is an open source version control system. - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``1.9.7`` |``iomkl/2018a`` -``1.9.9`` |``GCCcore/7.3.0`` -``1.10.0``|``foss/2017b``, ``intel/2017b`` -``1.12.0``|``GCCcore/8.2.0`` -``1.14.0``|``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``1.14.1``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``1.14.2``|``GCCcore/11.3.0`` - -### suds - -Lightweight SOAP client - -*homepage*: - -version |versionsuffix |toolchain ------------|-----------------|--------------- -``1.3.3.0``|``-Python-3.6.4``|``intel/2018a`` - -### SuiteSparse - -SuiteSparse is a collection of libraries to manipulate sparse matrices. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------------------|------------------------------------------------------------------------------------------------- -``4.5.1`` |``-METIS-5.1.0`` |``foss/2016a``, ``intel/2016a`` -``4.5.2`` |``-METIS-5.1.0`` |``foss/2016a``, ``intel/2016a`` -``4.5.3`` |``-METIS-5.1.0`` |``foss/2016a``, ``foss/2016b``, ``intel/2016b`` -``4.5.3`` |``-ParMETIS-4.0.3`` |``foss/2016a``, ``foss/2016b``, ``intel/2016a``, ``intel/2016b`` -``4.5.5`` |``-METIS-5.1.0`` |``foss/2017a``, ``intel/2017a`` -``4.5.5`` |``-ParMETIS-4.0.3`` |``foss/2017a``, ``foss/2017b``, ``intel/2017a``, ``intel/2017b`` -``4.5.6`` |``-METIS-5.1.0`` |``foss/2017b`` -``5.1.2`` |``-METIS-5.1.0`` |``foss/2017b``, ``foss/2018a``, ``foss/2018b``, ``intel/2017b``, ``intel/2018a``, ``intel/2018b`` -``5.1.2`` |``-ParMETIS-4.0.3`` |``foss/2017b``, ``intel/2017b`` -``5.4.0`` |``-METIS-5.1.0`` |``foss/2019a``, ``intel/2018b``, ``intel/2019a`` -``5.6.0`` |``-METIS-5.1.0`` |``foss/2019b``, ``intel/2019b`` -``5.7.1`` |``-METIS-5.1.0`` |``foss/2020a``, ``intel/2020a`` -``5.8.1`` |``-METIS-5.1.0`` |``foss/2020b``, ``intel/2020b`` -``5.10.1``|``-METIS-5.1.0`` |``foss/2021a``, ``foss/2021b``, ``intel/2021a``, ``intel/2021b`` -``5.10.1``|``-METIS-5.1.0-CUDA-11.3.1``|``foss/2021a`` -``5.13.0``|``-METIS-5.1.0`` |``foss/2022a``, ``foss/2022b`` -``7.1.0`` | |``foss/2023a`` - -### SUMACLUST - -SUMATRA and SUMACLUST: fast and exact comparison and clustering of sequences. - -*homepage*: - -version |toolchain -----------|-------------- -``1.0.20``|``foss/2016a`` - -### SUMATRA - -SUMATRA and SUMACLUST: fast and exact comparison and clustering of sequences. - -*homepage*: - -version |toolchain -----------|-------------- -``1.0.20``|``foss/2016a`` - -### SUMO - -Simulation of Urban MObility" (SUMO) is an open source, highly portable, microscopic and continuous traffic simulation package designed to handle large networks. It allows for intermodal simulation including pedestrians and comes with a large set of tools for scenario creation. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|----------------- -``1.3.1`` |``-Python-3.7.4``|``GCCcore/8.3.0`` -``1.7.0`` |``-Python-3.8.2``|``foss/2020a`` -``1.12.0``| |``foss/2021b`` -``1.14.1``| |``foss/2021b`` - -### SUNDIALS - -SUNDIALS: SUite of Nonlinear and DIfferential/ALgebraic Equation Solvers - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|---------------------------------------------------------------------------------------------------------------------------------- -``2.6.2``| |``intel/2016b``, ``intel/2018b`` -``2.7.0``| |``foss/2016b``, ``foss/2017b``, ``foss/2018a``, ``foss/2018b``, ``intel/2016b``, ``intel/2017a``, ``intel/2017b``, ``intel/2018a`` -``5.1.0``| |``foss/2019b``, ``intel/2019b`` -``5.7.0``| |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b`` -``6.2.0``| |``foss/2020b``, ``intel/2020b`` -``6.3.0``| |``foss/2021b``, ``foss/2022a`` -``6.5.1``| |``foss/2022a`` -``6.6.0``| |``foss/2022b``, ``foss/2023a`` -``6.6.0``|``-CUDA-12.1.1``|``foss/2023a`` - -### SunPy - -The community-developed, free and open-source solar data analysis environment for Python. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``1.1.3``|``-Python-3.7.4``|``foss/2019b`` - -### SuperLU - -SuperLU is a general purpose library for the direct solution of large, sparse, nonsymmetric systems of linear equations on high performance machines. - -*homepage*: - -version |toolchain ----------|-------------------------------------------------------------------------------- -``5.1.1``|``foss/2016a``, ``intel/2016a`` -``5.2.1``|``foss/2017b``, ``intel/2017b`` -``5.2.2``|``foss/2020a``, ``intel/2020a`` -``5.3.0``|``foss/2020b``, ``foss/2021a``, ``foss/2022a``, ``intel/2020b``, ``intel/2022a`` - -### SuperLU_DIST - -SuperLU is a general purpose library for the direct solution of large, sparse, nonsymmetric systems of linear equations on high performance machines. - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------|------------------------------- -``5.4.0``|``-trisolve-merge``|``intel/2020a`` -``6.4.0``| |``foss/2020a``, ``intel/2020a`` -``8.1.0``| |``foss/2022a`` -``8.1.2``| |``foss/2022b``, ``foss/2023a`` - -### supermagic - -Very simple MPI sanity code. Nothing more, nothing less. - -*homepage*: - -version |toolchain -------------|------------------------------- -``20170824``|``foss/2017a``, ``gompi/2019b`` - -### supernova - -Supernova is a software package for de novo assembly from Chromium Linked-Reads that are made from a single whole-genome library from an individual DNA source - -*homepage*: - -version |toolchain ----------|---------- -``2.0.1``|``system`` -``2.1.1``|``system`` - -### SUPPA - -Fast, accurate, and uncertainty-aware differential splicing analysis across multiple conditions. - -*homepage*: - -version |toolchain -----------------|-------------- -``2.3-20231005``|``foss/2022b`` - -### SURVIVOR - -Toolset for SV simulation, comparison and filtering - -*homepage*: - -version |toolchain ----------------------|------------------------------ -``1.0.7-19-ged1ca51``|``GCC/11.2.0``, ``GCC/12.2.0`` - -### SVclone - -Cluster structural variants of similar cancer cell fraction (CCF). - -*homepage*: - -version |toolchain ----------|-------------- -``1.1.2``|``foss/2022b`` - -### SVDetect - -SVDetect is a application for the isolation and the type prediction of intra- and inter-chromosomal rearrangements from paired-end/mate-pair sequencing data provided by the high-throughput sequencing technologies. This tool aims to identifying structural variations with both clustering and sliding-window strategies, and helping in their visualization at the genome scale. - -*homepage*: - -version |versionsuffix |toolchain ---------|----------------|---------------------------------------------------------- -``0.8b``|``-Perl-5.26.0``|``GCC/6.4.0-2.28``, ``iccifort/2017.4.196-GCC-6.4.0-2.28`` - -### SVDquest - -SVDquartets-based species trees - -*homepage*: - -version |toolchain -------------|--------------- -``20190627``|``gompi/2019a`` - -### SVG - -Perl binding for SVG - -*homepage*: - -version |versionsuffix |toolchain ---------|----------------|---------------------------------------------- -``2.84``|``-Perl-5.30.0``|``foss/2019b`` -``2.87``| |``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0`` - -### SVIM - -SVIM (pronounced swim) is a structural variant caller for third-generation sequencing reads. It is able to detect and classify the following six classes of structural variation: deletions, insertions, inversions, tandem duplications, interspersed duplications and translocations. - -*homepage*: - -version |toolchain ----------|-------------- -``2.0.0``|``foss/2022a`` - -### svist4get - -Svist4get is a simple bioinformatics tool for visualization of genomic signal tracks in user-defined genomic windows, either arbitrary selected by genomic coordinates or anchored to particular transcripts or genes. - -*homepage*: - -version |toolchain ----------|------------------------------ -``1.3.1``|``foss/2020b``, ``foss/2023a`` - -### swarm - -A robust and fast clustering method for amplicon-based studies - -*homepage*: - -version |toolchain ----------|-------------- -``2.2.2``|``foss/2018b`` - -### SWASH - -SWASH is a general-purpose numerical tool for simulating unsteady, non-hydrostatic, free-surface, rotational flow and transport phenomena in coastal waters as driven by waves, tides, buoyancy and wind forces. - -*homepage*: - -version |versionsuffix|toolchain ---------|-------------|-------------------------------- -``3.14``|``-mpi`` |``intel/2016b``, ``intel/2017a`` -``4.01``|``-mpi`` |``intel/2017a`` - -### SWAT+ - -The Soil & Water Assessment Tool (SWAT) is a small watershed to river basin-scale model used to simulate the quality and quantity of surface and ground water and predict the environmental impact of land use, land management practices, and climate change. In order to face present and future challenges in water resources modeling SWAT code has undergone major modifications over the past few years, resulting in SWAT+, a completely revised version of the model. SWAT+ provides a more flexible spatial representation of interactions and processes within a watershed. - -*homepage*: - -version |toolchain -----------|----------------------- -``60.4.1``|``GCC/9.3.0`` -``60.5.1``|``iccifort/2020.4.304`` - -### swifter - -A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner. - -*homepage*: - -version |toolchain ----------|---------------------------------- -``1.0.9``|``foss/2020b``, ``fosscuda/2020b`` - -### SWIG - -SWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programming languages. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------------------|------------------------------------------------------------------------------ -``3.0.8`` |``-Python-2.7.11`` |``foss/2016a``, ``intel/2016a`` -``3.0.8`` |``-Python-3.5.1`` |``foss/2016a`` -``3.0.10``|``-Python-2.7.12`` |``foss/2016b``, ``intel/2016b`` -``3.0.10``|``-Python-2.7.12-PCRE-8.39``|``intel/2016b`` -``3.0.11``|``-Python-2.7.12`` |``foss/2016b``, ``intel/2016b`` -``3.0.12``| |``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``3.0.12``|``-Python-2.7.13`` |``intel/2017a`` -``3.0.12``|``-Python-2.7.14`` |``foss/2017b``, ``foss/2018a``, ``intel/2017b``, ``intel/2018a`` -``3.0.12``|``-Python-2.7.14-bare`` |``GCCcore/6.4.0`` -``3.0.12``|``-Python-2.7.15`` |``GCCcore/8.2.0``, ``foss/2018b``, ``intel/2018b`` -``3.0.12``|``-Python-3.6.1`` |``intel/2017a`` -``3.0.12``|``-Python-3.6.2`` |``foss/2017b``, ``intel/2018.00`` -``3.0.12``|``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b``, ``intel/2018.01`` -``3.0.12``|``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a``, ``iomkl/2018a`` -``3.0.12``|``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``3.0.12``|``-Python-3.7.2`` |``GCCcore/8.2.0`` -``4.0.1`` | |``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``4.0.2`` | |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``4.1.1`` | |``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` -``4.2.1`` | |``GCCcore/13.3.0`` - -### SWIPE - -Smith-Waterman database searches with inter-sequence SIMD parallelisation - -*homepage*: - -version |toolchain ----------|-------------- -``2.1.1``|``GCC/10.3.0`` - -### swissknife - -Perl module for reading and writing UniProtKB data in plain text format. - -*homepage*: - -version |toolchain ---------|----------------- -``1.80``|``GCCcore/8.3.0`` - -### SymEngine - -SymEngine is a standalone fast C++ symbolic manipulation library - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|-------------------- -``0.3.0`` |``-20181006``|``intel/2018a`` -``0.4.0`` | |``GCC/8.2.0-2.31.1`` -``0.7.0`` | |``GCC/10.3.0`` -``0.11.2``| |``gfbf/2023b`` - -### SymEngine-python - -Python wrappers to the C++ library SymEngine, a fast C++ symbolic manipulation library. - -*homepage*: - -version |toolchain -----------|-------------- -``0.7.2`` |``GCC/10.3.0`` -``0.11.0``|``gfbf/2023b`` - -### SYMMETRICA - -Symmetrica is a Collection of C routines for representation theory. - -*homepage*: - -version|toolchain --------|-------------------------------------- -``2.0``|``GCCcore/11.3.0``, ``GCCcore/13.2.0`` - -### SYMPHONY - -SYMPHONY is an open-source solver for mixed-integer linear programs (MILPs) written in C. - -*homepage*: - -version |toolchain -----------|-------------- -``5.6.16``|``foss/2018b`` - -### sympy - -SymPy is a Python library for symbolic mathematics. It aims to become a full-featured computer algebra system (CAS) while keeping the code as simple as possible in order to be comprehensible and easily extensible. SymPy is written entirely in Python and does not require any external libraries. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|---------------------------------------------- -``1.0`` |``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``1.3`` |``-Python-2.7.14``|``intel/2018a`` -``1.3`` |``-Python-2.7.15``|``foss/2018b`` -``1.3`` |``-Python-3.6.4`` |``intel/2018a`` -``1.3`` |``-Python-3.6.6`` |``foss/2018b`` -``1.4`` | |``foss/2019a``, ``intel/2019a`` -``1.5.1`` |``-Python-3.7.4`` |``foss/2019b`` -``1.6.2`` |``-Python-3.8.2`` |``foss/2020a`` -``1.7.1`` | |``foss/2020b``, ``intel/2020b`` -``1.8`` | |``foss/2021a`` -``1.9`` | |``foss/2021b``, ``intel/2021b`` -``1.10.1``| |``foss/2022a``, ``intel/2022a`` -``1.11.1``| |``foss/2022a``, ``intel/2022a`` -``1.12`` | |``gfbf/2022b``, ``gfbf/2023a``, ``gfbf/2023b`` - -### synapseclient - -The synapseclient package provides an interface to Synapse, a collaborative, open-source research platform that allows teams to share data, track analyses, and collaborate, providing support for: integrated presentation of data, code and text fine grained access control provenance tracking The synapseclient package lets you communicate with the cloud-hosted Synapse service to access data and create shared data analysis projects from within Python scripts or at the interactive Python console. Other Synapse clients exist for R, Java, and the web. The Python client can also be used from the command line. - -*homepage*: - -version |toolchain ----------|------------------ -``3.0.0``|``GCCcore/12.2.0`` - -### synthcity - -A library for generating and evaluating synthetic tabular data. - -*homepage*: - -version |toolchain ----------|-------------- -``0.2.4``|``foss/2022a`` - -### SyRI - -Synteny and Rearrangement Identifier (SyRI). - -*homepage*: - -version|toolchain --------|-------------- -``1.4``|``foss/2021a`` - -### sysbench - -sysbench is a scriptable multi-threaded benchmark tool based on LuaJIT. It is most frequently used for database benchmarks, but can also be used to create arbitrarily complex workloads that do not involve a database server. - -*homepage*: - -version |toolchain -----------|-------------- -``1.0.20``|``GCC/12.2.0`` - -### Szip - -Szip compression software, providing lossless compression of scientific data - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.1`` |``GCC/4.8.1``, ``GCCcore/5.4.0``, ``foss/2016a``, ``foss/2016b``, ``foss/2017a``, ``gimkl/2.11.5``, ``gimkl/2017a``, ``gmpolf/2017.10``, ``intel/2016.02-GCC-4.9``, ``intel/2016a``, ``intel/2016b``, ``intel/2017.01``, ``intel/2017a``, ``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25`` -``2.1.1``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` - -## T - - -[T-Coffee](#t-coffee) - [t-SNE-CUDA](#t-sne-cuda) - [tabix](#tabix) - [tabixpp](#tabixpp) - [taco](#taco) - [TagDust](#tagdust) - [TagLib](#taglib) - [Taiyaki](#taiyaki) - [TALON](#talon) - [TALYS](#talys) - [TAMkin](#tamkin) - [tantan](#tantan) - [Tapenade](#tapenade) - [task-spooler](#task-spooler) - [taxator-tk](#taxator-tk) - [TBA](#tba) - [tbb](#tbb) - [tbl2asn](#tbl2asn) - [TCC](#tcc) - [Tcl](#tcl) - [TCLAP](#tclap) - [tcsh](#tcsh) - [tecplot360ex](#tecplot360ex) - [TELEMAC-MASCARET](#telemac-mascaret) - [Telescope](#telescope) - [Teneto](#teneto) - [tensorboard](#tensorboard) - [tensorboardX](#tensorboardx) - [TensorFlow](#tensorflow) - [tensorflow-compression](#tensorflow-compression) - [TensorFlow-Datasets](#tensorflow-datasets) - [TensorFlow-Graphics](#tensorflow-graphics) - [tensorflow-probability](#tensorflow-probability) - [TensorRT](#tensorrt) - [terastructure](#terastructure) - [termcolor](#termcolor) - [Tesla-Deployment-Kit](#tesla-deployment-kit) - [tesseract](#tesseract) - [testpath](#testpath) - [TetGen](#tetgen) - [TEToolkit](#tetoolkit) - [TEtranscripts](#tetranscripts) - [texinfo](#texinfo) - [texlive](#texlive) - [Text-CSV](#text-csv) - [TF-COMB](#tf-comb) - [TFEA](#tfea) - [Theano](#theano) - [ThemisPy](#themispy) - [THetA](#theta) - [thirdorder](#thirdorder) - [thurstonianIRT](#thurstonianirt) - [TiCCutils](#ticcutils) - [tidybayes](#tidybayes) - [tidymodels](#tidymodels) - [Tika](#tika) - [tiktoken](#tiktoken) - [TiMBL](#timbl) - [time](#time) - [timm](#timm) - [TINKER](#tinker) - [tiny-cuda-nn](#tiny-cuda-nn) - [TinyDB](#tinydb) - [TinyXML](#tinyxml) - [Tk](#tk) - [Tkinter](#tkinter) - [TM-align](#tm-align) - [tMAE](#tmae) - [tmap](#tmap) - [tmux](#tmux) - [TN93](#tn93) - [TOBIAS](#tobias) - [ToFu](#tofu) - [Togl](#togl) - [toil](#toil) - [tokenizers](#tokenizers) - [Tombo](#tombo) - [TOML-Fortran](#toml-fortran) - [TOPAS](#topas) - [topaz](#topaz) - [TopHat](#tophat) - [torchaudio](#torchaudio) - [torchdata](#torchdata) - [torchinfo](#torchinfo) - [TorchIO](#torchio) - [torchsampler](#torchsampler) - [torchtext](#torchtext) - [torchvf](#torchvf) - [torchvision](#torchvision) - [tornado](#tornado) - [TotalView](#totalview) - [tox](#tox) - [tqdm](#tqdm) - [Tracer](#tracer) - [TranscriptClean](#transcriptclean) - [TransDecoder](#transdecoder) - [Transformers](#transformers) - [Transrate](#transrate) - [travis](#travis) - [TRAVIS-Analyzer](#travis-analyzer) - [treatSens](#treatsens) - [TreeMix](#treemix) - [TreeShrink](#treeshrink) - [TRF](#trf) - [Triangle](#triangle) - [Trilinos](#trilinos) - [Trim_Galore](#trim_galore) - [trimAl](#trimal) - [trimesh](#trimesh) - [Trimmomatic](#trimmomatic) - [Trinity](#trinity) - [Trinotate](#trinotate) - [Triplexator](#triplexator) - [TRIQS](#triqs) - [TRIQS-cthyb](#triqs-cthyb) - [TRIQS-dft_tools](#triqs-dft_tools) - [TRIQS-tprf](#triqs-tprf) - [Triton](#triton) - [tRNAscan-SE](#trnascan-se) - [TRUST](#trust) - [TRUST4](#trust4) - [Trycycler](#trycycler) - [tseriesEntropy](#tseriesentropy) - [tsne](#tsne) - [turbinesFoam](#turbinesfoam) - [TurboVNC](#turbovnc) - [TVB](#tvb) - [tvb-data](#tvb-data) - [TVB-deps](#tvb-deps) - [tvb-framework](#tvb-framework) - [tvb-library](#tvb-library) - [TWL-NINJA](#twl-ninja) - [TXR](#txr) - [typing-extensions](#typing-extensions) - - -### T-Coffee - -A collection of tools for Computing, Evaluating and Manipulating Multiple Alignments of DNA, RNA, Protein Sequences and Structures - -*homepage*: - -version |toolchain ---------------------|---------- -``13.45.61.3c310a9``|``system`` -``13.46.0.919e8c6b``|``system`` - -### t-SNE-CUDA - -GPU Accelerated t-SNE for CUDA with Python bindings - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``3.0.1``|``-CUDA-12.1.1``|``foss/2023a`` - -### tabix - -Generic indexer for TAB-delimited genome position files - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ -``0.2.6``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/5.4.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.3.0``, ``foss/2016a``, ``intel/2016a``, ``intel/2016b`` - -### tabixpp - -C++ wrapper to tabix indexer - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------- -``1.1.0``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/9.3.0`` -``1.1.2``|``GCC/11.3.0``, ``GCC/12.3.0`` - -### taco - -Multi-sample transcriptome assembly from RNA-Seq - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``0.5.1``|``-Python-2.7.12``|``intel/2016b`` - -### TagDust - -Raw sequences produced by next generation sequencing (NGS) machines may contain adapter, linker, barcode and fingerprint sequences. TagDust2 is a program to extract and correctly label the sequences to be mapped in downstream pipelines. - -*homepage*: - -version |toolchain ---------|------------------------------------- -``2.33``|``GCCcore/10.2.0``, ``GCCcore/8.3.0`` - -### TagLib - -TagLib is a library for reading and editing the meta-data of several popular audio formats. - -*homepage*: - -version |toolchain -----------|----------------- -``1.11.1``|``GCCcore/8.2.0`` - -### Taiyaki - -Taiyaki is research software for training models for basecalling Oxford Nanopore reads. - -*homepage*: - -version |versionsuffix |toolchain -------------------|-------------------------------|---------------------------------- -``5.1.0-20200617``|``-Python-3.7.2-PyTorch-1.2.0``|``foss/2019a``, ``fosscuda/2019a`` - -### TALON - -TALON is a Python package for identifying and quantifying known and novel genes/isoforms in long-read transcriptome data sets. TALON is technology-agnostic in that it works from mapped SAM files, allowing data from different sequencing platforms (i.e. PacBio and Oxford Nanopore) to be analyzed side by side. - -*homepage*: - -version|toolchain --------|-------------- -``5.0``|``foss/2020b`` - -### TALYS - -TALYS is a nuclear reaction program. - -*homepage*: - -version |toolchain ---------|------------------------------------- -``1.95``|``GCCcore/10.3.0``, ``GCCcore/9.3.0`` - -### TAMkin - -TAMkin is a post-processing toolkit for normal mode analysis, thermochemistry and reaction kinetics. It uses a Hessian computation from a standard computational chemistry program as its input. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------------------------------------------------------- -``1.0.9``|``-Python-2.7.11``|``intel/2016a`` -``1.2.4``|``-Python-2.7.14``|``intel/2017b`` -``1.2.6``| |``foss/2020b``, ``foss/2021a``, ``foss/2021b``, ``foss/2023a`` -``1.2.6``|``-Python-3.7.2`` |``intel/2019a`` -``1.2.6``|``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` - -### tantan - -tantan identifies simple regions / low complexity / tandem repeats in DNA or protein sequences - -*homepage*: - -version|toolchain --------|-------------- -``40`` |``GCC/11.2.0`` - -### Tapenade - -Tool for Algorithmic Differentiation of programs. - -*homepage*: - -version |versionsuffix|toolchain ---------|-------------|---------- -``3.16``|``-Java-17`` |``system`` - -### task-spooler - -task spooler is a Unix batch system where the tasks spooled run one after the other. - -*homepage*: - -version |toolchain ----------|------------------ -``1.0.2``|``GCCcore/11.3.0`` - -### taxator-tk - -A set of programs for the taxonomic analysis of nucleotide sequence data - -*homepage*: - -version |toolchain ----------|----------------------------------------------- -``1.3.3``|``GCC/10.2.0``, ``foss/2018b``, ``gompi/2019a`` - -### TBA - -TBA (a Transcription factor Binding Analysis): TBA is a multi-functional machine learning tool for identifying transcription factors associated with genomic features - -*homepage*: - -version|toolchain --------|-------------- -``1.0``|``foss/2020b`` - -### tbb - -Intel Threading Building Blocks (Intel TBB) is a widely used, award-winning C++ template library for creating reliable, portable, and scalable parallel applications. Use Intel TBB for a simple and rapid way of developing robust task-based parallel applications that scale to available processor cores, are compatible with multiple environments, and are easier to maintain. Intel TBB is the most proficient way to implement future-proof parallel applications that tap into the power and performance of multicore and manycore hardware platforms. - -*homepage*: - -version |toolchain ---------------|------------------------------------------------------------------------------ -``4.0.0.233`` |``system`` -``4.0.5.339`` |``system`` -``4.3.6.211`` |``system`` -``4.4.2.152`` |``system`` -``2017.2.132``|``system`` -``2017.4.174``|``system`` -``2017.6.196``|``system`` -``2017_U5`` |``GCCcore/5.4.0``, ``foss/2016b``, ``intel/2017a`` -``2017_U6`` |``GCCcore/6.3.0``, ``intel/2017a`` -``2018_U1`` |``GCCcore/6.4.0`` -``2018_U2`` |``GCCcore/6.4.0`` -``2018_U3`` |``GCCcore/6.4.0`` -``2018_U5`` |``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``2019_U4`` |``GCCcore/8.2.0`` -``2019_U9`` |``GCCcore/8.3.0`` -``2020.1`` |``GCCcore/12.3.0``, ``GCCcore/9.3.0`` -``2020.2`` |``GCCcore/8.3.0`` -``2020.3`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/12.3.0`` -``2021.4.0`` |``GCCcore/11.2.0`` -``2021.5.0`` |``GCCcore/11.3.0`` -``2021.10.0`` |``GCCcore/12.2.0`` -``2021.11.0`` |``GCCcore/12.3.0`` - -### tbl2asn - -Tbl2asn is a command-line program that automates the creation of sequence records for submission to GenBank - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|---------- -``25.8`` |``-linux64`` |``system`` -``20180227``|``-linux64`` |``system`` -``20200302``|``-linux64`` |``system`` -``20220427``|``-linux64`` |``system`` -``20230713``|``-linux64`` |``system`` - -### TCC - -The Tiny C Compiler (aka TCC, tCc, or TinyCC) is an x86 and x86-64 C compiler created by Fabrice Bellard. It is designed to work for slow computers with little disk space and can run shebang style !/usr/bin/tcc . TCC is distributed under the LGPL. TCC claims to implement all of ANSI C (C89/C90),[1] much of the new ISO C99 standard, and many GNU C extensions including inline assembly. - -*homepage*: - -version |toolchain -----------|---------- -``0.9.26``|``system`` - -### Tcl - -Tcl (Tool Command Language) is a very powerful but easy to learn dynamic programming language, suitable for a very wide range of uses, including web and desktop applications, networking, administration, testing and many more. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``8.5.19``|``foss/2017a`` -``8.6.3`` |``GCC/4.8.4``, ``GCC/4.9.2`` -``8.6.4`` |``GCC/4.9.3-2.25``, ``GNU/4.9.3-2.25``, ``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016.02-GCC-4.9``, ``intel/2016a``, ``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25`` -``8.6.5`` |``GCC/4.9.3-2.25``, ``GCC/5.4.0-2.26``, ``GCCcore/6.3.0``, ``foss/2016.04``, ``foss/2016a``, ``foss/2016b``, ``iccifort/2016.3.210-GCC-5.4.0-2.26``, ``intel/2016b`` -``8.6.6`` |``GCCcore/4.9.3``, ``GCCcore/6.3.0`` -``8.6.7`` |``GCCcore/6.4.0`` -``8.6.8`` |``GCCcore/6.4.0``, ``GCCcore/7.2.0``, ``GCCcore/7.3.0`` -``8.6.9`` |``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``8.6.10``|``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``8.6.11``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``8.6.12``|``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``8.6.13``|``GCCcore/12.3.0``, ``GCCcore/13.1.0``, ``GCCcore/13.2.0`` -``8.6.14``|``GCCcore/13.3.0`` - -### TCLAP - -TCLAP is a small, flexible library that provides a simple interface for defining and accessing command line arguments. It was intially inspired by the user friendly CLAP libary. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``1.2.2``|``GCCcore/8.3.0`` -``1.2.4``|``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``1.2.5``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` - -### tcsh - -Tcsh is an enhanced, but completely compatible version of the Berkeley UNIX C shell (csh). It is a command language interpreter usable both as an interactive login shell and a shell script command processor. It includes a command-line editor, programmable word completion, spelling correction, a history mechanism, job control and a C-like syntax. - -*homepage*: - -version |toolchain ------------|------------------------------------------------------- -``6.19.00``|``intel/2016a`` -``6.20.00``|``GCCcore/5.4.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``6.22.02``|``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``6.22.03``|``GCCcore/10.2.0`` -``6.22.04``|``GCCcore/10.3.0`` -``6.24.01``|``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``6.24.07``|``GCCcore/12.2.0`` -``6.24.10``|``GCCcore/12.3.0`` - -### tecplot360ex - -Quickly plot and animate your CFD results exactly the way you want. Analyze complex solutions, arrange multiple layouts, and communicate your results with professional images and animations. - -*homepage*: - -version |toolchain ------------|---------- -``linux64``|``system`` - -### TELEMAC-MASCARET - -TELEMAC-MASCARET is an integrated suite of solvers for use in the field of free-surface flow. Having been used in the context of many studies throughout the world, it has become one of the major standards in its field. - -*homepage*: - -version |toolchain ----------|-------------- -``8p3r1``|``foss/2021b`` - -### Telescope - -Single locus resolution of Transposable ELEment expression using next-generation sequencing. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``1.0.3``|``-Python-3.7.4``|``foss/2019b`` - -### Teneto - -Teneto is package for deriving, analysing and plotting temporal network representations. Additional tools for temporal network analysis with neuroimaging contexts. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``0.5.1``|``-Python-3.8.2``|``foss/2020a`` - -### tensorboard - -TensorBoard is a suite of web applications for inspecting and understanding your TensorFlow runs and graphs. - -*homepage*: - -version |toolchain -----------|-------------- -``2.8.0`` |``foss/2021a`` -``2.10.0``|``foss/2022a`` -``2.15.1``|``gfbf/2023a`` - -### tensorboardX - -Tensorboard for PyTorch. - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|---------------------------------- -``2.0`` |``-Python-3.7.4`` |``foss/2019b`` -``2.1`` |``-PyTorch-1.7.1``|``fosscuda/2020b`` -``2.2`` |``-PyTorch-1.7.1``|``foss/2020b``, ``fosscuda/2020b`` -``2.5.1`` | |``foss/2022a`` -``2.6.2.2``| |``foss/2022b``, ``foss/2023a`` - -### TensorFlow - -An open-source software library for Machine Intelligence - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------------------|--------------------------------------------------- -``0.12.1``|``-Python-2.7.12`` |``foss/2016b``, ``intel/2016b`` -``0.12.1``|``-Python-3.5.2`` |``foss/2016b``, ``intel/2016b`` -``1.0.1`` |``-Python-2.7.12`` |``intel/2016b`` -``1.0.1`` |``-Python-3.5.2`` |``intel/2016b`` -``1.1.0`` |``-Python-2.7.13`` |``intel/2017a`` -``1.1.0`` |``-Python-3.6.1`` |``intel/2017a`` -``1.2.0`` |``-Python-3.6.1`` |``intel/2017a`` -``1.2.1`` |``-GPU-Python-3.5.2`` |``foss/2016b`` -``1.2.1`` |``-Python-3.5.2`` |``foss/2016b`` -``1.3.0`` |``-Python-2.7.13`` |``intel/2017a`` -``1.3.0`` |``-Python-3.6.1`` |``intel/2017a`` -``1.3.0`` |``-Python-3.6.3`` |``intel/2017b`` -``1.4.0`` |``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``1.4.1`` |``-Python-3.6.3`` |``foss/2017b`` -``1.5.0`` |``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``1.6.0`` |``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``1.6.0`` |``-Python-3.6.4-CUDA-9.1.85``|``foss/2018a`` -``1.7.0`` |``-Python-3.6.4`` |``foss/2018a`` -``1.7.0`` |``-Python-3.6.4-CUDA-9.1.85``|``foss/2018a`` -``1.8.0`` |``-Python-2.7.14`` |``foss/2017b``, ``fosscuda/2017b`` -``1.8.0`` |``-Python-3.6.3`` |``foss/2017b``, ``fosscuda/2017b`` -``1.8.0`` |``-Python-3.6.4`` |``foss/2018a``, ``fosscuda/2018a``, ``intel/2018a`` -``1.10.0``|``-Python-2.7.15`` |``fosscuda/2018b`` -``1.10.1``|``-Python-2.7.15`` |``fosscuda/2018b`` -``1.10.1``|``-Python-3.6.6`` |``foss/2018b`` -``1.11.0``|``-Python-3.6.6`` |``foss/2018b`` -``1.12.0``|``-Python-2.7.15`` |``fosscuda/2018b`` -``1.12.0``|``-Python-3.6.6`` |``foss/2018b``, ``fosscuda/2018b`` -``1.13.1``|``-Python-3.6.6`` |``foss/2018b`` -``1.13.1``|``-Python-3.7.2`` |``foss/2019a``, ``fosscuda/2019a`` -``1.14.0``|``-Python-3.7.2`` |``foss/2019a``, ``fosscuda/2019a`` -``1.15.0``|``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b`` -``1.15.2``|``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b`` -``1.15.5``|``-Python-3.7.4`` |``fosscuda/2019b`` -``1.15.5``|``-Python-3.7.4-nompi`` |``fosscuda/2019b`` -``2.0.0`` |``-Python-3.7.2`` |``foss/2019a`` -``2.0.0`` |``-Python-3.7.4`` |``fosscuda/2019b`` -``2.0.1`` |``-Python-3.7.2`` |``foss/2019a`` -``2.0.1`` |``-Python-3.7.4`` |``fosscuda/2019b`` -``2.1.0`` |``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b`` -``2.2.0`` |``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b`` -``2.2.2`` |``-Python-3.7.4`` |``foss/2019b`` -``2.2.3`` | |``foss/2020b`` -``2.3.1`` |``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b`` -``2.3.1`` |``-Python-3.8.2`` |``foss/2020a``, ``fosscuda/2020a`` -``2.4.1`` | |``foss/2020b``, ``fosscuda/2020b`` -``2.4.1`` |``-Python-3.7.4`` |``fosscuda/2019b`` -``2.4.4`` | |``foss/2021a`` -``2.5.0`` | |``foss/2020b``, ``fosscuda/2020b`` -``2.5.0`` |``-Python-3.7.4`` |``fosscuda/2019b`` -``2.5.3`` | |``foss/2021a`` -``2.5.3`` |``-CUDA-11.3.1`` |``foss/2021a`` -``2.6.0`` | |``foss/2021a`` -``2.6.0`` |``-CUDA-11.3.1`` |``foss/2021a`` -``2.7.1`` | |``foss/2021b`` -``2.7.1`` |``-CUDA-11.4.1`` |``foss/2021b`` -``2.8.4`` | |``foss/2021b`` -``2.8.4`` |``-CUDA-11.4.1`` |``foss/2021b`` -``2.9.1`` | |``foss/2022a`` -``2.9.1`` |``-CUDA-11.7.0`` |``foss/2022a`` -``2.11.0``| |``foss/2022a`` -``2.11.0``|``-CUDA-11.7.0`` |``foss/2022a`` -``2.13.0``| |``foss/2022b``, ``foss/2023a`` -``2.15.1``| |``foss/2023a`` - -### tensorflow-compression - -TensorFlow Compression (TFC) contains data compression tools for TensorFlow. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|-------------- -``2.11.0``|``-CUDA-11.7.0``|``foss/2022a`` - -### TensorFlow-Datasets - -TensorFlow Datasets is a collection of datasets ready to use, with TensorFlow or other Python ML frameworks, such as Jax. All datasets are exposed as tf.data.Datasets , enabling easy-to-use and high-performance input pipelines. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``4.7.0``|``-CUDA-11.3.1``|``foss/2021a`` -``4.8.3``|``-CUDA-11.4.1``|``foss/2021b`` - -### TensorFlow-Graphics - -Tensorflow Graphics provides a set of differentiable graphics and geometry layers (e.g. cameras, reflectance models, spatial transformations, mesh convolutions) and 3D viewer functionalities (e.g. 3D TensorBoard) that can be used to train and debug your machine learning models of choice. - -*homepage*: - -version |versionsuffix |toolchain --------------|----------------|-------------- -``2021.12.3``|``-CUDA-11.4.1``|``foss/2021b`` - -### tensorflow-probability - -TensorFlow Probability (TFP) is a library for probabilistic reasoning and statistical analysis. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|---------------------------------- -``0.9.0`` |``-Python-3.7.4``|``foss/2019b`` -``0.12.1``| |``foss/2020b``, ``fosscuda/2020b`` -``0.14.0``| |``foss/2021a`` -``0.16.0``| |``foss/2021b`` -``0.19.0``| |``foss/2022a`` -``0.19.0``|``-CUDA-11.7.0`` |``foss/2022a`` -``0.20.0``| |``foss/2023a`` - -### TensorRT - -NVIDIA TensorRT is a platform for high-performance deep learning inference - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|------------------ -``4.0.1.6``|``-Python-2.7.15``|``fosscuda/2018b`` -``8.6.1`` |``-CUDA-11.7.0`` |``foss/2022a`` - -### terastructure - -TeraStructure is a new algorithm to fit Bayesian models of genetic variation in human populations on tera-sample-sized data sets (10^12 observed genotypes, i.e., 1M individuals at 1M SNPs). This package provides a scalable, multi-threaded C++ implementation that can be run on a single computer. - -*homepage*: - -version|toolchain --------|------------- -``1.0``|``GCC/8.3.0`` - -### termcolor - -Termcolor is a header-only C++ library for printing colored messages to the terminal. - -*homepage*: - -version |toolchain ----------|---------- -``2.0.0``|``system`` - -### Tesla-Deployment-Kit - -The Tesla Deployment Kit is a set of tools provided primarily for the NVIDIA Tesla range of GPUs. They aim to empower users to better manage their NVIDIA GPUs by providing a broad range of functionalities. The kit contains: * NVIDIA Management Library (NVML), * Tesla Deployment Kit - Linux Edition (Aug 1st, 2013) - -*homepage*: - -version |toolchain -------------|---------- -``5.319.43``|``system`` - -### tesseract - -Tesseract is an optical character recognition engine - -*homepage*: - -version |toolchain ----------|------------------------------------- -``4.0.0``|``GCCcore/7.3.0`` -``4.1.0``|``GCCcore/10.3.0``, ``GCCcore/8.2.0`` -``5.3.0``|``GCCcore/11.3.0`` - -### testpath - -Test utilities for code working with files and commands - -*homepage*: - -version|versionsuffix |toolchain --------|------------------|------------------------------- -``0.3``|``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``0.3``|``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``0.3``|``-Python-3.5.1`` |``foss/2016a`` -``0.3``|``-Python-3.5.2`` |``intel/2016b`` - -### TetGen - -A Quality Tetrahedral Mesh Generator and a 3D Delaunay Triangulator - -*homepage*: - -version |toolchain ----------|------------------ -``1.5.0``|``GCCcore/6.4.0`` -``1.6.0``|``GCCcore/10.2.0`` - -### TEToolkit - -Tools for estimating differential enrichment of Transposable Elements and other highly repetitive regions - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``1.5.1``|``-Python-2.7.11``|``foss/2016a`` - -### TEtranscripts - -TEtranscripts and TEcount takes RNA-seq (and similar data) and annotates reads to both genes & transposable elements. TEtranscripts then performs differential analysis using DESeq2. - -*homepage*: - -version |toolchain ----------|-------------- -``2.2.0``|``foss/2020a`` - -### texinfo - -Texinfo is the official documentation format of the GNU project. - -*homepage*: - -version |toolchain ----------|-------------------------------------------------------- -``4.13a``|``system`` -``5.2`` |``GCC/4.8.2`` -``6.4`` |``GCCcore/5.4.0`` -``6.5`` |``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``6.6`` |``GCCcore/8.2.0`` -``6.7`` |``GCCcore/10.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``6.8`` |``GCCcore/11.2.0`` -``7.0.2``|``GCCcore/11.3.0`` -``7.1`` |``GCCcore/12.3.0`` - -### texlive - -TeX is a typesetting language. Instead of visually formatting your text, you enter your manuscript text intertwined with TeX commands in a plain text file. You then run TeX to produce formatted output, such as a PDF file. Thus, in contrast to standard word processors, your document is a separate file that does not pretend to be a representation of the final typeset output, and so can be easily edited and manipulated. - -*homepage*: - -version |toolchain -------------|---------------------------------------------- -``20200406``|``GCCcore/8.3.0`` -``20210324``|``GCC/10.3.0``, ``GCC/11.2.0`` -``20220321``|``GCC/11.2.0`` -``20230313``|``GCC/11.3.0``, ``GCC/12.3.0``, ``GCC/13.2.0`` - -### Text-CSV - -Text-CSV parser - -*homepage*: - -version |versionsuffix |toolchain ---------|----------------|-------------- -``1.33``|``-Perl-5.22.1``|``foss/2016a`` - -### TF-COMB - -Transcription Factor Co-Occurrence using Market Basket analysis. - -*homepage*: - -version|toolchain --------|-------------- -``1.1``|``foss/2023a`` - -### TFEA - -Transcription Factor Enrichment Analysis - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``1.1.4``|``-muMerge-1.1.0``|``foss/2020b`` - -### Theano - -Theano is a Python library that allows you to define, optimize, and evaluate mathematical expressions involving multi-dimensional arrays efficiently. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------------------------------------------------------------ -``0.8.2``|``-Python-2.7.11``|``foss/2016a`` -``0.8.2``|``-Python-3.5.1`` |``foss/2016a`` -``0.8.2``|``-Python-3.5.2`` |``intel/2016b`` -``0.9.0``|``-Python-2.7.13``|``intel/2017a`` -``0.9.0``|``-Python-3.6.1`` |``intel/2017a`` -``1.0.0``|``-Python-2.7.14``|``intel/2017b`` -``1.0.0``|``-Python-3.6.3`` |``intel/2017b`` -``1.0.1``|``-Python-3.6.3`` |``foss/2017b``, ``intel/2017b`` -``1.0.2``|``-Python-2.7.14``|``fosscuda/2017b``, ``intelcuda/2017b`` -``1.0.2``|``-Python-2.7.15``|``fosscuda/2018b`` -``1.0.2``|``-Python-3.6.3`` |``fosscuda/2017b``, ``intelcuda/2017b`` -``1.0.2``|``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``1.0.3``|``-Python-3.6.6`` |``foss/2018b``, ``fosscuda/2018b`` -``1.0.4``| |``foss/2019a``, ``fosscuda/2019a`` -``1.0.4``|``-Python-3.6.4`` |``foss/2018a`` -``1.0.4``|``-Python-3.6.6`` |``foss/2018b``, ``fosscuda/2018b`` -``1.0.4``|``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b``, ``intel/2019b`` -``1.0.4``|``-Python-3.8.2`` |``foss/2020a`` -``1.1.2``|``-PyMC`` |``foss/2020b``, ``foss/2021b``, ``fosscuda/2020b``, ``intel/2020b``, ``intel/2021b`` - -### ThemisPy - -A header-only C++ library for L-BFGS and L-BFGS-B algorithms - -*homepage*: - -version |toolchain ----------|-------------- -``0.3.0``|``foss/2021a`` - -### THetA - -Tumor Heterogeneity Analysis (THetA) and THetA2 are algorithms that estimate the tumor purity and clonal/subclonal copy number aberrations directly from high-throughput DNA sequencing data. - -*homepage*: - -version|versionsuffix |toolchain --------|------------------|-------------- -``0.7``|``-Python-2.7.15``|``foss/2018b`` - -### thirdorder - -A Python script to help create input files for computing anhamonic interatomic force constants, harnessing the symmetries of the system to minimize the number of required DFT calculations. A second mode of operation allows the user to build the third-order IFC matrix from the results of those runs. - -*homepage*: - -version |toolchain ----------|-------------- -``1.1.1``|``foss/2022a`` - -### thurstonianIRT - -Fit Thurstonian IRT models in R using Stan, lavaan, or Mplus - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``0.9.0``|``-R-3.6.0`` |``foss/2019a`` - -### TiCCutils - -TiCC utils is a collection of generic C++ software which is used in a lot of programs produced at Tilburg centre for Cognition and Communication (TiCC) at Tilburg University and Centre for Dutch Language and Speech at University of Antwerp. - -*homepage*: - -version |toolchain ---------|-------------------------------- -``0.11``|``foss/2016a`` -``0.21``|``iimpi/2019a``, ``intel/2018b`` - -### tidybayes - -Compose data for and extract, manipulate, and visualize posterior draws from Bayesian models ('JAGS', 'Stan', 'rstanarm', 'brms', 'MCMCglmm', 'coda', ...) in a tidy data format. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``2.1.1``|``-R-4.0.0`` |``foss/2020a`` - -### tidymodels - -tidymodels is a 'meta-package' for modeling and statistical analysis that shares the underlying design philosophy, grammar, and data structures of the tidyverse. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``0.1.0``|``-R-4.0.0`` |``foss/2020a`` -``1.1.0``| |``foss/2022b`` - -### Tika - -The Apache Tika toolkit detects and extracts metadata and text from over a thousand different file types (such as PPT, XLS, and PDF). - -*homepage*: - -version |toolchain ---------|---------- -``1.16``|``system`` - -### tiktoken - -tiktoken is a fast BPE tokeniser for use with OpenAI's models - -*homepage*: - -version |toolchain ----------|------------------ -``0.6.0``|``GCCcore/12.3.0`` - -### TiMBL - -TiMBL (Tilburg Memory Based Learner) is an open source software package implementing several memory-based learning algorithms, among which IB1-IG, an implementation of k-nearest neighbor classification with feature weighting suitable for symbolic feature spaces, and IGTree, a decision-tree approximation of IB1-IG. All implemented algorithms have in common that they store some representation of the training set explicitly in memory. During testing, new cases are classified by extrapolation from the most similar stored cases. - -*homepage*: - -version |toolchain -----------|-------------------------------- -``6.4.7`` |``foss/2016a`` -``6.4.13``|``iimpi/2019a``, ``intel/2018b`` - -### time - -The `time' command runs another program, then displays information about the resources used by that program, collected by the system while the program was running. - -*homepage*: - -version|toolchain --------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.7``|``system`` -``1.9``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/7.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` - -### timm - -timm is a library containing SOTA computer vision models, layers, utilities, optimizers, schedulers, data-loaders, augmentations, and training/evaluation scripts. It comes packaged with >700 pretrained models, and is designed to be flexible and easy to use. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|-------------- -``0.6.13``|``-CUDA-11.7.0``|``foss/2022a`` -``0.9.7`` |``-CUDA-11.7.0``|``foss/2022a`` - -### TINKER - -The TINKER molecular modeling software is a complete and general package for molecular mechanics and dynamics, with some special features for biopolymers. - -*homepage*: - -version |toolchain ----------|-------------- -``8.6.1``|``foss/2018b`` -``8.7.2``|``foss/2019b`` -``8.8.1``|``foss/2020a`` - -### tiny-cuda-nn - -is a small, self-contained framework for training and querying neural networks. Most notably, it contains a lightning fast "fully fused" multi-layer perceptron (technical paper), a versatile multiresolution hash encoding (technical paper), as well as support for various other input encodings, losses, and optimizers. - -*homepage*: - -version|versionsuffix |toolchain --------|----------------|-------------- -``1.6``|``-CUDA-11.7.0``|``foss/2022a`` - -### TinyDB - -TinyDB is a lightweight document oriented database optimized for your happiness :) It's written in pure Python and has no external dependencies. The target are small apps that would be blown away by a SQL-DB or an external database server. - -*homepage*: - -version |toolchain -----------|----------------- -``3.15.2``|``GCCcore/8.3.0`` - -### TinyXML - -TinyXML is a simple, small, minimal, C++ XML parser that can be easily integrating into other programs. It reads XML and creates C++ objects representing the XML document. The objects can be manipulated, changed, and saved again as XML. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``2.6.2``|``GCCcore/11.2.0``, ``GCCcore/11.3.0`` - -### Tk - -Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building a graphical user interface (GUI) in many different programming languages. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------------------------------------------------------------------------------------------------------------------------------------ -``8.6.3`` |``-no-X11`` |``GCC/4.8.4``, ``GCC/4.9.2`` -``8.6.4`` | |``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25`` -``8.6.4`` |``-libX11-1.6.3``|``intel/2016a`` -``8.6.4`` |``-no-X11`` |``GCC/4.9.3-2.25``, ``GNU/4.9.3-2.25``, ``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016.02-GCC-4.9``, ``intel/2016a`` -``8.6.5`` | |``GCC/5.4.0-2.26``, ``GCCcore/6.3.0``, ``foss/2016.04``, ``foss/2016a``, ``foss/2016b``, ``iccifort/2016.3.210-GCC-5.4.0-2.26``, ``intel/2016b`` -``8.6.6`` | |``foss/2017a``, ``intel/2017a`` -``8.6.7`` | |``foss/2017b``, ``fosscuda/2017b``, ``intel/2017b``, ``intelcuda/2017b`` -``8.6.8`` | |``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``foss/2018a``, ``iomkl/2018a`` -``8.6.9`` | |``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``8.6.10``| |``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``8.6.11``| |``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``8.6.12``| |``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``8.6.13``| |``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### Tkinter - -Tkinter module, built with the Python buildsystem - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------------------------------------------------------------------------------------------------- -``2.7.13``|``-Python-2.7.13``|``foss/2017a``, ``intel/2017a`` -``2.7.14``|``-Python-2.7.14``|``foss/2017b``, ``foss/2018a``, ``fosscuda/2017b``, ``intel/2017b``, ``intel/2018a``, ``intelcuda/2017b`` -``2.7.15``| |``GCCcore/8.2.0`` -``2.7.15``|``-Python-2.7.15``|``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b`` -``2.7.16``| |``GCCcore/8.3.0`` -``2.7.18``| |``GCCcore/10.2.0``, ``GCCcore/11.2.0``, ``GCCcore/9.3.0`` -``3.6.1`` |``-Python-3.6.1`` |``foss/2017a``, ``intel/2017a`` -``3.6.2`` |``-Python-3.6.2`` |``foss/2017b`` -``3.6.3`` |``-Python-3.6.3`` |``foss/2017b``, ``fosscuda/2017b``, ``intel/2017b``, ``intelcuda/2017b`` -``3.6.4`` |``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a``, ``iomkl/2018.02``, ``iomkl/2018a`` -``3.6.6`` |``-Python-3.6.6`` |``foss/2018b``, ``fosscuda/2018b``, ``intel/2018b``, ``iomkl/2018b`` -``3.7.2`` | |``GCCcore/8.2.0`` -``3.7.4`` | |``GCCcore/8.3.0`` -``3.8.2`` | |``GCCcore/9.3.0`` -``3.8.6`` | |``GCCcore/10.2.0`` -``3.9.5`` | |``GCCcore/10.3.0`` -``3.9.6`` | |``GCCcore/11.2.0`` -``3.10.4``| |``GCCcore/11.3.0`` -``3.10.8``| |``GCCcore/12.2.0`` -``3.11.3``| |``GCCcore/12.3.0`` -``3.11.5``| |``GCCcore/13.2.0`` - -### TM-align - -This package unifies protein structure alignment and RNA structure alignment into the standard TM-align program for single chain structure alignment, MM-align program for multi-chain structure alignment, and TM-score program for sequence dependent structure superposition. - -*homepage*: - -version |toolchain -------------|------------------------------- -``20180426``|``foss/2018b``, ``intel/2019a`` -``20190822``|``GCC/11.3.0`` - -### tMAE - -Package containing functions to: perform a negative binomial test on allele-specific counts add gnomAD minor allele frequencies MAplot (FC vs total counts) of allele-specific counts and results allelic counts (ALT vs REF) - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``1.0.0``|``-R-4.0.3`` |``foss/2020b`` -``1.0.1``|``-R-4.1.2`` |``foss/2021b`` - -### tmap - -tmap is a very fast visualization library for large, high-dimensional data sets. Currently, tmap is available for Python. tmap's graph layouts are based on the OGDF library. - -*homepage*: - -version |toolchain -------------|-------------- -``20220502``|``GCC/11.2.0`` - -### tmux - -tmux is a terminal multiplexer: it enables a number of terminals to be created, accessed, and controlled from a single screen. tmux may be detached from a screen and continue running in the background, then later reattached. - -*homepage*: - -version |toolchain ---------|---------------------------------------------------------------------- -``1.9a``|``GCC/4.9.2`` -``2.2`` |``GCCcore/4.9.3`` -``2.3`` |``GCC/5.4.0-2.26``, ``system`` -``3.1c``|``GCCcore/8.3.0`` -``3.2`` |``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``3.2a``|``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``system`` -``3.3a``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``system`` -``3.4`` |``GCCcore/13.2.0``, ``GCCcore/13.3.0``, ``system`` - -### TN93 - -This is a simple program meant to compute pairwise distances between aligned nucleotide sequences in sequential FASTA format using the Tamura Nei 93 distance. - -*homepage*: - -version |toolchain ----------|------------------ -``1.0.7``|``GCCcore/10.3.0`` - -### TOBIAS - -TOBIAS is a collection of command-line bioinformatics tools for performing footprinting analysis on ATAC-seq data. - -*homepage*: - -version |toolchain ------------|-------------- -``0.12.12``|``foss/2021b`` -``0.14.0`` |``foss/2020b`` -``0.16.1`` |``foss/2023a`` - -### ToFu - -Tomography for Fusion. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------- -``1.3.17``|``-Python-2.7.14``|``foss/2018a`` -``1.3.17``|``-Python-3.6.4`` |``foss/2018a`` -``1.4.0`` |``-Python-2.7.14``|``foss/2018a``, ``intel/2018a`` -``1.4.0`` |``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``1.4.1`` |``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``1.5.0`` | |``foss/2020b``, ``intel/2020b`` - -### Togl - -A Tcl/Tk widget for OpenGL rendering. - -*homepage*: - -version|toolchain --------|----------------------------------------------------------------------------- -``2.0``|``GCCcore/10.2.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/8.3.0`` - -### toil - -A scalable, efficient, cross-platform (Linux/macOS) and easy-to-use workflow engine in pure Python. - -*homepage*: - -version |toolchain ----------|-------------- -``5.8.0``|``foss/2021a`` - -### tokenizers - -Fast State-of-the-Art Tokenizers optimized for Research and Production - -*homepage*: - -version |toolchain -----------|------------------ -``0.12.1``|``GCCcore/10.3.0`` -``0.13.3``|``GCCcore/12.2.0`` -``0.15.2``|``GCCcore/12.3.0`` - -### Tombo - -Tombo is a suite of tools primarily for the identification of modified nucleotides from raw nanopore sequencing data. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``1.5.1``|``-Python-3.7.4``|``foss/2019b`` - -### TOML-Fortran - -TOML parser for Fortran projects - -*homepage*: - -version |toolchain ----------|-------------------------------------------- -``0.2.2``|``GCC/10.2.0``, ``iccifort/2020.4.304`` -``0.3.1``|``GCC/11.2.0``, ``GCC/11.3.0`` -``0.4.1``|``GCC/12.2.0``, ``intel-compilers/2022.2.1`` - -### TOPAS - -TOPAS wraps and extends the Geant4 Simulation Toolkit to make advanced Monte Carlo simulation of all forms of radiotherapy easier to use for medical physicists. - -*homepage*: - -version|toolchain --------|-------------- -``3.9``|``foss/2022b`` - -### topaz - -Particle picking software for single particle cryo-electron microscopy using convolutional neural networks and positive-unlabeled learning. Includes methods for micrograph denoising. - -*homepage*: - -version |versionsuffix |toolchain -------------------|----------------|-------------- -``0.2.5`` | |``foss/2021a`` -``0.2.5`` |``-CUDA-11.3.1``|``foss/2021a`` -``0.2.5.20230926``|``-CUDA-11.7.0``|``foss/2022a`` -``0.2.5.20231120``|``-CUDA-12.1.1``|``foss/2023a`` - -### TopHat - -TopHat is a fast splice junction mapper for RNA-Seq reads. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------------------------------------------------------------------------- -``2.1.0``|``-Python-2.7.14``|``intel/2018a`` -``2.1.1``| |``foss/2016a``, ``foss/2016b``, ``foss/2017b``, ``intel/2017a``, ``intel/2017b`` -``2.1.2``| |``foss/2018b``, ``gompi/2019b``, ``iimpi/2019b`` -``2.1.2``|``-Python-2.7.18``|``GCC/10.2.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``gompi/2020a``, ``iimpi/2020a`` - -### torchaudio - -Data manipulation and transformation for audio signal processing, powered by PyTorch - -*homepage*: - -version |versionsuffix |toolchain -----------|-------------------------------|---------------------------------- -``0.5.0`` |``-Python-3.7.4-PyTorch-1.4.0``|``foss/2019b``, ``fosscuda/2019b`` -``0.12.0``|``-PyTorch-1.12.0`` |``foss/2022a`` -``0.12.0``|``-PyTorch-1.12.0-CUDA-11.7.0``|``foss/2022a`` - -### torchdata - -TorchData is a prototype library of common modular data loading primitives for easily constructing flexible and performant data pipelines." - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------------------|-------------- -``0.3.0``|``-PyTorch-1.11.0-CUDA-11.3.1``|``foss/2021a`` - -### torchinfo - -" Torchinfo provides information complementary to what is provided by print(your_model) in PyTorch, similar to Tensorflow's model.summary() API to view the visualization of the model, which is helpful while debugging your network. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|---------------------------------- -``1.5.2``|``-PyTorch-1.7.1``|``foss/2020b``, ``fosscuda/2020b`` - -### TorchIO - -TorchIO is an open-source Python library for efficient loading, preprocessing, augmentation and patch-based sampling of 3D medical images in deep learning, following the design of PyTorch. It includes multiple intensity and spatial transforms for data augmentation and preprocessing. These transforms include typical computer vision operations such as random affine transformations and also domain-specific ones such as simulation of intensity artifacts due to MRI magnetic field inhomogeneity (bias) or k-space motion artifacts. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|-------------- -``0.19.6``|``-CUDA-12.1.1``|``foss/2023a`` - -### torchsampler - -A (PyTorch) imbalanced dataset sampler for oversampling low classes and undersampling high frequent ones. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``0.1.2``| |``foss/2022a`` -``0.1.2``|``-CUDA-11.7.0``|``foss/2022a`` - -### torchtext - -Data loaders and abstractions for text and NLP - -*homepage*: - -version |versionsuffix |toolchain -----------|-------------------------------|---------------------------------- -``0.5.0`` |``-PyTorch-1.4.0-Python-3.7.4``|``fosscuda/2019b`` -``0.7.0`` |``-Python-3.7.4-PyTorch-1.6.0``|``foss/2019b``, ``fosscuda/2019b`` -``0.8.1`` |``-PyTorch-1.7.1`` |``fosscuda/2020b`` -``0.9.1`` |``-PyTorch-1.8.1`` |``fosscuda/2020b`` -``0.10.0``|``-PyTorch-1.9.0`` |``fosscuda/2020b`` -``0.14.1``|``-PyTorch-1.12.0`` |``foss/2022a`` - -### torchvf - -TorchVF is a unifying Python library for using vector fields for efficient proposal-free instance segmentation. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``0.1.3``| |``foss/2022a`` -``0.1.3``|``-CUDA-11.7.0``|``foss/2022a`` - -### torchvision - -Datasets, Transforms and Models specific to Computer Vision - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------------------------|---------------------------------- -``0.2.0`` |``-Python-3.6.4`` |``intel/2018a`` -``0.2.0`` |``-Python-3.6.4-CUDA-9.1.85`` |``foss/2018a`` -``0.2.2`` |``-Python-3.6.6`` |``foss/2018b``, ``fosscuda/2018b`` -``0.3.0`` |``-Python-3.7.2`` |``foss/2019a`` -``0.4.2`` |``-PyTorch-1.3.1`` |``fosscuda/2020b`` -``0.4.2`` |``-Python-3.7.4`` |``foss/2019b``, ``fosscuda/2019b`` -``0.5.0`` |``-Python-3.7.4-PyTorch-1.4.0`` |``fosscuda/2019b`` -``0.7.0`` |``-Python-3.7.4-PyTorch-1.6.0`` |``foss/2019b``, ``fosscuda/2019b`` -``0.7.0`` |``-Python-3.7.4-PyTorch-1.6.0-imkl``|``fosscuda/2019b`` -``0.8.2`` |``-PyTorch-1.7.1`` |``foss/2020b``, ``fosscuda/2020b`` -``0.8.2`` |``-Python-3.7.4-PyTorch-1.7.1`` |``fosscuda/2019b`` -``0.9.1`` |``-PyTorch-1.8.1`` |``fosscuda/2020b`` -``0.9.1`` |``-Python-3.7.4-PyTorch-1.8.1`` |``fosscuda/2019b`` -``0.10.0``|``-PyTorch-1.9.0`` |``fosscuda/2020b`` -``0.11.1``| |``foss/2021a`` -``0.11.1``|``-CUDA-11.3.1`` |``foss/2021a`` -``0.11.3``| |``foss/2021a`` -``0.11.3``|``-CUDA-11.3.1`` |``foss/2021a`` -``0.12.0``|``-PyTorch-1.11.0-CUDA-11.3.1`` |``foss/2021a`` -``0.13.1``| |``foss/2022a`` -``0.13.1``|``-CUDA-11.7.0`` |``foss/2022a`` -``0.14.1``| |``foss/2022b`` -``0.16.0``| |``foss/2023a`` -``0.16.0``|``-CUDA-12.1.1`` |``foss/2023a`` - -### tornado - -Tornado is a Python web framework and asynchronous networking library. - -*homepage*: - -version |toolchain ----------|------------------ -``6.3.2``|``GCCcore/12.3.0`` -``6.4`` |``GCCcore/13.2.0`` - -### TotalView - -TotalView is a GUI-based source code defect analysis tool that gives you unprecedented control over processes and thread execution and visibility into program state and variables. It allows you to debug one or many processes and/or threads in a single window with complete control over program execution. This allows you to set breakpoints, stepping line by line through the code on a single thread, or with coordinated groups of processes or threads, and run or halt arbitrary sets of processes or threads. You can reproduce and troubleshoot difficult problems that can occur in concurrent programs that take advantage of threads, OpenMP, MPI, GPUs or coprocessors. - -*homepage*: - -version |versionsuffix |toolchain -------------|-----------------|---------- -``8.11.0-0``|``-linux-x86-64``|``system`` -``8.11.0-2``|``-linux-x86-64``|``system`` -``8.12.0-0``|``-linux-x86-64``|``system`` - -### tox - -tox aims to automate and standardize testing in Python - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``3.25.1``|``GCCcore/10.2.0``, ``GCCcore/11.3.0`` - -### tqdm - -A fast, extensible progress bar for Python and CLI - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------- -``4.24.0``|``-Python-2.7.15``|``foss/2018b`` -``4.24.0``|``-Python-3.5.1`` |``foss/2016a`` -``4.29.0``|``-Python-3.6.4`` |``intel/2018a`` -``4.32.1``| |``GCCcore/8.2.0`` -``4.41.1``| |``GCCcore/8.3.0`` -``4.41.1``|``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``4.47.0``| |``GCCcore/9.3.0`` -``4.51.0``|``-Python-3.8.2`` |``intel/2020a`` -``4.56.2``| |``GCCcore/10.2.0`` -``4.60.0``| |``GCCcore/10.2.0`` -``4.61.1``| |``GCCcore/10.3.0`` -``4.61.2``| |``GCCcore/10.3.0`` -``4.62.3``| |``GCCcore/11.2.0`` -``4.64.0``| |``GCCcore/11.3.0`` -``4.64.1``| |``GCCcore/12.2.0`` -``4.66.1``| |``GCCcore/12.3.0`` -``4.66.2``| |``GCCcore/13.2.0`` - -### Tracer - -Tracer is a graphical tool for visualization and diagnostics of MCMC output. - -*homepage*: - -version |toolchain ----------|----------------- -``1.7.1``|``GCCcore/8.2.0`` - -### TranscriptClean - -TranscriptClean is a Python program that corrects mismatches, microindels, and noncanonical splice junctions in long reads that have been mapped to the genome. - -*homepage*: - -version |toolchain ----------|-------------- -``2.0.2``|``foss/2020b`` - -### TransDecoder - -TransDecoder identifies candidate coding regions within transcript sequences, such as those generated by de novo RNA-Seq transcript assembly using Trinity, or constructed based on RNA-Seq alignments to the genome using Tophat and Cufflinks. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|--------------- -``2.1.0``|``-Perl-5.24.1``|``intel/2017a`` -``5.5.0``| |``GCC/11.3.0`` - -### Transformers - -State-of-the-art Natural Language Processing for PyTorch and TensorFlow 2.0 - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|-------------- -``4.2.1`` |``-Python-3.8.2``|``foss/2020a`` -``4.20.1``| |``foss/2021a`` -``4.21.1``| |``foss/2021b`` -``4.24.0``| |``foss/2022a`` -``4.29.2``| |``foss/2022a`` -``4.30.2``| |``foss/2022b`` -``4.39.3``| |``gfbf/2023a`` - -### Transrate - -Transrate is software for de-novo transcriptome assembly quality analysis. It examines your assembly in detail and compares it to experimental evidence such as the sequencing reads, reporting quality scores for contigs and assemblies. This allows you to choose between assemblers and parameters, filter out the bad contigs from an assembly, and help decide when to stop trying to improve the assembly. - -*homepage*: - -version |toolchain ----------|---------- -``1.0.3``|``system`` - -### travis - -Travis CI Client (CLI and Ruby library) - -*homepage*: - -version |versionsuffix |toolchain ----------|---------------|---------- -``1.8.2``|``-Ruby-2.3.1``|``system`` -``1.8.4``|``-Ruby-2.3.3``|``system`` - -### TRAVIS-Analyzer - -TRAVIS is a free tool for analyzing and visualizing trajectories from all kinds of Molecular Dynamics or Monte Carlo simulations. - -*homepage*: - -version |toolchain -----------|-------------- -``210521``|``GCC/10.3.0`` -``220729``|``GCC/11.3.0`` - -### treatSens - -Utilities to investigate sensitivity to unmeasured confounding in parametric models with either binary or continuous treatment. - -*homepage*: - -version |versionsuffix|toolchain -----------------|-------------|-------------- -``3.0-20201002``|``-R-4.0.0`` |``foss/2020a`` - -### TreeMix - -TreeMix is a method for inferring the patterns of population splits and mixtures in the history of a set of populations. - -*homepage*: - -version |toolchain ---------|----------------------------------------------- -``1.13``|``GCC/10.3.0``, ``GCC/11.2.0``, ``intel/2018a`` - -### TreeShrink - -TreeShrink is an algorithm for detecting abnormally long branches in one or more phylogenetic trees. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------------- -``1.3.2``|``-Python-3.7.2``|``GCC/8.2.0-2.31.1`` - -### TRF - -Tandem Repeats Finder: a program to analyze DNA sequences. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|--------------------------------------------------------------------------------------------- -``4.09`` |``-linux64`` |``system`` -``4.09.1``| |``GCC/10.3.0``, ``GCCcore/10.2.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/9.3.0`` - -### Triangle - -Triangle generates exact Delaunay triangulations, constrained Delaunay triangulations, conforming Delaunay triangulations, Voronoi diagrams, and high-quality triangular meshes. The latter can be generated with no small or large angles, and are thus suitable for finite element analysis. - -*homepage*: - -version|toolchain --------|----------------------------------------------------------------------------------------------------------------------- -``1.6``|``GCCcore/6.4.0``, ``GCCcore/9.3.0``, ``foss/2016a``, ``foss/2018a``, ``intel/2016b``, ``intel/2017a``, ``intel/2018a`` - -### Trilinos - -The Trilinos Project is an effort to develop algorithms and enabling technologies within an object-oriented software framework for the solution of large-scale, complex multi-physics engineering and scientific problems. A unique design feature of Trilinos is its focus on packages. - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|------------------------------- -``12.12.1``|``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``12.12.1``|``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``12.12.1``|``-Python-3.7.4`` |``foss/2019b`` -``13.4.1`` | |``foss/2022a`` -``13.4.1`` |``-zoltan`` |``foss/2022a`` - -### Trim_Galore - -Trim Galore! is a wrapper script to automate quality and adapter trimming as well as quality control, with some added functionality to remove biased methylation positions for RRBS sequence files (for directional, non-directional (or paired-end) sequencing). - -*homepage*: - -version |versionsuffix |toolchain -----------|-------------------------|-------------------------------------- -``0.4.2`` | |``foss/2016b`` -``0.4.4`` | |``foss/2016b``, ``intel/2017a`` -``0.5.0`` | |``foss/2018b`` -``0.5.0`` |``-Python-3.6.6`` |``intel/2018b`` -``0.6.0`` |``-Python-2.7.15`` |``foss/2018b`` -``0.6.0`` |``-Python-3.6.6`` |``foss/2018b`` -``0.6.1`` |``-Python-2.7.15`` |``foss/2018b`` -``0.6.1`` |``-Python-3.6.6`` |``foss/2018b`` -``0.6.2`` |``-Java-11`` |``GCCcore/8.2.0`` -``0.6.2`` |``-Python-2.7.15`` |``foss/2018b`` -``0.6.2`` |``-Python-3.6.6`` |``foss/2018b`` -``0.6.5`` |``-Java-11-Python-3.7.4``|``GCCcore/8.3.0`` -``0.6.6`` |``-Python-2.7.18`` |``GCC/10.2.0`` -``0.6.6`` |``-Python-3.8.2`` |``GCCcore/9.3.0`` -``0.6.7`` | |``GCCcore/10.3.0`` -``0.6.10``| |``GCCcore/11.2.0``, ``GCCcore/11.3.0`` - -### trimAl - -A tool for automated alignment trimming in large-scale phylogenetic analyses - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------------------------------------------------------------------------------------- -``1.4.1``|``GCC/8.2.0-2.31.1``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0``, ``GCCcore/9.3.0``, ``intel/2018a`` - -### trimesh - -Trimesh is a Python (2.7- 3.3+) library for loading and using triangular meshes with an emphasis on watertight meshes. The goal of the library is to provide a fully featured Trimesh object which allows for easy manipulation and analysis, in the style of the excellent Polygon object in the Shapely library. - -*homepage*: - -version |toolchain -----------|-------------- -``3.17.1``|``foss/2022a`` -``3.21.5``|``gfbf/2022b`` - -### Trimmomatic - -Trimmomatic performs a variety of useful trimming tasks for illumina paired-end and single ended data.The selection of trimming steps and their associated parameters are supplied on the command line. - -*homepage*: - -version |versionsuffix |toolchain ---------|-------------------|---------- -``0.32``|``-Java-1.7.0_80`` |``system`` -``0.36``|``-Java-1.8.0_92`` |``system`` -``0.38``|``-Java-1.8`` |``system`` -``0.38``|``-Java-1.8.0_162``|``system`` -``0.39``|``-Java-1.8`` |``system`` -``0.39``|``-Java-11`` |``system`` -``0.39``|``-Java-17`` |``system`` - -### Trinity - -Trinity represents a novel method for the efficient and robust de novo reconstruction of transcriptomes from RNA-Seq data. Trinity combines three independent software modules: Inchworm, Chrysalis, and Butterfly, applied sequentially to process large volumes of RNA-Seq reads. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|---------------------------------------- -``2.2.0`` | |``foss/2016a`` -``2.4.0`` | |``foss/2017a`` -``2.5.1`` | |``intel/2017a``, ``intel/2017b`` -``2.6.6`` | |``intel/2018a`` -``2.8.4`` | |``foss/2018b`` -``2.8.5`` | |``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -``2.8.5`` |``-Java-11`` |``GCC/8.3.0`` -``2.9.1`` | |``foss/2020b`` -``2.9.1`` |``-Python-2.7.16``|``foss/2019b`` -``2.9.1`` |``-Python-3.7.4`` |``foss/2019b`` -``2.10.0``|``-Python-3.7.4`` |``foss/2019b`` -``2.15.1``| |``foss/2021b``, ``foss/2022a`` - -### Trinotate - -Trinotate is a comprehensive annotation suite designed for automatic functional annotation of transcriptomes, particularly de novo assembled transcriptomes, from model or non-model organisms. Trinotate makes use of a number of different well referenced methods for functional annotation including homology search to known sequence data (BLAST+/SwissProt), protein domain identification (HMMER/PFAM), protein signal peptide and transmembrane domain prediction (signalP/tmHMM), and leveraging various annotation databases (eggNOG/GO/Kegg databases). All functional annotation data derived from the analysis of transcripts is integrated into a SQLite database which allows fast efficient searching for terms with specific qualities related to a desired scientific hypothesis or a means to create a whole annotation report for a transcriptome. - -*homepage*: - -version |toolchain ----------|-------------- -``4.0.1``|``foss/2022a`` - -### Triplexator - -Triplexator is a tool for detecting nucleic acid triple helices and triplex features in nucleotide sequences using the canonical triplex-formation rules. - -*homepage*: - -version |toolchain ----------|-------------- -``1.3.3``|``GCC/11.2.0`` - -### TRIQS - -TRIQS (Toolbox for Research on Interacting Quantum Systems) is a scientific project providing a set of C++ and Python libraries to develop new tools for the study of interacting quantum systems. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``2.2.0``|``-Python-2.7.15``|``foss/2019a`` -``2.2.1``|``-Python-2.7.15``|``foss/2019a`` -``3.0.0``|``-Python-3.8.2`` |``foss/2020a`` -``3.1.1``| |``foss/2022a`` -``3.2.0``| |``foss/2023a`` - -### TRIQS-cthyb - -TRIQS (Toolbox for Research on Interacting Quantum Systems) is a scientific project providing a set of C++ and Python libraries to develop new tools for the study of interacting quantum systems. cthyb = continuous-time hybridisation-expansion quantum Monte Carlo The TRIQS-based hybridization-expansion solver allows to solve the generic problem of a quantum impurity embedded in a conduction bath for an arbitrary local interaction vertex. The “impurity” can be any set of orbitals, on one or several atoms. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``2.2.0``|``-Python-2.7.15``|``foss/2019a`` -``3.0.0``|``-Python-3.8.2`` |``foss/2020a`` -``3.1.0``| |``foss/2022a`` -``3.2.1``| |``foss/2023a`` - -### TRIQS-dft_tools - -TRIQS (Toolbox for Research on Interacting Quantum Systems) is a scientific project providing a set of C++ and Python libraries to develop new tools for the study of interacting quantum systems. This TRIQS-based-based application is aimed at ab-initio calculations for correlated materials, combining realistic DFT band-structure calculation with the dynamical mean-field theory. Together with the necessary tools to perform the DMFT self-consistency loop for realistic multi-band problems, the package provides a full-fledged charge self-consistent interface to the Wien2K package. In addition, if Wien2k is not available, it provides a generic interface for one-shot DFT+DMFT calculations, where only the single-particle Hamiltonian in orbital space has to be provided. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``2.2.0``|``-Python-2.7.15``|``foss/2019a`` -``3.0.0``|``-Python-3.8.2`` |``foss/2020a`` -``3.1.0``| |``foss/2022a`` -``3.2.0``| |``foss/2023a`` - -### TRIQS-tprf - -TRIQS (Toolbox for Research on Interacting Quantum Systems) is a scientific project providing a set of C++ and Python libraries to develop new tools for the study of interacting quantum systems. TPRF is a TRIQS-based two-particle response function tool box that implements basic operations for higher order response functions such as inversion, products, the random phase approximation, the bethe salpeter equation (in the local vertex approximation), etc.. The aim is to provide efficient (C++/OpenMP/MPI) implementations of the basic operations needed to compute the two-particle response in the different two-particle channels (particle-hole, particle-particle). - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``2.2.0``|``-Python-2.7.15``|``foss/2019a`` -``3.0.0``|``-Python-3.8.2`` |``foss/2020a`` -``3.1.1``| |``foss/2022a`` -``3.2.1``| |``foss/2023a`` - -### Triton - -Triton is a language and compiler for parallel programming. It aims to provide a Python-based programming environment for productively writing custom DNN compute kernels capable of running at maximal throughput on modern GPU hardware. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``1.1.1``|``-CUDA-11.7.0``|``foss/2022a`` - -### tRNAscan-SE - -tRNAscan-SE is the most widely employed tool for identifying and annotating tRNA genes in genomes. - -*homepage*: - -version |toolchain -----------|------------------------------ -``2.0.12``|``GCC/11.2.0``, ``foss/2022b`` - -### TRUST - -Tcr Receptor Utilities for Solid Tissue (TRUST) is a computational tool to analyze TCR and BCR sequences using unselected RNA sequencing data, profiled from solid tissues, including tumors. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``3.0.2``|``-Python-2.7.14``|``intel/2018a`` - -### TRUST4 - -Tcr Receptor Utilities for Solid Tissue (TRUST) is a computational tool to analyze TCR and BCR sequences using unselected RNA sequencing data, profiled from solid tissues, including tumors. TRUST4 performs de novo assembly on V, J, C genes including the hypervariable complementarity-determining region 3 (CDR3) and reports consensus of BCR/TCR sequences. TRUST4 then realigns the contigs to IMGT reference gene sequences to report the corresponding information. TRUST4 supports both single-end and paired-end sequencing data with any read length. - -*homepage*: - -version |toolchain ------------|-------------- -``1.0.5.1``|``system`` -``1.0.6`` |``GCC/11.2.0`` -``1.0.7`` |``GCC/11.3.0`` - -### Trycycler - -Trycycler is a tool for generating consensus long-read assemblies for bacterial genomes. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``0.3.3``|``-Python-3.8.2``|``foss/2020a`` -``0.5.2``| |``foss/2021a`` -``0.5.3``| |``foss/2021b`` - -### tseriesEntropy - -Implements an Entropy measure of dependence based on the Bhattacharya-Hellinger-Matusita distance. Can be used as a (nonlinear) autocorrelation/crosscorrelation function for continuous and categorical time series. The package includes tests for serial dependence and nonlinearity based on it. Some routines have a parallel version that can be used in a multicore/cluster environment. The package makes use of S4 classes. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``0.6-0``|``-R-4.2.1`` |``foss/2022a`` - -### tsne - -Python library containing T-SNE algorithms. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``0.1.8``|``-Python-2.7.16``|``intel/2019b`` - -### turbinesFoam - -turbinesFoam is a library for simulating wind and marine hydrokinetic turbines in OpenFOAM using the actuator line method. - -*homepage*: - -version |versionsuffix |toolchain -------------|---------------|-------------- -``20220516``|``-OpenFOAM-8``|``foss/2020a`` - -### TurboVNC - -TurboVNC is a derivative of VNC (Virtual Network Computing) that is tuned to provide peak performance for 3D and video workloads. - -*homepage*: - -version |toolchain ----------|------------------ -``2.2.3``|``GCCcore/8.2.0`` -``3.0.1``|``GCCcore/11.3.0`` - -### TVB - -The Virtual Brain will deliver the first open simulation of the human brain based on individual large-scale connectivity. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``1.4.1``|``-Python-2.7.11``|``intel/2016a`` -``1.5`` |``-Python-2.7.11``|``intel/2016a`` - -### tvb-data - -The Virtual Brain Project (TVB Project) has the purpose of offering some modern tools to the Neurosciences community, for computing, simulating and analyzing functional and structural data of human brains. Various demonstration data for use with TVB. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|--------------- -``1.5`` |``-Python-2.7.11``|``intel/2016a`` -``20150915``|``-Python-2.7.11``|``intel/2016a`` - -### TVB-deps - -Bundle of dependency Python packages for TVB (The Virtual Brain) - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|--------------- -``20160618``|``-Python-2.7.11``|``intel/2016a`` - -### tvb-framework - -The Virtual Brain Project (TVB Project) has the purpose of offering some modern tools to the Neurosciences community, for computing, simulating and analyzing functional and structural data of human brains. TVB Scientific Library is the most important scientific contribution of TVB Project. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|--------------- -``1.5`` |``-Python-2.7.11``|``intel/2016a`` -``20150921``|``-Python-2.7.11``|``intel/2016a`` - -### tvb-library - -The Virtual Brain Project (TVB Project) has the purpose of offering some modern tools to the Neurosciences community, for computing, simulating and analyzing functional and structural data of human brains. TVB Scientific Library is the most important scientific contribution of TVB Project. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|--------------- -``1.5`` |``-Python-2.7.11``|``intel/2016a`` -``20150922``|``-Python-2.7.11``|``intel/2016a`` - -### TWL-NINJA - -Nearly Infinite Neighbor Joining Application. - -*homepage*: - -version |toolchain ----------------------|-------------- -``0.97-cluster_only``|``GCC/10.2.0`` -``0.98-cluster_only``|``GCC/11.3.0`` - -### TXR - -TXR is a pragmatic, convenient tool ready to take on your daily hacking challenges with its dual personality: its whole-document pattern matching and extraction language for scraping information from arbitrary text sources, and its powerful data-processing language to slice through problems like a hot knife through butter. Many tasks can be accomplished with TXR "one liners" directly from your system prompt. - -*homepage*: - -version|toolchain --------|------------------ -``291``|``GCCcore/12.2.0`` - -### typing-extensions - -Typing Extensions – Backported and Experimental Type Hints for Python - -*homepage*: - -version |versionsuffix |toolchain -------------|-----------------|-------------------------------------- -``3.7.4.3`` | |``GCCcore/10.2.0`` -``3.7.4.3`` |``-Python-3.7.4``|``GCCcore/8.3.0`` -``3.7.4.3`` |``-Python-3.8.2``|``GCCcore/9.3.0`` -``3.10.0.0``| |``GCCcore/10.3.0`` -``3.10.0.2``| |``GCCcore/11.2.0`` -``4.3.0`` | |``GCCcore/11.3.0`` -``4.4.0`` | |``GCCcore/10.3.0`` -``4.9.0`` | |``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``4.10.0`` | |``GCCcore/13.2.0`` - -## U - - -[UCC](#ucc) - [UCC-CUDA](#ucc-cuda) - [UCLUST](#uclust) - [UCX](#ucx) - [UCX-CUDA](#ucx-cuda) - [ucx-py](#ucx-py) - [UCX-ROCm](#ucx-rocm) - [udocker](#udocker) - [UDUNITS](#udunits) - [UFL](#ufl) - [Ultralytics](#ultralytics) - [umap-learn](#umap-learn) - [UMI-tools](#umi-tools) - [umi4cPackage](#umi4cpackage) - [umis](#umis) - [UNAFold](#unafold) - [uncertainties](#uncertainties) - [uncertainty-calibration](#uncertainty-calibration) - [unicore-uftp](#unicore-uftp) - [Unicycler](#unicycler) - [Unidecode](#unidecode) - [unifdef](#unifdef) - [UniFrac](#unifrac) - [unimap](#unimap) - [units](#units) - [unixODBC](#unixodbc) - [unrar](#unrar) - [UnZip](#unzip) - [UQTk](#uqtk) - [USEARCH](#usearch) - [UShER](#usher) - [USPEX](#uspex) - [utf8proc](#utf8proc) - [util-linux](#util-linux) - - -### UCC - -UCC (Unified Collective Communication) is a collective communication operations API and library that is flexible, complete, and feature-rich for current and emerging programming models and runtimes. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``1.0.0``|``GCCcore/11.3.0`` -``1.1.0``|``GCCcore/12.2.0`` -``1.2.0``|``GCCcore/12.3.0``, ``GCCcore/13.2.0`` -``1.3.0``|``GCCcore/13.3.0`` - -### UCC-CUDA - -UCC (Unified Collective Communication) is a collective communication operations API and library that is flexible, complete, and feature-rich for current and emerging programming models and runtimes. This module adds the UCC CUDA support. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|------------------ -``1.0.0``|``-CUDA-11.7.0``|``GCCcore/11.3.0`` -``1.1.0``|``-CUDA-12.0.0``|``GCCcore/12.2.0`` -``1.2.0``|``-CUDA-12.1.1``|``GCCcore/12.3.0`` - -### UCLUST - -UCLUST: Extreme high-speed sequence clustering, alignment and database search. - -*homepage*: - -version |versionsuffix |toolchain ------------|---------------|---------- -``1.2.22q``|``-i86linux64``|``system`` - -### UCX - -Unified Communication X An open-source production grade communication framework for data centric and high-performance applications - -*homepage*: - -version |versionsuffix |toolchain ---------------|----------------|-------------------------------------------------------------------------------------------------- -``1.3.1`` | |``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``1.5.0`` | |``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0`` -``1.5.0rc1`` |``-hpcx`` |``GCCcore/8.2.0`` -``1.5.1`` | |``GCCcore/8.2.0`` -``1.6.1`` | |``GCCcore/8.3.0`` -``1.8.0`` | |``GCCcore/9.3.0`` -``1.8.0`` |``-CUDA-11.0.2``|``GCCcore/9.3.0`` -``1.9.0`` | |``GCCcore/10.2.0`` -``1.9.0`` |``-CUDA-11.1.1``|``GCCcore/10.2.0`` -``1.9.0`` |``-CUDA-11.2.1``|``GCCcore/10.2.0`` -``1.10.0`` | |``GCCcore/10.3.0`` -``1.11.0`` | |``GCCcore/11.2.0`` -``1.11.2`` | |``GCCcore/11.2.0`` -``1.12.1`` | |``GCCcore/11.3.0`` -``1.13.1`` | |``GCCcore/12.2.0`` -``1.14.0`` | |``GCCcore/12.2.0`` -``1.14.1`` | |``GCCcore/12.3.0`` -``1.15.0`` | |``GCCcore/13.2.0`` -``1.16.0`` | |``GCCcore/13.2.0``, ``GCCcore/13.3.0`` -``1.16.0-rc4``| |``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### UCX-CUDA - -Unified Communication X An open-source production grade communication framework for data centric and high-performance applications This module adds the UCX CUDA support. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|------------------ -``1.10.0``|``-CUDA-11.3.1``|``GCCcore/10.3.0`` -``1.11.0``|``-CUDA-11.4.1``|``GCCcore/11.2.0`` -``1.11.2``|``-CUDA-11.4.1``|``GCCcore/11.2.0`` -``1.11.2``|``-CUDA-11.5.2``|``GCCcore/11.2.0`` -``1.12.1``|``-CUDA-11.7.0``|``GCCcore/11.3.0`` -``1.13.1``|``-CUDA-11.7.0``|``GCCcore/12.2.0`` -``1.13.1``|``-CUDA-12.0.0``|``GCCcore/12.2.0`` -``1.14.1``|``-CUDA-12.1.1``|``GCCcore/12.3.0`` -``1.15.0``|``-CUDA-12.4.0``|``GCCcore/13.2.0`` - -### ucx-py - -UCX-Py is the Python interface for UCX, a low-level high-performance networking library. UCX and UCX-Py supports several transport methods including InfiniBand and NVLink while still using traditional networking protocols like TCP. - -*homepage*: - -version |toolchain -----------|-------------- -``0.21.0``|``foss/2020b`` - -### UCX-ROCm - -Unified Communication X An open-source production grade communication framework for data centric and high-performance applications This module adds the UCX ROCm support. - -*homepage*: - -version |versionsuffix |toolchain -----------|---------------|------------------ -``1.11.2``|``-ROCm-4.5.0``|``GCCcore/11.2.0`` - -### udocker - -A basic user tool to execute simple docker containers in batch or interactive systems without root privileges. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``1.1.1``|``-Python-2.7.14``|``foss/2017b`` -``1.1.3``|``-Python-2.7.14``|``intel/2018a`` - -### UDUNITS - -UDUNITS supports conversion of unit specifications between formatted and binary forms, arithmetic manipulation of units, and conversion of values between compatible scales of measurement. - -*homepage*: - -version |toolchain -----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``2.2.20``|``foss/2016a``, ``intel/2016b`` -``2.2.24``|``intel/2017a`` -``2.2.25``|``foss/2017b``, ``intel/2017b`` -``2.2.26``|``GCCcore/10.2.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``foss/2018a``, ``foss/2018b``, ``foss/2020a``, ``intel/2017b``, ``intel/2018a``, ``intel/2018b``, ``iomkl/2018b`` -``2.2.28``|``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### UFL - -The Unified Form Language (UFL) is a domain specific language for declaration of finite element discretizations of variational forms. More precisely, it defines a flexible interface for choosing finite element spaces and defining expressions for weak forms in a notation close to mathematical notation. - -*homepage*: - -version |versionsuffix |toolchain -------------|-----------------|-------------- -``2018.1.0``|``-Python-3.6.4``|``foss/2018a`` -``2019.1.0``|``-Python-3.7.4``|``foss/2019b`` - -### Ultralytics - -Ultralytics YOLOv8 is a cutting-edge, state-of-the-art (SOTA) model that builds upon the success of previous YOLO versions and introduces new features and improvements to further boost performance and flexibility. YOLOv8 is designed to be fast, accurate, and easy to use, making it an excellent choice for a wide range of object detection and tracking, instance segmentation, image classification and pose estimation tasks. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|-------------- -``8.0.92``|``-CUDA-11.7.0``|``foss/2022a`` - -### umap-learn - -Uniform Manifold Approximation and Projection (UMAP) is a dimension reduction technique that can be used for visualisation similarly to t-SNE, but also for general non-linear dimension reduction. - -*homepage*: - -version |toolchain ----------|-------------------------------------------------------------- -``0.4.6``|``foss/2020b``, ``fosscuda/2020b`` -``0.5.3``|``foss/2020b``, ``foss/2021a``, ``foss/2021b``, ``foss/2022a`` -``0.5.5``|``foss/2023a`` - -### UMI-tools - -Tools for handling Unique Molecular Identifiers in NGS data sets - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``1.0.0``|``-Python-3.6.6``|``foss/2018b`` -``1.0.1``|``-Python-3.7.4``|``foss/2019b`` -``1.0.1``|``-Python-3.8.2``|``foss/2020a`` -``1.1.4``| |``foss/2023a`` - -### umi4cPackage - -umi4cPackage is a processing and analysis pipeline for UMI-4C experiment. - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|-------------- -``20200116``|``-R-4.0.0`` |``foss/2020a`` - -### umis - -Package for estimating UMI counts in Transcript Tag Counting data. - -*homepage*: - -version |toolchain ----------|--------------- -``1.0.3``|``intel/2019a`` - -### UNAFold - -The UNAFold package contains several programs for performing energy minimization and partition function calculations on nucleic acid sequences. - -*homepage*: - -version|versionsuffix |toolchain --------|----------------|--------------- -``3.8``|``-Perl-5.24.1``|``intel/2017a`` - -### uncertainties - -Transparent calculations with uncertainties on the quantities involved (aka error propagation); fast calculation of derivatives - -*homepage*: - -version |toolchain ----------|------------------------------ -``3.1.7``|``foss/2021b``, ``foss/2023a`` - -### uncertainty-calibration - -Python library to measure the calibration error of models, including confidence intervals computed by Bootstrap resampling, and code to recalibrate models. - -*homepage*: - -version |toolchain ----------|-------------- -``0.0.9``|``foss/2021b`` - -### unicore-uftp - -UNICORE Java-based client for UFTP - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|---------- -``1.4.2``|``-Java-11`` |``system`` - -### Unicycler - -Unicycler is an assembly pipeline for bacterial genomes. It can assemble Illumina-only read sets where it functions as a SPAdes-optimiser. It can also assembly long-read-only sets (PacBio or Nanopore) where it runs a miniasm+Racon pipeline. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``0.4.7``|``-Python-3.7.2``|``foss/2019a`` -``0.4.8``|``-Python-3.8.2``|``gompi/2020a`` -``0.4.9``| |``gompi/2021a`` -``0.5.0``| |``gompi/2021b`` - -### Unidecode - -Python library for lossy ASCII transliterations of Unicode text (port of Text::Unidecode Perl module) - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------ -``1.1.1``|``-Python-3.7.4``|``GCCcore/8.3.0`` -``1.3.6``| |``GCCcore/11.3.0`` - -### unifdef - -unifdef - selectively remove C preprocessor conditionals The unifdef utility selectively processes conditional C preprocessor and the additional text that they delimit, while otherwise leaving the file alone. - -*homepage*: - -version |toolchain ---------|------------------ -``2.12``|``GCCcore/11.3.0`` - -### UniFrac - -UniFrac is the de facto repository for high-performance phylogenetic diversity calculations. The methods in this repository are based on an implementation of the Strided State UniFrac algorithm which is faster, and uses less memory than Fast UniFrac. Strided State UniFrac supports Unweighted UniFrac, Weighted UniFrac, Generalized UniFrac, Variance Adjusted UniFrac and meta UniFrac, in both double and single precision (fp32). This repository also includes Stacked Faith (manuscript in preparation), a method for calculating Faith's PD that is faster and uses less memory than the Fast UniFrac-based reference implementation. - -*homepage*: - -version |toolchain ----------|-------------- -``1.3.2``|``foss/2022a`` - -### unimap - -Unimap is a fork of minimap2 optimized for assembly-to-reference alignment. It integrates the minigraph chaining algorithm and can align through long INDELs (up to 100kb by default) much faster than minimap2. Unimap is a better fit for resolving segmental duplications and is recommended over minimap2 for alignment between high-quality assemblies. Unimap does not replace minimap2 for other types of alignment. It drops the support of multi-part index and short-read mapping. Its long-read alignment is different from minimap2 but is not necessarily better. Unimap is more of a specialized minimap2 at the moment. - -*homepage*: - -version|toolchain --------|-------------------------------------- -``0.1``|``GCCcore/10.2.0``, ``GCCcore/11.3.0`` - -### units - -GNU Units converts quantities expressed in various systems of measurement to their equivalents in other systems of measurement. Like many similar programs, it can handle multiplicative scale changes. It can also handle nonlinear conversions such as Fahrenheit to Celsius or wire gauge, and it can convert from and to sums of units, such as converting between meters and feet plus inches. - -*homepage*: - -version |toolchain ---------|----------------- -``2.19``|``GCCcore/8.2.0`` - -### unixODBC - -unixODBC provides a uniform interface between application and database driver - -*homepage*: - -version |toolchain -----------|-------------- -``2.3.7`` |``foss/2018b`` -``2.3.11``|``foss/2022b`` - -### unrar - -RAR is a powerful archive manager. - -*homepage*: - -version |toolchain ----------|------------------ -``5.6.1``|``GCCcore/7.3.0`` -``5.7.3``|``GCCcore/8.2.0`` -``6.0.2``|``GCCcore/10.2.0`` - -### UnZip - -UnZip is an extraction utility for archives compressed in .zip format (also called "zipfiles"). Although highly compatible both with PKWARE's PKZIP and PKUNZIP utilities for MS-DOS and with Info-ZIP's own Zip program, our primary objectives have been portability and non-MSDOS functionality. - -*homepage*: - -version|toolchain --------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``6.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.1.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``system`` - -### UQTk - -The UQ Toolkit (UQTk) is a collection of libraries and tools for the quantification of uncertainty in numerical model predictions. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``3.1.0``|``-Python-3.7.4``|``intel/2019b`` - -### USEARCH - -USEARCH is a unique sequence analysis tool which offers search and clustering algorithms that are often orders of magnitude faster than BLAST. - -*homepage*: - -version |versionsuffix |toolchain --------------------|---------------|---------- -``5.2.236`` |``-i86linux32``|``system`` -``5.2.236-6.1.544``|``-i86linux32``|``system`` -``6.1.544`` |``-i86linux32``|``system`` -``11.0.667`` |``-i86linux32``|``system`` - -### UShER - -UShER is now a package consisting of a family of programs for rapid phylogenetic analyses, particularly suitable for the SARS-CoV-2 genomes. - -*homepage*: - -version |toolchain ----------|--------------- -``0.4.1``|``gompi/2020b`` -``0.5.0``|``gompi/2021b`` - -### USPEX - -USPEX (Universal Structure Predictor: Evolutionary Xtallography... and in Russian "uspekh" means "success" - owing to the high success rate and many useful results produced by this method) is a method developed by the Oganov laboratory since 2004. The problem of crystal structure prediction is very old and does, in fact, constitute the central problem of theoretical crystal chemistry. USPEX can also be used for finding low-energy metastable phases, as well as stable structures of nanoparticles, surface reconstructions, molecular packings in organic crystals, and for searching for materials with desired physical (mechanical, electronic) properties. The USPEX code is based on an efficient evolutionary algorithm developed by A.R. Oganov's group, but also has options for using alternative methods (random sampling, metadynamics, corrected particle swarm optimization algorithms). USPEX is interfaced with many ab initio codes, such as VASP, SIESTA, GULP, Quantum Espresso, CP2K, CASTEP, LAMMPS, and so on. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``9.4.4``|``-Python-2.7.12``|``intel/2016b`` - -### utf8proc - -utf8proc is a small, clean C library that provides Unicode normalization, case-folding, and other operations for data in the UTF-8 encoding. - -*homepage*: - -version |toolchain ----------|-------------------------------------------------------- -``2.2.0``|``GCCcore/6.4.0`` -``2.3.0``|``GCCcore/8.2.0`` -``2.5.0``|``GCCcore/10.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``2.6.1``|``GCCcore/10.3.0``, ``GCCcore/11.2.0`` -``2.7.0``|``GCCcore/11.3.0`` -``2.8.0``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` - -### util-linux - -Set of Linux utilities - -*homepage*: - -version |toolchain -----------|-------------------------------------- -``2.27.1``|``foss/2016a``, ``intel/2016a`` -``2.28`` |``foss/2016a``, ``intel/2016a`` -``2.28.1``|``intel/2016b`` -``2.29`` |``foss/2016b``, ``intel/2016b`` -``2.29.2``|``GCCcore/6.3.0``, ``intel/2017a`` -``2.30`` |``GCCcore/6.4.0`` -``2.30.1``|``GCCcore/6.3.0``, ``foss/2017a`` -``2.31`` |``GCCcore/6.4.0`` -``2.31.1``|``GCCcore/6.4.0`` -``2.32`` |``GCCcore/6.4.0``, ``GCCcore/7.3.0`` -``2.32.1``|``GCCcore/7.3.0`` -``2.33`` |``GCCcore/8.2.0`` -``2.34`` |``GCCcore/8.3.0`` -``2.35`` |``GCCcore/9.3.0`` -``2.36`` |``GCCcore/10.2.0``, ``GCCcore/10.3.0`` -``2.37`` |``GCCcore/11.2.0`` -``2.38`` |``GCCcore/11.3.0`` -``2.38.1``|``GCCcore/12.2.0`` -``2.39`` |``GCCcore/12.3.0``, ``GCCcore/13.2.0`` -``2.40`` |``GCCcore/13.3.0`` - -## V - - -[V8](#v8) - [vaeda](#vaeda) - [Vala](#vala) - [Valgrind](#valgrind) - [Vamb](#vamb) - [Vampir](#vampir) - [Vampire](#vampire) - [VAMPIRE-ASM](#vampire-asm) - [VarDict](#vardict) - [variant_tools](#variant_tools) - [VariantMetaCaller](#variantmetacaller) - [VarScan](#varscan) - [vartools](#vartools) - [VASP](#vasp) - [VAtools](#vatools) - [vawk](#vawk) - [VBZ-Compression](#vbz-compression) - [VCF-kit](#vcf-kit) - [vcflib](#vcflib) - [vcfnp](#vcfnp) - [VCFtools](#vcftools) - [vConTACT2](#vcontact2) - [VEGAS](#vegas) - [velocyto](#velocyto) - [Velvet](#velvet) - [VEP](#vep) - [verifyBamID](#verifybamid) - [VERSE](#verse) - [VESTA](#vesta) - [ViennaRNA](#viennarna) - [Vim](#vim) - [VirSorter](#virsorter) - [VirSorter2](#virsorter2) - [virtualenv](#virtualenv) - [VirtualGL](#virtualgl) - [Virtuoso-opensource](#virtuoso-opensource) - [visdom](#visdom) - [vispr](#vispr) - [VisPy](#vispy) - [vitessce-python](#vitessce-python) - [vitessceR](#vitesscer) - [VMD](#vmd) - [VMTK](#vmtk) - [voltools](#voltools) - [vorbis-tools](#vorbis-tools) - [Voro++](#voro++) - [vsc-base](#vsc-base) - [vsc-install](#vsc-install) - [vsc-mympirun](#vsc-mympirun) - [vsc-mympirun-scoop](#vsc-mympirun-scoop) - [vsc-processcontrol](#vsc-processcontrol) - [VSCode](#vscode) - [VSEARCH](#vsearch) - [vt](#vt) - [VTK](#vtk) - [VTune](#vtune) - [VV](#vv) - [VXL](#vxl) - - -### V8 - -R interface to Google's open source JavaScript engine - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|------------------------------- -``2.2`` |``-R-3.5.1`` |``foss/2018b`` -``2.3`` |``-R-3.6.0`` |``foss/2019a``, ``intel/2019a`` -``3.2.0``|``-R-3.6.2`` |``foss/2019b`` -``3.4.0``|``-R-4.0.0`` |``foss/2020a`` - -### vaeda - -vaeda (variaitonal auto-encoder (vae) for doublet annotation (da)) is a Python package for doublet annotation in single cell RNA-sequencing. - -*homepage*: - -version |toolchain -----------|-------------- -``0.0.30``|``foss/2022a`` - -### Vala - -Vala is a programming language using modern high level abstractions without imposing additional runtime requirements and without using a different ABI compared to applications and libraries written in C. - -*homepage*: - -version |toolchain ------------|------------------ -``0.52.4`` |``GCCcore/10.3.0`` -``0.56.14``|``GCCcore/12.3.0`` - -### Valgrind - -Valgrind: Debugging and profiling tools - -*homepage*: - -version |toolchain -----------|--------------------------------------------------------------------------------- -``3.11.0``|``foss/2016a``, ``intel/2016a`` -``3.13.0``|``foss/2017b``, ``foss/2018a``, ``intel/2017a``, ``intel/2017b``, ``intel/2018a`` -``3.14.0``|``foss/2018b`` -``3.16.1``|``gompi/2019b``, ``gompi/2020a``, ``gompi/2020b``, ``iimpi/2020a`` -``3.17.0``|``gompi/2021a`` -``3.18.1``|``gompi/2021b``, ``iimpi/2021b`` -``3.19.0``|``gompi/2022a`` -``3.20.0``|``gompi/2022a`` -``3.21.0``|``gompi/2022b``, ``gompi/2023a`` -``3.23.0``|``gompi/2023b`` - -### Vamb - -Vamb is a metagenomic binner which feeds sequence composition information from a contig catalogue and co-abundance information from BAM files into a variational autoencoder and clusters the latent representation. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``3.0.9``|``-CUDA-11.5.2``|``foss/2021b`` - -### Vampir - -The Vampir software tool provides an easy-to-use framework that enables developers to quickly display and analyze arbitrary program behavior at any level of detail. The tool suite implements optimized event analysis algorithms and customizable displays that enable fast and interactive rendering of very complex performance monitoring data. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|---------- -``8.4.1``| |``system`` -``8.4.1``|``-demo`` |``system`` - -### Vampire - -The Vampire Theorem Prover. - -*homepage*: - -version |toolchain ----------|------------------ -``4.5.1``|``GCCcore/10.2.0`` - -### VAMPIRE-ASM - -Vampire is designed from the ground-up to be an easy to use, fast, open-source and extensible software package capable of modelling almost any magnetic material with atomic resolution. - -*homepage*: - -version|toolchain --------|-------------- -``6.0``|``foss/2022b`` - -### VarDict - -VarDict is an ultra sensitive variant caller for both single and paired sample variant calling from BAM files. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|-------------- -``1.5.7``|``-Perl-5.28.0``|``foss/2018b`` - -### variant_tools - -Variant tools is a software tool for the manipulation, annotation, selection, simulation, and analysis of variants in the context of next-gen sequencing analysis. Unlike some other tools used for Next-Gen sequencing analysis, variant tools is project based and provides a whole set of tools to manipulate and analyze genetic variants. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``3.1.3``|``-Python-3.7.4``|``foss/2019b`` - -### VariantMetaCaller - -VariantMetaCaller automatically integrates variant calling pipelines into a better performing overall model that also predicts accurate variant probabilities. - -*homepage*: - -version|toolchain --------|--------------- -``1.0``|``intel/2017a`` - -### VarScan - -Variant calling and somatic mutation/CNV detection for next-generation sequencing data - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|---------- -``2.3.6``|``-Java-1.7.0_80``|``system`` -``2.4.1``|``-Java-1.7.0_80``|``system`` -``2.4.4``|``-Java-1.8`` |``system`` -``2.4.4``|``-Java-11`` |``system`` - -### vartools - -Command line utility that provides tools for processing and analyzing astronomical time series data. - -*homepage*: - -version |toolchain ---------|------------------------------- -``1.35``|``foss/2016b``, ``intel/2016b`` - -### VASP - -The Vienna Ab initio Simulation Package (VASP) is a computer program for atomic scale materials modelling, e.g. electronic structure calculations and quantum-mechanical molecular dynamics, from first principles. - -*homepage*: - -version |toolchain ----------|------------------------- -``5.4.1``|``intel/2016.02-GCC-4.9`` -``6.3.2``|``nvofbf/2022.07`` - -### VAtools - -VAtools is a python package that includes several tools to annotate VCF files with data from other tools. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``3.0.1``|``-Python-3.6.6``|``foss/2018b`` - -### vawk - -An awk-like VCF parser - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------ -``0.0.1``|``-Python-2.7.18``|``GCCcore/10.2.0`` - -### VBZ-Compression - -VBZ compression HDF5 plugin for nanopolish - -*homepage*: - -version |toolchain ----------|--------------- -``1.0.1``|``gompi/2020b`` -``1.0.3``|``gompi/2022a`` - -### VCF-kit - -VCF-kit is a command-line based collection of utilities for performing analysis on Variant Call Format (VCF) files. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``0.1.6``|``-Python-2.7.15``|``intel/2018b`` - -### vcflib - -vcflib provides methods to manipulate and interpret sequence variation as it can be described by VCF. The Variant Call Format (VCF) is a flat-file, tab-delimited textual format intended to concisely describe reference-indexed genetic variations between individuals. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|------------------------------ -``1.0.2``| |``GCC/10.2.0``, ``GCC/10.3.0`` -``1.0.2``|``-Python-3.8.2``|``GCC/9.3.0`` -``1.0.3``|``-R-4.1.0`` |``foss/2021a`` -``1.0.3``|``-R-4.1.2`` |``foss/2021b`` -``1.0.9``|``-R-4.2.1`` |``foss/2022a`` -``1.0.9``|``-R-4.3.2`` |``gfbf/2023a`` - -### vcfnp - -Load data from a VCF (variant call format) file into numpy arrays, and (optionally) from there into an HDF5 file. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``2.3.0``|``-Python-2.7.11``|``foss/2016a`` - -### VCFtools - -The aim of VCFtools is to provide easily accessible methods for working with complex genetic variation data in the form of VCF files. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|----------------------------------------------------------------------------------------------------------------------------------------------------- -``0.1.14``|``-Perl-5.22.1``|``foss/2016a``, ``intel/2016a`` -``0.1.15``|``-Perl-5.24.0``|``foss/2016b`` -``0.1.15``|``-Perl-5.26.0``|``foss/2017b``, ``intel/2017b`` -``0.1.15``|``-Perl-5.26.1``|``foss/2018a`` -``0.1.16``| |``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/12.2.0``, ``GCC/12.3.0``, ``GCC/8.3.0``, ``GCC/9.3.0``, ``iccifort/2019.5.281`` -``0.1.16``|``-Perl-5.28.0``|``foss/2018b``, ``intel/2018b`` - -### vConTACT2 - -vConTACT2 is a tool to perform guilt-by-contig-association classification of viral genomic sequence data. - -*homepage*: - -version |toolchain -----------|-------------- -``0.11.3``|``foss/2022a`` - -### VEGAS - -VEGAS (Versatile Gene-based Association Study) is a free program for performing gene-based tests for association using the results from genetic association studies - -*homepage*: - -version |toolchain -----------|---------- -``0.8.27``|``system`` - -### velocyto - -Velocyto is a library for the analysis of RNA velocity. - -*homepage*: - -version |versionsuffix |toolchain ------------|-----------------|------------------------------ -``0.17.17``| |``foss/2021a``, ``foss/2022a`` -``0.17.17``|``-Python-3.8.2``|``intel/2020a`` - -### Velvet - -Sequence assembler for very short reads - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|----------------------------------------------------------------------------- -``1.2.10``|``-mt-kmer_191``|``GCC/11.2.0``, ``GCC/8.3.0``, ``foss/2018a``, ``foss/2018b``, ``foss/2023a`` -``1.2.10``|``-mt-kmer_37`` |``intel/2017a`` - -### VEP - -Variant Effect Predictor (VEP) determines the effect of your variants (SNPs, insertions, deletions, CNVs or structural variants) on genes, transcripts, and protein sequence, as well as regulatory regions. Includes EnsEMBL-XS, which provides pre-compiled replacements for frequently used routines in VEP. - -*homepage*: - -version |versionsuffix |toolchain ----------|----------------|------------------------------- -``93.4`` |``-Perl-5.26.1``|``intel/2018a`` -``94.0`` |``-Perl-5.28.0``|``foss/2018b`` -``94.5`` |``-Perl-5.26.0``|``foss/2017b``, ``intel/2017b`` -``95.0`` |``-Perl-5.28.0``|``foss/2018b`` -``96.0`` |``-Perl-5.28.1``|``foss/2019a`` -``103.1``| |``GCC/10.2.0`` -``105`` | |``GCC/11.2.0`` -``107`` | |``GCC/11.3.0`` -``111`` | |``GCC/12.2.0`` - -### verifyBamID - -verifyBamID is a software that verifies whether the reads in particular file match previously known genotypes for an individual (or group of individuals), and checks whether the reads are contaminated as a mixture of two samples. verifyBamID can detect sample contamination and swaps when external genotypes are available. When external genotypes are not available, verifyBamID still robustly detects sample swaps. - -*homepage*: - -version |toolchain ----------|-------------- -``1.1.3``|``foss/2016a`` - -### VERSE - -A versatile and efficient RNA-Seq read counting tool - -*homepage*: - -version |toolchain ----------|-------------- -``0.1.5``|``foss/2016b`` - -### VESTA - -VESTA is a 3D visualization program for structured models, volumetric data such as electron/nuclear densities, and crystal morphologies. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|---------- -``3.5.8``|``-gtk3`` |``system`` - -### ViennaRNA - -The Vienna RNA Package consists of a C code library and several stand-alone programs for the prediction and comparison of RNA secondary structures. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------- -``2.2.3`` | |``intel/2016b`` -``2.3.4`` | |``foss/2016b`` -``2.3.5`` | |``intel/2017a`` -``2.4.10``|``-Python-2.7.15``|``foss/2018b``, ``intel/2018b`` -``2.4.11``|``-Python-3.6.6`` |``foss/2018b`` -``2.4.14``|``-Python-3.6.6`` |``foss/2018b`` -``2.5.0`` | |``foss/2021b`` -``2.5.1`` | |``foss/2021b`` - -### Vim - -Vim is an advanced text editor that seeks to provide the power of the de-facto Unix editor 'Vi', with a more complete feature set. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|------------------ -``8.0`` |``-Python-2.7.11``|``foss/2016a`` -``8.1.0483``|``-Python-2.7.15``|``foss/2018b`` -``8.1.1209``|``-Python-3.7.2`` |``GCCcore/8.2.0`` -``9.0.0950``| |``GCCcore/11.3.0`` -``9.0.1434``| |``GCCcore/12.2.0`` -``9.1.0004``| |``GCCcore/12.3.0`` - -### VirSorter - -VirSorter: mining viral signal from microbial genomic data. - -*homepage*: - -version |versionsuffix |toolchain -------------|----------------|-------------- -``1.0.6`` | |``foss/2021b`` -``20160601``|``-Perl-5.22.1``|``foss/2016a`` - -### VirSorter2 - -VirSorter2 applies a multi-classifier, expert-guided approach to detect diverse DNA and RNA virus genomes. - -*homepage*: - -version |toolchain ----------|------------------------------ -``2.2.4``|``foss/2021b``, ``foss/2022a`` - -### virtualenv - -A tool for creating isolated virtual python environments. - -*homepage*: - -version |toolchain ------------|------------------ -``20.23.1``|``GCCcore/12.3.0`` -``20.24.6``|``GCCcore/13.2.0`` - -### VirtualGL - -VirtualGL is an open source toolkit that gives any Linux or Unix remote display software the ability to run OpenGL applications with full hardware acceleration. - -*homepage*: - -version |toolchain ----------|----------------- -``2.6.1``|``foss/2018b`` -``2.6.2``|``GCCcore/9.3.0`` -``3.0`` |``GCC/11.2.0`` -``3.1`` |``GCC/12.3.0`` - -### Virtuoso-opensource - -Virtuoso is a high-performance and scalable Multi-Model RDBMS, Data Integration Middleware, Linked Data Deployment, and HTTP Application Server Platform. - -*homepage*: - -version |toolchain ------------|-------------- -``7.2.6.1``|``GCC/10.3.0`` - -### visdom - -A flexible tool for creating, organizing, and sharing visualizations of live, rich data. Supports Torch and Numpy. - -*homepage*: - -version |toolchain ----------|-------------- -``0.2.4``|``foss/2022a`` - -### vispr - -VISPR - A visualization framework for CRISPR data. - -*homepage*: - -version |toolchain -----------|-------------- -``0.4.14``|``foss/2022a`` - -### VisPy - -VisPy is a high-performance interactive 2D/3D data visualization library leveraging the computational power of modern Graphics Processing Units (GPUs) through the OpenGL library to display very large datasets. - -*homepage*: - -version |toolchain -----------|------------------------------- -``0.6.6`` |``foss/2020b``, ``intel/2020b`` -``0.12.2``|``foss/2022a``, ``gfbf/2023a`` -``0.14.1``|``foss/2023a`` - -### vitessce-python - -Python API and Jupyter widget facilitating interactive visualization of spatial single-cell data with Vitessce. - -*homepage*: - -version |toolchain -------------|-------------- -``20230222``|``foss/2022a`` - -### vitessceR - -Vitessce is a visual integration tool for exploration of spatial single-cell experiments. - -*homepage*: - -version |versionsuffix|toolchain --------------------|-------------|-------------- -``0.99.0-20230110``|``-R-4.2.1`` |``foss/2022a`` - -### VMD - -VMD is a molecular visualization program for displaying, animating, and analyzing large biomolecular systems using 3-D graphics and built-in scripting. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|---------------------------------- -``1.9.3`` |``-Python-2.7.12``|``intel/2016b`` -``1.9.3`` |``-Python-2.7.14``|``foss/2017b``, ``intel/2018a`` -``1.9.3`` |``-Python-2.7.15``|``intel/2018b`` -``1.9.4a43``|``-Python-3.7.4`` |``fosscuda/2019b`` -``1.9.4a51``| |``foss/2020b``, ``fosscuda/2020b`` -``1.9.4a57``| |``foss/2022a`` - -### VMTK - -vmtk is a collection of libraries and tools for 3D reconstruction, geometric analysis, mesh generation and surface data analysis for image-based modeling of blood vessels. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``1.4.0``|``-Python-3.7.4``|``foss/2019b`` - -### voltools - -CUDA-accelerated numpy 3D affine transformations - -*homepage*: - -version |toolchain ----------|-------------- -``0.4.2``|``foss/2020b`` - -### vorbis-tools - -Command-line tools for creating and playing Ogg Vorbis files. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------- -``1.4.2``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0`` - -### Voro++ - -Voro++ is a software library for carrying out three-dimensional computations of the Voronoi tessellation. A distinguishing feature of the Voro++ library is that it carries out cell-based calculations, computing the Voronoi cell for each particle individually. It is particularly well-suited for applications that rely on cell-based statistics, where features of Voronoi cells (eg. volume, centroid, number of faces) can be used to analyze a system of particles. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ -``0.4.6``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/6.4.0``, ``GCCcore/9.3.0``, ``foss/2016a``, ``foss/2019b``, ``intel/2016a``, ``intel/2019b`` - -### vsc-base - -Basic Python libraries used by UGent's HPC group - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|--------------- -``1.6.9`` | |``system`` -``1.7.3`` | |``system`` -``2.0.4`` | |``system`` -``2.1.2`` | |``system`` -``2.4.2`` | |``system`` -``2.4.17``|``-Python-2.7.11``|``intel/2016a`` -``2.5.1`` | |``system`` -``2.5.1`` |``-Python-2.7.11``|``intel/2016a`` -``2.5.1`` |``-Python-2.7.12``|``intel/2016b`` -``2.5.8`` | |``system`` -``2.8.0`` | |``system`` -``2.8.1`` | |``system`` -``2.8.3`` | |``system`` - -### vsc-install - -vsc-install provides shared setuptools functions and classes for Python libraries developed by UGent's HPC group - -*homepage*: - -version |versionsuffix |toolchain ------------|------------------|--------------- -``0.9.18`` |``-Python-2.7.11``|``intel/2016a`` -``0.10.6`` | |``system`` -``0.10.6`` |``-Python-2.7.11``|``intel/2016a`` -``0.10.11``|``-Python-2.7.11``|``intel/2016a`` -``0.10.11``|``-Python-2.7.12``|``intel/2016b`` -``0.10.25``| |``system`` -``0.10.26``| |``system`` -``0.11.1`` | |``system`` -``0.11.2`` | |``system`` - -### vsc-mympirun - -mympirun is a tool to make it easier for users of HPC clusters to run MPI programs with good performance. - -*homepage*: - -version |versionsuffix |toolchain ------------|----------------------------------|--------------- -``3.2.1`` | |``system`` -``3.3.0`` | |``system`` -``3.4.2`` | |``system`` -``3.4.2`` |``-Python-2.7.11-vsc-base-2.4.17``|``intel/2016a`` -``3.4.2`` |``-Python-2.7.11-vsc-base-2.5.1`` |``intel/2016a`` -``3.4.2`` |``-vsc-base-2.4.2`` |``system`` -``3.4.3`` |``-Python-2.7.12`` |``intel/2016b`` -``4.0.0`` | |``system`` -``4.0.0b0``| |``system`` -``4.0.1`` | |``system`` -``4.0.2`` | |``system`` -``4.1.4`` | |``system`` -``4.1.5`` | |``system`` -``4.1.6`` | |``system`` -``4.1.8`` | |``system`` -``4.1.9`` | |``system`` -``5.1.0`` | |``system`` -``5.2.0`` | |``system`` -``5.2.2`` | |``system`` -``5.2.3`` | |``system`` -``5.2.4`` | |``system`` -``5.2.5`` | |``system`` -``5.2.6`` | |``system`` -``5.2.7`` | |``system`` -``5.2.9`` | |``system`` -``5.2.10`` | |``system`` -``5.2.11`` | |``system`` -``5.3.0`` | |``system`` -``5.3.1`` | |``system`` -``5.4.0`` | |``system`` - -### vsc-mympirun-scoop - -VSC-tools is a set of Python libraries and scripts that are commonly used within HPC-UGent. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|--------------- -``3.4.1``|``-Python-2.7.12``|``intel/2016b`` - -### vsc-processcontrol - -vsc-processcontrol is a module to abstract process control like scheduler settings and affinity from actual implementations like vsc.affinity and psutil. - -*homepage*: - -version|versionsuffix |toolchain --------|-------------------|---------- -``1.0``| |``system`` -``1.0``|``-vsc-base-2.1.2``|``system`` - -### VSCode - -Visual Studio Code is a lightweight but powerful source code editor which runs on your desktop and is available for Windows, macOS and Linux. It comes with built-in support for JavaScript, TypeScript and Node.js and has a rich ecosystem of extensions for other languages and runtimes (such as C++, C#, Java, Python, PHP, Go, .NET). Begin your journey with VS Code with these introductory videos. - -*homepage*: - -version |toolchain -----------|---------- -``1.85.0``|``system`` -``1.88.1``|``system`` - -### VSEARCH - -VSEARCH supports de novo and reference based chimera detection, clustering, full-length and prefix dereplication, rereplication, reverse complementation, masking, all-vs-all pairwise global alignment, exact and global alignment searching, shuffling, subsampling and sorting. It also supports FASTQ file analysis, filtering, conversion and merging of paired-end reads. - -*homepage*: - -version |toolchain -----------|---------------------------------------- -``2.9.1`` |``foss/2018b`` -``2.13.4``|``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` -``2.15.0``|``GCC/9.3.0`` -``2.18.0``|``GCC/10.2.0`` -``2.21.1``|``GCC/10.3.0`` -``2.22.1``|``GCC/11.3.0`` -``2.25.0``|``GCC/12.3.0`` - -### vt - -A tool set for short variant discovery in genetic sequence data. - -*homepage*: - -version |toolchain ------------|----------------------------------------------------------------------------- -``0.57721``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``GCC/9.3.0``, ``foss/2018b`` - -### VTK - -The Visualization Toolkit (VTK) is an open-source, freely available software system for 3D computer graphics, image processing and visualization. VTK consists of a C++ class library and several interpreted interface layers including Tcl/Tk, Java, and Python. VTK supports a wide variety of visualization algorithms including: scalar, vector, tensor, texture, and volumetric methods; and advanced modeling techniques such as: implicit modeling, polygon reduction, mesh smoothing, cutting, contouring, and Delaunay triangulation. - -*homepage*: - -version |versionsuffix |toolchain --------------|------------------|--------------------------------------------------- -``6.3.0`` |``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``6.3.0`` |``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``7.0.0`` |``-Python-2.7.12``|``intel/2016b`` -``7.1.0`` |``-Python-2.7.12``|``intel/2016b`` -``7.1.1`` |``-Python-2.7.13``|``intel/2017a`` -``8.0.1`` |``-Python-2.7.14``|``foss/2017b``, ``intel/2017b`` -``8.1.0`` |``-Python-2.7.14``|``foss/2018a``, ``intel/2018a`` -``8.1.0`` |``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``8.1.1`` |``-Python-2.7.14``|``intel/2018a`` -``8.1.1`` |``-Python-2.7.15``|``foss/2018b`` -``8.1.1`` |``-Python-3.6.6`` |``foss/2018b``, ``fosscuda/2018b`` -``8.2.0`` | |``foss/2021a`` -``8.2.0`` |``-Python-2.7.15``|``foss/2019a`` -``8.2.0`` |``-Python-2.7.16``|``foss/2019b`` -``8.2.0`` |``-Python-3.7.2`` |``foss/2019a``, ``intel/2019a`` -``8.2.0`` |``-Python-3.7.4`` |``foss/2019b`` -``8.2.0`` |``-Python-3.8.2`` |``foss/2020a``, ``fosscuda/2020a``, ``intel/2020a`` -``9.0.1`` | |``foss/2020b``, ``foss/2021a``, ``fosscuda/2020b`` -``9.1.0`` | |``foss/2021b`` -``9.2.0.rc2``| |``foss/2022a`` -``9.2.2`` | |``foss/2022a`` -``9.2.6`` | |``foss/2022b`` -``9.3.0`` | |``foss/2023a``, ``foss/2023b`` - -### VTune - -Intel VTune Amplifier XE is the premier performance profiler for C, C++, C#, Fortran, Assembly and Java. - -*homepage*: - -version |toolchain ------------------|---------- -``2013_update6`` |``system`` -``2013_update8`` |``system`` -``2013_update9`` |``system`` -``2013_update10``|``system`` -``2013_update11``|``system`` -``2013_update12``|``system`` -``2016_update3`` |``system`` -``2017`` |``system`` -``2017_update1`` |``system`` -``2017_update2`` |``system`` -``2017_update3`` |``system`` -``2018_update1`` |``system`` -``2018_update2`` |``system`` -``2018_update3`` |``system`` -``2019_update2`` |``system`` -``2019_update3`` |``system`` -``2019_update5`` |``system`` -``2020_update3`` |``system`` -``2021.6.0`` |``system`` -``2021.9.0`` |``system`` -``2022.0.0`` |``system`` -``2022.2.0`` |``system`` -``2022.3.0`` |``system`` -``2023.2.0`` |``system`` - -### VV - -VV is an open-source and cross platform image viewer, designed for fast and simple visualization of spatio-temporal images: 2D, 2D+t, 3D and 3D+t (or 4D) images. Only the command-line (clitk) tools are build. - -*homepage*: - -version |versionsuffix |toolchain ---------------|-----------------|-------------- -``2018.09.19``|``-Python-3.6.6``|``foss/2018b`` - -### VXL - -A multi-platform collection of C++ software libraries for Computer Vision and Image Understanding. - -*homepage*: - -version |toolchain -----------|-------------- -``1.18.0``|``foss/2018a`` - -## W - - -[waLBerla](#walberla) - [wandb](#wandb) - [Wannier90](#wannier90) - [WannierTools](#wanniertools) - [Wayland](#wayland) - [Waylandpp](#waylandpp) - [WCSLIB](#wcslib) - [WCT](#wct) - [wcwidth](#wcwidth) - [webin-cli](#webin-cli) - [WebKitGTK+](#webkitgtk+) - [WebSocket++](#websocket++) - [WEKA](#weka) - [WFA2](#wfa2) - [wfdb](#wfdb) - [WGDgc](#wgdgc) - [wget](#wget) - [wgsim](#wgsim) - [WHAM](#wham) - [WhatsHap](#whatshap) - [wheel](#wheel) - [WIEN2k](#wien2k) - [WildMagic](#wildmagic) - [Winnowmap](#winnowmap) - [WisecondorX](#wisecondorx) - [WISExome](#wisexome) - [wkhtmltopdf](#wkhtmltopdf) - [worker](#worker) - [wpebackend-fdo](#wpebackend-fdo) - [WPS](#wps) - [wrapt](#wrapt) - [WRF](#wrf) - [WRF-Fire](#wrf-fire) - [wrf-python](#wrf-python) - [WSClean](#wsclean) - [wtdbg2](#wtdbg2) - [wxPropertyGrid](#wxpropertygrid) - [wxPython](#wxpython) - [wxWidgets](#wxwidgets) - - -### waLBerla - -Widely applicable Lattics-Boltzmann from Erlangen is a block-structured high-performance framework for multiphysics simulations - -*homepage*: - -version|toolchain --------|------------------------------ -``6.1``|``foss/2021a``, ``foss/2022b`` - -### wandb - -CLI and Python API for Weights and Biases (wandb), a tool for visualizing and tracking your machine learning experiments. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|------------------ -``0.8.30``|``-Python-3.7.4``|``gcccuda/2019b`` -``0.13.4``| |``GCCcore/11.3.0`` -``0.13.6``| |``GCC/11.3.0`` -``0.16.1``| |``GCC/12.3.0`` - -### Wannier90 - -A tool for obtaining maximally-localised Wannier functions - -*homepage*: - -version |versionsuffix|toolchain ------------|-------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.2`` | |``intel/2016.02-GCC-4.9`` -``2.0.1`` | |``intel/2016.02-GCC-4.9``, ``intel/2016a`` -``2.0.1.1``|``-abinit`` |``intel/2018b`` -``2.1.0`` | |``foss/2017b``, ``intel/2017a``, ``intel/2017b`` -``3.0.0`` | |``intel/2018b`` -``3.1.0`` | |``foss/2020b``, ``foss/2021a``, ``foss/2021b``, ``foss/2022a``, ``foss/2023a``, ``gomkl/2021a``, ``gomkl/2022a``, ``gomkl/2023a``, ``intel/2020a``, ``intel/2020b``, ``intel/2021a``, ``intel/2021b``, ``intel/2022a``, ``intel/2022b``, ``intel/2023a`` - -### WannierTools - -WannierTools is an open source software that studies the physical properties of given tight-binding model. - -*homepage*: - -version |toolchain ----------|--------------- -``2.3.0``|``intel/2018a`` -``2.5.1``|``intel/2020b`` - -### Wayland - -Wayland is a project to define a protocol for a compositor to talk to its clients as well as a library implementation of the protocol. The compositor can be a standalone display server running on Linux kernel modesetting and evdev input devices, an X application, or a wayland client itself. The clients can be traditional applications, X servers (rootless or fullscreen) or other display servers. - -*homepage*: - -version |toolchain -----------|---------------------------------------------------------- -``1.20.0``|``GCCcore/11.3.0`` -``1.21.0``|``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``1.22.0``|``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### Waylandpp - -Wayland is an object oriented display protocol, which features request and events. Requests can be seen as method calls on certain objects, whereas events can be seen as signals of an object. This makes the Wayland protocol a perfect candidate for a C++ binding. The goal of this library is to create such a C++ binding for Wayland using the most modern C++ technology currently available, providing an easy to use C++ API to Wayland. - -*homepage*: - -version |toolchain ----------|-------------------------------------- -``1.0.0``|``GCCcore/11.2.0``, ``GCCcore/11.3.0`` - -### WCSLIB - -The FITS "World Coordinate System" (WCS) standard defines keywords and usage that provide for the description of astronomical coordinate systems in a FITS image header. - -*homepage*: - -version |toolchain ---------|---------------------------------------------- -``7.11``|``GCC/11.2.0``, ``GCC/11.3.0``, ``GCC/13.2.0`` - -### WCT - -NOAA's Weather and Climate Toolkit (WCT) is free, platform independent software distributed from NOAA's National Centers for Environmental Information (NCEI). The WCT allows the visualization and data export of weather and climate data, including Radar, Satellite and Model data. The WCT also provides access to weather/climate web services provided from NCEI and other organizations. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|---------- -``4.6.0``|``-Java-11`` |``system`` - -### wcwidth - -wcwidth is a low-level Python library to simplify Terminal emulation. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|------------------------------- -``0.1.7``|``-Python-2.7.11``|``foss/2016a`` -``0.1.7``|``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``0.1.7``|``-Python-3.5.1`` |``foss/2016a`` -``0.1.7``|``-Python-3.5.2`` |``intel/2016b`` - -### webin-cli - -The Webin command line submission interface can be used to validate, upload and submit files to the European Nucleotide Archive (ENA) - -*homepage*: - -version |toolchain ----------|---------- -``1.8.9``|``system`` - -### WebKitGTK+ - -WebKitGTK+ is a full-featured port of the WebKit rendering engine, suitable for projects requiring any kind of web integration, from hybrid HTML/CSS applications to full-fledged web browsers. It offers WebKit's full functionality and is useful in a wide range of systems from desktop computers to embedded systems like phones, tablets, and televisions. - -*homepage*: - -version |toolchain -----------|----------------------------- -``2.24.1``|``GCC/8.2.0-2.31.1`` -``2.27.4``|``GCC/10.3.0``, ``GCC/8.3.0`` -``2.37.1``|``GCC/11.2.0`` -``2.40.4``|``GCC/11.3.0`` - -### WebSocket++ - -WebSocket++ is an open source (BSD license) header only C++ library that implements RFC6455 The WebSocket Protocol. - -*homepage*: - -version |toolchain ----------|--------------- -``0.8.1``|``gompi/2019a`` - -### WEKA - -Weka is a collection of machine learning algorithms for data mining tasks. The algorithms can either be applied directly to a dataset or called from your own Java code. Weka contains tools for data pre-processing, classification, regression, clustering, association rules, and visualization. It is also well-suited for developing new machine learning schemes. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|---------- -``3.6.12``|``-Java-1.7.0_80``|``system`` -``3.7.0`` |``-Java-1.7.0_80``|``system`` - -### WFA2 - -The wavefront alignment (WFA) algorithm is an exact gap-affine algorithm that takes advantage of homologous regions between the sequences to accelerate the alignment process. - -*homepage*: - -version |toolchain ----------|------------------ -``2.3.3``|``GCCcore/11.3.0`` -``2.3.4``|``GCCcore/12.3.0`` - -### wfdb - -The native Python waveform-database (WFDB) package. A library of tools for reading, writing, and processing WFDB signals and annotations. - -*homepage*: - -version |toolchain ----------|-------------- -``4.1.2``|``foss/2022a`` - -### WGDgc - -Analysis of whole genome duplications (WGD) and triplications (WGT) using comparative gene count data - -*homepage*: - -version|versionsuffix|toolchain --------|-------------|-------------- -``1.3``|``-R-4.3.2`` |``foss/2023a`` - -### wget - -GNU Wget is a free software package for retrieving files using HTTP, HTTPS and FTP, the most widely-used Internet protocols. It is a non-interactive commandline tool, so it may easily be called from scripts, cron jobs, terminals without X-Windows support, etc. - -*homepage*: - -version |toolchain -----------|------------------------------------- -``1.17.1``|``foss/2016a``, ``foss/2016b`` -``1.19.4``|``GCCcore/6.4.0`` -``1.20.1``|``GCCcore/7.3.0``, ``GCCcore/8.3.0`` -``1.20.3``|``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``1.21.1``|``GCCcore/10.3.0`` -``1.21.2``|``GCCcore/11.2.0`` -``1.21.3``|``GCCcore/11.3.0`` -``1.21.4``|``GCCcore/13.2.0`` -``1.24.5``|``GCCcore/12.3.0`` - -### wgsim - -Wgsim is a small tool for simulating sequence reads from a reference genome. - -*homepage*: - -version |toolchain -------------|------------------------------ -``20111017``|``GCC/10.2.0``, ``GCC/11.2.0`` - -### WHAM - -An implementation of WHAM: the Weighted Histogram Analysis Method - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|--------------- -``2.0.9.1`` | |``intel/2019a`` -``2.0.9.1`` |``-kj_mol`` |``intel/2019a`` -``2.0.10.2``| |``intel/2020a`` -``2.0.10.2``|``-kj_mol`` |``intel/2020a`` - -### WhatsHap - -WhatsHap is a software for phasing genomic variants using DNA sequencing reads, also called read-based phasing or haplotype assembly. It is especially suitable for long reads, but works also well with short reads. - -*homepage*: - -version|toolchain --------|------------------------------ -``1.1``|``foss/2020b``, ``foss/2021a`` -``1.4``|``foss/2021b`` -``1.7``|``foss/2022a`` -``2.1``|``foss/2022b`` -``2.2``|``foss/2023a`` - -### wheel - -A built-package format for Python. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------------------------------------------------ -``0.29.0``|``-Python-2.7.11``|``foss/2016a`` -``0.29.0``|``-Python-3.5.1`` |``foss/2016a`` -``0.30.0``|``-Python-2.7.14``|``foss/2017b``, ``fosscuda/2017b``, ``intel/2017b``, ``intelcuda/2017b`` -``0.30.0``|``-Python-3.6.3`` |``foss/2017b``, ``fosscuda/2017b``, ``intel/2017b``, ``intelcuda/2017b`` -``0.30.0``|``-Python-3.6.4`` |``foss/2018a``, ``intel/2018a`` -``0.31.0``|``-Python-2.7.14``|``fosscuda/2018a``, ``intel/2018a`` -``0.31.0``|``-Python-3.6.4`` |``foss/2018a``, ``fosscuda/2018a`` -``0.31.1``|``-Python-2.7.15``|``fosscuda/2018b`` -``0.31.1``|``-Python-3.6.6`` |``foss/2018b``, ``fosscuda/2018b`` - -### WIEN2k - -The program package WIEN2k allows to perform electronic structure calculations of solids using density functional theory (DFT). It is based on the full-potential (linearized) augmented plane-wave ((L)APW) + local orbitals (lo) method, one among the most accurate schemes for band structure calculations. WIEN2k is an all-electron scheme including relativistic effects and has many features. - -*homepage*: - -version |toolchain ---------|------------------------------------------------ -``17.1``|``foss/2018a``, ``gimkl/2017a``, ``intel/2018a`` -``18.1``|``foss/2018a``, ``gimkl/2017a``, ``intel/2018a`` -``19.1``|``intel/2019a`` -``19.2``|``intel/2020b`` -``21.1``|``intel/2021a``, ``intel/2021b`` -``23.2``|``intel/2021b`` - -### WildMagic - -Wild Magic 5.17 - -*homepage*: - -version |toolchain ---------|---------------------------------- -``5.17``|``GCCcore/10.3.0``, ``foss/2018b`` - -### Winnowmap - -Winnowmap is a long-read mapping algorithm, and a result of our exploration into superior minimizer sampling techniques. - -*homepage*: - -version|toolchain --------|------------- -``1.0``|``GCC/8.3.0`` - -### WisecondorX - -WisecondorX -- an evolved WISECONDOR - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|-------------- -``1.1.6``|``-Python-3.8.2``|``foss/2020a`` - -### WISExome - -A within-sample comparison approach to detect copy number variations in whole exome sequencing data - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|--------------- -``20180517``|``-Python-2.7.14``|``intel/2018a`` - -### wkhtmltopdf - -wkhtmltopdf and wkhtmltoimage are open source (LGPLv3) command line tools to render HTML into PDF and various image formats using the Qt WebKit rendering engine. These run entirely headless and do not require a display or display service. - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|---------- -``0.12.3``|``-Linux-x86_64``|``system`` - -### worker - -The Worker framework has been developed to help deal with parameter exploration experiments that would otherwise result in many jobs, forcing the user resort to scripting to retain her sanity; see also https://vscentrum.be/neutral/documentation/cluster-doc/running-jobs/worker-framework. - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|-------------------------------- -``1.6.4`` | |``intel/2016a`` -``1.6.5`` | |``intel/2016a`` -``1.6.6`` | |``intel/2016b`` -``1.6.7`` |``-intel-2016b``|``system`` -``1.6.7`` |``-intel-2017a``|``system`` -``1.6.7`` |``-intel-2017b``|``system`` -``1.6.8`` |``-intel-2018a``|``system`` -``1.6.8`` |``-intel-2018b``|``system`` -``1.6.11``| |``intel/2019b`` -``1.6.12``| |``foss/2019a``, ``foss/2021b`` -``1.6.13``| |``iimpi/2021b``, ``iimpi/2022b`` - -### wpebackend-fdo - -WPE WebKit allows embedders to create simple and performant systems based on Web platform technologies. It is a WebKit port designed with flexibility and hardware acceleration in mind, leveraging common 3D graphics APIs for best performance. - -*homepage*: - -version |toolchain -----------|------------------ -``1.13.1``|``GCCcore/11.2.0`` -``1.14.1``|``GCCcore/11.3.0`` - -### WPS - -WRF Preprocessing System (WPS) for WRF. The Weather Research and Forecasting (WRF) Model is a next-generation mesoscale numerical weather prediction system designed to serve both operational forecasting and atmospheric research needs. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|--------------- -``3.8.0``|``-dmpar`` |``intel/2016a`` -``3.9.1``|``-dmpar`` |``foss/2020b`` -``4.0.1``|``-dmpar`` |``intel/2018b`` -``4.0.2``|``-dmpar`` |``foss/2018b`` -``4.1`` |``-dmpar`` |``intel/2019b`` -``4.2`` |``-dmpar`` |``foss/2020b`` -``4.3.1``|``-dmpar`` |``foss/2021a`` -``4.4`` |``-dmpar`` |``foss/2022a`` - -### wrapt - -The aim of the wrapt module is to provide a transparent object proxy for Python, which can be used as the basis for the construction of function wrappers and decorator functions. - -*homepage*: - -version |toolchain -----------|--------------------------------------------------------------- -``1.15.0``|``foss/2022a``, ``gfbf/2022b``, ``gfbf/2023a``, ``intel/2022a`` - -### WRF - -The Weather Research and Forecasting (WRF) Model is a next-generation mesoscale numerical weather prediction system designed to serve both operational forecasting and atmospheric research needs. - -*homepage*: - -version |versionsuffix|toolchain ------------|-------------|---------------------------------------------------------------- -``3.8.0`` |``-dmpar`` |``intel/2016a``, ``intel/2016b`` -``3.9.1.1``|``-dmpar`` |``foss/2020a``, ``foss/2020b``, ``intel/2020a``, ``intel/2020b`` -``4.0.1`` |``-dmpar`` |``intel/2018b`` -``4.0.2`` |``-dmpar`` |``foss/2018b`` -``4.1.3`` |``-dm+sm`` |``intel/2019b`` -``4.1.3`` |``-dmpar`` |``foss/2019b``, ``foss/2020a``, ``intel/2019b`` -``4.2.2`` |``-dmpar`` |``foss/2020b`` -``4.3`` |``-dmpar`` |``foss/2021a`` -``4.4`` |``-dmpar`` |``foss/2022a`` -``4.4.1`` |``-dmpar`` |``foss/2022b`` - -### WRF-Fire - -WRF-Fire combines the Weather Research and Forecasting model (WRF) with a fire code implementing a surface fire behavior model, called SFIRE, based on semi-empirical formulas calculate the rate of spread of the fire line (the interface between burning and unignited fuel) based on fuel properties, wind velocities from WRF, and terrain slope. The fire spread is implemented by the level set method. - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|--------------- -``20170221``|``-dmpar`` |``intel/2016b`` - -### wrf-python - -A collection of diagnostic and interpolation routines for use with output from the Weather Research and Forecasting (WRF-ARW) Model. - -*homepage*: - -version |versionsuffix |toolchain ------------|-----------------|--------------- -``1.2.0`` |``-Python-3.6.4``|``intel/2018a`` -``1.3.1`` |``-Python-3.6.6``|``intel/2018b`` -``1.3.4.1``| |``foss/2023a`` - -### WSClean - -WSClean (w-stacking clean) is a fast generic widefield imager. It implements several gridding algorithms and offers fully-automated multi-scale multi-frequency deconvolution. - -*homepage*: - -version|toolchain --------|------------------------------ -``3.4``|``foss/2022a``, ``foss/2023b`` - -### wtdbg2 - -Wtdbg2 is a de novo sequence assembler for long noisy reads produced by PacBio or Oxford Nanopore Technologies (ONT). It assembles raw reads without error correction and then builds the consensus from intermediate assembly output. - -*homepage*: - -version|toolchain --------|--------------------------------------------------------- -``2.3``|``GCC/7.3.0-2.30`` -``2.5``|``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/9.3.0`` - -### wxPropertyGrid - -wxPropertyGrid is a property sheet control for wxWidgets. In other words, it is a specialized two-column grid for editing properties such as strings, numbers, flagsets, string arrays, and colours. - -*homepage*: - -version |toolchain -----------|------------- -``1.4.15``|``GCC/4.9.2`` - -### wxPython - -Wraps the wxWidgets C++ toolkit and provides access to the user interface portions of the wxWidgets API, enabling Python applications to have a native GUI on Windows, Macs or Unix systems, with a native look and feel and requiring very little (if any) platform specific code. - -*homepage*: - -version |versionsuffix |toolchain ----------------|------------------|------------------------------- -``3.0.2.0`` |``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``3.0.2.0`` |``-Python-2.7.12``|``intel/2016b`` -``3.0.2.0`` |``-Python-2.7.13``|``intel/2017a`` -``3.0.2.0`` |``-Python-2.7.14``|``intel/2017b`` -``3.0.2.0`` |``-Python-2.7.15``|``foss/2018b`` -``4.0.4`` |``-Python-2.7.15``|``GCC/8.2.0-2.31.1`` -``4.0.4`` |``-Python-3.7.2`` |``GCC/8.2.0-2.31.1`` -``4.0.7.post2``|``-Python-3.7.4`` |``GCC/8.3.0`` -``4.1.1`` | |``foss/2021a`` -``4.2.0`` | |``foss/2021b`` -``4.2.1`` | |``foss/2022a`` - -### wxWidgets - -wxWidgets is a C++ library that lets developers create applications for Windows, Mac OS X, Linux and other platforms with a single code base. It has popular language bindings for Python, Perl, Ruby and many other languages, and unlike other cross-platform toolkits, wxWidgets gives applications a truly native look and feel because it uses the platform's native API rather than emulating the GUI. - -*homepage*: - -version |toolchain ------------|------------------------------ -``3.0.3`` |``foss/2018a`` -``3.0.4`` |``GCC/8.2.0-2.31.1`` -``3.1.3`` |``GCC/8.3.0`` -``3.1.4`` |``GCC/10.2.0`` -``3.1.5`` |``GCC/10.3.0``, ``GCC/11.2.0`` -``3.2.0`` |``GCC/11.2.0`` -``3.2.1`` |``GCC/11.3.0`` -``3.2.2.1``|``GCC/12.2.0``, ``GCC/12.3.0`` - -## X - - -[X11](#x11) - [x13as](#x13as) - [x264](#x264) - [x265](#x265) - [XALT](#xalt) - [xarray](#xarray) - [XBeach](#xbeach) - [xbitmaps](#xbitmaps) - [xcb-proto](#xcb-proto) - [xcb-util](#xcb-util) - [xcb-util-image](#xcb-util-image) - [xcb-util-keysyms](#xcb-util-keysyms) - [xcb-util-renderutil](#xcb-util-renderutil) - [xcb-util-wm](#xcb-util-wm) - [xCell](#xcell) - [XCFun](#xcfun) - [xclip](#xclip) - [XCrySDen](#xcrysden) - [xdotool](#xdotool) - [Xerces-C++](#xerces-c++) - [xESMF](#xesmf) - [xextproto](#xextproto) - [xf86vidmodeproto](#xf86vidmodeproto) - [XGBoost](#xgboost) - [XGrafix](#xgrafix) - [xineramaproto](#xineramaproto) - [XKeyboardConfig](#xkeyboardconfig) - [XlsxWriter](#xlsxwriter) - [XMDS2](#xmds2) - [Xmipp](#xmipp) - [xmitgcm](#xmitgcm) - [XML-Compile](#xml-compile) - [XML-LibXML](#xml-libxml) - [XML-Parser](#xml-parser) - [xmlf90](#xmlf90) - [XMLSec](#xmlsec) - [XMLStarlet](#xmlstarlet) - [xonsh](#xonsh) - [XOOPIC](#xoopic) - [xorg-macros](#xorg-macros) - [xpdf](#xpdf) - [XPLOR-NIH](#xplor-nih) - [xprop](#xprop) - [xproto](#xproto) - [XSD](#xsd) - [XTandem](#xtandem) - [xtb](#xtb) - [xtensor](#xtensor) - [xtrans](#xtrans) - [Xvfb](#xvfb) - [xxd](#xxd) - [xxHash](#xxhash) - [XZ](#xz) - - -### X11 - -The X Window System (X11) is a windowing system for bitmap displays - -*homepage*: - -version |toolchain -------------|-------------------------------------------------- -``20160819``|``GCCcore/5.4.0``, ``foss/2016b``, ``intel/2016b`` -``20170129``|``GCCcore/6.3.0``, ``gimkl/2017a`` -``20170314``|``GCCcore/6.3.0`` -``20171023``|``GCCcore/6.4.0`` -``20180131``|``GCCcore/6.4.0`` -``20180604``|``GCCcore/7.3.0`` -``20190311``|``GCCcore/8.2.0`` -``20190717``|``GCCcore/8.3.0`` -``20200222``|``GCCcore/9.3.0`` -``20201008``|``GCCcore/10.2.0`` -``20210518``|``GCCcore/10.3.0`` -``20210802``|``GCCcore/11.2.0`` -``20220504``|``GCCcore/11.3.0`` -``20221110``|``GCCcore/12.2.0`` -``20230603``|``GCCcore/12.3.0`` -``20231019``|``GCCcore/13.2.0`` - -### x13as - -X-13ARIMA-SEATS is seasonal adjustment software produced, distributed, and maintained by the Census Bureau. Features of X-13ARIMA-SEATS include: - Extensive time series modeling and model selection capabilities for linear regression models with ARIMA errors (regARIMA models); - The capability to generate ARIMA model-based seasonal adjustment using a version of the SEATS software originally developed by Victor Gómez and Agustín Maravall at the Bank of Spain, as well as nonparametric adjustments from the X-11 procedure; - Diagnostics of the quality and stability of the adjustments achieved under the options selected; - The ability to efficiently process many series at once. - -*homepage*: - -version |toolchain ------------|-------------------------------------- -``1-1-b59``|``GCCcore/10.2.0``, ``GCCcore/11.2.0`` - -### x264 - -x264 is a free software library and application for encoding video streams into the H.264/MPEG-4 AVC compression format, and is released under the terms of the GNU GPL. - -*homepage*: - -version |toolchain -------------|-------------------------------------- -``20160114``|``gimkl/2.11.5``, ``intel/2016a`` -``20160430``|``foss/2016a``, ``intel/2016a`` -``20160614``|``foss/2016b``, ``intel/2016b`` -``20170406``|``gimkl/2017a`` -``20170721``|``GCCcore/6.4.0`` -``20170913``|``intel/2017a`` -``20171217``|``foss/2017b``, ``intel/2017b`` -``20180128``|``GCCcore/6.4.0`` -``20180325``|``GCCcore/6.4.0`` -``20181203``|``GCCcore/7.3.0`` -``20190413``|``GCCcore/8.2.0`` -``20190925``|``GCCcore/8.3.0`` -``20191217``|``GCCcore/9.3.0`` -``20201026``|``GCCcore/10.2.0`` -``20210414``|``GCCcore/10.3.0`` -``20210613``|``GCCcore/11.2.0`` -``20220620``|``GCCcore/11.3.0`` -``20230226``|``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``20231019``|``GCCcore/13.2.0`` - -### x265 - -x265 is a free software library and application for encoding video streams into the H.265 AVC compression format, and is released under the terms of the GNU GPL. - -*homepage*: - -version|toolchain --------|---------------------------------------------------------------------------------------------------------------------- -``2.4``|``foss/2016b`` -``2.5``|``intel/2017a`` -``2.6``|``GCCcore/6.4.0``, ``intel/2017b`` -``2.7``|``GCCcore/6.4.0`` -``2.9``|``GCCcore/7.3.0`` -``3.0``|``GCCcore/8.2.0`` -``3.2``|``GCCcore/8.3.0`` -``3.3``|``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``3.5``|``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### XALT - -XALT 2 is a tool to allow a site to track user executables and library usage on a cluster. When installed it can tell a site what are the top executables by Node-Hours or by the number of users or the number of times it is run. XALT 2 also tracks library usage as well. XALT 2 can also track package use by R, MATLAB or Python. It tracks both MPI and non-MPI programs. - -*homepage*: - -version |toolchain ----------|---------- -``2.8.4``|``system`` - -### xarray - -xarray (formerly xray) is an open source project and Python package that aims to bring the labeled data power of pandas to the physical sciences, by providing N-dimensional variants of the core pandas data structures. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|--------------------------------------------------- -``0.9.5`` |``-Python-2.7.13``|``intel/2017a`` -``0.9.5`` |``-Python-3.6.1`` |``intel/2017a`` -``0.9.6`` |``-Python-2.7.13``|``intel/2017a`` -``0.10.0`` |``-Python-2.7.14``|``intel/2017b`` -``0.10.0`` |``-Python-3.6.3`` |``intel/2017b`` -``0.10.3`` |``-Python-3.6.4`` |``intel/2018a`` -``0.10.4`` |``-Python-3.6.4`` |``intel/2018a`` -``0.10.8`` |``-Python-3.6.4`` |``intel/2018a`` -``0.12.1`` |``-Python-3.6.6`` |``foss/2018b``, ``intel/2018b`` -``0.13.0`` |``-Python-3.7.2`` |``intel/2019a`` -``0.15.1`` |``-Python-3.7.4`` |``foss/2019b``, ``intel/2019b`` -``0.16.1`` |``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` -``0.16.2`` | |``foss/2020b``, ``fosscuda/2020b``, ``intel/2020b`` -``0.19.0`` | |``foss/2021a`` -``0.20.1`` | |``foss/2021b``, ``intel/2021b`` -``2022.6.0``| |``foss/2022a``, ``intel/2022a`` -``2022.9.0``| |``foss/2022a`` -``2023.4.2``| |``gfbf/2022b`` -``2023.9.0``| |``gfbf/2023a`` - -### XBeach - -XBeach is a two-dimensional model for wave propagation, long waves and mean flow, sediment transport and morphological changes of the nearshore area, beaches, dunes and backbarrier during storms. - -*homepage*: - -version |toolchain -------------|--------------- -``20230831``|``gompi/2022a`` - -### xbitmaps - -provides bitmaps for x - -*homepage*: - -version |toolchain ----------|------------------------------------------- -``1.1.1``|``foss/2016a``, ``intel/2016a``, ``system`` -``1.1.2``|``system`` - -### xcb-proto - -The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility. - -*homepage*: - -version |toolchain ---------|---------- -``1.11``|``system`` -``1.13``|``system`` - -### xcb-util - -The xcb-util package provides additional extensions to the XCB library, many that were previously found in Xlib, but are not part of core X protocol - -*homepage*: - -version |toolchain ----------|------------------------------- -``0.4.0``|``foss/2016a``, ``intel/2016a`` - -### xcb-util-image - -The xcb-util-image package provides additional extensions to the XCB library. - -*homepage*: - -version |toolchain ----------|------------------------------- -``0.4.0``|``foss/2016a``, ``intel/2016a`` - -### xcb-util-keysyms - -The xcb-util-keysyms package contains a library for handling standard X key constants and conversion to/from keycodes. - -*homepage*: - -version |toolchain ----------|------------------------------- -``0.4.0``|``foss/2016a``, ``intel/2016a`` - -### xcb-util-renderutil - -The xcb-util-renderutil package provides additional extensions to the XCB library. - -*homepage*: - -version |toolchain ----------|------------------------------- -``0.3.9``|``foss/2016a``, ``intel/2016a`` - -### xcb-util-wm - -The xcb-util-wm package contains libraries which provide client and window-manager helpers for EWMH and ICCCM. - -*homepage*: - -version |toolchain ----------|------------------------------- -``0.4.1``|``foss/2016a``, ``intel/2016a`` - -### xCell - -xCell is a gene signatures-based method learned from thousands of pure cell types from various sources. - -*homepage*: - -version |versionsuffix|toolchain ---------|-------------|-------------- -``1.12``|``-R-3.5.1`` |``foss/2018b`` - -### XCFun - -XCFun is a library of DFT exchange-correlation (XC) functionals. It is based on automatic differentiation and can therefore generate arbitrary order derivatives of these functionals. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|------------------------------------------------------------------------------ -``2.1.0`` | |``GCCcore/9.3.0`` -``2.1.1`` | |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``20180122``|``-Python-2.7.14``|``intel/2017b`` -``20190127``|``-Python-3.7.2`` |``foss/2019a`` - -### xclip - -xclip is a command line utility that is designed to run on any system with an X11 implementation. - -*homepage*: - -version |toolchain ---------|------------------ -``0.13``|``GCCcore/11.3.0`` - -### XCrySDen - -XCrySDen is a crystalline and molecular structure visualisation program aiming at display of isosurfaces and contours, which can be superimposed on crystalline structures and interactively rotated and manipulated. It also possesses some tools for analysis of properties in reciprocal space such as interactive selection of k-paths in the Brillouin zone for the band-structure plots, and visualisation of Fermi surfaces. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------------------------- -``1.5.60``|``intel/2019a`` -``1.6.2`` |``foss/2019b``, ``foss/2020b``, ``foss/2022a``, ``intel/2019b``, ``intel/2021b``, ``intel/2022a`` - -### xdotool - -xdotool lets you simulate keyboard input and mouse activity, move and resize windows, etc. It does this using X11’s XTEST extension and other Xlib functions. - -*homepage*: - -version |toolchain -----------------|------------------ -``3.20211022.1``|``GCCcore/11.3.0`` - -### Xerces-C++ - -Xerces-C++ is a validating XML parser written in a portable subset of C++. Xerces-C++ makes it easy to give your application the ability to read and write XML data. A shared library is provided for parsing, generating, manipulating, and validating XML documents using the DOM, SAX, and SAX2 APIs. - -*homepage*: - -version |toolchain ----------|----------------------------------------------------------------------------- -``3.1.4``|``GCCcore/6.4.0`` -``3.2.0``|``GCCcore/7.3.0`` -``3.2.2``|``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``3.2.3``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/9.3.0`` -``3.2.4``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``3.2.5``|``GCCcore/13.2.0`` - -### xESMF - -xESMF: Universal Regridder for Geospatial Data - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|--------------- -``0.3.0``| |``intel/2020b`` -``0.3.0``|``-Python-3.8.2``|``foss/2020a`` - -### xextproto - -XExtProto protocol headers. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------ -``7.3.0``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a``, ``intel/2017b`` - -### xf86vidmodeproto - -X11 XFree86 video mode extension protocol headers. - -*homepage*: - -version |toolchain ----------|------------------------------- -``2.3.1``|``foss/2016a``, ``intel/2016a`` - -### XGBoost - -XGBoost is an optimized distributed gradient boosting library designed to be highly efficient, flexible and portable. - -*homepage*: - -version |versionsuffix |toolchain -------------|-------------------|--------------- -``0.6a2`` |``-Python-2.7.12`` |``intel/2016b`` -``0.6a2`` |``-Python-3.5.2`` |``intel/2016b`` -``0.6a2`` |``-Python-3.6.1`` |``intel/2017a`` -``0.72.1`` |``-Python-2.7.14`` |``intel/2017b`` -``0.90`` |``-Python-3.7.4`` |``foss/2019b`` -``1.2.0`` |``-Python-3.8.2`` |``foss/2020a`` -``1.5.0`` | |``foss/2021a`` -``1.7.1`` | |``foss/2022a`` -``1.7.2`` | |``foss/2022a`` -``1.7.2`` |``-CUDA-11.7.0`` |``foss/2022a`` -``2.0.2`` | |``gfbf/2023a`` -``20171120``|``-Java-1.8.0_152``|``intel/2017b`` - -### XGrafix - -A graphics library and controller for physics simulation programs. 3-d surface plots, scatter plots, 2-d line plots. - -*homepage*: - -version |toolchain ---------|----------------- -``2.41``|``GCCcore/9.3.0`` - -### xineramaproto - -X protocol and ancillary headers for xinerama - -*homepage*: - -version |toolchain ----------|------------------------------- -``1.2.1``|``foss/2016a``, ``intel/2016a`` - -### XKeyboardConfig - -The non-arch keyboard configuration database for X Window. The goal is to provide the consistent, well-structured, frequently released open source of X keyboard configuration data for X Window System implementations (free, open source and commercial). The project is targeted to XKB-based systems. - -*homepage*: - -version |toolchain ---------|------------------------------- -``2.17``|``foss/2016a``, ``intel/2016a`` - -### XlsxWriter - -A Python module for creating Excel XLSX files - -*homepage*: - -version |toolchain ----------|------------------ -``1.4.0``|``GCCcore/10.2.0`` -``1.4.4``|``GCCcore/10.3.0`` -``3.0.2``|``GCCcore/11.2.0`` -``3.0.8``|``GCCcore/11.3.0`` -``3.1.2``|``GCCcore/12.2.0`` -``3.1.3``|``GCCcore/12.3.0`` -``3.1.9``|``GCCcore/13.2.0`` - -### XMDS2 - -The purpose of XMDS2 is to simplify the process of creating simulations that solve systems of initial-value first-order partial and ordinary differential equations. - -*homepage*: - -version |versionsuffix |toolchain ----------|------------------|-------------- -``2.2.3``|``-Python-2.7.15``|``foss/2018b`` - -### Xmipp - -Scipion is an image processing framework to obtain 3D models of macromolecular complexes using Electron Microscopy (3DEM). It integrates several software packages and presents an unified interface for both biologists and developers. Scipion allows to execute workflows combining different software tools, while taking care of formats and conversions. Additionally, all steps are tracked and can be reproduced later on. - -*homepage*: - -version |versionsuffix |toolchain -------------------|------------------|---------------------------------- -``3.19.04-Apollo``|``-Python-2.7.15``|``foss/2019a``, ``fosscuda/2019a`` -``3.22.07-Helios``| |``foss/2022a`` -``3.22.07-Helios``|``-CUDA-11.7.0`` |``foss/2022a`` - -### xmitgcm - -xmitgcm is a python package for reading MITgcm binary MDS files into xarray data structures. By storing data in dask arrays, xmitgcm enables parallel, out-of-core analysis of MITgcm output data. - -*homepage*: - -version |toolchain ----------|-------------- -``0.5.2``|``foss/2022a`` - -### XML-Compile - -Perl module for compilation based XML processing - -*homepage*: - -version |toolchain ---------|-------------------------------------- -``1.63``|``GCCcore/11.2.0``, ``GCCcore/12.2.0`` - -### XML-LibXML - -Perl binding for libxml2 - -*homepage*: - -version |versionsuffix |toolchain -----------|----------------|---------------------------------------------------------- -``2.0132``|``-Perl-5.24.0``|``foss/2016b``, ``intel/2016b`` -``2.0132``|``-Perl-5.24.1``|``intel/2017a`` -``2.0132``|``-Perl-5.26.0``|``foss/2017b``, ``intel/2017b`` -``2.0132``|``-Perl-5.26.1``|``GCCcore/6.4.0`` -``2.0132``|``-Perl-5.28.0``|``GCCcore/7.3.0`` -``2.0200``|``-Perl-5.28.1``|``GCCcore/8.2.0`` -``2.0201``| |``GCCcore/8.3.0`` -``2.0205``| |``GCCcore/9.3.0`` -``2.0206``| |``GCCcore/10.2.0`` -``2.0207``| |``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``2.0208``| |``GCCcore/12.2.0`` -``2.0209``| |``GCCcore/12.3.0`` - -### XML-Parser - -This is a Perl extension interface to James Clark's XML parser, expat. - -*homepage*: - -version |versionsuffix |toolchain ------------|----------------|-------------------------------------------------------------------------------------- -``2.41`` |``-Perl-5.20.3``|``intel/2016a`` -``2.44`` |``-Perl-5.22.1``|``foss/2016a``, ``intel/2016a`` -``2.44_01``|``-Perl-5.24.0``|``GCCcore/4.9.3``, ``GCCcore/5.4.0``, ``foss/2016b``, ``gimkl/2017a``, ``intel/2016b`` -``2.44_01``|``-Perl-5.24.1``|``GCCcore/6.3.0``, ``intel/2017a`` -``2.44_01``|``-Perl-5.26.0``|``GCCcore/6.4.0`` -``2.44_01``|``-Perl-5.26.1``|``GCCcore/6.4.0`` -``2.44_01``|``-Perl-5.28.0``|``GCCcore/7.3.0`` -``2.46`` |``-Perl-5.32.1``|``GCCcore/10.3.0`` -``2.46`` |``-Perl-5.34.1``|``GCCcore/11.3.0`` -``2.46`` |``-Perl-5.36.1``|``GCCcore/12.3.0`` - -### xmlf90 - -A fast XML parser and generator in Fortran - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------------------------------------------------------------------ -``1.5.3``|``foss/2016b``, ``foss/2017a`` -``1.5.4``|``GCC/10.2.0``, ``GCC/10.3.0``, ``GCC/11.2.0``, ``iccifort/2019.5.281``, ``iccifort/2020.4.304``, ``intel-compilers/2021.2.0``, ``intel-compilers/2021.4.0`` -``1.5.6``|``GCC/11.3.0`` - -### XMLSec - -XML Security Library is a C library based on LibXML2, supporting major XML security standards. - -*homepage*: - -version |toolchain -----------|----------------- -``1.2.26``|``GCCcore/6.4.0`` - -### XMLStarlet - -Command line XML tool - -*homepage*: - -version |toolchain ----------|--------------------------------- -``1.6.1``|``GCCcore/6.4.0``, ``foss/2016a`` - -### xonsh - -Xonsh is a Python-ish, BASHwards-looking shell language and command prompt. - -*homepage*: - -version |toolchain ----------|--------------- -``0.3.2``|``intel/2016a`` - -### XOOPIC - -XOOPIC is a two-dimensional 3-velocity particle-in-cell simulator. It can handle electrostatic and electromagnetic models, has a large variety of boundary conditions, supports multiple gasses and gas chemistry, and is easily reconfigurable via an input file. - -*homepage*: - -version |toolchain -------------|-------------- -``20210302``|``foss/2020a`` - -### xorg-macros - -X.org macros utilities. - -*homepage*: - -version |toolchain -----------|------------------------------------------------------------------------------------------------------------------------------------ -``1.19.0``|``foss/2016a``, ``foss/2016b``, ``gimkl/2.11.5``, ``intel/2016a``, ``intel/2016b`` -``1.19.1``|``GCCcore/6.3.0``, ``GCCcore/6.4.0`` -``1.19.2``|``GCCcore/10.2.0``, ``GCCcore/7.2.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.2.0``, ``GCCcore/9.3.0`` -``1.19.3``|``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``1.20.0``|``GCCcore/12.3.0``, ``GCCcore/13.2.0`` -``1.20.1``|``GCCcore/13.3.0`` - -### xpdf - -Xpdf was first released in 1995. It was written, and is still developed, by Derek Noonburg. Xpdf is a free PDF viewer and toolkit, including a text extractor, image converter, HTML converter, and more. Most of the tools are available as open source. - -*homepage*: - -version |toolchain ---------|------------------ -``4.04``|``GCCcore/12.3.0`` - -### XPLOR-NIH - -A System for X-ray Crystallography and NMR - -*homepage*: - -version|versionsuffix |toolchain --------|-----------------|---------- -``3.4``|``-Linux_x86_64``|``system`` - -### xprop - -The xprop utility is for displaying window and font properties in an X server. One window or font is selected using the command line arguments or possibly in the case of a window, by clicking on the desired window. A list of properties is then given, possibly with formatting information. - -*homepage*: - -version |versionsuffix |toolchain ----------|-----------------|----------------------------------------------------------------------------------------------------------------------- -``1.2.2``| |``GCCcore/5.4.0``, ``GCCcore/6.4.0``, ``foss/2016a``, ``foss/2016b``, ``intel/2016a``, ``intel/2016b``, ``intel/2017a`` -``1.2.2``|``-X11-20180131``|``GCCcore/6.4.0`` -``1.2.3``| |``GCCcore/7.3.0`` -``1.2.4``| |``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.2.5``| |``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``1.2.6``| |``GCCcore/12.3.0`` -``1.2.7``| |``GCCcore/13.2.0`` - -### xproto - -X protocol and ancillary headers - -*homepage*: - -version |toolchain -----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``7.0.28``|``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` -``7.0.29``|``intel/2016a`` -``7.0.31``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` - -### XSD - -CodeSynthesis XSD is an open-source, cross-platform W3C XML Schema to C++ data binding compiler. - -*homepage*: - -version |toolchain ----------|----------------- -``4.0.0``|``GCCcore/8.2.0`` - -### XTandem - -X!Tandem open source is software that can match tandem mass spectra with peptide sequences, in a process that has come to be known as protein identification. - -*homepage*: - -version |toolchain ---------------|---------------------------------------------------------- -``17.02.01.4``|``GCC/6.4.0-2.28``, ``iccifort/2017.4.196-GCC-6.4.0-2.28`` - -### xtb - -xtb - An extended tight-binding semi-empirical program package. - -*homepage*: - -version |versionsuffix |toolchain -----------------|-----------------|------------------------------- -``6.2.2-hotfix``|``-Python-3.6.3``|``intel/2017b`` -``6.2.3`` | |``foss/2019b`` -``6.4.1`` | |``foss/2021b``, ``intel/2021a`` -``6.5.0`` | |``foss/2021b`` -``6.5.1`` | |``foss/2022a`` -``6.6.0`` | |``foss/2022a``, ``intel/2022a`` -``6.6.1`` | |``gfbf/2022b``, ``gfbf/2023a`` -``6.7.0`` | |``gfbf/2023a`` - -### xtensor - -xtensor is a C++ library meant for numerical analysis with multi-dimensional array expressions. - -*homepage*: - -version |toolchain -----------|-------------- -``0.24.0``|``foss/2021b`` - -### xtrans - -xtrans includes a number of routines to make X implementations transport-independent; at time of writing, it includes support for UNIX sockets, IPv4, IPv6, and DECnet. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------- -``1.3.5``|``GCCcore/11.3.0``, ``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016a`` - -### Xvfb - -Xvfb is an X server that can run on machines with no display hardware and no physical input devices. It emulates a dumb framebuffer using virtual memory. - -*homepage*: - -version |toolchain ------------|------------------------------------- -``1.20.8`` |``GCCcore/8.2.0``, ``GCCcore/8.3.0`` -``1.20.9`` |``GCCcore/10.2.0``, ``GCCcore/9.3.0`` -``1.20.11``|``GCCcore/10.3.0`` -``1.20.13``|``GCCcore/11.2.0`` -``21.1.3`` |``GCCcore/11.3.0`` -``21.1.6`` |``GCCcore/12.2.0`` -``21.1.8`` |``GCCcore/12.3.0`` -``21.1.9`` |``GCCcore/13.2.0`` - -### xxd - -xxd is part of the VIM package and this will only install xxd, not vim! xxd converts to/from hexdumps of binary files. - -*homepage*: - -version |toolchain -------------|------------------------------------------------------------------------------ -``8.2.4220``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0`` -``9.0.1696``|``GCCcore/12.2.0`` -``9.0.2112``|``GCCcore/12.3.0`` -``9.1.0307``|``GCCcore/13.2.0`` - -### xxHash - -xxHash is an extremely fast non-cryptographic hash algorithm, working at RAM speed limit. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------- -``0.8.0``|``GCCcore/11.2.0`` -``0.8.1``|``GCCcore/10.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``0.8.2``|``GCCcore/12.3.0``, ``GCCcore/13.2.0`` - -### XZ - -xz: XZ utilities - -*homepage*: - -version |versionsuffix |toolchain ----------|-------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------- -``5.0.5``| |``GCC/4.8.2`` -``5.2.0``| |``GCC/4.9.2`` -``5.2.2``| |``GCC/4.9.2``, ``GCC/5.4.0-2.26``, ``GCCcore/4.9.3``, ``GCCcore/5.4.0``, ``foss/2016.04``, ``foss/2016a``, ``foss/2016b``, ``intel/2016a``, ``intel/2016b`` -``5.2.2``|``-gettext-0.19.7``|``foss/2016a``, ``intel/2016a`` -``5.2.3``| |``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``gimkl/2017a`` -``5.2.4``| |``GCCcore/7.2.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.2.0`` -``5.2.5``| |``GCCcore/10.1.0``, ``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/9.3.0`` -``5.2.7``| |``GCCcore/12.2.0`` -``5.4.2``| |``GCCcore/12.3.0``, ``GCCcore/13.1.0`` -``5.4.4``| |``GCCcore/13.2.0`` -``5.4.5``| |``GCCcore/13.3.0`` - -## Y - - -[YACS](#yacs) - [Yade](#yade) - [yaff](#yaff) - [Yambo](#yambo) - [yaml-cpp](#yaml-cpp) - [YANK](#yank) - [YAPS](#yaps) - [Yasm](#yasm) - [YAXT](#yaxt) - [Yices](#yices) - [YODA](#yoda) - [yt](#yt) - - -### YACS - -YACS was created as a lightweight library to define and manage system configurations, such as those commonly found in software designed for scientific experimentation. These "configurations" typically cover concepts like hyperparameters used in training a machine learning model or configurable model hyperparameters, such as the depth of a convolutional neural network. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------------------------------------------------- -``0.1.8``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0``, ``GCCcore/8.3.0`` - -### Yade - -Yade is an extensible open-source framework for discrete numerical models, focused on Discrete Element Method. The computation parts are written in c++ using flexible object model, allowing independent implementation of new alogrithms and interfaces. Python is used for rapid and concise scene construction, simulation control, postprocessing and debugging. - -*homepage*: - -version |versionsuffix |toolchain -------------|------------------|------------------------------- -``1.20.0`` |``-Python-2.7.11``|``foss/2016a``, ``intel/2016a`` -``2016.06a``|``-Python-2.7.12``|``foss/2016b``, ``intel/2016b`` -``2017.01a``|``-Python-2.7.12``|``intel/2016b`` -``2018.02b``|``-Python-2.7.14``|``intel/2018a`` - -### yaff - -Yaff stands for 'Yet another force field'. It is a pythonic force-field code. - -*homepage*: - -version |versionsuffix |toolchain ---------------------|------------------------------|------------------------------------------------ -``1.0.develop.2.15``|``-Python-2.7.12-HDF5-1.8.18``|``intel/2016b`` -``1.1.2`` |``-Python-2.7.13`` |``intel/2017a`` -``1.1.3`` |``-Python-2.7.13`` |``intel/2017a`` -``1.4.2`` |``-Python-2.7.14`` |``foss/2018a``, ``intel/2017b``, ``intel/2018a`` -``1.4.2`` |``-Python-3.6.3`` |``intel/2017b`` -``1.4.5`` |``-Python-2.7.15`` |``intel/2018b`` -``1.5.0`` |``-Python-2.7.15`` |``intel/2018b`` -``1.5.0`` |``-Python-3.7.2`` |``intel/2019a`` -``1.6.0`` | |``foss/2020b``, ``foss/2023a`` -``1.6.0`` |``-Python-3.7.2`` |``intel/2019a`` -``1.6.0`` |``-Python-3.7.4`` |``foss/2019b``, ``intel/2019b`` -``1.6.0`` |``-Python-3.8.2`` |``foss/2020a``, ``intel/2020a`` - -### Yambo - -Yambo is a FORTRAN/C code for Many-Body calculations in solid state and molecular physics. Yambo relies on the Kohn-Sham wavefunctions generated by two DFT public codes: abinit, and PWscf. - -*homepage*: - -version |toolchain ----------|------------------------- -``3.4.2``|``intel/2016.02-GCC-4.9`` -``5.0.4``|``intel/2021a`` -``5.1.2``|``intel/2021b`` - -### yaml-cpp - -yaml-cpp is a YAML parser and emitter in C++ matching the YAML 1.2 spec - -*homepage*: - -version |toolchain ----------|---------------------------------------------------------- -``0.6.3``|``GCCcore/8.3.0`` -``0.7.0``|``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``0.8.0``|``GCCcore/13.2.0`` - -### YANK - -A GPU-accelerated Python framework for exploring algorithms for alchemical free energy calculations - -*homepage*: - -version |versionsuffix |toolchain -----------|-----------------|--------------- -``0.25.2``|``-Python-3.8.2``|``intel/2020a`` - -### YAPS - -YAPS - Yet Another Positioning Solver - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|--------------- -``1.1.0``|``-R-3.5.1`` |``foss/2018b`` -``1.1.0``|``-R-3.6.0`` |``intel/2019a`` - -### Yasm - -Yasm: Complete rewrite of the NASM assembler with BSD license - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.3.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/6.4.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0``, ``foss/2016a``, ``foss/2016b``, ``foss/2017a``, ``gimkl/2.11.5``, ``gimkl/2017a``, ``intel/2016a``, ``intel/2016b``, ``intel/2017a`` - -### YAXT - -Yet Another eXchange Tool - -*homepage*: - -version |toolchain ------------|------------------------------------------------- -``0.5.1`` |``intel/2016b``, ``intel/2017a``, ``intel/2017b`` -``0.6.0`` |``intel/2018a``, ``intel/2018b``, ``iomkl/2018b`` -``0.6.2`` |``foss/2018b``, ``gompi/2019b``, ``iimpi/2019b`` -``0.9.0`` |``gompi/2020b`` -``0.9.1`` |``gompi/2021a`` -``0.9.2`` |``iimpi/2021b`` -``0.9.2.1``|``gompi/2021b`` -``0.10.0`` |``gompi/2022b`` - -### Yices - -Yices 2 is an SMT solver that decides the satisfiability of formulas containing uninterpreted function symbols with equality, real and integer arithmetic, bitvectors, scalar types, and tuples. Yices 2 supports both linear and nonlinear arithmetic. - -*homepage*: - -version |toolchain ----------|------------------ -``2.6.2``|``GCCcore/10.2.0`` -``2.6.4``|``GCCcore/12.2.0`` - -### YODA - -Yet more Objects for (High Energy Physics) Data Analysis - -*homepage*: - -version |toolchain ----------|-------------- -``1.9.7``|``GCC/11.3.0`` -``1.9.9``|``GCC/12.3.0`` - -### yt - -yt is an open-source, permissively-licensed python package for analyzing and visualizing volumetric data. - -*homepage*: - -version |toolchain ----------|-------------- -``4.3.0``|``foss/2022a`` - -## Z - - -[Z3](#z3) - [zarr](#zarr) - [Zeo++](#zeo++) - [ZeroMQ](#zeromq) - [zeus-mcmc](#zeus-mcmc) - [zfp](#zfp) - [Zgoubi](#zgoubi) - [ZIMPL](#zimpl) - [zingeR](#zinger) - [Zip](#zip) - [zlib](#zlib) - [zlib-ng](#zlib-ng) - [zlibbioc](#zlibbioc) - [Zopfli](#zopfli) - [ZPAQ](#zpaq) - [zsh](#zsh) - [zstd](#zstd) - [zUMIs](#zumis) - - -### Z3 - -Z3 is a theorem prover from Microsoft Research. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|-------------------------------------- -``4.8.9`` | |``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``4.8.10``| |``GCCcore/10.2.0`` -``4.8.10``|``-Python-3.8.6`` |``GCCcore/10.2.0`` -``4.8.11``| |``GCCcore/10.3.0`` -``4.8.11``|``-Python-3.9.5`` |``GCCcore/10.3.0`` -``4.8.12``| |``GCCcore/11.2.0`` -``4.8.12``|``-Python-3.9.6`` |``GCCcore/11.2.0`` -``4.8.16``| |``GCCcore/11.3.0`` -``4.8.16``|``-Python-3.10.4``|``GCCcore/11.3.0`` -``4.10.2``| |``GCCcore/11.3.0`` -``4.10.2``|``-Python-3.10.4``|``GCCcore/11.3.0`` -``4.12.2``| |``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``4.12.2``|``-Python-3.10.8``|``GCCcore/12.2.0`` -``4.13.0``| |``GCCcore/13.2.0`` - -### zarr - -Zarr is a Python package providing an implementation of compressed, chunked, N-dimensional arrays, designed for use in parallel computing. - -*homepage*: - -version |versionsuffix |toolchain -----------|------------------|------------------------------ -``2.1.4`` |``-Python-2.7.13``|``foss/2017a`` -``2.4.0`` |``-Python-3.8.2`` |``foss/2020a`` -``2.8.1`` | |``foss/2020b`` -``2.10.1``| |``foss/2021a`` -``2.13.3``| |``foss/2021b``, ``foss/2022a`` -``2.16.0``| |``foss/2022b`` -``2.17.1``| |``foss/2023a`` - -### Zeo++ - -Zeo++ is a software package for analysis of crystalline porous materials. Zeo++ can be used to perform geometry-based analysis of structure and topology of the void space inside a material, to assemble or alternate structures as well as to generate structure representations to be used in structure similarity calculations. Zeo++ can be used to either analyze a single structure or perform high-throughput analysis of a large database. - -*homepage*: - -version|toolchain --------|---------------------------- -``0.3``|``intel-compilers/2023.1.0`` - -### ZeroMQ - -ZeroMQ looks like an embeddable networking library but acts like a concurrency framework. It gives you sockets that carry atomic messages across various transports like in-process, inter-process, TCP, and multicast. You can connect sockets N-to-N with patterns like fanout, pub-sub, task distribution, and request-reply. It's fast enough to be the fabric for clustered products. Its asynchronous I/O model gives you scalable multicore applications, built as asynchronous message-processing tasks. It has a score of language APIs and runs on most operating systems. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------------------------------------------------------- -``4.1.4``|``foss/2016a``, ``intel/2016a`` -``4.1.5``|``intel/2016b`` -``4.2.0``|``foss/2016b``, ``intel/2016b`` -``4.2.2``|``foss/2017a``, ``foss/2017b``, ``fosscuda/2017b``, ``intel/2017a``, ``intel/2017b``, ``intelcuda/2017b`` -``4.2.5``|``foss/2018a``, ``foss/2018b``, ``fosscuda/2018b``, ``intel/2018a``, ``intel/2018b`` -``4.3.2``|``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``4.3.3``|``GCCcore/10.2.0`` -``4.3.4``|``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0`` -``4.3.5``|``GCCcore/13.2.0`` - -### zeus-mcmc - -Zeus is a Python implementation of the Ensemble Slice Sampling method. - -*homepage*: - -version |toolchain ----------|-------------- -``2.5.4``|``foss/2022a`` - -### zfp - -zfp is a compressed format for representing multidimensional floating-point and integer arrays. zfp provides compressed-array classes that support high throughput read and write random access to individual array elements. zfp also supports serial and parallel (OpenMP and CUDA) compression of whole arrays, e.g., for applications that read and write large data sets to and from disk. - -*homepage*: - -version |toolchain ----------|--------------------------------------------------------- -``0.5.5``|``GCCcore/10.2.0`` -``1.0.0``|``GCCcore/10.3.0``, ``GCCcore/11.3.0``, ``GCCcore/9.3.0`` -``1.0.1``|``GCCcore/12.3.0`` - -### Zgoubi - -Zgoubi is a ray-tracing code in use for charged particle beam dynamics simulations. It can simulate beam dynamics in a large variety of machines and optical systems. - -*homepage*: - -version |toolchain ----------|------------------ -``6.0.2``|``GCCcore/10.3.0`` - -### ZIMPL - -ZIMPL is a little language to translate the mathematical model of a problem into a linear or nonlinear (mixed-) integer mathematical program expressed in .lp or .mps file format which can be read and (hopefully) solved by a LP or MIP solver. - -*homepage*: - -version |toolchain ----------|------------------ -``3.3.4``|``GCCcore/11.3.0`` - -### zingeR - -Zero-Inflated Negative binomial Gene Expression in R - -*homepage*: - -version |versionsuffix|toolchain -------------|-------------|-------------- -``20180131``|``-R-3.5.1`` |``foss/2018b`` - -### Zip - -Zip is a compression and file packaging/archive utility. Although highly compatible both with PKWARE's PKZIP and PKUNZIP utilities for MS-DOS and with Info-ZIP's own UnZip, our primary objectives have been portability and other-than-MSDOS functionality - -*homepage*: - -version|toolchain --------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ -``3.0``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.2.0``, ``GCCcore/11.3.0``, ``GCCcore/12.2.0``, ``GCCcore/12.3.0``, ``GCCcore/13.2.0``, ``GCCcore/13.3.0``, ``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/9.3.0`` - -### zlib - -zlib is designed to be a free, general-purpose, legally unencumbered -- that is, not covered by any patents -- lossless data-compression library for use on virtually any computer hardware and operating system. - -*homepage*: - -version |toolchain -----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -``1.2.7`` |``GCC/4.8.1``, ``GCC/4.8.2`` -``1.2.8`` |``GCC/4.8.2``, ``GCC/4.8.3``, ``GCC/4.8.4``, ``GCC/4.9.2``, ``GCC/4.9.2-binutils-2.25``, ``GCC/4.9.3``, ``GCC/4.9.3-2.25``, ``GCC/4.9.3-binutils-2.25``, ``GCC/5.1.0-binutils-2.25``, ``GCCcore/4.9.2``, ``GCCcore/4.9.3``, ``GCCcore/4.9.4``, ``GCCcore/5.3.0``, ``GCCcore/5.4.0``, ``GCCcore/6.1.0``, ``GCCcore/6.2.0``, ``GCCcore/6.3.0``, ``GNU/4.9.3-2.25``, ``foss/2016.04``, ``foss/2016a``, ``gimkl/2.11.5``, ``intel/2016.02-GCC-4.9``, ``intel/2016a``, ``intel/2016b``, ``intel/2017.01``, ``iomkl/2016.07``, ``iomkl/2016.09-GCC-4.9.3-2.25``, ``system`` -``1.2.10``|``system`` -``1.2.11``|``FCC/4.5.0``, ``GCCcore/10.1.0``, ``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.1.0``, ``GCCcore/11.2.0``, ``GCCcore/5.4.0``, ``GCCcore/5.5.0``, ``GCCcore/6.3.0``, ``GCCcore/6.4.0``, ``GCCcore/7.1.0``, ``GCCcore/7.2.0``, ``GCCcore/7.3.0``, ``GCCcore/7.4.0``, ``GCCcore/8.1.0``, ``GCCcore/8.2.0``, ``GCCcore/8.3.0``, ``GCCcore/8.4.0``, ``GCCcore/9.1.0``, ``GCCcore/9.2.0``, ``GCCcore/9.3.0``, ``GCCcore/9.4.0``, ``GCCcore/system``, ``gimkl/2017a``, ``system`` -``1.2.12``|``GCCcore/11.3.0``, ``GCCcore/12.1.0``, ``GCCcore/12.2.0``, ``GCCcore/9.5.0``, ``system`` -``1.2.13``|``GCCcore/11.4.0``, ``GCCcore/12.3.0``, ``GCCcore/13.1.0``, ``GCCcore/13.2.0``, ``system`` -``1.3.1`` |``GCCcore/13.3.0``, ``GCCcore/14.1.0``, ``system`` - -### zlib-ng - -zlib data compression library for the next generation systems - -*homepage*: - -version |toolchain ----------|------------------ -``2.0.5``|``GCCcore/10.2.0`` -``2.0.6``|``GCCcore/10.3.0`` -``2.0.7``|``GCCcore/11.3.0`` -``2.1.6``|``GCCcore/12.3.0`` - -### zlibbioc - -This package uses the source code of zlib-1.2.5 to create libraries for systems that do not have these available via other means. - -*homepage*: - -version |versionsuffix|toolchain -----------|-------------|--------------- -``1.18.0``|``-R-3.2.3`` |``intel/2016a`` -``1.20.0``|``-R-3.3.1`` |``intel/2016b`` - -### Zopfli - -Zopfli Compression Algorithm is a compression library programmed in C to perform very good, but slow, deflate or zlib compression. - -*homepage*: - -version |toolchain ----------|------------------------------------------------------------------------------ -``1.0.3``|``GCCcore/10.2.0``, ``GCCcore/10.3.0``, ``GCCcore/11.3.0``, ``GCCcore/12.3.0`` - -### ZPAQ - -zpaq is a free and open source (GPL v3) incremental, journaling command-line archiver for Windows, Linux and Mac OS/X - -*homepage*: - -version |toolchain ---------|------------- -``7.00``|``GCC/4.8.2`` - -### zsh - -Zsh is a shell designed for interactive use, although it is also a powerful scripting language. - -*homepage*: - -version |toolchain ----------|------------------------- -``5.1.1``|``GNU/4.9.3-2.25`` -``5.2`` |``foss/2016b`` -``5.8`` |``GCC/8.3.0``, ``system`` -``5.9`` |``system`` - -### zstd - -Zstandard is a real-time compression algorithm, providing high compression ratios. It offers a very wide range of compression/speed trade-off, while being backed by a very fast decoder. It also offers a special mode for small data, called dictionary compression, and can create dictionaries from any sample set. - -*homepage*: - -version |toolchain ----------|---------------------------------------------------- -``1.3.4``|``foss/2016b`` -``1.4.0``|``GCCcore/7.3.0``, ``GCCcore/8.2.0``, ``foss/2018b`` -``1.4.4``|``GCCcore/8.3.0``, ``GCCcore/9.3.0`` -``1.4.5``|``GCCcore/10.2.0`` -``1.4.9``|``GCCcore/10.3.0`` -``1.5.0``|``GCCcore/11.2.0`` -``1.5.2``|``GCCcore/11.3.0``, ``GCCcore/12.2.0`` -``1.5.5``|``GCCcore/12.3.0``, ``GCCcore/13.2.0`` -``1.5.6``|``GCCcore/13.3.0`` - -### zUMIs - -A fast and flexible pipeline to process RNA sequencing data with UMIs. - -*homepage*: - -version |versionsuffix|toolchain ----------|-------------|-------------- -``2.9.7``|``-R-4.3.2`` |``foss/2023a`` diff --git a/docs/version-specific/supported-software/0/3d-dna.md b/docs/version-specific/supported-software/0/3d-dna.md new file mode 100644 index 000000000..68e973974 --- /dev/null +++ b/docs/version-specific/supported-software/0/3d-dna.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# 3d-dna + +3D de novo assembly (3D DNA) pipeline + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``180922`` | ``-Python-2.7.15`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/0/3to2.md b/docs/version-specific/supported-software/0/3to2.md new file mode 100644 index 000000000..a1f43f43d --- /dev/null +++ b/docs/version-specific/supported-software/0/3to2.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# 3to2 + +lib3to2 is a set of fixers that are intended to backport code written for Python version 3.x into Python version 2.x. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.1`` | ``-Python-2.7.12`` | ``foss/2016b`` +``1.1.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.1.1`` | ``-Python-2.7.13`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/0/4ti2.md b/docs/version-specific/supported-software/0/4ti2.md new file mode 100644 index 000000000..40706f818 --- /dev/null +++ b/docs/version-specific/supported-software/0/4ti2.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# 4ti2 + +A software package for algebraic, geometric and combinatorial problems on linear spaces + +*homepage*: + +version | toolchain +--------|---------- +``1.6.10`` | ``GCC/13.2.0`` +``1.6.9`` | ``GCC/11.3.0`` +``1.6.9`` | ``GCC/8.2.0-2.31.1`` +``1.6.9`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/0/index.md b/docs/version-specific/supported-software/0/index.md new file mode 100644 index 000000000..1e8861f86 --- /dev/null +++ b/docs/version-specific/supported-software/0/index.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (0) + +*(quick links: [(all)](../index.md) - *0* - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [3d-dna](3d-dna.md) + * [3to2](3to2.md) + * [4ti2](4ti2.md) + + +*(quick links: [(all)](../index.md) - *0* - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ABAQUS.md b/docs/version-specific/supported-software/a/ABAQUS.md new file mode 100644 index 000000000..366dbb823 --- /dev/null +++ b/docs/version-specific/supported-software/a/ABAQUS.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# ABAQUS + +Finite Element Analysis software for modeling, visualization and best-in-class implicit and explicit dynamics FEA. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2017`` | ``-hotfix-1721`` | ``system`` +``2018`` | ``-hotfix-1806`` | ``system`` +``2020`` | | ``system`` +``2021`` | ``-hotfix-2132`` | ``system`` +``2022`` | ``-hotfix-2214`` | ``system`` +``2022`` | ``-hotfix-2223`` | ``system`` +``2022`` | | ``system`` +``6.12.1`` | ``-linux-x86_64`` | ``system`` +``6.13.5`` | ``-linux-x86_64`` | ``system`` +``6.14.1`` | ``-linux-x86_64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ABINIT.md b/docs/version-specific/supported-software/a/ABINIT.md new file mode 100644 index 000000000..79e6160b4 --- /dev/null +++ b/docs/version-specific/supported-software/a/ABINIT.md @@ -0,0 +1,43 @@ +--- +search: + boost: 0.5 +--- +# ABINIT + +Abinit is a plane wave pseudopotential code for doing condensed phase electronic structure calculations using DFT. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``7.0.3`` | ``-x86_64_linux_gnu4.5`` | ``system`` +``7.0.5`` | ``-x86_64_linux_gnu4.5`` | ``system`` +``7.10.5`` | ``-libxc`` | ``intel/2016.02-GCC-4.9`` +``7.10.5`` | | ``intel/2016.02-GCC-4.9`` +``7.2.1`` | ``-x86_64_linux_gnu4.5`` | ``system`` +``8.0.8`` | | ``intel/2016a`` +``8.0.8b`` | | ``foss/2016b`` +``8.0.8b`` | | ``intel/2016b`` +``8.10.2`` | | ``intel/2018b`` +``8.10.3`` | | ``intel/2018b`` +``8.2.2`` | | ``foss/2016b`` +``8.2.2`` | | ``intel/2016b`` +``8.4.4`` | | ``intel/2017b`` +``8.6.3`` | | ``intel/2018a`` +``9.10.3`` | | ``intel/2022a`` +``9.2.1`` | | ``foss/2019b`` +``9.2.1`` | | ``intel/2019b`` +``9.2.1`` | | ``intel/2020a`` +``9.4.1`` | | ``foss/2020b`` +``9.4.1`` | | ``intel/2020a`` +``9.4.1`` | | ``intel/2020b`` +``9.4.2`` | | ``foss/2021a`` +``9.4.2`` | | ``intel/2021a`` +``9.6.2`` | | ``foss/2022a`` +``9.6.2`` | | ``intel/2021a`` +``9.6.2`` | | ``intel/2021b`` +``9.6.2`` | | ``intel/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ABRA2.md b/docs/version-specific/supported-software/a/ABRA2.md new file mode 100644 index 000000000..95f6e3844 --- /dev/null +++ b/docs/version-specific/supported-software/a/ABRA2.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# ABRA2 + +Assembly Based ReAligner + +*homepage*: + +version | toolchain +--------|---------- +``2.22`` | ``iccifort/2019.5.281`` +``2.23`` | ``GCC/10.2.0`` +``2.23`` | ``GCC/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ABRicate.md b/docs/version-specific/supported-software/a/ABRicate.md new file mode 100644 index 000000000..01947458f --- /dev/null +++ b/docs/version-specific/supported-software/a/ABRicate.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# ABRicate + +Mass screening of contigs for antimicrobial and virulence genes + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.9.9`` | ``-Perl-5.28.1`` | ``gompi/2019a`` +``0.9.9`` | | ``gompi/2019b`` +``1.0.0`` | | ``gompi/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ABySS.md b/docs/version-specific/supported-software/a/ABySS.md new file mode 100644 index 000000000..8053c7f92 --- /dev/null +++ b/docs/version-specific/supported-software/a/ABySS.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# ABySS + +Assembly By Short Sequences - a de novo, parallel, paired-end sequence assembler + +*homepage*: + +version | toolchain +--------|---------- +``1.9.0`` | ``foss/2016a`` +``2.0.2`` | ``foss/2016b`` +``2.0.2`` | ``foss/2018a`` +``2.0.2`` | ``gompi/2019a`` +``2.0.2`` | ``intel/2016b`` +``2.0.3`` | ``foss/2017b`` +``2.0.3`` | ``intel/2017b`` +``2.1.5`` | ``foss/2019b`` +``2.2.5`` | ``foss/2020b`` +``2.3.7`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ACTC.md b/docs/version-specific/supported-software/a/ACTC.md new file mode 100644 index 000000000..ef3d8c177 --- /dev/null +++ b/docs/version-specific/supported-software/a/ACTC.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# ACTC + +ACTC converts independent triangles into triangle strips or fans. + +*homepage*: + +version | toolchain +--------|---------- +``1.1`` | ``GCCcore/10.2.0`` +``1.1`` | ``GCCcore/11.3.0`` +``1.1`` | ``GCCcore/6.4.0`` +``1.1`` | ``GCCcore/7.3.0`` +``1.1`` | ``GCCcore/8.3.0`` +``1.1`` | ``GCCcore/9.3.0`` +``1.1`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ADDA.md b/docs/version-specific/supported-software/a/ADDA.md new file mode 100644 index 000000000..c507d745e --- /dev/null +++ b/docs/version-specific/supported-software/a/ADDA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ADDA + +ADDA is an open-source parallel implementation of the discrete dipole approximation, capable to simulate light scattering by particles of arbitrary shape and composition in a wide range of particle sizes. + +*homepage*: + +version | toolchain +--------|---------- +``1.3b4`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ADF.md b/docs/version-specific/supported-software/a/ADF.md new file mode 100644 index 000000000..7da204852 --- /dev/null +++ b/docs/version-specific/supported-software/a/ADF.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# ADF + +ADF is a premium-quality quantum chemistry software package based on Density Functional Theory (DFT). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2009.01a.pc64_linux.intelmpi`` | | ``system`` +``2014.02`` | | ``system`` +``2014.11.r48287`` | | ``intel/2016a`` +``2016.101`` | | ``system`` +``2019.303`` | ``-intelmpi`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ADIOS.md b/docs/version-specific/supported-software/a/ADIOS.md new file mode 100644 index 000000000..e93a224b2 --- /dev/null +++ b/docs/version-specific/supported-software/a/ADIOS.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# ADIOS + +The Adaptable IO System (ADIOS) provides a simple, flexible way for scientists to describe the data in their code that may need to be written, read, or processed outside of the running simulation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.13.1`` | ``-Python-2.7.15`` | ``foss/2019a`` +``1.13.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``20210804`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ADMIXTURE.md b/docs/version-specific/supported-software/a/ADMIXTURE.md new file mode 100644 index 000000000..b56f1c7ba --- /dev/null +++ b/docs/version-specific/supported-software/a/ADMIXTURE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ADMIXTURE + +ADMIXTURE is a software tool for maximum likelihood estimation of individual ancestries from multilocus SNP genotype datasets. It uses the same statistical model as STRUCTURE but calculates estimates much more rapidly using a fast numerical optimization algorithm. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ADOL-C.md b/docs/version-specific/supported-software/a/ADOL-C.md new file mode 100644 index 000000000..9b5bde771 --- /dev/null +++ b/docs/version-specific/supported-software/a/ADOL-C.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ADOL-C + +The package ADOL-C (Automatic Differentiation by OverLoading in C++) facilitates the evaluation of first and higher derivatives of vector functions that are defined by computer programs written in C or C++. The resulting derivative evaluation routines may be called from C/C++, Fortran, or any other language that can be linked with C. + +*homepage*: + +version | toolchain +--------|---------- +``2.7.0`` | ``gompi/2019a`` +``2.7.2`` | ``gompi/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AEDT.md b/docs/version-specific/supported-software/a/AEDT.md new file mode 100644 index 000000000..9c79789c8 --- /dev/null +++ b/docs/version-specific/supported-software/a/AEDT.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# AEDT + +The Ansys Electronics Desktop (AEDT) is a platform that enables true electronics system design. AEDT provides access to the Ansys gold-standard electromagnetics simulation solutions such as Ansys HFSS, Ansys Maxwell, Ansys Q3D Extractor, Ansys SIwave, and Ansys Icepak using electrical CAD (ECAD) and mechanical CAD (MCAD) workflows. + +*homepage*: + +version | toolchain +--------|---------- +``2024R1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AFNI.md b/docs/version-specific/supported-software/a/AFNI.md new file mode 100644 index 000000000..a25b5e596 --- /dev/null +++ b/docs/version-specific/supported-software/a/AFNI.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# AFNI + +AFNI is a set of C programs for processing, analyzing, and displaying functional MRI (FMRI) data - a technique for mapping human brain activity. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``18.1.09`` | ``-Python-3.6.4`` | ``intel/2018a`` +``18.3.00`` | ``-Python-3.6.6`` | ``foss/2018b`` +``19.0.01`` | ``-Python-2.7.14`` | ``foss/2017b`` +``19.0.01`` | ``-Python-2.7.14`` | ``intel/2017b`` +``20160329`` | ``-Python-2.7.11`` | ``intel/2016a`` +``24.0.02`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AGAT.md b/docs/version-specific/supported-software/a/AGAT.md new file mode 100644 index 000000000..a494e1583 --- /dev/null +++ b/docs/version-specific/supported-software/a/AGAT.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# AGAT + +AGAT: Another GTF/GFF Analysis Toolkit. Suite of tools to handle gene annotations in any GTF/GFF format. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.2`` | ``GCC/11.2.0`` +``1.1.0`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AGFusion.md b/docs/version-specific/supported-software/a/AGFusion.md new file mode 100644 index 000000000..ceac30bb2 --- /dev/null +++ b/docs/version-specific/supported-software/a/AGFusion.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# AGFusion + +AGFusion is a python package for annotating gene fusions from the human or mouse genomes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2`` | ``-Python-3.7.2`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AGeNT.md b/docs/version-specific/supported-software/a/AGeNT.md new file mode 100644 index 000000000..4e322a0b8 --- /dev/null +++ b/docs/version-specific/supported-software/a/AGeNT.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# AGeNT + +The Agilent Genomics NextGen Toolkit (AGeNT) is a Java-based software module that processes the read sequences from targeted high-throughput sequencing data generated by sequencing Agilent SureSelect and HaloPlex libraries. The Trimmer utility of the AGeNT module processes the read sequences to identify and remove the adaptor sequences and extracts dual molecular barcodes (for SureSelect XT HS2). The LocatIt utility of the AGeNT module processes the Molecular Barcode (MBC) information from HaloPlex HS, SureSelect XT HS, and SureSelect XT HS2 Illumina sequencing runs with options to either mark or merge duplicate reads and output in BAM file format. The Illumina InterOp libraries are a set of common routines used for reading InterOp metric files produced by Illumina sequencers including NextSeq 1k/2k. These libraries are backwards compatible and capable of supporting prior releases of the software, with one exception: GA systems have been excluded. + +*homepage*: + +version | toolchain +--------|---------- +``3.0.6`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AICSImageIO.md b/docs/version-specific/supported-software/a/AICSImageIO.md new file mode 100644 index 000000000..cc2297e94 --- /dev/null +++ b/docs/version-specific/supported-software/a/AICSImageIO.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# AICSImageIO + +Image Reading, Metadata Conversion, and Image Writing for Microscopy Images in Pure Python + +*homepage*: + +version | toolchain +--------|---------- +``4.14.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AIMAll.md b/docs/version-specific/supported-software/a/AIMAll.md new file mode 100644 index 000000000..2da0fef96 --- /dev/null +++ b/docs/version-specific/supported-software/a/AIMAll.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# AIMAll + +AIMAll is an easy to use, accurate, reliable and efficient quantum chemistry software package for performing comprehensive, quantitative and visual QTAIM analyses of molecular systems - starting from molecular wavefunction data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``19.10.12`` | ``-linux_64bit`` | ``intel/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ALADIN.md b/docs/version-specific/supported-software/a/ALADIN.md new file mode 100644 index 000000000..2023b8759 --- /dev/null +++ b/docs/version-specific/supported-software/a/ALADIN.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ALADIN + +ALADIN was entirely built on the notion of compatibility with its mother system, IFS/ARPEG. The latter, a joint development between the European Centre for Medium-Range Weather Forecasts (ECMWF) and Meteo-France, was only meant to consider global Numerical Weather Prediction applications; hence the idea, for ALADIN, to complement the IFS/ARPEGE project with a limited area model (LAM) version, while keeping the differences between the two softwares as small as possible. + +*homepage*: + +version | toolchain +--------|---------- +``36t1_op2bf1`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ALAMODE.md b/docs/version-specific/supported-software/a/ALAMODE.md new file mode 100644 index 000000000..f4b8dc5c3 --- /dev/null +++ b/docs/version-specific/supported-software/a/ALAMODE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ALAMODE + +ALAMODE is an open source software designed for analyzing lattice anharmonicity and lattice thermal conductivity of solids. By using an external DFT package such as VASP and Quantum ESPRESSO, you can extract harmonic and anharmonic force constants straightforwardly with ALAMODE. Using the calculated anharmonic force constants, you can also estimate lattice thermal conductivity, phonon linewidth, and other anharmonic phonon properties from first principles. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.2`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ALFA.md b/docs/version-specific/supported-software/a/ALFA.md new file mode 100644 index 000000000..9f2e18b0a --- /dev/null +++ b/docs/version-specific/supported-software/a/ALFA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ALFA + +ALFA provides a global overview of features distribution composing NGS dataset(s). Given a set of aligned reads (BAM files) and an annotation file (GTF format), the tool produces plots of the raw and normalized distributions of those reads among genomic categories (stop codon, 5'-UTR, CDS, intergenic, etc.) and biotypes (protein coding genes, miRNA, tRNA, etc.). Whatever the sequencing technique, whatever the organism. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.1`` | ``-Python-3.7.2`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ALL.md b/docs/version-specific/supported-software/a/ALL.md new file mode 100644 index 000000000..f3399f1c4 --- /dev/null +++ b/docs/version-specific/supported-software/a/ALL.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ALL + +A Load Balancing Library (ALL) aims to provide an easy way to include dynamic domain-based load balancing into particle based simulation codes. The library is developed in the Simulation Laboratory Molecular Systems of the Jülich Supercomputing Centre at Forschungszentrum Jülich. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.2`` | ``foss/2022b`` +``0.9.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ALLPATHS-LG.md b/docs/version-specific/supported-software/a/ALLPATHS-LG.md new file mode 100644 index 000000000..3d30d02fa --- /dev/null +++ b/docs/version-specific/supported-software/a/ALLPATHS-LG.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ALLPATHS-LG + +ALLPATHS-LG, the new short read genome assembler. + +*homepage*: + +version | toolchain +--------|---------- +``52488`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ALPS.md b/docs/version-specific/supported-software/a/ALPS.md new file mode 100644 index 000000000..80a37eb10 --- /dev/null +++ b/docs/version-specific/supported-software/a/ALPS.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# ALPS + +The ALPS project (Algorithms and Libraries for Physics Simulations) is an open source effort aiming at providing high-end simulation codes for strongly correlated quantum mechanical systems as well as C++ libraries for simplifying the development of such code. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.b4`` | ``-Python-2.7.11`` | ``intel/2016a`` +``2.3.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2.3.0`` | ``-Python-3.5.2`` | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AMAPVox.md b/docs/version-specific/supported-software/a/AMAPVox.md new file mode 100644 index 000000000..9bb5b7c31 --- /dev/null +++ b/docs/version-specific/supported-software/a/AMAPVox.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# AMAPVox + +LiDAR data voxelisation software + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.9.4`` | ``-Java-11`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AMD-LibM.md b/docs/version-specific/supported-software/a/AMD-LibM.md new file mode 100644 index 000000000..31847b0cd --- /dev/null +++ b/docs/version-specific/supported-software/a/AMD-LibM.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# AMD-LibM + +AMD LibM is a software library containing a collection of basic math functions optimized for x86-64 processor based machines. + +*homepage*: + +version | toolchain +--------|---------- +``3.2.2`` | ``GCC/7.3.0-2.30`` +``3.6.0-4`` | ``GCC/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AMD-RNG.md b/docs/version-specific/supported-software/a/AMD-RNG.md new file mode 100644 index 000000000..95c0f4c1a --- /dev/null +++ b/docs/version-specific/supported-software/a/AMD-RNG.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# AMD-RNG + +AMD Random Number Generator Library is a pseudorandom number generator library. + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``GCC/7.3.0-2.30`` +``2.2-4`` | ``GCC/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AMD-SecureRNG.md b/docs/version-specific/supported-software/a/AMD-SecureRNG.md new file mode 100644 index 000000000..bd79efe1e --- /dev/null +++ b/docs/version-specific/supported-software/a/AMD-SecureRNG.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# AMD-SecureRNG + +The AMD Secure Random Number Generator (RNG) is a library that provides APIs to access the cryptographically secure random numbers generated by AMD’s hardware-based random number generator implementation. + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``GCC/7.3.0-2.30`` +``2.2-4`` | ``GCC/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AMD-uProf.md b/docs/version-specific/supported-software/a/AMD-uProf.md new file mode 100644 index 000000000..c533035ae --- /dev/null +++ b/docs/version-specific/supported-software/a/AMD-uProf.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# AMD-uProf + +AMD uProf is a performance analysis tool for applications running on Windows, Linux & FreeBSD operating systems. It allows developers to better understand the runtime performance of their application and to identify ways to improve its performance. + +*homepage*: + +version | toolchain +--------|---------- +``3.4.502`` | ``system`` +``3.5.671`` | ``system`` +``4.1.424`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AMGX.md b/docs/version-specific/supported-software/a/AMGX.md new file mode 100644 index 000000000..8e8c4db08 --- /dev/null +++ b/docs/version-specific/supported-software/a/AMGX.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# AMGX + +Distributed multigrid linear solver library on GPU + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.4.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AMICA.md b/docs/version-specific/supported-software/a/AMICA.md new file mode 100644 index 000000000..c0fc71c4c --- /dev/null +++ b/docs/version-specific/supported-software/a/AMICA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# AMICA + +Code for AMICA: Adaptive Mixture ICA with shared components + +*homepage*: + +version | toolchain +--------|---------- +``2024.1.19`` | ``intel/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AMOS.md b/docs/version-specific/supported-software/a/AMOS.md new file mode 100644 index 000000000..f0321b6e4 --- /dev/null +++ b/docs/version-specific/supported-software/a/AMOS.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# AMOS + +The AMOS consortium is committed to the development of open-source whole genome assembly software + +*homepage*: + +version | toolchain +--------|---------- +``3.1.0`` | ``foss/2018b`` +``3.1.0`` | ``foss/2021b`` +``3.1.0`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AMPHORA2.md b/docs/version-specific/supported-software/a/AMPHORA2.md new file mode 100644 index 000000000..0a87f27bf --- /dev/null +++ b/docs/version-specific/supported-software/a/AMPHORA2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# AMPHORA2 + +An Automated Phylogenomic Inference Pipeline for Bacterial and Archaeal Sequences. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20190730`` | ``-Java-13-pthreads-avx2`` | ``gompi/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AMPL-MP.md b/docs/version-specific/supported-software/a/AMPL-MP.md new file mode 100644 index 000000000..884b0f942 --- /dev/null +++ b/docs/version-specific/supported-software/a/AMPL-MP.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# AMPL-MP + +An open-source library for mathematical programming. + +*homepage*: + +version | toolchain +--------|---------- +``3.1.0`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AMPtk.md b/docs/version-specific/supported-software/a/AMPtk.md new file mode 100644 index 000000000..3d6684997 --- /dev/null +++ b/docs/version-specific/supported-software/a/AMPtk.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# AMPtk + +AMPtk is a series of scripts to process NGS amplicon data using USEARCH and VSEARCH, it can also be used to process any NGS amplicon data and includes databases setup for analysis of fungal ITS, fungal LSU, bacterial 16S, and insect COI amplicons. + +*homepage*: + +version | toolchain +--------|---------- +``1.5.4`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AMRFinderPlus.md b/docs/version-specific/supported-software/a/AMRFinderPlus.md new file mode 100644 index 000000000..5f762d100 --- /dev/null +++ b/docs/version-specific/supported-software/a/AMRFinderPlus.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# AMRFinderPlus + +This software and the accompanying database are designed to find acquired antimicrobial resistance genes and some point mutations in protein or assembled nucleotide sequences. + +*homepage*: + +version | toolchain +--------|---------- +``3.11.18`` | ``gompi/2021b`` +``3.11.18`` | ``gompi/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AMS.md b/docs/version-specific/supported-software/a/AMS.md new file mode 100644 index 000000000..e0c588944 --- /dev/null +++ b/docs/version-specific/supported-software/a/AMS.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# AMS + +The Amsterdam Modeling Suite (AMS) provides a comprehensive set of modules for computational chemistry and materials science, from quantum mechanics to fluid thermodynamics. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2020.102`` | ``-intelmpi`` | ``iimpi/2020b`` +``2022.102`` | ``-intelmpi`` | ``iimpi/2021b`` +``2023.101`` | ``-intelmpi`` | ``iimpi/2022a`` +``2023.104`` | ``-intelmpi`` | ``iimpi/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ANGEL.md b/docs/version-specific/supported-software/a/ANGEL.md new file mode 100644 index 000000000..896bef3e9 --- /dev/null +++ b/docs/version-specific/supported-software/a/ANGEL.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ANGEL + +ANGEL: Robust Open Reading Frame prediction + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0`` | ``-Python-3.7.2`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ANIcalculator.md b/docs/version-specific/supported-software/a/ANIcalculator.md new file mode 100644 index 000000000..baecd973d --- /dev/null +++ b/docs/version-specific/supported-software/a/ANIcalculator.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ANIcalculator + +This tool will calculate the bidirectional average nucleotide identity (gANI) and Alignment Fraction (AF) between two genomes. Required input is the full path to the fna file (nucleotide sequence of genes in fasta format) of each query genome. Either the rRNA and tRNA genes can be excluded, or provided in a list with the -ignoreList option. This is necessary as the presence of tRNA and/or rRNA genes in the fna will artificially inflate the ANI. + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``GCCcore/10.3.0`` +``1.0`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ANSYS.md b/docs/version-specific/supported-software/a/ANSYS.md new file mode 100644 index 000000000..d7675190a --- /dev/null +++ b/docs/version-specific/supported-software/a/ANSYS.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# ANSYS + +ANSYS simulation software enables organizations to confidently predict how their products will operate in the real world. We believe that every product is a promise of something greater. + +*homepage*: + +version | toolchain +--------|---------- +``15.0`` | ``system`` +``2022R2`` | ``system`` +``2023R1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ANSYS_CFD.md b/docs/version-specific/supported-software/a/ANSYS_CFD.md new file mode 100644 index 000000000..fbdf21ab1 --- /dev/null +++ b/docs/version-specific/supported-software/a/ANSYS_CFD.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ANSYS_CFD + +ANSYS computational fluid dynamics (CFD) simulation software allows you to predict, with confidence, the impact of fluid flows on your product throughout design and manufacturing as well as during end use. ANSYS renowned CFD analysis tools include the widely used and well-validated ANSYS Fluent and ANSYS CFX. + +*homepage*: + +version | toolchain +--------|---------- +``16.2`` | ``system`` +``17.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ANTIC.md b/docs/version-specific/supported-software/a/ANTIC.md new file mode 100644 index 000000000..4fe03e794 --- /dev/null +++ b/docs/version-specific/supported-software/a/ANTIC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ANTIC + +Antic is an algebraic number theory library. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.5`` | ``gfbf/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ANTLR.md b/docs/version-specific/supported-software/a/ANTLR.md new file mode 100644 index 000000000..b1a7ef77b --- /dev/null +++ b/docs/version-specific/supported-software/a/ANTLR.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# ANTLR + +ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is a language tool that provides a framework for constructing recognizers, compilers, and translators from grammatical descriptions containing Java, C#, C++, or Python actions. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.7.7`` | ``-Java-11`` | ``GCCcore/10.2.0`` +``2.7.7`` | ``-Java-11`` | ``GCCcore/10.3.0`` +``2.7.7`` | ``-Java-11`` | ``GCCcore/11.2.0`` +``2.7.7`` | ``-Java-11`` | ``GCCcore/11.3.0`` +``2.7.7`` | | ``GCCcore/7.3.0`` +``2.7.7`` | | ``GCCcore/8.2.0`` +``2.7.7`` | ``-Java-11`` | ``GCCcore/8.3.0`` +``2.7.7`` | ``-Java-11`` | ``GCCcore/9.3.0`` +``2.7.7`` | ``-Python-2.7.11`` | ``foss/2016a`` +``2.7.7`` | | ``foss/2017b`` +``2.7.7`` | ``-Python-2.7.14`` | ``foss/2018a`` +``2.7.7`` | | ``foss/2018b`` +``2.7.7`` | | ``foss/2019a`` +``2.7.7`` | ``-Python-2.7.13`` | ``intel/2017a`` +``2.7.7`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.7.7`` | | ``intel/2017b`` +``2.7.7`` | ``-Python-3.6.4`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ANTs.md b/docs/version-specific/supported-software/a/ANTs.md new file mode 100644 index 000000000..2a68169fd --- /dev/null +++ b/docs/version-specific/supported-software/a/ANTs.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# ANTs + +ANTs extracts information from complex datasets that include imaging. ANTs is useful for managing, interpreting and visualizing multidimensional data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2.3.0`` | ``-Python-2.7.14`` | ``foss/2017b`` +``2.3.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.3.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``2.3.2`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.3.5`` | | ``foss/2021a`` +``2.5.0`` | | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AOCC.md b/docs/version-specific/supported-software/a/AOCC.md new file mode 100644 index 000000000..e88d506c0 --- /dev/null +++ b/docs/version-specific/supported-software/a/AOCC.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# AOCC + +AMD Optimized C/C++ & Fortran compilers (AOCC) based on LLVM 11.0 + +*homepage*: + +version | toolchain +--------|---------- +``2.3.0`` | ``GCCcore/10.2.0`` +``2.3.0`` | ``GCCcore/9.3.0`` +``3.0.0`` | ``GCCcore/10.2.0`` +``3.0.0`` | ``GCCcore/10.3.0`` +``3.1.0`` | ``GCCcore/10.2.0`` +``3.1.0`` | ``GCCcore/10.3.0`` +``3.1.0`` | ``GCCcore/11.2.0`` +``3.2.0`` | ``GCCcore/11.2.0`` +``3.2.0`` | ``GCCcore/11.3.0`` +``4.0.0`` | ``GCCcore/11.3.0`` +``4.0.0`` | ``GCCcore/12.2.0`` +``4.0.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AOFlagger.md b/docs/version-specific/supported-software/a/AOFlagger.md new file mode 100644 index 000000000..1a940a439 --- /dev/null +++ b/docs/version-specific/supported-software/a/AOFlagger.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# AOFlagger + +The AOFlagger is a tool that can find and remove radio-frequency interference (RFI) in radio astronomical observations. It can make use of Lua scripts to make flagging strategies flexible, and the tools are applicable to a wide set of telescopes. + +*homepage*: + +version | toolchain +--------|---------- +``3.4.0`` | ``foss/2022a`` +``3.4.0`` | ``foss/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AOMP.md b/docs/version-specific/supported-software/a/AOMP.md new file mode 100644 index 000000000..0abb9a317 --- /dev/null +++ b/docs/version-specific/supported-software/a/AOMP.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# AOMP + +AMD fork of LLVM, setup for OpenMP offloading to Accelerators + +*homepage*: + +version | toolchain +--------|---------- +``13.0-2`` | ``GCCcore/10.2.0`` +``13.0-2`` | ``gcccuda/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/APBS.md b/docs/version-specific/supported-software/a/APBS.md new file mode 100644 index 000000000..a577e5cdc --- /dev/null +++ b/docs/version-specific/supported-software/a/APBS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# APBS + +APBS is a software package for modeling biomolecular solvation through solution of the Poisson-Boltzmann equation (PBE), one of the most popular continuum models for describing electrostatic interactions between molecular solutes in salty, aqueous media. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4`` | ``-linux-static-x86_64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/APR-util.md b/docs/version-specific/supported-software/a/APR-util.md new file mode 100644 index 000000000..6bf0b9a5b --- /dev/null +++ b/docs/version-specific/supported-software/a/APR-util.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# APR-util + +Apache Portable Runtime (APR) util libraries. + +*homepage*: + +version | toolchain +--------|---------- +``1.6.1`` | ``GCCcore/10.2.0`` +``1.6.1`` | ``GCCcore/10.3.0`` +``1.6.1`` | ``GCCcore/11.2.0`` +``1.6.1`` | ``GCCcore/11.3.0`` +``1.6.1`` | ``GCCcore/6.4.0`` +``1.6.1`` | ``GCCcore/7.3.0`` +``1.6.1`` | ``GCCcore/8.2.0`` +``1.6.1`` | ``GCCcore/9.3.0`` +``1.6.1`` | ``iomkl/2018a`` +``1.6.3`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/APR.md b/docs/version-specific/supported-software/a/APR.md new file mode 100644 index 000000000..c7b1b3898 --- /dev/null +++ b/docs/version-specific/supported-software/a/APR.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# APR + +Apache Portable Runtime (APR) libraries. + +*homepage*: + +version | toolchain +--------|---------- +``1.6.3`` | ``GCCcore/6.4.0`` +``1.6.3`` | ``GCCcore/7.3.0`` +``1.6.3`` | ``iomkl/2018a`` +``1.7.0`` | ``GCCcore/10.2.0`` +``1.7.0`` | ``GCCcore/10.3.0`` +``1.7.0`` | ``GCCcore/11.2.0`` +``1.7.0`` | ``GCCcore/11.3.0`` +``1.7.0`` | ``GCCcore/8.2.0`` +``1.7.0`` | ``GCCcore/9.3.0`` +``1.7.4`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ARAGORN.md b/docs/version-specific/supported-software/a/ARAGORN.md new file mode 100644 index 000000000..0a2c962d1 --- /dev/null +++ b/docs/version-specific/supported-software/a/ARAGORN.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# ARAGORN + +a program to detect tRNA genes and tmRNA genes in nucleotide sequences + +*homepage*: + +version | toolchain +--------|---------- +``1.2.38`` | ``foss/2016b`` +``1.2.38`` | ``iccifort/2019.5.281`` +``1.2.41`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ARCH.md b/docs/version-specific/supported-software/a/ARCH.md new file mode 100644 index 000000000..8eed7f544 --- /dev/null +++ b/docs/version-specific/supported-software/a/ARCH.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ARCH + +Autoregressive Conditional Heteroskedasticity (ARCH) and other tools for financial econometrics, written in Python (with Cython and/or Numba used to improve performance). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.5.0`` | ``-Python-3.6.4`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ARGoS.md b/docs/version-specific/supported-software/a/ARGoS.md new file mode 100644 index 000000000..9f93523b2 --- /dev/null +++ b/docs/version-specific/supported-software/a/ARGoS.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ARGoS + +A parallel, multi-engine simulator for heterogeneous swarm robotics + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.0-beta53`` | ``-Lua-5.2.4`` | ``foss/2018b`` +``3.0.0-beta59`` | | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ARPACK++.md b/docs/version-specific/supported-software/a/ARPACK++.md new file mode 100644 index 000000000..4e0c1536b --- /dev/null +++ b/docs/version-specific/supported-software/a/ARPACK++.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ARPACK++ + +Arpackpp is a C++ interface to the ARPACK Fortran package, which implements the implicit restarted Arnoldi method for iteratively solving large-scale sparse eigenvalue problems. + +*homepage*: + +version | toolchain +--------|---------- +``2018.03.26`` | ``foss/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ART.md b/docs/version-specific/supported-software/a/ART.md new file mode 100644 index 000000000..f623f06e7 --- /dev/null +++ b/docs/version-specific/supported-software/a/ART.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ART + +ART is a set of simulation tools to generate synthetic next-generation sequencing reads" + +*homepage*: + +version | toolchain +--------|---------- +``2016.06.05`` | ``GCCcore/6.4.0`` +``2016.06.05`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ARTS.md b/docs/version-specific/supported-software/a/ARTS.md new file mode 100644 index 000000000..5ab322847 --- /dev/null +++ b/docs/version-specific/supported-software/a/ARTS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ARTS + +ARTS is a radiative transfer model for the millimeter and sub-millimeter spectral range. There are a number of models mostly developed explicitly for the different sensors. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.64`` | ``gompi/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ARWEN.md b/docs/version-specific/supported-software/a/ARWEN.md new file mode 100644 index 000000000..2441f2602 --- /dev/null +++ b/docs/version-specific/supported-software/a/ARWEN.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ARWEN + +ARWEN, tRNA detection in metazoan mitochondrial sequences + +*homepage*: + +version | toolchain +--------|---------- +``1.2.3`` | ``GCCcore/7.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ASAP.md b/docs/version-specific/supported-software/a/ASAP.md new file mode 100644 index 000000000..3b1d21733 --- /dev/null +++ b/docs/version-specific/supported-software/a/ASAP.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ASAP + +ASAP focuses on fast and fluid image viewing with an easy-to-use interface for making annotations. It consists of two main components: an IO library for reading and writing multi-resolution images and a viewer component for visualizing such images. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``2.1`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ASAP3.md b/docs/version-specific/supported-software/a/ASAP3.md new file mode 100644 index 000000000..67860b3b9 --- /dev/null +++ b/docs/version-specific/supported-software/a/ASAP3.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# ASAP3 + +ASAP is a calculator for doing large-scale classical molecular dynamics within the Campos Atomic Simulation Environment (ASE). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.10.10`` | ``-Python-3.6.6`` | ``foss/2018b`` +``3.10.10`` | ``-Python-3.6.6`` | ``intel/2018b`` +``3.10.10`` | ``-Python-3.6.6`` | ``iomkl/2018b`` +``3.10.7`` | ``-Python-3.5.2`` | ``foss/2016b`` +``3.10.7`` | ``-Python-3.6.2`` | ``foss/2017b`` +``3.10.8`` | ``-Python-3.5.2`` | ``foss/2016b`` +``3.10.8`` | ``-Python-3.6.2`` | ``foss/2017b`` +``3.10.8`` | ``-Python-3.6.3`` | ``foss/2017b`` +``3.11.10`` | ``-Python-3.7.2`` | ``foss/2019a`` +``3.11.10`` | ``-Python-3.7.2`` | ``intel/2019a`` +``3.12.2`` | ``-ASE-3.21.1`` | ``foss/2020b`` +``3.12.2`` | ``-ASE-3.21.1`` | ``intel/2020b`` +``3.12.7`` | ``-ASE-3.21.1`` | ``foss/2020b`` +``3.12.7`` | ``-ASE-3.21.1`` | ``intel/2020b`` +``3.13.2`` | | ``foss/2023a`` +``3.13.3`` | | ``foss/2023a`` +``3.13.3`` | | ``intel/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ASCAT.md b/docs/version-specific/supported-software/a/ASCAT.md new file mode 100644 index 000000000..1f403fd18 --- /dev/null +++ b/docs/version-specific/supported-software/a/ASCAT.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ASCAT + +ASCAT is a method to derive copy number profiles of tumor cells, accounting for normal cell admixture and tumor aneuploidy. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.1.2`` | ``-R-4.2.1`` | ``foss/2022a`` +``3.1.2`` | ``-R-4.2.2`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ASE.md b/docs/version-specific/supported-software/a/ASE.md new file mode 100644 index 000000000..2c31b91c2 --- /dev/null +++ b/docs/version-specific/supported-software/a/ASE.md @@ -0,0 +1,70 @@ +--- +search: + boost: 0.5 +--- +# ASE + +ASE is a python package providing an open source Atomic Simulation Environment in the Python scripting language. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.10.0`` | ``-Python-2.7.11`` | ``intel/2016.02-GCC-4.9`` +``3.11.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``3.13.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``3.13.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``3.15.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``3.15.0`` | ``-Python-3.5.2`` | ``foss/2016b`` +``3.15.0`` | ``-Python-3.6.2`` | ``foss/2017b`` +``3.15.0`` | ``-Python-3.6.3`` | ``foss/2017b`` +``3.15.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``3.16.2`` | ``-Python-3.6.6`` | ``foss/2018b`` +``3.16.2`` | ``-Python-3.6.6`` | ``intel/2018b`` +``3.16.2`` | ``-Python-3.6.4`` | ``iomkl/2018.02`` +``3.16.2`` | ``-Python-3.6.4`` | ``iomkl/2018a`` +``3.16.2`` | ``-Python-3.6.6`` | ``iomkl/2018b`` +``3.17.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``3.17.0`` | ``-Python-3.7.2`` | ``foss/2019a`` +``3.17.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``3.17.0`` | ``-Python-3.7.2`` | ``intel/2019a`` +``3.17.0`` | ``-Python-3.6.6`` | ``iomkl/2018b`` +``3.18.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``3.18.0`` | ``-Python-3.7.2`` | ``foss/2019a`` +``3.18.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``3.18.0`` | ``-Python-3.7.2`` | ``intel/2019a`` +``3.19.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``3.19.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``3.19.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``3.19.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``3.19.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``3.19.0`` | ``-Python-3.7.4`` | ``intel/2019b`` +``3.19.0`` | ``-Python-3.8.2`` | ``intel/2020a`` +``3.20.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``3.20.1`` | | ``foss/2020b`` +``3.20.1`` | | ``fosscuda/2020b`` +``3.20.1`` | ``-Python-3.7.4`` | ``intel/2019b`` +``3.20.1`` | ``-Python-3.8.2`` | ``intel/2020a`` +``3.20.1`` | | ``intel/2020b`` +``3.21.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``3.21.1`` | | ``foss/2020b`` +``3.21.1`` | | ``fosscuda/2020b`` +``3.21.1`` | | ``intel/2020b`` +``3.22.0`` | | ``foss/2020b`` +``3.22.0`` | | ``foss/2021a`` +``3.22.0`` | | ``fosscuda/2020b`` +``3.22.0`` | | ``intel/2020b`` +``3.22.0`` | | ``intel/2021a`` +``3.22.1`` | | ``foss/2021b`` +``3.22.1`` | | ``foss/2022a`` +``3.22.1`` | | ``gfbf/2022b`` +``3.22.1`` | | ``gfbf/2023a`` +``3.22.1`` | | ``gomkl/2021a`` +``3.22.1`` | | ``iimkl/2023a`` +``3.22.1`` | | ``intel/2021b`` +``3.22.1`` | | ``intel/2022a`` +``3.9.1.4567`` | ``-Python-2.7.11`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ASF-SearchAPI.md b/docs/version-specific/supported-software/a/ASF-SearchAPI.md new file mode 100644 index 000000000..86ec59a07 --- /dev/null +++ b/docs/version-specific/supported-software/a/ASF-SearchAPI.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ASF-SearchAPI + +asf_search is a Python module for performing searches of the ASF catalog. In addition, it offers baseline functionality and download support. + +*homepage*: + +version | toolchain +--------|---------- +``6.5.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ASHS.md b/docs/version-specific/supported-software/a/ASHS.md new file mode 100644 index 000000000..23e30bc70 --- /dev/null +++ b/docs/version-specific/supported-software/a/ASHS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ASHS + +Automatic Segmentation of Hippocampal Subfields (ASHS) + +*homepage*: + +version | toolchain +--------|---------- +``rev103_20140612`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ASTRID.md b/docs/version-specific/supported-software/a/ASTRID.md new file mode 100644 index 000000000..c619742b7 --- /dev/null +++ b/docs/version-specific/supported-software/a/ASTRID.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ASTRID + +ASTRID-2 is a method for estimating species trees from gene trees. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.1`` | ``gompi/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ATAT.md b/docs/version-specific/supported-software/a/ATAT.md new file mode 100644 index 000000000..3ff0b6f3b --- /dev/null +++ b/docs/version-specific/supported-software/a/ATAT.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ATAT + +The Alloy-Theoretic Automated Toolkit (ATAT) is a generic name that refers to a collection of alloy theory tools + +*homepage*: + +version | toolchain +--------|---------- +``3.36`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ATK.md b/docs/version-specific/supported-software/a/ATK.md new file mode 100644 index 000000000..de5fc9cfb --- /dev/null +++ b/docs/version-specific/supported-software/a/ATK.md @@ -0,0 +1,40 @@ +--- +search: + boost: 0.5 +--- +# ATK + +ATK provides the set of accessibility interfaces that are implemented by other toolkits and applications. Using the ATK interfaces, accessibility tools have full access to view and control running applications. + +*homepage*: + +version | toolchain +--------|---------- +``2.18.0`` | ``intel/2016a`` +``2.20.0`` | ``foss/2016a`` +``2.20.0`` | ``intel/2016a`` +``2.22.0`` | ``foss/2016b`` +``2.22.0`` | ``intel/2016b`` +``2.26.0`` | ``intel/2017a`` +``2.26.1`` | ``foss/2018b`` +``2.26.1`` | ``intel/2017b`` +``2.27.1`` | ``foss/2017b`` +``2.27.1`` | ``intel/2017b`` +``2.28.1`` | ``foss/2018a`` +``2.28.1`` | ``foss/2018b`` +``2.28.1`` | ``fosscuda/2018b`` +``2.28.1`` | ``intel/2018a`` +``2.32.0`` | ``GCCcore/8.2.0`` +``2.34.1`` | ``GCCcore/8.3.0`` +``2.36.0`` | ``GCCcore/10.2.0`` +``2.36.0`` | ``GCCcore/10.3.0`` +``2.36.0`` | ``GCCcore/11.2.0`` +``2.36.0`` | ``GCCcore/9.3.0`` +``2.38.0`` | ``GCCcore/11.3.0`` +``2.38.0`` | ``GCCcore/12.2.0`` +``2.38.0`` | ``GCCcore/12.3.0`` +``2.38.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ATLAS.md b/docs/version-specific/supported-software/a/ATLAS.md new file mode 100644 index 000000000..2fdb3ccf3 --- /dev/null +++ b/docs/version-specific/supported-software/a/ATLAS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ATLAS + +ATLAS (Automatically Tuned Linear Algebra Software) is the application of the AEOS (Automated Empirical Optimization of Software) paradigm, with the present emphasis on the Basic Linear Algebra Subprograms (BLAS), a widely used, performance-critical, linear algebra kernel library. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.10.2`` | ``-LAPACK-3.6.1`` | ``GCC/5.4.0-2.26`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ATSAS.md b/docs/version-specific/supported-software/a/ATSAS.md new file mode 100644 index 000000000..cdf18b231 --- /dev/null +++ b/docs/version-specific/supported-software/a/ATSAS.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# ATSAS + +ATSAS is a program suite for small-angle scattering data analysis from biological macromolecules. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.5.1-1`` | ``.el6.x86_64`` | ``system`` +``2.5.1-1`` | ``.sl5.x86_64`` | ``system`` +``2.7.1-1`` | ``.el7.x86_64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AUGUSTUS.md b/docs/version-specific/supported-software/a/AUGUSTUS.md new file mode 100644 index 000000000..7f93f28ca --- /dev/null +++ b/docs/version-specific/supported-software/a/AUGUSTUS.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# AUGUSTUS + +AUGUSTUS is a program that predicts genes in eukaryotic genomic sequences + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.2.3`` | ``-Python-2.7.13`` | ``intel/2017a`` +``3.3`` | | ``foss/2018a`` +``3.3.2`` | ``-Python-2.7.14`` | ``foss/2017b`` +``3.3.2`` | ``-Python-2.7.13`` | ``intel/2017a`` +``3.3.2`` | ``-Python-2.7.14`` | ``intel/2017b`` +``3.3.2`` | ``-Python-2.7.15`` | ``intel/2018b`` +``3.3.2`` | | ``intel/2019a`` +``3.3.3`` | | ``foss/2019b`` +``3.3.3`` | | ``intel/2019b`` +``3.4.0`` | | ``foss/2020a`` +``3.4.0`` | | ``foss/2020b`` +``3.4.0`` | | ``foss/2021a`` +``3.4.0`` | | ``foss/2021b`` +``3.5.0`` | | ``foss/2022a`` +``3.5.0`` | | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AUTO-07p.md b/docs/version-specific/supported-software/a/AUTO-07p.md new file mode 100644 index 000000000..3394a9ed4 --- /dev/null +++ b/docs/version-specific/supported-software/a/AUTO-07p.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# AUTO-07p + +AUTO is a publicly available software for continuation and bifurcation problems in ordinary differential equations originally written in 1980 and widely used in the dynamical systems community. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.3`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Abseil.md b/docs/version-specific/supported-software/a/Abseil.md new file mode 100644 index 000000000..6e52a1f22 --- /dev/null +++ b/docs/version-specific/supported-software/a/Abseil.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Abseil + +Abseil is an open-source collection of C++ library code designed to augment the C++ standard library. The Abseil library code is collected from Google's own C++ code base, has been extensively tested and used in production, and is the same code we depend on in our daily coding lives. + +*homepage*: + +version | toolchain +--------|---------- +``20210324.2`` | ``GCCcore/11.2.0`` +``20230125.2`` | ``GCCcore/11.3.0`` +``20230125.2`` | ``GCCcore/12.2.0`` +``20230125.3`` | ``GCCcore/12.3.0`` +``20240116.1`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AdapterRemoval.md b/docs/version-specific/supported-software/a/AdapterRemoval.md new file mode 100644 index 000000000..cfd8b0134 --- /dev/null +++ b/docs/version-specific/supported-software/a/AdapterRemoval.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# AdapterRemoval + +AdapterRemoval searches for and removes remnant adapter sequences from High-Throughput Sequencing (HTS) data and (optionally) trims low quality bases from the 3' end of reads following adapter removal. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.0`` | ``foss/2016b`` +``2.2.2`` | ``foss/2018b`` +``2.3.1`` | ``foss/2018b`` +``2.3.2`` | ``GCC/10.2.0`` +``2.3.2`` | ``GCC/10.3.0`` +``2.3.2`` | ``GCC/11.2.0`` +``2.3.3`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Advisor.md b/docs/version-specific/supported-software/a/Advisor.md new file mode 100644 index 000000000..e9bfd9944 --- /dev/null +++ b/docs/version-specific/supported-software/a/Advisor.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# Advisor + +Vectorization Optimization and Thread Prototyping - Vectorize & thread code or performance “dies” - Easy workflow + data + tips = faster code faster - Prioritize, Prototype & Predict performance gain + +*homepage*: + +version | toolchain +--------|---------- +``2016_update2`` | ``system`` +``2017_update1`` | ``system`` +``2018_update1`` | ``system`` +``2018_update3`` | ``system`` +``2019_update2`` | ``system`` +``2019_update3`` | ``system`` +``2019_update5`` | ``system`` +``2021.2.0`` | ``system`` +``2021.4.0`` | ``system`` +``2022.1.0`` | ``system`` +``2023.0.0`` | ``system`` +``2023.2.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Albacore.md b/docs/version-specific/supported-software/a/Albacore.md new file mode 100644 index 000000000..7062c665b --- /dev/null +++ b/docs/version-specific/supported-software/a/Albacore.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Albacore + +Albacore is a software project that provides an entry point to the Oxford Nanopore basecalling algorithms. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.2`` | ``-Python-3.6.1`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Albumentations.md b/docs/version-specific/supported-software/a/Albumentations.md new file mode 100644 index 000000000..f2f08e208 --- /dev/null +++ b/docs/version-specific/supported-software/a/Albumentations.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Albumentations + +Albumentations is a Python library for fast and flexible image augmentations + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``1.1.0`` | | ``foss/2021b`` +``1.3.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``1.3.0`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Alfred.md b/docs/version-specific/supported-software/a/Alfred.md new file mode 100644 index 000000000..ec393ac30 --- /dev/null +++ b/docs/version-specific/supported-software/a/Alfred.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Alfred + +Alfred is an efficient and versatile command-line application that computes multi-sample quality control metrics in a read-group aware manner. Alfred supports read counting, feature annotation and haplotype-resolved consensus computation using multiple sequence alignments. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.6`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Allinea.md b/docs/version-specific/supported-software/a/Allinea.md new file mode 100644 index 000000000..ed4dfbe95 --- /dev/null +++ b/docs/version-specific/supported-software/a/Allinea.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Allinea + +The Allinea environment is an essential toolkit for developers and computational scientists looking to get results faster. + +*homepage*: + +version | toolchain +--------|---------- +``4.1-32834-Redhat-5.7-x86_64`` | ``system`` +``4.1-32834-Redhat-6.0-x86_64`` | ``system`` +``6.1.1-Ubuntu-14.04-x86_64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Alpha.md b/docs/version-specific/supported-software/a/Alpha.md new file mode 100644 index 000000000..73db1b32c --- /dev/null +++ b/docs/version-specific/supported-software/a/Alpha.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Alpha + +Alpha is a tool designed for detailed comparative study of bacteriophage genomes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20200430`` | ``-Python-2.7.16`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AlphaFold.md b/docs/version-specific/supported-software/a/AlphaFold.md new file mode 100644 index 000000000..d93001eaf --- /dev/null +++ b/docs/version-specific/supported-software/a/AlphaFold.md @@ -0,0 +1,32 @@ +--- +search: + boost: 0.5 +--- +# AlphaFold + +AlphaFold can predict protein structures with atomic accuracy even where no similar structure is known + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.0`` | | ``foss/2020b`` +``2.0.0`` | | ``fosscuda/2020b`` +``2.0.1`` | | ``foss/2020b`` +``2.0.1`` | | ``fosscuda/2020b`` +``2.1.1`` | | ``fosscuda/2020b`` +``2.1.2`` | ``-TensorFlow-2.5.0`` | ``foss/2020b`` +``2.1.2`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``2.1.2`` | | ``foss/2021a`` +``2.1.2`` | ``-TensorFlow-2.5.0`` | ``fosscuda/2020b`` +``2.2.2`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``2.2.2`` | | ``foss/2021a`` +``2.3.0`` | ``-CUDA-11.4.1`` | ``foss/2021b`` +``2.3.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``2.3.1`` | | ``foss/2022a`` +``2.3.4`` | ``-CUDA-11.7.0-ColabFold`` | ``foss/2022a`` +``2.3.4`` | ``-ColabFold`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AlphaPulldown.md b/docs/version-specific/supported-software/a/AlphaPulldown.md new file mode 100644 index 000000000..002de2df0 --- /dev/null +++ b/docs/version-specific/supported-software/a/AlphaPulldown.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# AlphaPulldown + +AlphaPulldown is a Python package that streamlines protein-protein interaction screens and high-throughput modelling of higher-order oligomers using AlphaFold-Multimer + +*homepage*: + +version | toolchain +--------|---------- +``0.30.4`` | ``foss/2020b`` +``0.30.4`` | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Amara.md b/docs/version-specific/supported-software/a/Amara.md new file mode 100644 index 000000000..54003b93f --- /dev/null +++ b/docs/version-specific/supported-software/a/Amara.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Amara + +Library for XML processing in Python, designed to balance the native idioms of Python with the native character of XML. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.0.2`` | ``-Python-2.7.15`` | ``foss/2019a`` +``1.2.0.2`` | ``-Python-2.7.15`` | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Amber.md b/docs/version-specific/supported-software/a/Amber.md new file mode 100644 index 000000000..b4368bc3d --- /dev/null +++ b/docs/version-specific/supported-software/a/Amber.md @@ -0,0 +1,40 @@ +--- +search: + boost: 0.5 +--- +# Amber + +Amber (originally Assisted Model Building with Energy Refinement) is software for performing molecular dynamics and structure prediction. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``14`` | ``-AmberTools-15-patchlevel-13-13`` | ``intel/2016a`` +``16`` | ``-AmberTools-17-patchlevel-10-15-Python-2.7.14`` | ``foss/2017b`` +``16`` | ``-AmberTools-17-patchlevel-10-15`` | ``foss/2018b`` +``16`` | ``-AmberTools-17-patchlevel-10-15-Python-2.7.14`` | ``fosscuda/2017b`` +``16`` | ``-AmberTools-17-patchlevel-10-15`` | ``fosscuda/2018b`` +``16`` | ``-AmberTools-17-patchlevel-10-15-Python-2.7.14`` | ``intel/2017b`` +``16`` | ``-AmberTools-17-patchlevel-8-12`` | ``intel/2017b`` +``16`` | ``-AmberTools-17-patchlevel-10-15`` | ``intel/2018b`` +``16`` | ``-AmberTools-17-patchlevel-10-15-Python-2.7.14`` | ``intelcuda/2017b`` +``16`` | ``-AmberTools-16-patchlevel-5-14-serial`` | ``iomkl/2016.07`` +``16`` | ``-AmberTools-16-patchlevel-5-14`` | ``iomkl/2016.07`` +``16`` | ``-AmberTools-16-patchlevel-5-14-CUDA`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``18`` | ``-AmberTools-18-patchlevel-10-8`` | ``foss/2018b`` +``18`` | ``-AmberTools-19-patchlevel-12-17-Python-2.7.16`` | ``foss/2019b`` +``18`` | ``-AmberTools-18-patchlevel-10-8`` | ``fosscuda/2018b`` +``18`` | ``-AmberTools-19-patchlevel-12-17-Python-2.7.16`` | ``fosscuda/2019b`` +``18`` | ``-AmberTools-18-patchlevel-10-8`` | ``intel/2017b`` +``20.11`` | ``-AmberTools-20.15-Python-3.8.2`` | ``foss/2020a`` +``20.11`` | ``-AmberTools-21.3`` | ``foss/2020b`` +``20.11`` | ``-AmberTools-20.15-Python-3.8.2`` | ``fosscuda/2020a`` +``20.11`` | ``-AmberTools-21.3`` | ``fosscuda/2020b`` +``22.0`` | ``-AmberTools-22.3-CUDA-11.4.1`` | ``foss/2021b`` +``22.0`` | ``-AmberTools-22.3`` | ``foss/2021b`` +``22.4`` | ``-AmberTools-22.5-CUDA-11.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AmberMini.md b/docs/version-specific/supported-software/a/AmberMini.md new file mode 100644 index 000000000..4cae084a1 --- /dev/null +++ b/docs/version-specific/supported-software/a/AmberMini.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# AmberMini + +A stripped-down set of just antechamber, sqm, and tleap. + +*homepage*: + +version | toolchain +--------|---------- +``16.16.0`` | ``intel/2017b`` +``16.16.0`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AmberTools.md b/docs/version-specific/supported-software/a/AmberTools.md new file mode 100644 index 000000000..c44e5deca --- /dev/null +++ b/docs/version-specific/supported-software/a/AmberTools.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# AmberTools + +AmberTools consists of several independently developed packages that work well by themselves, and with Amber itself. The suite can also be used to carry out complete molecular dynamics simulations, with either explicit water or generalized Born solvent models. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``17`` | ``-Python-2.7.14`` | ``foss/2018a`` +``17`` | | ``intel/2017b`` +``17`` | | ``intel/2018a`` +``20`` | ``-Python-3.8.2`` | ``intel/2020a`` +``21`` | | ``foss/2021a`` +``21`` | | ``intel/2021b`` +``21.12`` | | ``foss/2021b`` +``22.3`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AmrPlusPlus.md b/docs/version-specific/supported-software/a/AmrPlusPlus.md new file mode 100644 index 000000000..a39e69dd4 --- /dev/null +++ b/docs/version-specific/supported-software/a/AmrPlusPlus.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# AmrPlusPlus + +AmrPlusPlus v2.0 can process the raw data from the sequencer, identify the fragments of DNA, and count them. It also provides a count of the polymorphisms that occur in each DNA fragment with respect to the reference database. + +*homepage*: + +version | toolchain +--------|---------- +``2.0-20200114`` | ``GCC/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Anaconda2.md b/docs/version-specific/supported-software/a/Anaconda2.md new file mode 100644 index 000000000..2d741c1e5 --- /dev/null +++ b/docs/version-specific/supported-software/a/Anaconda2.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# Anaconda2 + +Built to complement the rich, open source Python community, the Anaconda platform provides an enterprise-ready data analytics platform that empowers companies to adopt a modern open data science analytics architecture. + +*homepage*: + +version | toolchain +--------|---------- +``2018.12`` | ``system`` +``2019.03`` | ``system`` +``2019.07`` | ``system`` +``2019.10`` | ``system`` +``4.0.0`` | ``system`` +``4.2.0`` | ``system`` +``4.4.0`` | ``system`` +``5.0.1`` | ``system`` +``5.1.0`` | ``system`` +``5.3.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Anaconda3.md b/docs/version-specific/supported-software/a/Anaconda3.md new file mode 100644 index 000000000..6d971899a --- /dev/null +++ b/docs/version-specific/supported-software/a/Anaconda3.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# Anaconda3 + +Built to complement the rich, open source Python community, the Anaconda platform provides an enterprise-ready data analytics platform that empowers companies to adopt a modern open data science analytics architecture. + +*homepage*: + +version | toolchain +--------|---------- +``2018.12`` | ``system`` +``2019.03`` | ``system`` +``2019.07`` | ``system`` +``2019.10`` | ``system`` +``2020.02`` | ``system`` +``2020.07`` | ``system`` +``2020.11`` | ``system`` +``2021.05`` | ``system`` +``2021.11`` | ``system`` +``2022.05`` | ``system`` +``2022.10`` | ``system`` +``2023.03-1`` | ``system`` +``2023.07-2`` | ``system`` +``2023.09-0`` | ``system`` +``2024.02-1`` | ``system`` +``4.0.0`` | ``system`` +``4.2.0`` | ``system`` +``4.4.0`` | ``system`` +``5.0.1`` | ``system`` +``5.1.0`` | ``system`` +``5.3.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Annif.md b/docs/version-specific/supported-software/a/Annif.md new file mode 100644 index 000000000..06a64c749 --- /dev/null +++ b/docs/version-specific/supported-software/a/Annif.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Annif + +Annif is a multi-algorithm automated subject indexing tool for libraries, archives and museums. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.40.0`` | ``-Python-3.7.2`` | ``foss/2019a`` +``0.40.0`` | ``-Python-3.7.2`` | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Annocript.md b/docs/version-specific/supported-software/a/Annocript.md new file mode 100644 index 000000000..4e03a9184 --- /dev/null +++ b/docs/version-specific/supported-software/a/Annocript.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Annocript + +Annocript is a pipeline for the annotation of de-novo generated transcriptomes. It executes blast analysis with UniProt, NCBI Conserved Domain Database and Nucleotide division adding also annotations from Gene Ontology, the Enzyme Commission and UniPathways. Annocript also gives information about the longest ORF and the non-coding potential using external software. Annocript is also capable to identify putative long non-coding RNAs by using an heuristic based on homology and sequence features. + +*homepage*: + +version | toolchain +--------|---------- +``2.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AptaSUITE.md b/docs/version-specific/supported-software/a/AptaSUITE.md new file mode 100644 index 000000000..99198eafe --- /dev/null +++ b/docs/version-specific/supported-software/a/AptaSUITE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# AptaSUITE + +A full-featured bioinformatics software collection for the comprehensive analysis of aptamers in HT-SELEX experiments + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.9.4`` | ``-Java-11`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Arb.md b/docs/version-specific/supported-software/a/Arb.md new file mode 100644 index 000000000..251f0ac17 --- /dev/null +++ b/docs/version-specific/supported-software/a/Arb.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# Arb + +Arb is a C library for arbitrary-precision interval arithmetic. It has full support for both real and complex numbers. The library is thread-safe, portable, and extensively tested. + +*homepage*: + +version | toolchain +--------|---------- +``2.16.0`` | ``GCC/7.3.0-2.30`` +``2.16.0`` | ``GCC/8.2.0-2.31.1`` +``2.16.0`` | ``iccifort/2018.3.222-GCC-7.3.0-2.30`` +``2.17.0`` | ``GCC/8.3.0`` +``2.19.0`` | ``GCC/10.3.0`` +``2.22.1`` | ``foss/2021b`` +``2.23.0`` | ``gfbf/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Arcade-Learning-Environment.md b/docs/version-specific/supported-software/a/Arcade-Learning-Environment.md new file mode 100644 index 000000000..6e9c79da1 --- /dev/null +++ b/docs/version-specific/supported-software/a/Arcade-Learning-Environment.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Arcade-Learning-Environment + +The Arcade Learning Environment (ALE) is a simple framework that allows researchers and hobbyists to develop AI agents for Atari 2600 games. It is built on top of the Atari 2600 emulator Stella and separates the details of emulation from agent design. This video depicts over 50 games currently supported in the ALE. + +*homepage*: + +version | toolchain +--------|---------- +``0.7.3`` | ``foss/2021b`` +``0.8.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ArchR.md b/docs/version-specific/supported-software/a/ArchR.md new file mode 100644 index 000000000..f181d9818 --- /dev/null +++ b/docs/version-specific/supported-software/a/ArchR.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# ArchR + +ArchR is a full-featured R package for processing and analyzing single-cell ATAC-seq data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.1`` | ``-R-4.1.2`` | ``foss/2021b`` +``1.0.2`` | ``-R-4.2.2`` | ``foss/2022b`` +``1.0.2`` | ``-R-4.3.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Archive-Zip.md b/docs/version-specific/supported-software/a/Archive-Zip.md new file mode 100644 index 000000000..7d289e4ee --- /dev/null +++ b/docs/version-specific/supported-software/a/Archive-Zip.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Archive-Zip + +Provide an interface to ZIP archive files. + +*homepage*: + +version | toolchain +--------|---------- +``1.68`` | ``GCCcore/10.2.0`` +``1.68`` | ``GCCcore/10.3.0`` +``1.68`` | ``GCCcore/11.2.0`` +``1.68`` | ``GCCcore/11.3.0`` +``1.68`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AreTomo2.md b/docs/version-specific/supported-software/a/AreTomo2.md new file mode 100644 index 000000000..ec4ae7301 --- /dev/null +++ b/docs/version-specific/supported-software/a/AreTomo2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# AreTomo2 + +AreTomo2, a multi-GPU accelerated software package that fully automates motion- corrected marker-free tomographic alignment and reconstruction, now includes robust GPU-accelerated CTF (Contrast Transfer Function) estimation in a single package. AreTomo2 is part of our endeavor to build a fully-automated high- throughput processing pipeline that enables real-time reconstruction of tomograms in parallel with tomographic data collection. It strives to be fast and accurate, as well as provides for easy integration into subtomogram processing workflows by generating IMod compatible files containing alignment and CTF parameters needed to bootstrap subtomogram averaging. AreTomo2 can also be used for on-the-fly reconstruction of tomograms and CTF estimation in parallel with tilt series collection, enabling real-time assessment of sample quality and adjustment of collection parameters + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.0`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Arlequin.md b/docs/version-specific/supported-software/a/Arlequin.md new file mode 100644 index 000000000..4b5b3e652 --- /dev/null +++ b/docs/version-specific/supported-software/a/Arlequin.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Arlequin + +Arlequin: An Integrated Software for Population Genetics Data Analysis + +*homepage*: + +version | toolchain +--------|---------- +``3.5.2.2`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Armadillo.md b/docs/version-specific/supported-software/a/Armadillo.md new file mode 100644 index 000000000..d8002012b --- /dev/null +++ b/docs/version-specific/supported-software/a/Armadillo.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# Armadillo + +Armadillo is an open-source C++ linear algebra library (matrix maths) aiming towards a good balance between speed and ease of use. Integer, floating point and complex numbers are supported, as well as a subset of trigonometric and statistics functions. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``10.5.3`` | | ``foss/2020b`` +``10.7.5`` | | ``foss/2021a`` +``11.4.3`` | | ``foss/2022a`` +``11.4.3`` | | ``foss/2022b`` +``12.6.2`` | | ``foss/2023a`` +``12.8.0`` | | ``foss/2023b`` +``7.600.2`` | ``-Python-2.7.12`` | ``foss/2016b`` +``7.800.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``7.950.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``8.300.1`` | | ``foss/2017b`` +``8.300.1`` | | ``intel/2017b`` +``8.400.0`` | | ``foss/2018a`` +``9.600.5`` | | ``foss/2018b`` +``9.700.2`` | | ``foss/2019a`` +``9.880.1`` | | ``foss/2020a`` +``9.900.1`` | | ``foss/2019b`` +``9.900.1`` | | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ArrayFire.md b/docs/version-specific/supported-software/a/ArrayFire.md new file mode 100644 index 000000000..8a231136b --- /dev/null +++ b/docs/version-specific/supported-software/a/ArrayFire.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ArrayFire + +ArrayFire is a general-purpose library that simplifies the process of developing software that targets parallel and massively-parallel architectures including CPUs, GPUs, and other hardware acceleration devices. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.6.4`` | ``-CUDA-9.2.88`` | ``foss/2018b`` +``3.6.4`` | | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Arriba.md b/docs/version-specific/supported-software/a/Arriba.md new file mode 100644 index 000000000..e7aceb36c --- /dev/null +++ b/docs/version-specific/supported-software/a/Arriba.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# Arriba + +Arriba is a command-line tool for the detection of gene fusions from RNA-Seq data. It was developed for the use in a clinical research setting. Therefore, short runtimes and high sensitivity were important design criteria. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``foss/2018b`` +``2.1.0`` | ``GCC/10.2.0`` +``2.1.0`` | ``GCC/10.3.0`` +``2.2.1`` | ``GCC/11.2.0`` +``2.3.0`` | ``GCC/11.2.0`` +``2.4.0`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Arrow.md b/docs/version-specific/supported-software/a/Arrow.md new file mode 100644 index 000000000..cf7d79faa --- /dev/null +++ b/docs/version-specific/supported-software/a/Arrow.md @@ -0,0 +1,36 @@ +--- +search: + boost: 0.5 +--- +# Arrow + +Apache Arrow (incl. PyArrow Python bindings), a cross-language development platform for in-memory data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.12.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``0.12.0`` | ``-Python-2.7.15`` | ``intel/2018b`` +``0.12.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``0.16.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.16.0`` | ``-Python-3.7.4`` | ``intel/2019b`` +``0.17.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.17.1`` | | ``foss/2020b`` +``0.17.1`` | | ``fosscuda/2020b`` +``0.17.1`` | ``-Python-3.8.2`` | ``intel/2020a`` +``0.17.1`` | | ``intel/2020b`` +``0.7.1`` | ``-Python-3.6.3`` | ``intel/2017b`` +``11.0.0`` | | ``gfbf/2022b`` +``14.0.1`` | | ``gfbf/2023a`` +``6.0.0`` | | ``foss/2021a`` +``6.0.0`` | | ``foss/2021b`` +``6.0.1`` | | ``foss/2021a`` +``8.0.0`` | | ``foss/2021a`` +``8.0.0`` | | ``foss/2021b`` +``8.0.0`` | | ``foss/2022.05`` +``8.0.0`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Artemis.md b/docs/version-specific/supported-software/a/Artemis.md new file mode 100644 index 000000000..4cb2fd623 --- /dev/null +++ b/docs/version-specific/supported-software/a/Artemis.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Artemis + +The Artemis Software is a set of software tools for genome browsing and annotation. It includes: Artemis, Artemis Comparison Tool (ACT), BamView and DNAPlotter. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``18.0.2`` | ``-Java-11`` | ``system`` +``18.0.3`` | ``-Java-11`` | ``system`` +``18.2.0`` | ``-Java-11`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ArviZ.md b/docs/version-specific/supported-software/a/ArviZ.md new file mode 100644 index 000000000..f9bb848fa --- /dev/null +++ b/docs/version-specific/supported-software/a/ArviZ.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# ArviZ + +Exploratory analysis of Bayesian models with Python + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.11.1`` | | ``intel/2020b`` +``0.11.4`` | | ``foss/2021b`` +``0.11.4`` | | ``intel/2021b`` +``0.12.1`` | | ``foss/2021a`` +``0.12.1`` | | ``foss/2022a`` +``0.12.1`` | | ``intel/2022a`` +``0.16.1`` | | ``foss/2023a`` +``0.7.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.7.0`` | ``-Python-3.7.4`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Aspera-CLI.md b/docs/version-specific/supported-software/a/Aspera-CLI.md new file mode 100644 index 000000000..8bf1ab3ab --- /dev/null +++ b/docs/version-specific/supported-software/a/Aspera-CLI.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Aspera-CLI + +IBM Aspera Command-Line Interface (the Aspera CLI) is a collection of Aspera tools for performing high-speed, secure data transfers from the command line. The Aspera CLI is for users and organizations who want to automate their transfer workflows. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.7.2`` | ``.354.010c3b8`` | ``system`` +``3.9.0`` | ``.1326.6985b21`` | ``system`` +``3.9.6`` | ``.1467.159c5b1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Aspera-Connect.md b/docs/version-specific/supported-software/a/Aspera-Connect.md new file mode 100644 index 000000000..1cd1afdd8 --- /dev/null +++ b/docs/version-specific/supported-software/a/Aspera-Connect.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Aspera-Connect + +Connect is an install-on-demand Web browser plug-in that facilitates high-speed uploads and downloads with an Aspera transfer server. + +*homepage*: + +version | toolchain +--------|---------- +``3.6.1`` | ``system`` +``3.9.6`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Assimulo.md b/docs/version-specific/supported-software/a/Assimulo.md new file mode 100644 index 000000000..f4f2b589a --- /dev/null +++ b/docs/version-specific/supported-software/a/Assimulo.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Assimulo + +Assimulo is a simulation package for solving ordinary differential equations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.9`` | ``-Python-2.7.15`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AtomPAW.md b/docs/version-specific/supported-software/a/AtomPAW.md new file mode 100644 index 000000000..1cca5335e --- /dev/null +++ b/docs/version-specific/supported-software/a/AtomPAW.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# AtomPAW + +AtomPAW is a Projector-Augmented Wave Dataset Generator that can be used both as a standalone program and a library. + +*homepage*: + +version | toolchain +--------|---------- +``4.1.0.5`` | ``intel/2018b`` +``4.1.0.6`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Austin.md b/docs/version-specific/supported-software/a/Austin.md new file mode 100644 index 000000000..6697b378f --- /dev/null +++ b/docs/version-specific/supported-software/a/Austin.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Austin + +Austin is a Python frame stack sampler for CPython written in pure C. + +*homepage*: + +version | toolchain +--------|---------- +``3.2.0`` | ``GCCcore/11.2.0`` +``3.2.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AutoDock-GPU.md b/docs/version-specific/supported-software/a/AutoDock-GPU.md new file mode 100644 index 000000000..5ae1191e1 --- /dev/null +++ b/docs/version-specific/supported-software/a/AutoDock-GPU.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# AutoDock-GPU + +OpenCL and Cuda accelerated version of AutoDock. It leverages its embarrasingly parallelizable LGA by processing ligand-receptor poses in parallel over multiple compute units. AutoDock is a suite of automated docking tools. It is designed to predict how small molecules, such as substrates or drug candidates, bind to a receptor of known 3D structure. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5.3`` | ``-CUDA-11.3.1`` | ``GCC/10.3.0`` +``1.5.3`` | ``-CUDA-11.7.0`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AutoDock-Vina.md b/docs/version-specific/supported-software/a/AutoDock-Vina.md new file mode 100644 index 000000000..40086aae1 --- /dev/null +++ b/docs/version-specific/supported-software/a/AutoDock-Vina.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# AutoDock-Vina + +AutoDock Vina is an open-source program for doing molecular docking. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.2`` | ``-linux_x86`` | ``system`` +``1.2.3`` | | ``foss/2021a`` +``1.2.3`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AutoDock.md b/docs/version-specific/supported-software/a/AutoDock.md new file mode 100644 index 000000000..140a8319e --- /dev/null +++ b/docs/version-specific/supported-software/a/AutoDock.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# AutoDock + +AutoDock is a suite of automated docking tools. It is designed to predict how small molecules, such as substrates or drug candidates, bind to a receptor of known 3D structure. + +*homepage*: + +version | toolchain +--------|---------- +``4.2.5.1`` | ``GCC/5.2.0`` +``4.2.6`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AutoDockSuite.md b/docs/version-specific/supported-software/a/AutoDockSuite.md new file mode 100644 index 000000000..fd696174e --- /dev/null +++ b/docs/version-specific/supported-software/a/AutoDockSuite.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# AutoDockSuite + +AutoDock is a suite of automated docking tools. It is designed to predict how small molecules, such as substrates or drug candidates, bind to a receptor of known 3D structure. + +*homepage*: + +version | toolchain +--------|---------- +``4.2.6`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AutoGeneS.md b/docs/version-specific/supported-software/a/AutoGeneS.md new file mode 100644 index 000000000..02ebea341 --- /dev/null +++ b/docs/version-specific/supported-software/a/AutoGeneS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# AutoGeneS + +AutoGeneS automatically extracts informative genes and reveals the cellular heterogeneity of bulk RNA samples. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.4`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AutoGrid.md b/docs/version-specific/supported-software/a/AutoGrid.md new file mode 100644 index 000000000..b0fb2d1c8 --- /dev/null +++ b/docs/version-specific/supported-software/a/AutoGrid.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# AutoGrid + +AutoDock is a suite of automated docking tools. It is designed to predict how small molecules, such as substrates or drug candidates, bind to a receptor of known 3D structure. + +*homepage*: + +version | toolchain +--------|---------- +``4.2.5.1`` | ``GCC/5.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/AutoMap.md b/docs/version-specific/supported-software/a/AutoMap.md new file mode 100644 index 000000000..303fdbf48 --- /dev/null +++ b/docs/version-specific/supported-software/a/AutoMap.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# AutoMap + +Tool to find regions of homozygosity (ROHs) from sequencing data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0`` | ``-20200324`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Autoconf-archive.md b/docs/version-specific/supported-software/a/Autoconf-archive.md new file mode 100644 index 000000000..5f7acd2ef --- /dev/null +++ b/docs/version-specific/supported-software/a/Autoconf-archive.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Autoconf-archive + +The GNU Autoconf Archive is a collection of more than 500 macros for GNU Autoconf that have been contributed as free software by friendly supporters of the cause from all over the Internet. Every single one of those macros can be re-used without imposing any restrictions whatsoever on the licensing of the generated configure script. In particular, it is possible to use all those macros in configure scripts that are meant for non-free software. This policy is unusual for a Free Software Foundation project. The FSF firmly believes that software ought to be free, and software licenses like the GPL are specifically designed to ensure that derivative work based on free software must be free as well. In case of Autoconf, however, an exception has been made, because Autoconf is at such a pivotal position in the software development tool chain that the benefits from having this tool available as widely as possible outweigh the disadvantage that some authors may choose to use it, too, for proprietary software. + +*homepage*: + +version | toolchain +--------|---------- +``2019.01.06`` | ``GCC/8.2.0-2.31.1`` +``2021.02.19`` | ``GCCcore/10.2.0`` +``2023.02.20`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Autoconf.md b/docs/version-specific/supported-software/a/Autoconf.md new file mode 100644 index 000000000..79e6a3b9b --- /dev/null +++ b/docs/version-specific/supported-software/a/Autoconf.md @@ -0,0 +1,62 @@ +--- +search: + boost: 0.5 +--- +# Autoconf + +Autoconf is an extensible package of M4 macros that produce shell scripts to automatically configure software source code packages. These scripts can adapt the packages to many kinds of UNIX-like systems without manual user intervention. Autoconf creates a configuration script for a package from a template file that lists the operating system features that the package can use, in the form of M4 macro calls. + +*homepage*: + +version | toolchain +--------|---------- +``2.68`` | ``foss/2016b`` +``2.69`` | ``GCC/4.8.2`` +``2.69`` | ``GCC/4.8.4`` +``2.69`` | ``GCC/4.9.2`` +``2.69`` | ``GCC/4.9.3-2.25`` +``2.69`` | ``GCC/4.9.3`` +``2.69`` | ``GCC/5.2.0`` +``2.69`` | ``GCC/5.4.0-2.26`` +``2.69`` | ``GCCcore/10.2.0`` +``2.69`` | ``GCCcore/4.9.2`` +``2.69`` | ``GCCcore/4.9.3`` +``2.69`` | ``GCCcore/5.3.0`` +``2.69`` | ``GCCcore/5.4.0`` +``2.69`` | ``GCCcore/6.1.0`` +``2.69`` | ``GCCcore/6.2.0`` +``2.69`` | ``GCCcore/6.3.0`` +``2.69`` | ``GCCcore/6.4.0`` +``2.69`` | ``GCCcore/7.2.0`` +``2.69`` | ``GCCcore/7.3.0`` +``2.69`` | ``GCCcore/8.2.0`` +``2.69`` | ``GCCcore/8.3.0`` +``2.69`` | ``GCCcore/9.2.0`` +``2.69`` | ``GCCcore/9.3.0`` +``2.69`` | ``GNU/4.9.2-2.25`` +``2.69`` | ``GNU/4.9.3-2.25`` +``2.69`` | ``GNU/5.1.0-2.25`` +``2.69`` | ``foss/2016.04`` +``2.69`` | ``foss/2016a`` +``2.69`` | ``foss/2016b`` +``2.69`` | ``gimkl/2.11.5`` +``2.69`` | ``intel/2016.02-GCC-4.9`` +``2.69`` | ``intel/2016a`` +``2.69`` | ``intel/2016b`` +``2.69`` | ``iomkl/2016.07`` +``2.69`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``2.69`` | ``system`` +``2.71`` | ``FCC/4.5.0`` +``2.71`` | ``GCCcore/10.3.0`` +``2.71`` | ``GCCcore/11.2.0`` +``2.71`` | ``GCCcore/11.3.0`` +``2.71`` | ``GCCcore/12.2.0`` +``2.71`` | ``GCCcore/12.3.0`` +``2.71`` | ``GCCcore/13.1.0`` +``2.71`` | ``GCCcore/13.2.0`` +``2.71`` | ``system`` +``2.72`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Automake.md b/docs/version-specific/supported-software/a/Automake.md new file mode 100644 index 000000000..94ce4cfa1 --- /dev/null +++ b/docs/version-specific/supported-software/a/Automake.md @@ -0,0 +1,67 @@ +--- +search: + boost: 0.5 +--- +# Automake + +Automake: GNU Standards-compliant Makefile generator + +*homepage*: + +version | toolchain +--------|---------- +``1.11.3`` | ``foss/2016b`` +``1.14`` | ``GCC/4.8.2`` +``1.14`` | ``intel/2016a`` +``1.14.1`` | ``GCC/4.8.2`` +``1.15`` | ``GCC/4.8.4`` +``1.15`` | ``GCC/4.9.2`` +``1.15`` | ``GCC/4.9.3-2.25`` +``1.15`` | ``GCC/4.9.3`` +``1.15`` | ``GCC/5.2.0`` +``1.15`` | ``GCC/5.4.0-2.26`` +``1.15`` | ``GCCcore/4.9.2`` +``1.15`` | ``GCCcore/4.9.3`` +``1.15`` | ``GCCcore/5.3.0`` +``1.15`` | ``GCCcore/5.4.0`` +``1.15`` | ``GCCcore/6.1.0`` +``1.15`` | ``GCCcore/6.2.0`` +``1.15`` | ``GCCcore/6.3.0`` +``1.15`` | ``GNU/4.9.2-2.25`` +``1.15`` | ``GNU/4.9.3-2.25`` +``1.15`` | ``GNU/5.1.0-2.25`` +``1.15`` | ``foss/2016.04`` +``1.15`` | ``foss/2016a`` +``1.15`` | ``foss/2016b`` +``1.15`` | ``gimkl/2.11.5`` +``1.15`` | ``intel/2016.02-GCC-4.9`` +``1.15`` | ``intel/2016a`` +``1.15`` | ``intel/2016b`` +``1.15`` | ``iomkl/2016.07`` +``1.15`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``1.15.1`` | ``GCCcore/6.4.0`` +``1.15.1`` | ``GCCcore/7.2.0`` +``1.15.1`` | ``GCCcore/7.3.0`` +``1.15.1`` | ``GCCcore/8.3.0`` +``1.15`` | ``system`` +``1.16.1`` | ``GCCcore/6.4.0`` +``1.16.1`` | ``GCCcore/7.3.0`` +``1.16.1`` | ``GCCcore/8.2.0`` +``1.16.1`` | ``GCCcore/8.3.0`` +``1.16.1`` | ``GCCcore/9.2.0`` +``1.16.1`` | ``GCCcore/9.3.0`` +``1.16.2`` | ``GCCcore/10.2.0`` +``1.16.3`` | ``FCC/4.5.0`` +``1.16.3`` | ``GCCcore/10.3.0`` +``1.16.4`` | ``GCCcore/11.2.0`` +``1.16.5`` | ``GCCcore/11.3.0`` +``1.16.5`` | ``GCCcore/12.2.0`` +``1.16.5`` | ``GCCcore/12.3.0`` +``1.16.5`` | ``GCCcore/13.1.0`` +``1.16.5`` | ``GCCcore/13.2.0`` +``1.16.5`` | ``GCCcore/13.3.0`` +``1.16.5`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Autotools.md b/docs/version-specific/supported-software/a/Autotools.md new file mode 100644 index 000000000..fd7a47d7f --- /dev/null +++ b/docs/version-specific/supported-software/a/Autotools.md @@ -0,0 +1,62 @@ +--- +search: + boost: 0.5 +--- +# Autotools + +This bundle collect the standard GNU build tools: Autoconf, Automake and libtool + +*homepage*: + +version | toolchain +--------|---------- +``20150119`` | ``GCC/4.9.2`` +``20150215`` | ``GCC/4.8.4`` +``20150215`` | ``GCC/4.9.2`` +``20150215`` | ``GCC/4.9.3-2.25`` +``20150215`` | ``GCC/4.9.3`` +``20150215`` | ``GCC/5.2.0`` +``20150215`` | ``GCC/5.4.0-2.26`` +``20150215`` | ``GCCcore/4.9.2`` +``20150215`` | ``GCCcore/4.9.3`` +``20150215`` | ``GCCcore/5.3.0`` +``20150215`` | ``GCCcore/5.4.0`` +``20150215`` | ``GCCcore/6.1.0`` +``20150215`` | ``GCCcore/6.2.0`` +``20150215`` | ``GCCcore/6.3.0`` +``20150215`` | ``GNU/4.9.2-2.25`` +``20150215`` | ``GNU/4.9.3-2.25`` +``20150215`` | ``GNU/5.1.0-2.25`` +``20150215`` | ``foss/2016.04`` +``20150215`` | ``foss/2016a`` +``20150215`` | ``foss/2016b`` +``20150215`` | ``gimkl/2.11.5`` +``20150215`` | ``gimkl/2017a`` +``20150215`` | ``intel/2016.02-GCC-4.9`` +``20150215`` | ``intel/2016a`` +``20150215`` | ``intel/2016b`` +``20150215`` | ``iomkl/2016.07`` +``20150215`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``20150215`` | ``system`` +``20170619`` | ``GCCcore/6.4.0`` +``20170619`` | ``GCCcore/7.2.0`` +``20180311`` | ``GCCcore/7.3.0`` +``20180311`` | ``GCCcore/8.2.0`` +``20180311`` | ``GCCcore/8.3.0`` +``20180311`` | ``GCCcore/9.2.0`` +``20180311`` | ``GCCcore/9.3.0`` +``20200321`` | ``GCCcore/10.2.0`` +``20210128`` | ``FCC/4.5.0`` +``20210128`` | ``GCCcore/10.3.0`` +``20210726`` | ``GCCcore/11.2.0`` +``20220317`` | ``GCCcore/11.3.0`` +``20220317`` | ``GCCcore/12.2.0`` +``20220317`` | ``GCCcore/12.3.0`` +``20220317`` | ``GCCcore/13.1.0`` +``20220317`` | ``GCCcore/13.2.0`` +``20220317`` | ``system`` +``20231222`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Avogadro2.md b/docs/version-specific/supported-software/a/Avogadro2.md new file mode 100644 index 000000000..79c9d754e --- /dev/null +++ b/docs/version-specific/supported-software/a/Avogadro2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Avogadro2 + +Avogadro is an advanced molecule editor and visualizer designed for cross-platform use in computational chemistry, molecular modeling, bioinformatics, materials science, and related areas. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.97.0`` | ``-linux-x86_64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/Ax.md b/docs/version-specific/supported-software/a/Ax.md new file mode 100644 index 000000000..e86801fd7 --- /dev/null +++ b/docs/version-specific/supported-software/a/Ax.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Ax + +Ax is an accessible, general-purpose platform for understanding, managing, deploying, and automating adaptive experiments. Adaptive experimentation is the machine-learning guided process of iteratively exploring a (possibly infinite) parameter space in order to identify optimal configurations in a resource-efficient manner. Ax currently supports Bayesian optimization and bandit optimization as exploration strategies. Bayesian optimization in Ax is powered by BoTorch, a modern library for Bayesian optimization research built on PyTorch. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.3`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/aNCI.md b/docs/version-specific/supported-software/a/aNCI.md new file mode 100644 index 000000000..477be1780 --- /dev/null +++ b/docs/version-specific/supported-software/a/aNCI.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# aNCI + +Non-covalent interaction (NCI) for MD trajectories + +*homepage*: + +version | toolchain +--------|---------- +``2.0`` | ``iccifort/2019.5.281`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/abTEM.md b/docs/version-specific/supported-software/a/abTEM.md new file mode 100644 index 000000000..cd14aa0b4 --- /dev/null +++ b/docs/version-specific/supported-software/a/abTEM.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# abTEM + +abTEM provides a Python API for running simulations of Transmission Electron Microscopy images. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.0b24`` | ``-ASE-3.22.0`` | ``fosscuda/2020b`` +``1.0.0b26`` | ``-ASE-3.22.0`` | ``foss/2020b`` +``1.0.0b26`` | ``-ASE-3.22.0`` | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ack.md b/docs/version-specific/supported-software/a/ack.md new file mode 100644 index 000000000..e8c172e6d --- /dev/null +++ b/docs/version-specific/supported-software/a/ack.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# ack + +ack is a tool like grep, optimized for programmers + +*homepage*: + +version | toolchain +--------|---------- +``2.14`` | ``system`` +``3.4.0`` | ``GCCcore/10.2.0`` +``3.5.0`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ada.md b/docs/version-specific/supported-software/a/ada.md new file mode 100644 index 000000000..33efb77de --- /dev/null +++ b/docs/version-specific/supported-software/a/ada.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ada + +Performs discrete, real, and gentle boost under both exponential and logistic loss on a given data set. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0-5`` | ``-R-3.4.0`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/adjustText.md b/docs/version-specific/supported-software/a/adjustText.md new file mode 100644 index 000000000..ef3ea0d86 --- /dev/null +++ b/docs/version-specific/supported-software/a/adjustText.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# adjustText + +A small library for automatically adjustment of text position in matplotlib plots to minimize overlaps. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7.3`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.7.3`` | | ``foss/2021b`` +``0.7.3`` | | ``foss/2023a`` +``0.7.3`` | ``-Python-3.7.2`` | ``intel/2019a`` +``1.1.1`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/affinity.md b/docs/version-specific/supported-software/a/affinity.md new file mode 100644 index 000000000..99bdc2902 --- /dev/null +++ b/docs/version-specific/supported-software/a/affinity.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# affinity + +A small C++ wrapper for managing Linux CPU sets and CPU affinity. It also includes a tool to report binding, which is useful for testing different binding options + +*homepage*: + +version | toolchain +--------|---------- +``20230524`` | ``foss/2022a`` +``20230524`` | ``intel/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/aiohttp.md b/docs/version-specific/supported-software/a/aiohttp.md new file mode 100644 index 000000000..a28507cd9 --- /dev/null +++ b/docs/version-specific/supported-software/a/aiohttp.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# aiohttp + +" Async http client/server framework + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.5.4`` | ``-Python-3.6.6`` | ``foss/2018b`` +``3.8.1`` | | ``GCCcore/10.3.0`` +``3.8.1`` | | ``GCCcore/11.2.0`` +``3.8.3`` | | ``GCCcore/11.3.0`` +``3.8.5`` | | ``GCCcore/12.2.0`` +``3.8.5`` | | ``GCCcore/12.3.0`` +``3.9.5`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/alevin-fry.md b/docs/version-specific/supported-software/a/alevin-fry.md new file mode 100644 index 000000000..0c7f22699 --- /dev/null +++ b/docs/version-specific/supported-software/a/alevin-fry.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# alevin-fry + +alevin-fry is an efficient and flexible tool for processing single-cell sequencing data, currently focused on single-cell transcriptomics and feature barcoding. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.3`` | ``GCCcore/11.2.0`` +``0.6.0`` | ``GCCcore/10.3.0`` +``0.9.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/alleleCount.md b/docs/version-specific/supported-software/a/alleleCount.md new file mode 100644 index 000000000..763aaf5a0 --- /dev/null +++ b/docs/version-specific/supported-software/a/alleleCount.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# alleleCount + +The alleleCount package primarily exists to prevent code duplication between some other projects, specifically AscatNGS and Battenberg. As of v4 the perl code wraps the C implementation of allele counting code for BAM/CRAM processing. + +*homepage*: + +version | toolchain +--------|---------- +``4.0.0`` | ``GCCcore/6.4.0`` +``4.2.1`` | ``GCC/11.3.0`` +``4.3.0`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/alleleIntegrator.md b/docs/version-specific/supported-software/a/alleleIntegrator.md new file mode 100644 index 000000000..8f26ac778 --- /dev/null +++ b/docs/version-specific/supported-software/a/alleleIntegrator.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# alleleIntegrator + +R package to generate allele specific counts for scRNA data and use it to identify cancer cells + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8.8`` | ``-R-4.2.1`` | ``foss/2022a`` +``0.8.8`` | ``-R-4.2.2`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/almosthere.md b/docs/version-specific/supported-software/a/almosthere.md new file mode 100644 index 000000000..3b83e5f73 --- /dev/null +++ b/docs/version-specific/supported-software/a/almosthere.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# almosthere + +Progress indicator C library. ATHR is a simple yet powerful progress indicator library that works on Windows, Linux, and macOS. It is non-blocking as the progress update is done via a dedicated, lightweight thread, as to not impair the performance of the calling program. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.1`` | ``GCCcore/7.3.0`` +``1.0.10`` | ``GCCcore/9.3.0`` +``2.0.2`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/alsa-lib.md b/docs/version-specific/supported-software/a/alsa-lib.md new file mode 100644 index 000000000..fff60b407 --- /dev/null +++ b/docs/version-specific/supported-software/a/alsa-lib.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# alsa-lib + +The Advanced Linux Sound Architecture (ALSA) provides audio and MIDI functionality to the Linux operating system. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.4`` | ``GCCcore/9.3.0`` +``1.2.8`` | ``GCCcore/10.2.0`` +``1.2.8`` | ``GCCcore/11.2.0`` +``1.2.8`` | ``GCCcore/11.3.0`` +``1.2.9`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/amask.md b/docs/version-specific/supported-software/a/amask.md new file mode 100644 index 000000000..505829d54 --- /dev/null +++ b/docs/version-specific/supported-software/a/amask.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# amask + +amask is a set of tools to to determine the affinity of MPI processes and OpenMP threads in a parallel environment. + +*homepage*: + +version | toolchain +--------|---------- +``20171106`` | ``foss/2018a`` +``20190404`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/amdahl.md b/docs/version-specific/supported-software/a/amdahl.md new file mode 100644 index 000000000..e7fcae3a0 --- /dev/null +++ b/docs/version-specific/supported-software/a/amdahl.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# amdahl + +This Python module contains a pseudo-application that can be used as a black box to reproduce Amdahl's Law. It does not do real calculations, nor any real communication, so can easily be overloaded. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.1`` | ``gompi/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/amplimap.md b/docs/version-specific/supported-software/a/amplimap.md new file mode 100644 index 000000000..58e04ef9c --- /dev/null +++ b/docs/version-specific/supported-software/a/amplimap.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# amplimap + +amplimap is a command-line tool to automate the processing and analysis of data from targeted next-generation sequencing (NGS) experiments with PCR-based amplicons or capture-based enrichment systems. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.4.16`` | ``-Python-3.6.6`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/anadama2.md b/docs/version-specific/supported-software/a/anadama2.md new file mode 100644 index 000000000..250fcaf0c --- /dev/null +++ b/docs/version-specific/supported-software/a/anadama2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# anadama2 + +AnADAMA2 is the next generation of AnADAMA (Another Automated Data Analysis Management Application). AnADAMA is a tool to create reproducible workflows and execute them efficiently. + +*homepage*: + +version | toolchain +--------|---------- +``0.10.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/andi.md b/docs/version-specific/supported-software/a/andi.md new file mode 100644 index 000000000..bdde585fb --- /dev/null +++ b/docs/version-specific/supported-software/a/andi.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# andi + +This is the andi program for estimating the evolutionary distance between closely related genomes. These distances can be used to rapidly infer phylogenies for big sets of genomes. Because andi does not compute full alignments, it is so efficient that it scales even up to thousands of bacterial genomes. + +*homepage*: + +version | toolchain +--------|---------- +``0.13`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/angsd.md b/docs/version-specific/supported-software/a/angsd.md new file mode 100644 index 000000000..312c4e188 --- /dev/null +++ b/docs/version-specific/supported-software/a/angsd.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# angsd + +Program for analysing NGS data. + +*homepage*: + +version | toolchain +--------|---------- +``0.910`` | ``foss/2016a`` +``0.921`` | ``foss/2018a`` +``0.925`` | ``foss/2018b`` +``0.933`` | ``GCC/8.3.0`` +``0.933`` | ``iccifort/2019.5.281`` +``0.935`` | ``GCC/10.2.0`` +``0.940`` | ``GCC/11.2.0`` +``0.940`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/anndata.md b/docs/version-specific/supported-software/a/anndata.md new file mode 100644 index 000000000..2c6537102 --- /dev/null +++ b/docs/version-specific/supported-software/a/anndata.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# anndata + +anndata is a Python package for handling annotated data matrices in memory and on disk, positioned between pandas and xarray + +*homepage*: + +version | toolchain +--------|---------- +``0.10.5.post1`` | ``foss/2023a`` +``0.8.0`` | ``foss/2022a`` +``0.9.2`` | ``foss/2021a`` +``0.9.2`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/annovar.md b/docs/version-specific/supported-software/a/annovar.md new file mode 100644 index 000000000..130c7cba8 --- /dev/null +++ b/docs/version-specific/supported-software/a/annovar.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# annovar + +ANNOVAR is an efficient software tool to utilize update-to-date information to functionally annotate genetic variants detected from diverse genomes (including human genome hg18, hg19, hg38, as well as mouse, worm, fly, yeast and many others). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2016Feb01`` | ``-Perl-5.22.1`` | ``foss/2016a`` +``20191024`` | ``-Perl-5.28.1`` | ``GCCcore/8.2.0`` +``20200607`` | ``-Perl-5.34.0`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/ant.md b/docs/version-specific/supported-software/a/ant.md new file mode 100644 index 000000000..a2a74b504 --- /dev/null +++ b/docs/version-specific/supported-software/a/ant.md @@ -0,0 +1,46 @@ +--- +search: + boost: 0.5 +--- +# ant + +Apache Ant is a Java library and command-line tool whose mission is to drive processes described in build files as targets and extension points dependent upon each other. The main known usage of Ant is the build of Java applications. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.10.0`` | ``-Java-1.8.0_112`` | ``system`` +``1.10.1`` | ``-Java-1.8.0_121`` | ``system`` +``1.10.1`` | ``-Java-1.8.0_144`` | ``system`` +``1.10.1`` | ``-Java-1.8.0_152`` | ``system`` +``1.10.1`` | ``-Java-1.8.0_162`` | ``system`` +``1.10.1`` | ``-Java-1.8`` | ``system`` +``1.10.11`` | ``-Java-11`` | ``system`` +``1.10.11`` | ``-Java-13`` | ``system`` +``1.10.12`` | ``-Java-11`` | ``system`` +``1.10.12`` | ``-Java-17`` | ``system`` +``1.10.14`` | ``-Java-11`` | ``system`` +``1.10.14`` | ``-Java-21`` | ``system`` +``1.10.5`` | ``-Java-1.8`` | ``system`` +``1.10.6`` | ``-Java-1.8`` | ``system`` +``1.10.7`` | ``-Java-11`` | ``system`` +``1.10.8`` | ``-Java-11`` | ``system`` +``1.10.9`` | ``-Java-11`` | ``system`` +``1.8.4`` | ``-Java-1.7.0_10`` | ``system`` +``1.8.4`` | ``-Java-1.7.0_21`` | ``system`` +``1.9.0`` | ``-Java-1.7.0_15`` | ``system`` +``1.9.0`` | ``-Java-1.7.0_21`` | ``system`` +``1.9.3`` | ``-Java-1.7.0_60`` | ``system`` +``1.9.3`` | ``-Java-1.7.0_79`` | ``system`` +``1.9.6`` | ``-Java-1.7.0_75`` | ``system`` +``1.9.6`` | ``-Java-1.7.0_79`` | ``system`` +``1.9.6`` | ``-Java-1.7.0_80`` | ``system`` +``1.9.6`` | ``-Java-1.8.0_66`` | ``system`` +``1.9.6`` | ``-Java-1.8.0_72`` | ``system`` +``1.9.6`` | ``-Java-1.8.0_77`` | ``system`` +``1.9.7`` | ``-Java-1.8.0_92`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/antiSMASH.md b/docs/version-specific/supported-software/a/antiSMASH.md new file mode 100644 index 000000000..0e142dc3c --- /dev/null +++ b/docs/version-specific/supported-software/a/antiSMASH.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# antiSMASH + +antiSMASH allows the rapid genome-wide identification, annotation and analysis of secondary metabolite biosynthesis gene clusters in bacterial and fungal genomes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.1.2`` | ``-Python-3.7.4`` | ``foss/2019b`` +``5.2.0`` | | ``foss/2020b`` +``6.0.1`` | | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/anvio.md b/docs/version-specific/supported-software/a/anvio.md new file mode 100644 index 000000000..1d946ce0a --- /dev/null +++ b/docs/version-specific/supported-software/a/anvio.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# anvio + +An analysis and visualization platform for 'omics data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``6.1`` | ``-Python-3.7.4`` | ``intel/2019b`` +``8`` | | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/any2fasta.md b/docs/version-specific/supported-software/a/any2fasta.md new file mode 100644 index 000000000..259927646 --- /dev/null +++ b/docs/version-specific/supported-software/a/any2fasta.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# any2fasta + +Convert various sequence formats to FASTA + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.4.2`` | | ``GCCcore/10.2.0`` +``0.4.2`` | | ``GCCcore/10.3.0`` +``0.4.2`` | | ``GCCcore/11.2.0`` +``0.4.2`` | ``-Perl-5.28.1`` | ``GCCcore/8.2.0`` +``0.4.2`` | | ``GCCcore/8.3.0`` +``0.4.2`` | | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/apex.md b/docs/version-specific/supported-software/a/apex.md new file mode 100644 index 000000000..164b280ed --- /dev/null +++ b/docs/version-specific/supported-software/a/apex.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# apex + +A PyTorch Extension: Tools for easy mixed precision and distributed training in Pytorch + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20200325`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``20210420`` | | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/arcasHLA.md b/docs/version-specific/supported-software/a/arcasHLA.md new file mode 100644 index 000000000..2d7716eb3 --- /dev/null +++ b/docs/version-specific/supported-software/a/arcasHLA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# arcasHLA + +arcasHLA performs high resolution genotyping for HLA class I and class II genes from RNA sequencing, supporting both paired and single-end samples. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.0`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/archspec.md b/docs/version-specific/supported-software/a/archspec.md new file mode 100644 index 000000000..57afb896c --- /dev/null +++ b/docs/version-specific/supported-software/a/archspec.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# archspec + +A library for detecting, labeling, and reasoning about microarchitectures + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.0`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``0.1.0`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``0.1.2`` | | ``GCCcore/10.2.0`` +``0.1.2`` | | ``GCCcore/10.3.0`` +``0.1.3`` | | ``GCCcore/11.2.0`` +``0.1.4`` | | ``GCCcore/11.3.0`` +``0.2.0`` | | ``GCCcore/12.2.0`` +``0.2.1`` | | ``GCCcore/12.3.0`` +``0.2.2`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/argtable.md b/docs/version-specific/supported-software/a/argtable.md new file mode 100644 index 000000000..e8679c69b --- /dev/null +++ b/docs/version-specific/supported-software/a/argtable.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# argtable + +Argtable is an ANSI C library for parsing GNU style command line options with a minimum of fuss. + +*homepage*: + +version | toolchain +--------|---------- +``2.13`` | ``GCCcore/10.2.0`` +``2.13`` | ``GCCcore/10.3.0`` +``2.13`` | ``GCCcore/11.2.0`` +``2.13`` | ``GCCcore/8.2.0`` +``2.13`` | ``GCCcore/8.3.0`` +``2.13`` | ``foss/2016b`` +``2.13`` | ``foss/2018b`` +``2.13`` | ``intel/2018a`` +``2.13`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/aria2.md b/docs/version-specific/supported-software/a/aria2.md new file mode 100644 index 000000000..226e4f26c --- /dev/null +++ b/docs/version-specific/supported-software/a/aria2.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# aria2 + +aria2 is a lightweight multi-protocol & multi-source command-line download utility. + +*homepage*: + +version | toolchain +--------|---------- +``1.35.0`` | ``GCCcore/10.3.0`` +``1.36.0`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/arosics.md b/docs/version-specific/supported-software/a/arosics.md new file mode 100644 index 000000000..ee546d293 --- /dev/null +++ b/docs/version-specific/supported-software/a/arosics.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# arosics + +AROSICS is a python package to perform automatic subpixel co-registration of two satellite image datasets based on an image matching approach working in the frequency domain, combined with a multistage workflow for effective detection of false-positives. + +*homepage*: + +version | toolchain +--------|---------- +``1.7.6`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/arpack-ng.md b/docs/version-specific/supported-software/a/arpack-ng.md new file mode 100644 index 000000000..ea0d9302d --- /dev/null +++ b/docs/version-specific/supported-software/a/arpack-ng.md @@ -0,0 +1,41 @@ +--- +search: + boost: 0.5 +--- +# arpack-ng + +ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems. + +*homepage*: + +version | toolchain +--------|---------- +``3.3.0`` | ``foss/2016a`` +``3.3.0`` | ``intel/2016a`` +``3.4.0`` | ``foss/2016b`` +``3.4.0`` | ``foss/2017a`` +``3.4.0`` | ``intel/2016b`` +``3.4.0`` | ``intel/2017a`` +``3.5.0`` | ``foss/2017b`` +``3.5.0`` | ``foss/2018a`` +``3.5.0`` | ``foss/2018b`` +``3.5.0`` | ``intel/2017a`` +``3.5.0`` | ``intel/2017b`` +``3.6.2`` | ``intel/2018a`` +``3.7.0`` | ``foss/2019a`` +``3.7.0`` | ``foss/2019b`` +``3.7.0`` | ``foss/2020a`` +``3.7.0`` | ``intel/2019b`` +``3.7.0`` | ``intel/2020a`` +``3.8.0`` | ``foss/2020b`` +``3.8.0`` | ``foss/2021a`` +``3.8.0`` | ``foss/2021b`` +``3.8.0`` | ``foss/2022a`` +``3.8.0`` | ``foss/2022b`` +``3.9.0`` | ``foss/2023a`` +``3.9.0`` | ``foss/2023b`` +``3.9.1`` | ``foss/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/arrow-R.md b/docs/version-specific/supported-software/a/arrow-R.md new file mode 100644 index 000000000..daf5f8364 --- /dev/null +++ b/docs/version-specific/supported-software/a/arrow-R.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# arrow-R + +R interface to the Apache Arrow C++ library + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.17.1`` | ``-R-4.0.0`` | ``foss/2020a`` +``11.0.0.3`` | ``-R-4.2.2`` | ``foss/2022b`` +``14.0.1`` | ``-R-4.3.2`` | ``foss/2023a`` +``6.0.0.2`` | ``-R-4.1.0`` | ``foss/2021a`` +``6.0.0.2`` | ``-R-4.1.2`` | ``foss/2021b`` +``6.0.0.2`` | ``-R-4.2.0`` | ``foss/2021b`` +``8.0.0`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/artic-ncov2019.md b/docs/version-specific/supported-software/a/artic-ncov2019.md new file mode 100644 index 000000000..2b0a89f04 --- /dev/null +++ b/docs/version-specific/supported-software/a/artic-ncov2019.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# artic-ncov2019 + +Initial implementation of an ARTIC bioinformatics platform for nanopore sequencing of nCoV2019 novel coronavirus. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2020.04.13`` | ``-Python-3.6.6`` | ``foss/2018b`` +``2021.06.24`` | | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/assembly-stats.md b/docs/version-specific/supported-software/a/assembly-stats.md new file mode 100644 index 000000000..5bef3aa87 --- /dev/null +++ b/docs/version-specific/supported-software/a/assembly-stats.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# assembly-stats + +Get assembly statistics from FASTA and FASTQ files. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.1`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/assimp.md b/docs/version-specific/supported-software/a/assimp.md new file mode 100644 index 000000000..ec754c4f5 --- /dev/null +++ b/docs/version-specific/supported-software/a/assimp.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# assimp + +Open Asset Import Library (assimp) is a library to import and export various 3d-model-formats including scene-post-processing to generate missing render data. + +*homepage*: + +version | toolchain +--------|---------- +``5.0.1`` | ``GCCcore/8.3.0`` +``5.2.5`` | ``GCCcore/12.3.0`` +``5.3.1`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/astro-tulips.md b/docs/version-specific/supported-software/a/astro-tulips.md new file mode 100644 index 000000000..054506581 --- /dev/null +++ b/docs/version-specific/supported-software/a/astro-tulips.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# astro-tulips + +tulips creates diagrams of the structure and evolution of stars. It creates plots and movies based on output from the MESA stellar evolution code + +*homepage*: + +version | toolchain +--------|---------- +``1.0.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/astropy.md b/docs/version-specific/supported-software/a/astropy.md new file mode 100644 index 000000000..8a8a10831 --- /dev/null +++ b/docs/version-specific/supported-software/a/astropy.md @@ -0,0 +1,32 @@ +--- +search: + boost: 0.5 +--- +# astropy + +The Astropy Project is a community effort to develop a single core package for Astronomy in Python and foster interoperability between Python astronomy packages. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.12`` | ``-Python-2.7.15`` | ``foss/2018b`` +``2.0.12`` | ``-Python-2.7.15`` | ``intel/2018b`` +``2.0.14`` | | ``foss/2019a`` +``4.0.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``4.0.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``4.0.1`` | ``-Python-3.8.2`` | ``intel/2020a`` +``4.2.1`` | | ``foss/2020b`` +``4.2.1`` | | ``intel/2020b`` +``4.2.1`` | | ``intelcuda/2020b`` +``4.3.1`` | | ``foss/2021a`` +``4.3.1`` | | ``foss/2021b`` +``4.3.1`` | | ``intel/2021a`` +``5.0.4`` | | ``foss/2021a`` +``5.1.1`` | | ``foss/2022a`` +``5.1.1`` | | ``intel/2022a`` +``5.2.2`` | | ``gfbf/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/at-spi2-atk.md b/docs/version-specific/supported-software/a/at-spi2-atk.md new file mode 100644 index 000000000..c76f42189 --- /dev/null +++ b/docs/version-specific/supported-software/a/at-spi2-atk.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# at-spi2-atk + +AT-SPI 2 toolkit bridge + +*homepage*: + +version | toolchain +--------|---------- +``2.26.3`` | ``fosscuda/2018b`` +``2.32.0`` | ``GCCcore/8.2.0`` +``2.34.1`` | ``GCCcore/8.3.0`` +``2.34.2`` | ``GCCcore/9.3.0`` +``2.38.0`` | ``GCCcore/10.2.0`` +``2.38.0`` | ``GCCcore/10.3.0`` +``2.38.0`` | ``GCCcore/11.2.0`` +``2.38.0`` | ``GCCcore/11.3.0`` +``2.38.0`` | ``GCCcore/12.2.0`` +``2.38.0`` | ``GCCcore/12.3.0`` +``2.38.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/at-spi2-core.md b/docs/version-specific/supported-software/a/at-spi2-core.md new file mode 100644 index 000000000..404248f5b --- /dev/null +++ b/docs/version-specific/supported-software/a/at-spi2-core.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# at-spi2-core + +Assistive Technology Service Provider Interface. + +*homepage*: + +version | toolchain +--------|---------- +``2.26.3`` | ``fosscuda/2018b`` +``2.32.0`` | ``GCCcore/8.2.0`` +``2.34.0`` | ``GCCcore/8.3.0`` +``2.36.0`` | ``GCCcore/9.3.0`` +``2.38.0`` | ``GCCcore/10.2.0`` +``2.40.2`` | ``GCCcore/10.3.0`` +``2.40.3`` | ``GCCcore/11.2.0`` +``2.44.1`` | ``GCCcore/11.3.0`` +``2.46.0`` | ``GCCcore/12.2.0`` +``2.49.91`` | ``GCCcore/12.3.0`` +``2.50.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/atomate.md b/docs/version-specific/supported-software/a/atomate.md new file mode 100644 index 000000000..685aa12f4 --- /dev/null +++ b/docs/version-specific/supported-software/a/atomate.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# atomate + +atomate has implementations of FireWorks workflows for Materials Science. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.4.4`` | ``-Python-2.7.13`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/atools.md b/docs/version-specific/supported-software/a/atools.md new file mode 100644 index 000000000..cfb415c01 --- /dev/null +++ b/docs/version-specific/supported-software/a/atools.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# atools + +Tools to make using job arrays a lot more convenient. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4.2`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.4.6`` | ``-Python-2.7.16`` | ``GCCcore/8.3.0`` +``1.4.8`` | ``-Python-2.7.18`` | ``GCCcore/10.3.0`` +``1.4.8`` | ``-Python-2.7.18`` | ``GCCcore/11.2.0`` +``1.5.1`` | | ``GCCcore/11.2.0`` +``1.5.1`` | | ``GCCcore/12.3.0`` +``1.5.1`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/atropos.md b/docs/version-specific/supported-software/a/atropos.md new file mode 100644 index 000000000..13302daba --- /dev/null +++ b/docs/version-specific/supported-software/a/atropos.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# atropos + +Atropos is tool for specific, sensitive, and speedy trimming of NGS reads. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.21`` | ``-Python-3.6.6`` | ``intel/2018b`` +``1.1.32`` | | ``gompi/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/attr.md b/docs/version-specific/supported-software/a/attr.md new file mode 100644 index 000000000..f28ab8710 --- /dev/null +++ b/docs/version-specific/supported-software/a/attr.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# attr + +Commands for Manipulating Filesystem Extended Attributes + +*homepage*: + +version | toolchain +--------|---------- +``2.4.47`` | ``GCCcore/8.2.0`` +``2.4.48`` | ``GCCcore/9.3.0`` +``2.5.1`` | ``GCCcore/10.3.0`` +``2.5.1`` | ``GCCcore/11.2.0`` +``2.5.1`` | ``GCCcore/11.3.0`` +``2.5.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/attrdict.md b/docs/version-specific/supported-software/a/attrdict.md new file mode 100644 index 000000000..46cc1c654 --- /dev/null +++ b/docs/version-specific/supported-software/a/attrdict.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# attrdict + +AttrDict is a Python library that provides mapping objects that allow their elements to be accessed both as keys and as attributes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.1`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/attrdict3.md b/docs/version-specific/supported-software/a/attrdict3.md new file mode 100644 index 000000000..ec1fbf796 --- /dev/null +++ b/docs/version-specific/supported-software/a/attrdict3.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# attrdict3 + +AttrDict is a Python library that provides mapping objects that allow their elements to be accessed both as keys and as attributes. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.2`` | ``GCCcore/11.2.0`` +``2.0.2`` | ``GCCcore/11.3.0`` +``2.0.2`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/augur.md b/docs/version-specific/supported-software/a/augur.md new file mode 100644 index 000000000..47e313616 --- /dev/null +++ b/docs/version-specific/supported-software/a/augur.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# augur + +Pipeline components for real-time phylodynamic analysis + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``7.0.2`` | ``-Python-3.7.4`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/autopep8.md b/docs/version-specific/supported-software/a/autopep8.md new file mode 100644 index 000000000..13053f50f --- /dev/null +++ b/docs/version-specific/supported-software/a/autopep8.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# autopep8 + +A tool that automatically formats Python code to conform to the PEP 8 style guide. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4.4`` | ``-Python-3.6.4`` | ``intel/2018a`` +``2.0.4`` | | ``foss/2022a`` +``2.2.0`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/avro-cpp.md b/docs/version-specific/supported-software/a/avro-cpp.md new file mode 100644 index 000000000..e430c9cb7 --- /dev/null +++ b/docs/version-specific/supported-software/a/avro-cpp.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# avro-cpp + +C++ implementation of Avro data serialization system. + +*homepage*: + +version | toolchain +--------|---------- +``1.11.1`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/awscli.md b/docs/version-specific/supported-software/a/awscli.md new file mode 100644 index 000000000..7c6efe656 --- /dev/null +++ b/docs/version-specific/supported-software/a/awscli.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# awscli + +Universal Command Line Environment for AWS + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.11.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.11.56`` | ``-Python-2.7.12`` | ``foss/2016b`` +``1.16.290`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.17.7`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``1.18.89`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``2.0.55`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``2.11.21`` | | ``GCCcore/11.3.0`` +``2.15.2`` | | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/axel.md b/docs/version-specific/supported-software/a/axel.md new file mode 100644 index 000000000..5568c07b9 --- /dev/null +++ b/docs/version-specific/supported-software/a/axel.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# axel + +Lightweight CLI download accelerator + +*homepage*: + +version | toolchain +--------|---------- +``2.17.9`` | ``GCCcore/8.3.0`` +``2.17.9`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/a/index.md b/docs/version-specific/supported-software/a/index.md new file mode 100644 index 000000000..d324eac13 --- /dev/null +++ b/docs/version-specific/supported-software/a/index.md @@ -0,0 +1,184 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (a) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - *a* - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [ABAQUS](ABAQUS.md) + * [ABINIT](ABINIT.md) + * [ABRA2](ABRA2.md) + * [ABRicate](ABRicate.md) + * [Abseil](Abseil.md) + * [abTEM](abTEM.md) + * [ABySS](ABySS.md) + * [ack](ack.md) + * [ACTC](ACTC.md) + * [ada](ada.md) + * [AdapterRemoval](AdapterRemoval.md) + * [ADDA](ADDA.md) + * [ADF](ADF.md) + * [ADIOS](ADIOS.md) + * [adjustText](adjustText.md) + * [ADMIXTURE](ADMIXTURE.md) + * [ADOL-C](ADOL-C.md) + * [Advisor](Advisor.md) + * [AEDT](AEDT.md) + * [affinity](affinity.md) + * [AFNI](AFNI.md) + * [AGAT](AGAT.md) + * [AGeNT](AGeNT.md) + * [AGFusion](AGFusion.md) + * [AICSImageIO](AICSImageIO.md) + * [AIMAll](AIMAll.md) + * [aiohttp](aiohttp.md) + * [ALADIN](ALADIN.md) + * [ALAMODE](ALAMODE.md) + * [Albacore](Albacore.md) + * [Albumentations](Albumentations.md) + * [alevin-fry](alevin-fry.md) + * [ALFA](ALFA.md) + * [Alfred](Alfred.md) + * [ALL](ALL.md) + * [alleleCount](alleleCount.md) + * [alleleIntegrator](alleleIntegrator.md) + * [Allinea](Allinea.md) + * [ALLPATHS-LG](ALLPATHS-LG.md) + * [almosthere](almosthere.md) + * [Alpha](Alpha.md) + * [AlphaFold](AlphaFold.md) + * [AlphaPulldown](AlphaPulldown.md) + * [ALPS](ALPS.md) + * [alsa-lib](alsa-lib.md) + * [AMAPVox](AMAPVox.md) + * [Amara](Amara.md) + * [amask](amask.md) + * [Amber](Amber.md) + * [AmberMini](AmberMini.md) + * [AmberTools](AmberTools.md) + * [AMD-LibM](AMD-LibM.md) + * [AMD-RNG](AMD-RNG.md) + * [AMD-SecureRNG](AMD-SecureRNG.md) + * [AMD-uProf](AMD-uProf.md) + * [amdahl](amdahl.md) + * [AMGX](AMGX.md) + * [AMICA](AMICA.md) + * [AMOS](AMOS.md) + * [AMPHORA2](AMPHORA2.md) + * [AMPL-MP](AMPL-MP.md) + * [amplimap](amplimap.md) + * [AMPtk](AMPtk.md) + * [AMRFinderPlus](AMRFinderPlus.md) + * [AmrPlusPlus](AmrPlusPlus.md) + * [AMS](AMS.md) + * [Anaconda2](Anaconda2.md) + * [Anaconda3](Anaconda3.md) + * [anadama2](anadama2.md) + * [aNCI](aNCI.md) + * [andi](andi.md) + * [ANGEL](ANGEL.md) + * [angsd](angsd.md) + * [ANIcalculator](ANIcalculator.md) + * [anndata](anndata.md) + * [Annif](Annif.md) + * [Annocript](Annocript.md) + * [annovar](annovar.md) + * [ANSYS](ANSYS.md) + * [ANSYS_CFD](ANSYS_CFD.md) + * [ant](ant.md) + * [ANTIC](ANTIC.md) + * [antiSMASH](antiSMASH.md) + * [ANTLR](ANTLR.md) + * [ANTs](ANTs.md) + * [anvio](anvio.md) + * [any2fasta](any2fasta.md) + * [AOCC](AOCC.md) + * [AOFlagger](AOFlagger.md) + * [AOMP](AOMP.md) + * [APBS](APBS.md) + * [apex](apex.md) + * [APR](APR.md) + * [APR-util](APR-util.md) + * [AptaSUITE](AptaSUITE.md) + * [ARAGORN](ARAGORN.md) + * [Arb](Arb.md) + * [Arcade-Learning-Environment](Arcade-Learning-Environment.md) + * [arcasHLA](arcasHLA.md) + * [ARCH](ARCH.md) + * [Archive-Zip](Archive-Zip.md) + * [ArchR](ArchR.md) + * [archspec](archspec.md) + * [AreTomo2](AreTomo2.md) + * [ARGoS](ARGoS.md) + * [argtable](argtable.md) + * [aria2](aria2.md) + * [Arlequin](Arlequin.md) + * [Armadillo](Armadillo.md) + * [arosics](arosics.md) + * [ARPACK++](ARPACK++.md) + * [arpack-ng](arpack-ng.md) + * [ArrayFire](ArrayFire.md) + * [Arriba](Arriba.md) + * [Arrow](Arrow.md) + * [arrow-R](arrow-R.md) + * [ART](ART.md) + * [Artemis](Artemis.md) + * [artic-ncov2019](artic-ncov2019.md) + * [ARTS](ARTS.md) + * [ArviZ](ArviZ.md) + * [ARWEN](ARWEN.md) + * [ASAP](ASAP.md) + * [ASAP3](ASAP3.md) + * [ASCAT](ASCAT.md) + * [ASE](ASE.md) + * [ASF-SearchAPI](ASF-SearchAPI.md) + * [ASHS](ASHS.md) + * [Aspera-CLI](Aspera-CLI.md) + * [Aspera-Connect](Aspera-Connect.md) + * [assembly-stats](assembly-stats.md) + * [assimp](assimp.md) + * [Assimulo](Assimulo.md) + * [ASTRID](ASTRID.md) + * [astro-tulips](astro-tulips.md) + * [astropy](astropy.md) + * [at-spi2-atk](at-spi2-atk.md) + * [at-spi2-core](at-spi2-core.md) + * [ATAT](ATAT.md) + * [ATK](ATK.md) + * [ATLAS](ATLAS.md) + * [atomate](atomate.md) + * [AtomPAW](AtomPAW.md) + * [atools](atools.md) + * [atropos](atropos.md) + * [ATSAS](ATSAS.md) + * [attr](attr.md) + * [attrdict](attrdict.md) + * [attrdict3](attrdict3.md) + * [augur](augur.md) + * [AUGUSTUS](AUGUSTUS.md) + * [Austin](Austin.md) + * [AUTO-07p](AUTO-07p.md) + * [Autoconf](Autoconf.md) + * [Autoconf-archive](Autoconf-archive.md) + * [AutoDock](AutoDock.md) + * [AutoDock-GPU](AutoDock-GPU.md) + * [AutoDock-Vina](AutoDock-Vina.md) + * [AutoDockSuite](AutoDockSuite.md) + * [AutoGeneS](AutoGeneS.md) + * [AutoGrid](AutoGrid.md) + * [Automake](Automake.md) + * [AutoMap](AutoMap.md) + * [autopep8](autopep8.md) + * [Autotools](Autotools.md) + * [Avogadro2](Avogadro2.md) + * [avro-cpp](avro-cpp.md) + * [awscli](awscli.md) + * [Ax](Ax.md) + * [axel](axel.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - *a* - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BA3-SNPS-autotune.md b/docs/version-specific/supported-software/b/BA3-SNPS-autotune.md new file mode 100644 index 000000000..0db4c34a8 --- /dev/null +++ b/docs/version-specific/supported-software/b/BA3-SNPS-autotune.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BA3-SNPS-autotune + +This program will automatically tune mixing parameters for BA3-SNPs by implementing a binary search algorithm and conducting short exploratory runs of BA3-SNPS. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.2`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BAGEL.md b/docs/version-specific/supported-software/b/BAGEL.md new file mode 100644 index 000000000..440b87e23 --- /dev/null +++ b/docs/version-specific/supported-software/b/BAGEL.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# BAGEL + +BAGEL (Brilliantly Advanced General Electronic-structure Library) is a parallel electronic-structure program. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``intel/2016b`` +``1.2.2`` | ``foss/2021a`` +``1.2.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BAMM.md b/docs/version-specific/supported-software/b/BAMM.md new file mode 100644 index 000000000..5dfa2b468 --- /dev/null +++ b/docs/version-specific/supported-software/b/BAMM.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BAMM + +BAMM is oriented entirely towards detecting and quantifying heterogeneity in evolutionary rates. It uses reversible jump Markov chain Monte Carlo to automatically explore a vast universe of candidate models of lineage diversification and trait evolution. + +*homepage*: + +version | toolchain +--------|---------- +``2.5.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BAMSurgeon.md b/docs/version-specific/supported-software/b/BAMSurgeon.md new file mode 100644 index 000000000..7fce28a42 --- /dev/null +++ b/docs/version-specific/supported-software/b/BAMSurgeon.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BAMSurgeon + +Tools for adding mutations to existing .bam files, used for testing mutation callers + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2`` | ``-Python-2.7.16`` | ``GCC/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BAli-Phy.md b/docs/version-specific/supported-software/b/BAli-Phy.md new file mode 100644 index 000000000..c74e64914 --- /dev/null +++ b/docs/version-specific/supported-software/b/BAli-Phy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BAli-Phy + +BAli-Phy estimates multiple sequence alignments and evolutionary trees from DNA, amino acid, or codon sequences. + +*homepage*: + +version | toolchain +--------|---------- +``3.6.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BBMap.md b/docs/version-specific/supported-software/b/BBMap.md new file mode 100644 index 000000000..a6600a03c --- /dev/null +++ b/docs/version-specific/supported-software/b/BBMap.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# BBMap + +BBMap short read aligner, and other bioinformatic tools. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``36.62`` | ``-Java-1.8.0_112`` | ``intel/2016b`` +``37.93`` | | ``foss/2018a`` +``37.93`` | | ``intel/2018a`` +``38.26`` | | ``foss/2018b`` +``38.50b`` | | ``GCC/8.2.0-2.31.1`` +``38.76`` | | ``GCC/8.2.0-2.31.1`` +``38.79`` | | ``GCC/8.3.0`` +``38.87`` | | ``GCC/8.2.0-2.31.1`` +``38.87`` | | ``iccifort/2020.1.217`` +``38.90`` | | ``GCC/10.2.0`` +``38.90`` | | ``GCC/9.3.0`` +``38.96`` | | ``GCC/10.3.0`` +``38.98`` | | ``GCC/11.2.0`` +``39.01`` | | ``GCC/11.3.0`` +``39.01`` | | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BCALM.md b/docs/version-specific/supported-software/b/BCALM.md new file mode 100644 index 000000000..42016b7d3 --- /dev/null +++ b/docs/version-specific/supported-software/b/BCALM.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BCALM + +de Bruijn graph compaction in low memory + +*homepage*: + +version | toolchain +--------|---------- +``2.2.0`` | ``foss/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BCEL.md b/docs/version-specific/supported-software/b/BCEL.md new file mode 100644 index 000000000..d0c050d7b --- /dev/null +++ b/docs/version-specific/supported-software/b/BCEL.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# BCEL + +The Byte Code Engineering Library (Apache Commons BCEL™) is intended to give users a convenient way to analyze, create, and manipulate (binary) Java class files (those ending with .class). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.2`` | ``-Java-1.8`` | ``system`` +``6.5.0`` | ``-Java-1.8`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BCFtools.md b/docs/version-specific/supported-software/b/BCFtools.md new file mode 100644 index 000000000..7536f64dd --- /dev/null +++ b/docs/version-specific/supported-software/b/BCFtools.md @@ -0,0 +1,39 @@ +--- +search: + boost: 0.5 +--- +# BCFtools + +Samtools is a suite of programs for interacting with high-throughput sequencing data. BCFtools - Reading/writing BCF2/VCF/gVCF files and calling/filtering/summarising SNP and short indel sequence variants + +*homepage*: + +version | toolchain +--------|---------- +``1.10.2`` | ``GCC/8.3.0`` +``1.10.2`` | ``GCC/9.3.0`` +``1.10.2`` | ``iccifort/2019.5.281`` +``1.11`` | ``GCC/10.2.0`` +``1.12`` | ``GCC/10.2.0`` +``1.12`` | ``GCC/10.3.0`` +``1.12`` | ``GCC/9.3.0`` +``1.14`` | ``GCC/11.2.0`` +``1.15.1`` | ``GCC/11.3.0`` +``1.17`` | ``GCC/12.2.0`` +``1.18`` | ``GCC/12.3.0`` +``1.19`` | ``GCC/13.2.0`` +``1.3`` | ``foss/2016a`` +``1.3`` | ``intel/2016a`` +``1.3.1`` | ``foss/2016b`` +``1.6`` | ``foss/2016b`` +``1.6`` | ``foss/2017b`` +``1.6`` | ``intel/2017b`` +``1.8`` | ``GCC/6.4.0-2.28`` +``1.9`` | ``foss/2018a`` +``1.9`` | ``foss/2018b`` +``1.9`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``1.9`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BDBag.md b/docs/version-specific/supported-software/b/BDBag.md new file mode 100644 index 000000000..8bd23ddf0 --- /dev/null +++ b/docs/version-specific/supported-software/b/BDBag.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# BDBag + +The bdbag utilities are a collection of software programs for working with BagIt packages that conform to the Bagit and Bagit/RO profiles. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4.1`` | ``-Python-2.7.14`` | ``intel/2018a`` +``1.4.1`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.6.3`` | | ``intel/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BEDOPS.md b/docs/version-specific/supported-software/b/BEDOPS.md new file mode 100644 index 000000000..011465c60 --- /dev/null +++ b/docs/version-specific/supported-software/b/BEDOPS.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# BEDOPS + +BEDOPS is an open-source command-line toolkit that performs highly efficient and scalable Boolean and other set operations, statistical calculations, archiving, conversion and other management of genomic data of arbitrary scale. + +*homepage*: + +version | toolchain +--------|---------- +``2.4.1`` | ``GCC/4.8.4`` +``2.4.2`` | ``GCC/4.8.2`` +``2.4.20`` | ``system`` +``2.4.26`` | ``system`` +``2.4.30`` | ``foss/2016b`` +``2.4.32`` | ``foss/2018a`` +``2.4.32`` | ``intel/2018a`` +``2.4.35`` | ``foss/2018b`` +``2.4.41`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BEDTools.md b/docs/version-specific/supported-software/b/BEDTools.md new file mode 100644 index 000000000..b72491189 --- /dev/null +++ b/docs/version-specific/supported-software/b/BEDTools.md @@ -0,0 +1,39 @@ +--- +search: + boost: 0.5 +--- +# BEDTools + +The BEDTools utilities allow one to address common genomics tasks such as finding feature overlaps and computing coverage. The utilities are largely based on four widely-used file formats: BED, GFF/GTF, VCF, and SAM/BAM. + +*homepage*: + +version | toolchain +--------|---------- +``2.25.0`` | ``foss/2016a`` +``2.26.0`` | ``GCCcore/6.4.0`` +``2.26.0`` | ``foss/2016a`` +``2.26.0`` | ``intel/2016b`` +``2.26.0`` | ``intel/2017a`` +``2.26.0`` | ``intel/2017b`` +``2.27.1`` | ``GCCcore/6.4.0`` +``2.27.1`` | ``foss/2016b`` +``2.27.1`` | ``foss/2018b`` +``2.27.1`` | ``intel/2017a`` +``2.27.1`` | ``intel/2018a`` +``2.28.0`` | ``GCC/8.2.0-2.31.1`` +``2.28.0`` | ``foss/2018b`` +``2.28.0`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``2.29.2`` | ``GCC/8.3.0`` +``2.29.2`` | ``GCC/9.3.0`` +``2.30.0`` | ``GCC/10.2.0`` +``2.30.0`` | ``GCC/10.3.0`` +``2.30.0`` | ``GCC/11.2.0`` +``2.30.0`` | ``GCC/11.3.0`` +``2.30.0`` | ``GCC/12.2.0`` +``2.30.0`` | ``iccifort/2020.4.304`` +``2.31.0`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BEEF.md b/docs/version-specific/supported-software/b/BEEF.md new file mode 100644 index 000000000..45c41e1e9 --- /dev/null +++ b/docs/version-specific/supported-software/b/BEEF.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# BEEF + +BEEF is a library-based implementation of the Bayesian Error Estimation Functional, suitable for linking against by Fortran- or C-based DFT codes. A description of BEEF can be found at http://dx.doi.org/10.1103/PhysRevB.85.235149. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.1`` | ``iccifort/2019.5.281`` +``0.1.1`` | ``iccifort/2020.4.304`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BFAST.md b/docs/version-specific/supported-software/b/BFAST.md new file mode 100644 index 000000000..95ca2cb95 --- /dev/null +++ b/docs/version-specific/supported-software/b/BFAST.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BFAST + +BFAST facilitates the fast and accurate mapping of short reads to reference sequences. Some advantages of BFAST include: 1) Speed: enables billions of short reads to be mapped quickly. 2) Accuracy: A priori probabilities for mapping reads with defined set of variants. 3) An easy way to measurably tune accuracy at the expense of speed. + +*homepage*: + +version | toolchain +--------|---------- +``0.7.0a`` | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BFC.md b/docs/version-specific/supported-software/b/BFC.md new file mode 100644 index 000000000..d61766084 --- /dev/null +++ b/docs/version-specific/supported-software/b/BFC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BFC + +BFC is a standalone high-performance tool for correcting sequencing errors from Illumina sequencing data. It is specifically designed for high-coverage whole-genome human data, though also performs well for small genomes. + +*homepage*: + +version | toolchain +--------|---------- +``1`` | ``foss/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BGC-Bayesian-genomic-clines.md b/docs/version-specific/supported-software/b/BGC-Bayesian-genomic-clines.md new file mode 100644 index 000000000..7e2bae688 --- /dev/null +++ b/docs/version-specific/supported-software/b/BGC-Bayesian-genomic-clines.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BGC-Bayesian-genomic-clines + +Collection of code for Bayesian genomic cline analyses. + +*homepage*: + +version | toolchain +--------|---------- +``1.03`` | ``gompi/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BLACS.md b/docs/version-specific/supported-software/b/BLACS.md new file mode 100644 index 000000000..cff32dba7 --- /dev/null +++ b/docs/version-specific/supported-software/b/BLACS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BLACS + +The BLACS (Basic Linear Algebra Communication Subprograms) project is an ongoing investigation whose purpose is to create a linear algebra oriented message passing interface that may be implemented efficiently and uniformly across a large range of distributed memory platforms. + +*homepage*: + +version | toolchain +--------|---------- +``1.1`` | ``gmvapich2/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BLASR.md b/docs/version-specific/supported-software/b/BLASR.md new file mode 100644 index 000000000..b557d0192 --- /dev/null +++ b/docs/version-specific/supported-software/b/BLASR.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# BLASR + +BLASR (Basic Local Alignment with Successive Refinement) rapidly maps reads to genomes by finding the highest scoring local alignment or set of local alignments between the read and the genome. Optimized for PacBio's extraordinarily long reads and taking advantage of rich quality values, BLASR maps reads rapidly with high accuracy. + +*homepage*: + +version | toolchain +--------|---------- +``2.2`` | ``intel/2016b`` +``20170330`` | ``intel/2017a`` +``5.3.3`` | ``gompi/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BLAST+.md b/docs/version-specific/supported-software/b/BLAST+.md new file mode 100644 index 000000000..3ac849d8f --- /dev/null +++ b/docs/version-specific/supported-software/b/BLAST+.md @@ -0,0 +1,43 @@ +--- +search: + boost: 0.5 +--- +# BLAST+ + +Basic Local Alignment Search Tool, or BLAST, is an algorithm for comparing primary biological sequence information, such as the amino-acid sequences of different proteins or the nucleotides of DNA sequences. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.10.1`` | | ``gompi/2020a`` +``2.10.1`` | | ``iimpi/2020a`` +``2.11.0`` | | ``gompi/2019b`` +``2.11.0`` | | ``gompi/2020a`` +``2.11.0`` | | ``gompi/2020b`` +``2.11.0`` | | ``gompi/2021a`` +``2.12.0`` | | ``gompi/2021b`` +``2.13.0`` | | ``gompi/2022a`` +``2.14.0`` | | ``gompi/2022b`` +``2.14.1`` | | ``gompi/2023a`` +``2.2.31`` | | ``system`` +``2.3.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``2.6.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2.6.0`` | ``-Python-2.7.13`` | ``foss/2017a`` +``2.6.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``2.6.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.7.1`` | | ``foss/2018a`` +``2.7.1`` | | ``foss/2018b`` +``2.7.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.7.1`` | | ``intel/2018a`` +``2.7.1`` | | ``intel/2018b`` +``2.8.1`` | | ``foss/2018b`` +``2.9.0`` | | ``gompi/2019a`` +``2.9.0`` | | ``gompi/2019b`` +``2.9.0`` | | ``gompi/2021b`` +``2.9.0`` | | ``iimpi/2019a`` +``2.9.0`` | | ``iimpi/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BLAST.md b/docs/version-specific/supported-software/b/BLAST.md new file mode 100644 index 000000000..23d3c9c5a --- /dev/null +++ b/docs/version-specific/supported-software/b/BLAST.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# BLAST + +Basic Local Alignment Search Tool, or BLAST, is an algorithm for comparing primary biological sequence information, such as the amino-acid sequences of different proteins or the nucleotides of DNA sequences. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.10.0`` | ``-Linux_x86_64`` | ``system`` +``2.10.1`` | ``-Linux_x86_64`` | ``system`` +``2.11.0`` | ``-Linux_x86_64`` | ``system`` +``2.2.26`` | ``-Linux_x86_64`` | ``system`` +``2.8.1`` | ``-Linux_x86_64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BLAT.md b/docs/version-specific/supported-software/b/BLAT.md new file mode 100644 index 000000000..e813db51c --- /dev/null +++ b/docs/version-specific/supported-software/b/BLAT.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# BLAT + +BLAT on DNA is designed to quickly find sequences of 95% and greater similarity of length 25 bases or more. + +*homepage*: + +version | toolchain +--------|---------- +``3.5`` | ``GCC/8.2.0-2.31.1`` +``3.5`` | ``GCC/8.3.0`` +``3.5`` | ``GCC/9.3.0`` +``3.5`` | ``foss/2016b`` +``3.5`` | ``foss/2018b`` +``3.5`` | ``intel/2016b`` +``3.5`` | ``intel/2017a`` +``3.7`` | ``GCC/10.3.0`` +``3.7`` | ``GCC/11.2.0`` +``3.7`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BLIS.md b/docs/version-specific/supported-software/b/BLIS.md new file mode 100644 index 000000000..2e13ec5fb --- /dev/null +++ b/docs/version-specific/supported-software/b/BLIS.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# BLIS + +BLIS is a portable software framework for instantiating high-performance BLAS-like dense linear algebra libraries. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.2`` | | ``GCC/7.3.0-2.30`` +``0.6.0`` | | ``GCC/8.3.0-2.32`` +``0.8.0`` | | ``GCCcore/10.2.0`` +``0.8.0`` | | ``GCCcore/9.3.0`` +``0.8.1`` | | ``GCC/10.3.0`` +``0.8.1`` | | ``GCC/11.2.0`` +``0.8.1`` | | ``GCCcore/10.3.0`` +``0.9.0`` | | ``GCC/11.3.0`` +``0.9.0`` | | ``GCC/12.2.0`` +``0.9.0`` | | ``GCC/12.3.0`` +``0.9.0`` | | ``GCC/13.2.0`` +``0.9.0`` | | ``intel-compilers/2022.1.0`` +``1.0`` | | ``GCC/13.2.0`` +``1.0`` | | ``GCC/13.3.0`` +``1.2`` | ``-amd`` | ``GCC/7.3.0-2.30`` +``2.2`` | ``-amd`` | ``GCCcore/9.3.0`` +``3.0`` | ``-amd`` | ``GCCcore/10.3.0`` +``3.0.1`` | ``-amd`` | ``GCC/11.2.0`` +``3.0.1`` | ``-amd`` | ``GCCcore/10.2.0`` +``3.0.1`` | ``-amd`` | ``GCCcore/10.3.0`` +``3.1`` | ``-amd`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BLT.md b/docs/version-specific/supported-software/b/BLT.md new file mode 100644 index 000000000..44b7248c1 --- /dev/null +++ b/docs/version-specific/supported-software/b/BLT.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BLT + +BLT is an extension to the Tk toolkit, adding new widgets, geometry managers, and miscellaneous commands. + +*homepage*: + +version | toolchain +--------|---------- +``20181223`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BMTK.md b/docs/version-specific/supported-software/b/BMTK.md new file mode 100644 index 000000000..ea75e35ff --- /dev/null +++ b/docs/version-specific/supported-software/b/BMTK.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BMTK + +The Brain Modeling Toolkit (BMTK) is a python-based software package for building, simulating and analyzing large-scale neural network models. It supports the building and simulation of models of varying levels-of-resolution; from multi-compartment biophysically detailed networks, to point-neuron models, to filter-based models, and even population-level firing rate models. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.8`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BOINC.md b/docs/version-specific/supported-software/b/BOINC.md new file mode 100644 index 000000000..1b6a3fb2e --- /dev/null +++ b/docs/version-specific/supported-software/b/BOINC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BOINC + +BOINC is a program that lets you donate your idle computer time to science projects like SETI@home, Climateprediction.net, Rosetta@home, World Community Grid, and many others. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``7.2.42`` | ``-client`` | ``GCC/4.8.2`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BOPTEST.md b/docs/version-specific/supported-software/b/BOPTEST.md new file mode 100644 index 000000000..4a145fc94 --- /dev/null +++ b/docs/version-specific/supported-software/b/BOPTEST.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BOPTEST + +This repository contains code for the Building Optimization Performance Test framework (BOPTEST) that is being developed as part of the IBPSA Project 1. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BRAKER.md b/docs/version-specific/supported-software/b/BRAKER.md new file mode 100644 index 000000000..e53e319b0 --- /dev/null +++ b/docs/version-specific/supported-software/b/BRAKER.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# BRAKER + +BRAKER is a pipeline for fully automated prediction of protein coding genes with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.2`` | | ``intel/2019a`` +``2.1.5`` | ``-Python-3.7.4`` | ``intel/2019b`` +``2.1.6`` | | ``foss/2021b`` +``2.1.6`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BRiAl.md b/docs/version-specific/supported-software/b/BRiAl.md new file mode 100644 index 000000000..5556e8d8e --- /dev/null +++ b/docs/version-specific/supported-software/b/BRiAl.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BRiAl + +BRiAl is the legacy version of PolyBoRi maintained by sagemath developers. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.12`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BSMAPz.md b/docs/version-specific/supported-software/b/BSMAPz.md new file mode 100644 index 000000000..f48414b51 --- /dev/null +++ b/docs/version-specific/supported-software/b/BSMAPz.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BSMAPz + +Updated and optimized fork of BSMAP. BSMAPz is a short reads mapping program for bisulfite sequencing in DNA methylation study. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.1`` | ``-Python-2.7.16`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BSseeker2.md b/docs/version-specific/supported-software/b/BSseeker2.md new file mode 100644 index 000000000..fb6383ab1 --- /dev/null +++ b/docs/version-specific/supported-software/b/BSseeker2.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# BSseeker2 + +BS-Seeker2 is a seamless and versatile pipeline for accurately and fast mapping the bisulfite-treated reads. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.8`` | ``-Python-2.7.16`` | ``GCC/8.3.0`` +``2.1.8`` | ``-Python-2.7.16`` | ``iccifort/2019.5.281`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BUFRLIB.md b/docs/version-specific/supported-software/b/BUFRLIB.md new file mode 100644 index 000000000..27da2cec2 --- /dev/null +++ b/docs/version-specific/supported-software/b/BUFRLIB.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BUFRLIB + +NCEP BUFRLIB software to encode or decode BUFR messages. It is not intended to be a primer on the BUFR code form itself. + +*homepage*: + +version | toolchain +--------|---------- +``11.3.0.2`` | ``iccifort/2020.1.217`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BUSCO.md b/docs/version-specific/supported-software/b/BUSCO.md new file mode 100644 index 000000000..4fb1c8cb7 --- /dev/null +++ b/docs/version-specific/supported-software/b/BUSCO.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# BUSCO + +BUSCO: assessing genome assembly and annotation completeness with single-copy orthologs + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.22`` | ``-Python-2.7.13`` | ``intel/2017a`` +``2.0.1`` | ``-Python-2.7.13`` | ``intel/2017a`` +``3.0.2`` | ``-Python-2.7.15`` | ``intel/2018b`` +``4.0.5`` | ``-Python-3.7.4`` | ``foss/2019b`` +``4.0.6`` | | ``foss/2020b`` +``5.0.0`` | | ``foss/2020b`` +``5.1.2`` | | ``foss/2020b`` +``5.4.2`` | | ``foss/2021a`` +``5.4.3`` | | ``foss/2021b`` +``5.4.5`` | | ``foss/2022a`` +``5.4.7`` | | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BUStools.md b/docs/version-specific/supported-software/b/BUStools.md new file mode 100644 index 000000000..6cf971626 --- /dev/null +++ b/docs/version-specific/supported-software/b/BUStools.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# BUStools + +bustools is a program for manipulating BUS files for single cell RNA-Seq datasets. It can be used to error correct barcodes, collapse UMIs, produce gene count or transcript compatibility count matrices, and is useful for many other tasks. See the kallisto | bustools website for examples and instructions on how to use bustools as part of a single-cell RNA-seq workflow. + +*homepage*: + +version | toolchain +--------|---------- +``0.40.0`` | ``GCCcore/9.3.0`` +``0.40.0`` | ``foss/2018b`` +``0.43.1`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BWA.md b/docs/version-specific/supported-software/b/BWA.md new file mode 100644 index 000000000..2173e4863 --- /dev/null +++ b/docs/version-specific/supported-software/b/BWA.md @@ -0,0 +1,47 @@ +--- +search: + boost: 0.5 +--- +# BWA + +Burrows-Wheeler Aligner (BWA) is an efficient program that aligns relatively short nucleotide sequences against a long reference sequence such as the human genome. + +*homepage*: + +version | toolchain +--------|---------- +``0.7.12`` | ``foss/2016b`` +``0.7.13`` | ``foss/2016a`` +``0.7.13`` | ``intel/2016a`` +``0.7.15`` | ``GCCcore/5.4.0`` +``0.7.15`` | ``GCCcore/6.4.0`` +``0.7.15`` | ``foss/2016a`` +``0.7.15`` | ``foss/2016b`` +``0.7.15`` | ``intel/2016b`` +``0.7.15`` | ``intel/2017a`` +``0.7.16a`` | ``foss/2016b`` +``0.7.16a`` | ``intel/2017a`` +``0.7.17-20220923`` | ``GCCcore/12.3.0`` +``0.7.17`` | ``GCC/10.2.0`` +``0.7.17`` | ``GCC/10.3.0`` +``0.7.17`` | ``GCC/8.2.0-2.31.1`` +``0.7.17`` | ``GCC/8.3.0`` +``0.7.17`` | ``GCC/9.3.0`` +``0.7.17`` | ``GCCcore/11.2.0`` +``0.7.17`` | ``GCCcore/11.3.0`` +``0.7.17`` | ``GCCcore/12.2.0`` +``0.7.17`` | ``GCCcore/12.3.0`` +``0.7.17`` | ``foss/2017b`` +``0.7.17`` | ``foss/2018a`` +``0.7.17`` | ``foss/2018b`` +``0.7.17`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``0.7.17`` | ``iccifort/2019.5.281`` +``0.7.17`` | ``iccifort/2020.4.304`` +``0.7.17`` | ``intel/2017b`` +``0.7.17`` | ``intel/2018a`` +``0.7.17`` | ``intel/2018b`` +``0.7.18`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BWISE.md b/docs/version-specific/supported-software/b/BWISE.md new file mode 100644 index 000000000..f12260faa --- /dev/null +++ b/docs/version-specific/supported-software/b/BWISE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BWISE + +de Bruijn Workflow using Integral information of Short pair End reads + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20180820`` | ``-Python-3.6.4`` | ``foss/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BXH_XCEDE_TOOLS.md b/docs/version-specific/supported-software/b/BXH_XCEDE_TOOLS.md new file mode 100644 index 000000000..a7045eb27 --- /dev/null +++ b/docs/version-specific/supported-software/b/BXH_XCEDE_TOOLS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BXH_XCEDE_TOOLS + +A collection of data processing and image analysis tools for data in BXH or XCEDE format. This includes data format encapsulation/conversion, event-related analysis, QA tools, and more. These tools form the basis of the fBIRN QA procedures and are also distributed as part of the fBIRN Data Upload Scripts. + +*homepage*: + +version | toolchain +--------|---------- +``1.11.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BabelStream.md b/docs/version-specific/supported-software/b/BabelStream.md new file mode 100644 index 000000000..78034f8c7 --- /dev/null +++ b/docs/version-specific/supported-software/b/BabelStream.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BabelStream + +STREAM, for lots of devices written in many programming models + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.4`` | ``-omp`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Bader.md b/docs/version-specific/supported-software/b/Bader.md new file mode 100644 index 000000000..4a16fada1 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bader.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Bader + +A fast algorithm for doing Bader's analysis on a charge density grid. + +*homepage*: + +version | toolchain +--------|---------- +``1.02`` | ``intel/2018a`` +``1.03`` | ``intel/2018b`` +``1.04`` | ``GCC/11.2.0`` +``1.04`` | ``iccifort/2020.4.304`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BamTools.md b/docs/version-specific/supported-software/b/BamTools.md new file mode 100644 index 000000000..798c822ba --- /dev/null +++ b/docs/version-specific/supported-software/b/BamTools.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# BamTools + +BamTools provides both a programmer's API and an end-user's toolkit for handling BAM files. + +*homepage*: + +version | toolchain +--------|---------- +``2.4.0`` | ``foss/2016b`` +``2.4.1`` | ``intel/2017a`` +``2.5.0`` | ``foss/2016b`` +``2.5.0`` | ``intel/2017b`` +``2.5.1`` | ``GCC/10.2.0`` +``2.5.1`` | ``GCC/8.2.0-2.31.1`` +``2.5.1`` | ``GCC/8.3.0`` +``2.5.1`` | ``GCC/9.3.0`` +``2.5.1`` | ``foss/2017b`` +``2.5.1`` | ``foss/2018a`` +``2.5.1`` | ``foss/2018b`` +``2.5.1`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``2.5.1`` | ``iccifort/2019.5.281`` +``2.5.1`` | ``iccifort/2020.4.304`` +``2.5.1`` | ``intel/2017b`` +``2.5.1`` | ``intel/2018b`` +``2.5.2`` | ``GCC/10.3.0`` +``2.5.2`` | ``GCC/11.2.0`` +``2.5.2`` | ``GCC/11.3.0`` +``2.5.2`` | ``GCC/12.2.0`` +``2.5.2`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BamUtil.md b/docs/version-specific/supported-software/b/BamUtil.md new file mode 100644 index 000000000..b33844c48 --- /dev/null +++ b/docs/version-specific/supported-software/b/BamUtil.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# BamUtil + +BamUtil is a repository that contains several programs that perform operations on SAM/BAM files. All of these programs are built into a single executable, bam. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.13`` | ``intel/2016b`` +``1.0.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Bambi.md b/docs/version-specific/supported-software/b/Bambi.md new file mode 100644 index 000000000..36c64da13 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bambi.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Bambi + +Bambi is a high-level Bayesian model-building interface written in Python. It works with the probabilistic programming frameworks PyMC3 and is designed to make it extremely easy to fit Bayesian mixed-effects models common in biology, social sciences and other disciplines. + +*homepage*: + +version | toolchain +--------|---------- +``0.7.1`` | ``foss/2021b`` +``0.7.1`` | ``intel/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Bandage.md b/docs/version-specific/supported-software/b/Bandage.md new file mode 100644 index 000000000..d97104c53 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bandage.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Bandage + +Bandage is a program for visualising de novo assembly graphs + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8.1`` | ``_Centos`` | ``system`` +``0.8.1`` | ``_Ubuntu`` | ``system`` +``0.9.0`` | | ``GCCcore/11.2.0`` +``0.9.0`` | | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Bash.md b/docs/version-specific/supported-software/b/Bash.md new file mode 100644 index 000000000..054af2e58 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bash.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Bash + +Bash is an sh-compatible command language interpreter that executes commands read from the standard input or from a file. Bash also incorporates useful features from the Korn and C shells (ksh and csh). + +*homepage*: + +version | toolchain +--------|---------- +``4.3`` | ``GCC/4.9.2`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BatMeth2.md b/docs/version-specific/supported-software/b/BatMeth2.md new file mode 100644 index 000000000..3ed5d2e77 --- /dev/null +++ b/docs/version-specific/supported-software/b/BatMeth2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BatMeth2 + +An Integrated Package for Bisulfite DNA Methylation Data Analysis with Indel-sensitive Mapping. + +*homepage*: + +version | toolchain +--------|---------- +``2.1`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BayeScEnv.md b/docs/version-specific/supported-software/b/BayeScEnv.md new file mode 100644 index 000000000..969eb0121 --- /dev/null +++ b/docs/version-specific/supported-software/b/BayeScEnv.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# BayeScEnv + +BayeScEnv is a Fst-based, genome-scan method that uses environmental variables to detect local adaptation. + +*homepage*: + +version | toolchain +--------|---------- +``1.1`` | ``GCC/8.3.0`` +``1.1`` | ``foss/2016a`` +``1.1`` | ``iccifort/2019.5.281`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BayeScan.md b/docs/version-specific/supported-software/b/BayeScan.md new file mode 100644 index 000000000..f2f1ff27a --- /dev/null +++ b/docs/version-specific/supported-software/b/BayeScan.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# BayeScan + +BayeScan aims at identifying candidate loci under natural selection from genetic data, using differences in allele frequencies between populations. + +*homepage*: + +version | toolchain +--------|---------- +``2.1`` | ``foss/2016a`` +``2.1`` | ``foss/2018a`` +``2.1`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BayesAss.md b/docs/version-specific/supported-software/b/BayesAss.md new file mode 100644 index 000000000..ff6df5aef --- /dev/null +++ b/docs/version-specific/supported-software/b/BayesAss.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BayesAss + +BayesAss: Bayesian Inference of Recent Migration Using Multilocus Genotypes + +*homepage*: + +version | toolchain +--------|---------- +``3.0.4`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BayesAss3-SNPs.md b/docs/version-specific/supported-software/b/BayesAss3-SNPs.md new file mode 100644 index 000000000..cee7d7d26 --- /dev/null +++ b/docs/version-specific/supported-software/b/BayesAss3-SNPs.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BayesAss3-SNPs + +Modification of BayesAss 3.0.4 to allow handling of large SNP datasets generated via methods such as RADseq protocols. + +*homepage*: + +version | toolchain +--------|---------- +``1.1`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BayesPrism.md b/docs/version-specific/supported-software/b/BayesPrism.md new file mode 100644 index 000000000..17a5dc239 --- /dev/null +++ b/docs/version-specific/supported-software/b/BayesPrism.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BayesPrism + +Bayesian cell Proportion Reconstruction Inferred using Statistical Marginalization (BayesPrism): A Fully Bayesian Inference of Tumor Microenvironment composition and gene expression + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BayesTraits.md b/docs/version-specific/supported-software/b/BayesTraits.md new file mode 100644 index 000000000..9361ec10e --- /dev/null +++ b/docs/version-specific/supported-software/b/BayesTraits.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# BayesTraits + +BayesTraits is a computer package for performing analyses of trait evolution among groups of species for which a phylogeny or sample of phylogenies is available. This new package incoporates our earlier and separate programes Multistate, Discrete and Continuous. BayesTraits can be applied to the analysis of traits that adopt a finite number of discrete states, or to the analysis of continuously varying traits. Hypotheses can be tested about models of evolution, about ancestral states and about correlations among pairs of traits. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0-linux32`` | | ``system`` +``2.0`` | ``-Beta-Linux64`` | ``system`` +``3.0.2`` | ``-Linux`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Bazel.md b/docs/version-specific/supported-software/b/Bazel.md new file mode 100644 index 000000000..188c8eafb --- /dev/null +++ b/docs/version-specific/supported-software/b/Bazel.md @@ -0,0 +1,48 @@ +--- +search: + boost: 0.5 +--- +# Bazel + +Bazel is a build tool that builds code quickly and reliably. It is used to build the majority of Google's software. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.0`` | | ``GCCcore/6.4.0`` +``0.11.0`` | | ``GCCcore/6.4.0`` +``0.11.1`` | | ``GCCcore/6.4.0`` +``0.12.0`` | | ``GCCcore/6.4.0`` +``0.16.0`` | | ``GCCcore/6.4.0`` +``0.16.0`` | | ``GCCcore/7.3.0`` +``0.18.0`` | | ``GCCcore/7.3.0`` +``0.20.0`` | | ``GCCcore/7.3.0`` +``0.20.0`` | | ``GCCcore/8.2.0`` +``0.25.2`` | | ``GCCcore/8.2.0`` +``0.26.1`` | | ``GCCcore/8.2.0`` +``0.26.1`` | | ``GCCcore/8.3.0`` +``0.29.1`` | | ``GCCcore/8.2.0`` +``0.29.1`` | | ``GCCcore/8.3.0`` +``0.29.1`` | ``-Java-1.8`` | ``GCCcore/9.3.0`` +``0.4.4`` | | ``system`` +``0.7.0`` | | ``GCCcore/6.4.0`` +``1.1.0`` | | ``GCCcore/8.3.0`` +``2.0.0`` | | ``GCCcore/10.2.0`` +``2.0.0`` | | ``GCCcore/8.3.0`` +``3.4.1`` | | ``GCCcore/8.3.0`` +``3.6.0`` | | ``GCCcore/9.3.0`` +``3.7.1`` | | ``GCCcore/8.3.0`` +``3.7.2`` | | ``GCCcore/10.2.0`` +``3.7.2`` | | ``GCCcore/10.3.0`` +``3.7.2`` | | ``GCCcore/11.2.0`` +``3.7.2`` | | ``GCCcore/8.3.0`` +``4.2.2`` | | ``GCCcore/11.2.0`` +``5.1.1`` | | ``GCCcore/11.3.0`` +``6.1.0`` | | ``GCCcore/12.3.0`` +``6.3.1`` | | ``GCCcore/12.2.0`` +``6.3.1`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Beagle.md b/docs/version-specific/supported-software/b/Beagle.md new file mode 100644 index 000000000..9446dd8ba --- /dev/null +++ b/docs/version-specific/supported-software/b/Beagle.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Beagle + +Beagle is a software package for phasing genotypes and for imputing ungenotyped markers. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.4.22Jul22.46e`` | ``-Java-11`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Beast.md b/docs/version-specific/supported-software/b/Beast.md new file mode 100644 index 000000000..26e4a6734 --- /dev/null +++ b/docs/version-specific/supported-software/b/Beast.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# Beast + +BEAST is a cross-platform program for Bayesian MCMC analysis of molecular sequences. It is entirely orientated towards rooted, time-measured phylogenies inferred using strict or relaxed molecular clock models. It can be used as a method of reconstructing phylogenies but is also a framework for testing evolutionary hypotheses without conditioning on a single tree topology. BEAST uses MCMC to average over tree space, so that each tree is weighted proportional to its posterior probability. + +*homepage*: + +version | toolchain +--------|---------- +``1.10.1`` | ``intel/2018a`` +``1.10.4`` | ``GCC/10.2.0`` +``1.10.4`` | ``GCC/8.2.0-2.31.1`` +``1.8.4`` | ``system`` +``2.4.0`` | ``foss/2016a`` +``2.4.7`` | ``foss/2017a`` +``2.5.0`` | ``foss/2018a`` +``2.5.1`` | ``foss/2018b`` +``2.5.2`` | ``GCC/8.2.0-2.31.1`` +``2.6.3`` | ``gcccuda/2019b`` +``2.6.4`` | ``GCC/10.2.0`` +``2.6.7`` | ``GCC/10.3.0`` +``2.7.3`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BeautifulSoup.md b/docs/version-specific/supported-software/b/BeautifulSoup.md new file mode 100644 index 000000000..42d7dee09 --- /dev/null +++ b/docs/version-specific/supported-software/b/BeautifulSoup.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# BeautifulSoup + +Beautiful Soup is a Python library designed for quick turnaround projects like screen-scraping. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.10.0`` | | ``GCCcore/10.3.0`` +``4.10.0`` | | ``GCCcore/11.2.0`` +``4.10.0`` | | ``GCCcore/11.3.0`` +``4.11.1`` | | ``GCCcore/12.2.0`` +``4.12.2`` | | ``GCCcore/12.3.0`` +``4.12.2`` | | ``GCCcore/13.2.0`` +``4.6.0`` | ``-Python-3.6.3`` | ``intel/2017b`` +``4.6.3`` | ``-Python-3.6.4`` | ``intel/2018a`` +``4.7.1`` | ``-Python-3.6.6`` | ``intel/2018b`` +``4.8.0`` | | ``GCCcore/8.2.0`` +``4.9.1`` | | ``GCCcore/8.3.0`` +``4.9.1`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``4.9.3`` | | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BerkeleyGW.md b/docs/version-specific/supported-software/b/BerkeleyGW.md new file mode 100644 index 000000000..c54edd86a --- /dev/null +++ b/docs/version-specific/supported-software/b/BerkeleyGW.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# BerkeleyGW + +The BerkeleyGW Package is a set of computer codes that calculates the quasiparticle properties and the optical responses of a large variety of materials from bulk periodic crystals to nanostructures such as slabs, wires and molecules. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.6`` | | ``intel/2016.02-GCC-4.9`` +``1.1-beta2`` | | ``intel/2016.02-GCC-4.9`` +``1.2.0`` | | ``intel/2017a`` +``1.2.0`` | | ``intel/2018a`` +``2.0.0`` | | ``foss/2017b`` +``2.0.0`` | | ``foss/2018b`` +``2.0.0`` | | ``intel/2017b`` +``2.0.0`` | | ``intel/2018a`` +``2.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.1.0`` | ``-Python-3.7.4`` | ``intel/2019b`` +``3.0.1`` | | ``foss/2020b`` +``3.0.1`` | | ``foss/2021a`` +``3.1.0`` | | ``foss/2022a`` +``3.1.0`` | | ``intel/2022a`` +``4.0`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BgeeCall.md b/docs/version-specific/supported-software/b/BgeeCall.md new file mode 100644 index 000000000..5074346b0 --- /dev/null +++ b/docs/version-specific/supported-software/b/BgeeCall.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BgeeCall + +Automatic RNA-Seq present/absent gene expression calls generation + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.16.0`` | ``-R-%(rver)s`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BgeeDB.md b/docs/version-specific/supported-software/b/BgeeDB.md new file mode 100644 index 000000000..bec4bf089 --- /dev/null +++ b/docs/version-specific/supported-software/b/BgeeDB.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BgeeDB + +Annotation and gene expression data retrieval from Bgee database. TopAnat, an anatomical entities Enrichment Analysis tool for UBERON ontology. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.26.0`` | ``-R-%(rver)s`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BiG-SCAPE.md b/docs/version-specific/supported-software/b/BiG-SCAPE.md new file mode 100644 index 000000000..66ffe9e00 --- /dev/null +++ b/docs/version-specific/supported-software/b/BiG-SCAPE.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# BiG-SCAPE + +BiG-SCAPE and CORASON provide a set of tools to explore the diversity of biosynthetic gene clusters (BGCs) across large numbers of genomes, by constructing BGC sequence similarity networks, grouping BGCs into gene cluster families, and exploring gene cluster diversity linked to enzyme phylogenies. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.1`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.1.5`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BiasAdjustCXX.md b/docs/version-specific/supported-software/b/BiasAdjustCXX.md new file mode 100644 index 000000000..85bd02a2c --- /dev/null +++ b/docs/version-specific/supported-software/b/BiasAdjustCXX.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BiasAdjustCXX + +BiasAdjustCXX command-line tool for the application of fast and efficient bias corrections in climatic research + +*homepage*: + +version | toolchain +--------|---------- +``1.9.1`` | ``gompi/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BigDFT.md b/docs/version-specific/supported-software/b/BigDFT.md new file mode 100644 index 000000000..27c1334f6 --- /dev/null +++ b/docs/version-specific/supported-software/b/BigDFT.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BigDFT + +BigDFT: electronic structure calculation based on Daubechies wavelets. bigdft-suite is a set of different packages to run bigdft. + +*homepage*: + +version | toolchain +--------|---------- +``1.9.1`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BinSanity.md b/docs/version-specific/supported-software/b/BinSanity.md new file mode 100644 index 000000000..c10c1e1f0 --- /dev/null +++ b/docs/version-specific/supported-software/b/BinSanity.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BinSanity + +BinSanity contains a suite a scripts designed to cluster contigs generated from metagenomic assembly into putative genomes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.5`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Bio-DB-HTS.md b/docs/version-specific/supported-software/b/Bio-DB-HTS.md new file mode 100644 index 000000000..8aa4c77d1 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bio-DB-HTS.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# Bio-DB-HTS + +Read files using HTSlib including BAM/CRAM, Tabix and BCF database files + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.11`` | ``-Perl-5.26.0`` | ``foss/2017b`` +``2.11`` | ``-Perl-5.28.0`` | ``foss/2018b`` +``2.11`` | ``-Perl-5.26.0`` | ``intel/2017b`` +``2.11`` | ``-Perl-5.26.1`` | ``intel/2018a`` +``3.01`` | | ``GCC/10.2.0`` +``3.01`` | | ``GCC/11.2.0`` +``3.01`` | | ``GCC/11.3.0`` +``3.01`` | | ``GCC/12.2.0`` +``3.01`` | ``-Perl-5.28.1`` | ``GCC/8.2.0-2.31.1`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Bio-EUtilities.md b/docs/version-specific/supported-software/b/Bio-EUtilities.md new file mode 100644 index 000000000..b2bc7e8b0 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bio-EUtilities.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Bio-EUtilities + +BioPerl low-level API for retrieving and storing data from NCBI eUtils + +*homepage*: + +version | toolchain +--------|---------- +``1.76`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Bio-FeatureIO.md b/docs/version-specific/supported-software/b/Bio-FeatureIO.md new file mode 100644 index 000000000..8774eb292 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bio-FeatureIO.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Bio-FeatureIO + +An I/O iterator subsystem for genomic sequence features + +*homepage*: + +version | toolchain +--------|---------- +``1.6.905`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Bio-SamTools.md b/docs/version-specific/supported-software/b/Bio-SamTools.md new file mode 100644 index 000000000..c43766a6d --- /dev/null +++ b/docs/version-specific/supported-software/b/Bio-SamTools.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Bio-SamTools + +This is a Perl interface to the SAMtools sequence alignment interface. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.43`` | ``-Perl-5.24.1`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Bio-SearchIO-hmmer.md b/docs/version-specific/supported-software/b/Bio-SearchIO-hmmer.md new file mode 100644 index 000000000..528f72637 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bio-SearchIO-hmmer.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Bio-SearchIO-hmmer + +Code to parse output from hmmsearch, hmmscan, phmmer and nhmmer, compatible with both version 2 and version 3 of the HMMER package from http://hmmer.org. + +*homepage*: + +version | toolchain +--------|---------- +``1.7.3`` | ``GCC/10.2.0`` +``1.7.3`` | ``GCC/10.3.0`` +``1.7.3`` | ``GCC/11.2.0`` +``1.7.3`` | ``GCC/11.3.0`` +``1.7.3`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BioPP.md b/docs/version-specific/supported-software/b/BioPP.md new file mode 100644 index 000000000..1fefe84ca --- /dev/null +++ b/docs/version-specific/supported-software/b/BioPP.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# BioPP + +Bio++ is a set of C++ libraries for Bioinformatics, including sequence analysis, phylogenetics, molecular evolution and population genetics. Bio++ is Object Oriented and is designed to be both easy to use and computer efficient. Bio++ intends to help programmers to write computer expensive programs, by providing them a set of re-usable tools. + +*homepage*: + +version | toolchain +--------|---------- +``2.4.1`` | ``GCC/8.2.0-2.31.1`` +``2.4.1`` | ``GCC/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BioPerl.md b/docs/version-specific/supported-software/b/BioPerl.md new file mode 100644 index 000000000..e426e3941 --- /dev/null +++ b/docs/version-specific/supported-software/b/BioPerl.md @@ -0,0 +1,35 @@ +--- +search: + boost: 0.5 +--- +# BioPerl + +Bioperl is the product of a community effort to produce Perl code which is useful in biology. Examples include Sequence objects, Alignment objects and database searching objects. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.6.924`` | ``-Perl-5.22.1`` | ``foss/2016a`` +``1.6.924`` | ``-Perl-5.20.3`` | ``intel/2016a`` +``1.7.0`` | ``-Perl-5.24.0`` | ``foss/2016b`` +``1.7.1`` | ``-Perl-5.24.0`` | ``intel/2016b`` +``1.7.1`` | ``-Perl-5.24.1`` | ``intel/2017a`` +``1.7.2`` | ``-Perl-5.28.1`` | ``GCCcore/8.2.0`` +``1.7.2`` | | ``GCCcore/8.3.0`` +``1.7.2`` | ``-Perl-5.26.0`` | ``foss/2017b`` +``1.7.2`` | ``-Perl-5.28.0`` | ``foss/2018b`` +``1.7.2`` | ``-Perl-5.26.0`` | ``intel/2017b`` +``1.7.2`` | ``-Perl-5.26.1`` | ``intel/2018a`` +``1.7.2`` | ``-Perl-5.28.0`` | ``intel/2018b`` +``1.7.7`` | | ``GCCcore/9.3.0`` +``1.7.8`` | | ``GCCcore/10.2.0`` +``1.7.8`` | | ``GCCcore/10.3.0`` +``1.7.8`` | | ``GCCcore/11.2.0`` +``1.7.8`` | | ``GCCcore/11.3.0`` +``1.7.8`` | | ``GCCcore/12.2.0`` +``1.7.8`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BioServices.md b/docs/version-specific/supported-software/b/BioServices.md new file mode 100644 index 000000000..07863f6bb --- /dev/null +++ b/docs/version-specific/supported-software/b/BioServices.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BioServices + +Bioservices is a Python package that provides access to many Bioinformatices Web Services (e.g., UniProt) and a framework to easily implement Web Services wrappers (based on WSDL/SOAP or REST protocols). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.7.9`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Biopython.md b/docs/version-specific/supported-software/b/Biopython.md new file mode 100644 index 000000000..4fdeba25a --- /dev/null +++ b/docs/version-specific/supported-software/b/Biopython.md @@ -0,0 +1,55 @@ +--- +search: + boost: 0.5 +--- +# Biopython + +Biopython is a set of freely available tools for biological computation written in Python by an international team of developers. It is a distributed collaborative effort to develop Python libraries and applications which address the needs of current and future work in bioinformatics. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.65`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.68`` | ``-Python-2.7.12`` | ``foss/2016b`` +``1.68`` | ``-Python-3.5.2`` | ``foss/2016b`` +``1.68`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.68`` | ``-Python-3.5.2`` | ``intel/2016b`` +``1.70`` | ``-Python-2.7.13`` | ``foss/2017a`` +``1.70`` | ``-Python-2.7.14`` | ``foss/2017b`` +``1.70`` | ``-Python-3.6.3`` | ``foss/2017b`` +``1.70`` | ``-Python-3.6.1`` | ``intel/2017a`` +``1.70`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.70`` | ``-Python-3.6.3`` | ``intel/2017b`` +``1.71`` | ``-Python-3.6.4`` | ``foss/2018a`` +``1.71`` | ``-Python-2.7.14`` | ``intel/2018a`` +``1.71`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.72`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.72`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.72`` | ``-Python-2.7.15`` | ``intel/2018b`` +``1.73`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.73`` | | ``foss/2019a`` +``1.73`` | | ``fosscuda/2019a`` +``1.73`` | | ``intel/2019a`` +``1.74`` | | ``foss/2019a`` +``1.75`` | ``-Python-2.7.16`` | ``foss/2019b`` +``1.75`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.75`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``1.75`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.76`` | ``-Python-2.7.18`` | ``foss/2020b`` +``1.76`` | ``-Python-2.7.18`` | ``foss/2021b`` +``1.78`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.78`` | | ``foss/2020b`` +``1.78`` | | ``fosscuda/2020b`` +``1.78`` | ``-Python-3.8.2`` | ``intel/2020a`` +``1.78`` | | ``intel/2020b`` +``1.79`` | | ``foss/2021a`` +``1.79`` | | ``foss/2021b`` +``1.79`` | | ``foss/2022a`` +``1.79`` | | ``intel/2021b`` +``1.81`` | | ``foss/2022b`` +``1.83`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BirdNET.md b/docs/version-specific/supported-software/b/BirdNET.md new file mode 100644 index 000000000..c4788e586 --- /dev/null +++ b/docs/version-specific/supported-software/b/BirdNET.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BirdNET + +BirdNET is a research platform that aims at recognizing birds by sound at scale. We support various hardware and operating systems such as Arduino microcontrollers, the Raspberry Pi, smartphones, web browsers, workstation PCs, and even cloud services. BirdNET is a citizen science platform as well as an analysis software for extremely large collections of audio. BirdNET aims to provide innovative tools for conservationists, biologists, and birders alike. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20201214`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Bismark.md b/docs/version-specific/supported-software/b/Bismark.md new file mode 100644 index 000000000..1e06e383c --- /dev/null +++ b/docs/version-specific/supported-software/b/Bismark.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# Bismark + +A tool to map bisulfite converted sequence reads and determine cytosine methylation states + +*homepage*: + +version | toolchain +--------|---------- +``0.19.0`` | ``intel/2017b`` +``0.20.1`` | ``foss/2018b`` +``0.20.1`` | ``intel/2018b`` +``0.23.1`` | ``foss/2021b`` +``0.24.0`` | ``GCC/11.3.0`` +``0.24.1`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Bison.md b/docs/version-specific/supported-software/b/Bison.md new file mode 100644 index 000000000..daf680353 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bison.md @@ -0,0 +1,95 @@ +--- +search: + boost: 0.5 +--- +# Bison + +Bison is a general-purpose parser generator that converts an annotated context-free grammar into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables. + +*homepage*: + +version | toolchain +--------|---------- +``2.7`` | ``GCC/4.8.1`` +``2.7`` | ``GCC/4.8.4`` +``2.7`` | ``GCCcore/6.3.0`` +``2.7`` | ``GCCcore/6.4.0`` +``2.7`` | ``system`` +``3.0.2`` | ``GCC/4.8.2`` +``3.0.3`` | ``GCC/4.9.2`` +``3.0.4`` | ``GCC/4.9.2-binutils-2.25`` +``3.0.4`` | ``GCC/4.9.2`` +``3.0.4`` | ``GCC/4.9.3-2.25`` +``3.0.4`` | ``GCC/4.9.3-binutils-2.25`` +``3.0.4`` | ``GCC/4.9.3`` +``3.0.4`` | ``GCC/5.1.0-binutils-2.25`` +``3.0.4`` | ``GCCcore/4.9.2`` +``3.0.4`` | ``GCCcore/4.9.3`` +``3.0.4`` | ``GCCcore/4.9.4`` +``3.0.4`` | ``GCCcore/5.3.0`` +``3.0.4`` | ``GCCcore/5.4.0`` +``3.0.4`` | ``GCCcore/5.5.0`` +``3.0.4`` | ``GCCcore/6.1.0`` +``3.0.4`` | ``GCCcore/6.2.0`` +``3.0.4`` | ``GCCcore/6.3.0`` +``3.0.4`` | ``GCCcore/6.4.0`` +``3.0.4`` | ``GCCcore/7.1.0`` +``3.0.4`` | ``GCCcore/7.2.0`` +``3.0.4`` | ``GCCcore/7.3.0`` +``3.0.4`` | ``GCCcore/8.1.0`` +``3.0.4`` | ``GCCcore/system`` +``3.0.4`` | ``GNU/4.9.3-2.25`` +``3.0.4`` | ``foss/2016a`` +``3.0.4`` | ``foss/2016b`` +``3.0.4`` | ``gimkl/2.11.5`` +``3.0.4`` | ``gimkl/2017a`` +``3.0.4`` | ``intel/2016.02-GCC-4.9`` +``3.0.4`` | ``intel/2016a`` +``3.0.4`` | ``intel/2016b`` +``3.0.4`` | ``iomkl/2016.07`` +``3.0.4`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``3.0.4`` | ``system`` +``3.0.5`` | ``GCCcore/5.5.0`` +``3.0.5`` | ``GCCcore/6.3.0`` +``3.0.5`` | ``GCCcore/6.4.0`` +``3.0.5`` | ``GCCcore/7.2.0`` +``3.0.5`` | ``GCCcore/7.3.0`` +``3.0.5`` | ``GCCcore/8.1.0`` +``3.0.5`` | ``GCCcore/8.2.0`` +``3.0.5`` | ``GCCcore/system`` +``3.0.5`` | ``system`` +``3.2.2`` | ``GCCcore/7.4.0`` +``3.3.2`` | ``GCCcore/8.2.0`` +``3.3.2`` | ``GCCcore/8.3.0`` +``3.3.2`` | ``GCCcore/8.4.0`` +``3.3.2`` | ``GCCcore/9.1.0`` +``3.3.2`` | ``GCCcore/9.2.0`` +``3.3.2`` | ``system`` +``3.5.2`` | ``system`` +``3.5.3`` | ``GCCcore/10.2.0`` +``3.5.3`` | ``GCCcore/9.3.0`` +``3.5.3`` | ``system`` +``3.6.1`` | ``GCCcore/10.1.0`` +``3.7.1`` | ``GCCcore/10.2.0`` +``3.7.1`` | ``system`` +``3.7.6`` | ``FCC/4.5.0`` +``3.7.6`` | ``GCCcore/10.3.0`` +``3.7.6`` | ``GCCcore/11.1.0`` +``3.7.6`` | ``GCCcore/11.2.0`` +``3.7.6`` | ``GCCcore/9.4.0`` +``3.7.6`` | ``system`` +``3.8.2`` | ``GCCcore/11.3.0`` +``3.8.2`` | ``GCCcore/11.4.0`` +``3.8.2`` | ``GCCcore/12.1.0`` +``3.8.2`` | ``GCCcore/12.2.0`` +``3.8.2`` | ``GCCcore/12.3.0`` +``3.8.2`` | ``GCCcore/13.1.0`` +``3.8.2`` | ``GCCcore/13.2.0`` +``3.8.2`` | ``GCCcore/13.3.0`` +``3.8.2`` | ``GCCcore/14.1.0`` +``3.8.2`` | ``GCCcore/9.5.0`` +``3.8.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Blender.md b/docs/version-specific/supported-software/b/Blender.md new file mode 100644 index 000000000..1fe8bda1c --- /dev/null +++ b/docs/version-specific/supported-software/b/Blender.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# Blender + +Blender is the free and open source 3D creation suite. It supports the entirety of the 3D pipeline-modeling, rigging, animation, simulation, rendering, compositing and motion tracking, even video editing and game creation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.77a`` | ``-Python-3.5.2`` | ``intel/2016b`` +``2.79`` | ``-Python-3.6.1`` | ``intel/2017a`` +``2.79b`` | ``-Python-3.6.6-CUDA-9.2.88`` | ``foss/2018b`` +``2.79b`` | ``-Python-3.6.6`` | ``intel/2018b`` +``2.81`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.81`` | ``-Python-3.7.4`` | ``intel/2019b`` +``3.0.0`` | ``-linux-x64`` | ``system`` +``3.1.2`` | ``-linux-x64`` | ``system`` +``3.2.2`` | ``-linux-x64`` | ``system`` +``3.3.1`` | ``-linux-x86_64-CUDA-11.7.0`` | ``system`` +``3.4.1`` | ``-linux-x86_64-CUDA-11.7.0`` | ``system`` +``3.5.0`` | ``-linux-x86_64-CUDA-11.7.0`` | ``system`` +``3.6.5`` | ``-linux-x86_64-CUDA-12.1.1`` | ``system`` +``4.0.1`` | ``-linux-x86_64-CUDA-12.1.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Blitz++.md b/docs/version-specific/supported-software/b/Blitz++.md new file mode 100644 index 000000000..5f8c05219 --- /dev/null +++ b/docs/version-specific/supported-software/b/Blitz++.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# Blitz++ + +Blitz++ is a (LGPLv3+) licensed meta-template library for array manipulation in C++ with a speed comparable to Fortran implementations, while preserving an object-oriented interface + +*homepage*: + +version | toolchain +--------|---------- +``0.10`` | ``GCCcore/6.4.0`` +``0.10`` | ``foss/2016a`` +``1.0.2`` | ``GCCcore/10.2.0`` +``1.0.2`` | ``GCCcore/11.3.0`` +``1.0.2`` | ``GCCcore/12.2.0`` +``1.0.2`` | ``GCCcore/12.3.0`` +``1.0.2`` | ``GCCcore/13.2.0`` +``1.0.2`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BlobTools.md b/docs/version-specific/supported-software/b/BlobTools.md new file mode 100644 index 000000000..152063361 --- /dev/null +++ b/docs/version-specific/supported-software/b/BlobTools.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BlobTools + +A modular command-line solution for visualisation, quality control and taxonomic partitioning of genome datasets. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20180528`` | ``-Python-2.7.15`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Block.md b/docs/version-specific/supported-software/b/Block.md new file mode 100644 index 000000000..a7413e6fa --- /dev/null +++ b/docs/version-specific/supported-software/b/Block.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Block + +Block implements the density matrix renormalization group (DMRG) algorithm for quantum chemistry. + +*homepage*: + +version | toolchain +--------|---------- +``1.5.3-20200525`` | ``foss/2022a`` +``1.5.3-20200525`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Blosc.md b/docs/version-specific/supported-software/b/Blosc.md new file mode 100644 index 000000000..bfbe68430 --- /dev/null +++ b/docs/version-specific/supported-software/b/Blosc.md @@ -0,0 +1,34 @@ +--- +search: + boost: 0.5 +--- +# Blosc + +Blosc, an extremely fast, multi-threaded, meta-compressor library + +*homepage*: + +version | toolchain +--------|---------- +``1.11.1`` | ``intel/2016b`` +``1.12.1`` | ``GCCcore/6.4.0`` +``1.12.1`` | ``foss/2016b`` +``1.12.1`` | ``foss/2017a`` +``1.12.1`` | ``intel/2017a`` +``1.14.2`` | ``GCCcore/6.4.0`` +``1.14.2`` | ``foss/2016a`` +``1.14.4`` | ``GCCcore/7.3.0`` +``1.17.0`` | ``GCCcore/8.2.0`` +``1.17.1`` | ``GCCcore/8.3.0`` +``1.17.1`` | ``GCCcore/9.3.0`` +``1.21.0`` | ``GCCcore/10.2.0`` +``1.21.0`` | ``GCCcore/10.3.0`` +``1.21.1`` | ``GCCcore/11.2.0`` +``1.21.3`` | ``GCCcore/11.3.0`` +``1.21.3`` | ``GCCcore/12.2.0`` +``1.21.5`` | ``GCCcore/12.3.0`` +``1.21.5`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Blosc2.md b/docs/version-specific/supported-software/b/Blosc2.md new file mode 100644 index 000000000..e43199b75 --- /dev/null +++ b/docs/version-specific/supported-software/b/Blosc2.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# Blosc2 + +Blosc, an extremely fast, multi-threaded, meta-compressor library + +*homepage*: + +version | toolchain +--------|---------- +``2.0.3`` | ``GCCcore/10.2.0`` +``2.0.4`` | ``GCCcore/10.3.0`` +``2.13.2`` | ``GCCcore/13.2.0`` +``2.4.3`` | ``GCCcore/11.2.0`` +``2.4.3`` | ``GCCcore/11.3.0`` +``2.6.1`` | ``GCCcore/11.3.0`` +``2.8.0`` | ``GCCcore/12.2.0`` +``2.8.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BoltzTraP.md b/docs/version-specific/supported-software/b/BoltzTraP.md new file mode 100644 index 000000000..8c0411df0 --- /dev/null +++ b/docs/version-specific/supported-software/b/BoltzTraP.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BoltzTraP + +Boltzmann Transport Properties (BoltzTraP) is a program for calculating the semi-classic transport coefficients. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.5`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BoltzTraP2.md b/docs/version-specific/supported-software/b/BoltzTraP2.md new file mode 100644 index 000000000..07cadae09 --- /dev/null +++ b/docs/version-specific/supported-software/b/BoltzTraP2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BoltzTraP2 + +BoltzTraP2 provides a numerically stable and efficient method for obtaining analytic representations of electronic bands based on density-functional-theory results for relatively sparse grids. It achieves this goal by using smoothed Fourier interpolation. + +*homepage*: + +version | toolchain +--------|---------- +``22.12.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Bonito.md b/docs/version-specific/supported-software/b/Bonito.md new file mode 100644 index 000000000..914377e36 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bonito.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# Bonito + +Convolution Basecaller for Oxford Nanopore Reads + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.1.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``0.1.4`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``0.2.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``0.2.2`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``0.3.2`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``0.3.5`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``0.3.8`` | | ``fosscuda/2020b`` +``0.4.0`` | | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Bonmin.md b/docs/version-specific/supported-software/b/Bonmin.md new file mode 100644 index 000000000..e37c73257 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bonmin.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Bonmin + +Ipopt (Interior Point OPTimizer, pronounced eye-pea-Opt) is a software package for large-scale nonlinear optimization. + +*homepage*: + +version | toolchain +--------|---------- +``1.8.7`` | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Bonnie++.md b/docs/version-specific/supported-software/b/Bonnie++.md new file mode 100644 index 000000000..fe2a33975 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bonnie++.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Bonnie++ + +Bonnie++-1.97: Enhanced performance Test of Filesystem I/O + +*homepage*: + +version | toolchain +--------|---------- +``1.97`` | ``foss/2016a`` +``2.00a`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Boost.MPI.md b/docs/version-specific/supported-software/b/Boost.MPI.md new file mode 100644 index 000000000..87dfffe2d --- /dev/null +++ b/docs/version-specific/supported-software/b/Boost.MPI.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# Boost.MPI + +Boost provides free peer-reviewed portable C++ source libraries. + +*homepage*: + +version | toolchain +--------|---------- +``1.76.0`` | ``gompi/2021a`` +``1.77.0`` | ``gompi/2021b`` +``1.79.0`` | ``gompi/2022a`` +``1.79.0`` | ``gompi/2022b`` +``1.81.0`` | ``gompi/2022b`` +``1.82.0`` | ``gompi/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Boost.Python-NumPy.md b/docs/version-specific/supported-software/b/Boost.Python-NumPy.md new file mode 100644 index 000000000..9f48921f6 --- /dev/null +++ b/docs/version-specific/supported-software/b/Boost.Python-NumPy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Boost.Python-NumPy + +Boost.Python is a C++ library which enables seamless interoperability between C++ and the Python programming language. + +*homepage*: + +version | toolchain +--------|---------- +``1.79.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Boost.Python.md b/docs/version-specific/supported-software/b/Boost.Python.md new file mode 100644 index 000000000..7c3a74d3f --- /dev/null +++ b/docs/version-specific/supported-software/b/Boost.Python.md @@ -0,0 +1,44 @@ +--- +search: + boost: 0.5 +--- +# Boost.Python + +Boost.Python is a C++ library which enables seamless interoperability between C++ and the Python programming language. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.64.0`` | | ``gompi/2019a`` +``1.64.0`` | | ``gompic/2019a`` +``1.65.1`` | ``-Python-2.7.14`` | ``foss/2017b`` +``1.65.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.66.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``1.66.0`` | ``-Python-2.7.14`` | ``intel/2018a`` +``1.66.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.67.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.67.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.67.0`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``1.67.0`` | ``-Python-2.7.15`` | ``intel/2018b`` +``1.67.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``1.70.0`` | | ``gompi/2019a`` +``1.70.0`` | | ``gompic/2019a`` +``1.70.0`` | | ``iimpi/2019a`` +``1.70.0`` | | ``iimpic/2019a`` +``1.71.0`` | | ``gompi/2019b`` +``1.71.0`` | | ``gompic/2019b`` +``1.71.0`` | | ``iimpi/2019b`` +``1.71.0`` | | ``iimpic/2019b`` +``1.72.0`` | | ``gompi/2020a`` +``1.72.0`` | | ``gompic/2020a`` +``1.72.0`` | | ``iimpi/2020a`` +``1.74.0`` | | ``GCC/10.2.0`` +``1.76.0`` | | ``GCC/10.3.0`` +``1.77.0`` | | ``GCC/11.2.0`` +``1.79.0`` | | ``GCC/11.3.0`` +``1.83.0`` | | ``GCC/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Boost.md b/docs/version-specific/supported-software/b/Boost.md new file mode 100644 index 000000000..d7093033f --- /dev/null +++ b/docs/version-specific/supported-software/b/Boost.md @@ -0,0 +1,110 @@ +--- +search: + boost: 0.5 +--- +# Boost + +Boost provides free peer-reviewed portable C++ source libraries. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.54.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``1.55.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.55.0`` | | ``system`` +``1.57.0`` | ``-Python-2.7.10`` | ``gimkl/2.11.5`` +``1.58.0`` | ``-serial`` | ``GCC/4.9.2`` +``1.58.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.58.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.58.0`` | | ``intel/2017a`` +``1.59.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.59.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.60.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.60.0`` | ``-Python-3.5.1`` | ``foss/2016a`` +``1.60.0`` | | ``foss/2016a`` +``1.60.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.60.0`` | | ``intel/2016a`` +``1.61.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.61.0`` | ``-Python-3.5.1`` | ``foss/2016a`` +``1.61.0`` | | ``foss/2016a`` +``1.61.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``1.61.0`` | | ``foss/2016b`` +``1.61.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.61.0`` | | ``intel/2016a`` +``1.61.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.61.0`` | | ``intel/2016b`` +``1.62.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.63.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``1.63.0`` | ``-Python-3.5.2`` | ``foss/2016b`` +``1.63.0`` | ``-Python-2.7.13`` | ``foss/2017a`` +``1.63.0`` | | ``foss/2017a`` +``1.63.0`` | ``-Python-2.7.14`` | ``foss/2018a`` +``1.63.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.63.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``1.63.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.64.0`` | | ``gompi/2019a`` +``1.64.0`` | | ``gompic/2019a`` +``1.64.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``1.64.0`` | | ``intel/2017a`` +``1.65.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``1.65.1`` | | ``foss/2017a`` +``1.65.1`` | ``-Python-2.7.14`` | ``foss/2017b`` +``1.65.1`` | ``-Python-3.6.3`` | ``foss/2017b`` +``1.65.1`` | | ``foss/2017b`` +``1.65.1`` | ``-Python-2.7.13`` | ``intel/2017a`` +``1.65.1`` | | ``intel/2017a`` +``1.65.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.65.1`` | ``-Python-3.6.3`` | ``intel/2017b`` +``1.65.1`` | | ``intel/2017b`` +``1.66.0`` | ``-no_mpi`` | ``GCCcore/6.4.0`` +``1.66.0`` | ``-Python-2.7.14`` | ``foss/2018a`` +``1.66.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``1.66.0`` | | ``foss/2018a`` +``1.66.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.66.0`` | | ``intel/2017b`` +``1.66.0`` | ``-Python-3.6.3`` | ``intel/2018.01`` +``1.66.0`` | | ``intel/2018.01`` +``1.66.0`` | ``-Python-2.7.14`` | ``intel/2018a`` +``1.66.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.66.0`` | | ``intel/2018a`` +``1.67.0`` | ``-Python-2.7.14`` | ``foss/2018a`` +``1.67.0`` | | ``foss/2018b`` +``1.67.0`` | | ``fosscuda/2018b`` +``1.67.0`` | | ``intel/2018a`` +``1.67.0`` | | ``intel/2018b`` +``1.68.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.68.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.68.0`` | ``-Python-2.7.15`` | ``intel/2018b`` +``1.68.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``1.69.0`` | | ``intel/2019.01`` +``1.70.0`` | | ``gompi/2019a`` +``1.70.0`` | | ``gompic/2019a`` +``1.70.0`` | | ``iimpi/2019a`` +``1.70.0`` | | ``iimpic/2019a`` +``1.71.0`` | | ``gompi/2019b`` +``1.71.0`` | | ``gompic/2019b`` +``1.71.0`` | | ``iimpi/2019b`` +``1.71.0`` | | ``iimpic/2019b`` +``1.72.0`` | ``-no_mpi`` | ``GCCcore/9.3.0`` +``1.72.0`` | | ``gompi/2020a`` +``1.72.0`` | | ``gompic/2020a`` +``1.72.0`` | | ``iimpi/2020a`` +``1.74.0`` | | ``GCC/10.2.0`` +``1.74.0`` | | ``GCC/12.3.0`` +``1.74.0`` | | ``iccifort/2020.4.304`` +``1.75.0`` | | ``GCC/11.2.0`` +``1.76.0`` | | ``GCC/10.3.0`` +``1.76.0`` | | ``intel-compilers/2021.2.0`` +``1.77.0`` | | ``GCC/11.2.0`` +``1.77.0`` | | ``intel-compilers/2021.4.0`` +``1.79.0`` | | ``GCC/11.2.0`` +``1.79.0`` | | ``GCC/11.3.0`` +``1.81.0`` | | ``GCC/12.2.0`` +``1.82.0`` | | ``GCC/12.3.0`` +``1.83.0`` | | ``GCC/13.2.0`` +``1.85.0`` | | ``GCC/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Bottleneck.md b/docs/version-specific/supported-software/b/Bottleneck.md new file mode 100644 index 000000000..f9c5682ef --- /dev/null +++ b/docs/version-specific/supported-software/b/Bottleneck.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Bottleneck + +Fast NumPy array functions written in C + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.1`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.3.2`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.3.6`` | | ``foss/2022a`` +``1.3.7`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Bowtie.md b/docs/version-specific/supported-software/b/Bowtie.md new file mode 100644 index 000000000..8621ec7b0 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bowtie.md @@ -0,0 +1,38 @@ +--- +search: + boost: 0.5 +--- +# Bowtie + +Bowtie is an ultrafast, memory-efficient short read aligner. It aligns short DNA sequences (reads) to the human genome. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.2`` | ``GCCcore/5.4.0`` +``1.1.2`` | ``GCCcore/6.3.0`` +``1.1.2`` | ``foss/2016a`` +``1.1.2`` | ``intel/2016b`` +``1.1.2`` | ``intel/2017a`` +``1.1.2`` | ``intel/2018a`` +``1.2.1.1`` | ``foss/2016b`` +``1.2.1.1`` | ``intel/2017b`` +``1.2.2`` | ``foss/2018b`` +``1.2.2`` | ``intel/2017b`` +``1.2.2`` | ``intel/2018a`` +``1.2.3`` | ``GCC/8.2.0-2.31.1`` +``1.2.3`` | ``GCC/8.3.0`` +``1.2.3`` | ``GCC/9.3.0`` +``1.2.3`` | ``foss/2018b`` +``1.2.3`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``1.2.3`` | ``iccifort/2019.5.281`` +``1.3.0`` | ``GCC/10.2.0`` +``1.3.0`` | ``GCC/9.3.0`` +``1.3.1`` | ``GCC/10.3.0`` +``1.3.1`` | ``GCC/11.2.0`` +``1.3.1`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Bowtie2.md b/docs/version-specific/supported-software/b/Bowtie2.md new file mode 100644 index 000000000..4c66a4c11 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bowtie2.md @@ -0,0 +1,43 @@ +--- +search: + boost: 0.5 +--- +# Bowtie2 + +Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes. Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome, its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.8`` | ``foss/2016a`` +``2.2.9`` | ``foss/2016a`` +``2.2.9`` | ``intel/2016b`` +``2.3.2`` | ``foss/2016b`` +``2.3.2`` | ``foss/2017a`` +``2.3.2`` | ``intel/2017a`` +``2.3.3.1`` | ``intel/2017b`` +``2.3.4`` | ``intel/2017b`` +``2.3.4.1`` | ``foss/2017b`` +``2.3.4.1`` | ``intel/2017b`` +``2.3.4.1`` | ``intel/2018a`` +``2.3.4.2`` | ``foss/2018b`` +``2.3.4.2`` | ``intel/2018b`` +``2.3.4.3`` | ``foss/2017b`` +``2.3.5.1`` | ``GCC/8.2.0-2.31.1`` +``2.3.5.1`` | ``GCC/8.3.0`` +``2.3.5.1`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``2.3.5.1`` | ``iccifort/2019.5.281`` +``2.4.1`` | ``GCC/9.3.0`` +``2.4.2`` | ``GCC/10.2.0`` +``2.4.2`` | ``GCC/9.3.0`` +``2.4.4`` | ``GCC/10.3.0`` +``2.4.4`` | ``GCC/11.2.0`` +``2.4.5`` | ``GCC/11.3.0`` +``2.5.1`` | ``GCC/10.3.0`` +``2.5.1`` | ``GCC/12.2.0`` +``2.5.1`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Bpipe.md b/docs/version-specific/supported-software/b/Bpipe.md new file mode 100644 index 000000000..1d082aa70 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bpipe.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Bpipe + +Bpipe - a tool for running and managing bioinformatics pipelines + +*homepage*: + +version | toolchain +--------|---------- +``0.9.9.2`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Bracken.md b/docs/version-specific/supported-software/b/Bracken.md new file mode 100644 index 000000000..e21b34190 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bracken.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Bracken + +Bracken (Bayesian Reestimation of Abundance with KrakEN) is a highly accurate statistical method that computes the abundance of species in DNA sequences from a metagenomics sample. Braken uses the taxonomy labels assigned by Kraken, a highly accurate metagenomics classification algorithm, to estimate the number of reads originating from each species present in a sample. Kraken classifies reads to the best matching location in the taxonomic tree, but does not estimate abundances of species. We use the Kraken database itself to derive probabilities that describe how much sequence from each genome is identical to other genomes in the database, and combine this information with the assignments for a particular sample to estimate abundance at the species level, the genus level, or above. Combined with the Kraken classifier, Bracken produces accurate species- and genus-level abundance estimates even when a sample contains two or more near-identical species. NOTE: Bracken is compatible with both Kraken 1 and Kraken 2. However, the default kmer length is different depending on the version of Kraken used. If you use Kraken 1 defaults, specify 31 as the kmer length. If you use Kraken 2 defaults, specify 35 as the kmer length. + +*homepage*: + +version | toolchain +--------|---------- +``2.6.0`` | ``GCCcore/9.3.0`` +``2.6.2`` | ``GCCcore/11.2.0`` +``2.7`` | ``GCCcore/11.2.0`` +``2.9`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Braindecode.md b/docs/version-specific/supported-software/b/Braindecode.md new file mode 100644 index 000000000..bccb0f2d4 --- /dev/null +++ b/docs/version-specific/supported-software/b/Braindecode.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Braindecode + +Braindecode is an open-source Python toolbox for decoding raw electrophysiological brain data with deep learning models. It includes dataset fetchers, data preprocessing and visualization tools, as well as implementations of several deep learning architectures and data augmentations for analysis of EEG, ECoG and MEG. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7`` | ``-PyTorch-1.10.0-CUDA-11.3.1`` | ``foss/2021a`` +``0.7`` | ``-PyTorch-1.10.0`` | ``foss/2021a`` +``0.8.1`` | ``-PyTorch-2.1.2-CUDA-12.1.1`` | ``foss/2023a`` +``0.8.1`` | ``-PyTorch-2.1.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BreakDancer.md b/docs/version-specific/supported-software/b/BreakDancer.md new file mode 100644 index 000000000..c875e6751 --- /dev/null +++ b/docs/version-specific/supported-software/b/BreakDancer.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BreakDancer + +BreakDancer is a Perl/C++ package that provides genome-wide detection of structural variants from next generation paired-end sequencing reads + +*homepage*: + +version | toolchain +--------|---------- +``1.4.5`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Brotli-python.md b/docs/version-specific/supported-software/b/Brotli-python.md new file mode 100644 index 000000000..00bbe899a --- /dev/null +++ b/docs/version-specific/supported-software/b/Brotli-python.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# Brotli-python + +Brotli is a generic-purpose lossless compression algorithm that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling, with a compression ratio comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate but offers more dense compression. The specification of the Brotli Compressed Data Format is defined in RFC 7932. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.9`` | ``GCCcore/10.2.0`` +``1.0.9`` | ``GCCcore/10.3.0`` +``1.0.9`` | ``GCCcore/11.3.0`` +``1.0.9`` | ``GCCcore/12.2.0`` +``1.0.9`` | ``GCCcore/12.3.0`` +``1.1.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Brotli.md b/docs/version-specific/supported-software/b/Brotli.md new file mode 100644 index 000000000..e48f69869 --- /dev/null +++ b/docs/version-specific/supported-software/b/Brotli.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# Brotli + +Brotli is a generic-purpose lossless compression algorithm that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling, with a compression ratio comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate but offers more dense compression. The specification of the Brotli Compressed Data Format is defined in RFC 7932. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.9`` | ``GCCcore/10.2.0`` +``1.0.9`` | ``GCCcore/10.3.0`` +``1.0.9`` | ``GCCcore/11.2.0`` +``1.0.9`` | ``GCCcore/11.3.0`` +``1.0.9`` | ``GCCcore/12.2.0`` +``1.0.9`` | ``GCCcore/12.3.0`` +``1.0.9`` | ``GCCcore/8.3.0`` +``1.1.0`` | ``GCCcore/13.2.0`` +``1.1.0`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Brunsli.md b/docs/version-specific/supported-software/b/Brunsli.md new file mode 100644 index 000000000..741eae19f --- /dev/null +++ b/docs/version-specific/supported-software/b/Brunsli.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Brunsli + +Brunsli is a lossless JPEG repacking library. + +*homepage*: + +version | toolchain +--------|---------- +``0.1`` | ``GCCcore/10.2.0`` +``0.1`` | ``GCCcore/10.3.0`` +``0.1`` | ``GCCcore/11.3.0`` +``0.1`` | ``GCCcore/12.2.0`` +``0.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Bsoft.md b/docs/version-specific/supported-software/b/Bsoft.md new file mode 100644 index 000000000..5fa9e31fd --- /dev/null +++ b/docs/version-specific/supported-software/b/Bsoft.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Bsoft + +Bsoft is a collection of programs and a platform for development of software for image and molecular processing in structural biology. Problems in structural biology are approached with a highly modular design, allowing fast development of new algorithms without the burden of issues such as file I/O. It provides an easily accessible interface, a resource that can be and has been used in other packages. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.2`` | ``foss/2017b`` +``2.0.7`` | ``GCC/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/BuDDy.md b/docs/version-specific/supported-software/b/BuDDy.md new file mode 100644 index 000000000..591f26526 --- /dev/null +++ b/docs/version-specific/supported-software/b/BuDDy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# BuDDy + +A Binary Decision Diagram library, with many highly efficient vectorized BDD operations, dynamic variable reordering, automated garbage collection, a C++ interface with automatic reference counting, and much more. + +*homepage*: + +version | toolchain +--------|---------- +``2.4`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/Bullet.md b/docs/version-specific/supported-software/b/Bullet.md new file mode 100644 index 000000000..48e7724e8 --- /dev/null +++ b/docs/version-specific/supported-software/b/Bullet.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Bullet + +Bullet professional 3D Game Multiphysics Library provides state of the art collision detection, soft body and rigid body dynamics. + +*homepage*: + +version | toolchain +--------|---------- +``2.83.7`` | ``foss/2016a`` +``2.83.7`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/babl.md b/docs/version-specific/supported-software/b/babl.md new file mode 100644 index 000000000..56a8dcca4 --- /dev/null +++ b/docs/version-specific/supported-software/b/babl.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# babl + +babl is pixel encoding and color space conversion engine in C + +*homepage*: + +version | toolchain +--------|---------- +``0.1.86`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bam-readcount.md b/docs/version-specific/supported-software/b/bam-readcount.md new file mode 100644 index 000000000..aba564601 --- /dev/null +++ b/docs/version-specific/supported-software/b/bam-readcount.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# bam-readcount + +Count DNA sequence reads in BAM files + +*homepage*: + +version | toolchain +--------|---------- +``0.8.0`` | ``GCC/11.2.0`` +``0.8.0`` | ``GCC/9.3.0`` +``0.8.0`` | ``foss/2018b`` +``1.0.1`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bamFilters.md b/docs/version-specific/supported-software/b/bamFilters.md new file mode 100644 index 000000000..23a580f51 --- /dev/null +++ b/docs/version-specific/supported-software/b/bamFilters.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# bamFilters + +A utility tool to filter alignments from bam files, using identity percent, low complexity and read coverage. + +*homepage*: + +version | toolchain +--------|---------- +``2022-06-30`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bamtofastq.md b/docs/version-specific/supported-software/b/bamtofastq.md new file mode 100644 index 000000000..e06cae439 --- /dev/null +++ b/docs/version-specific/supported-software/b/bamtofastq.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# bamtofastq + +Convert 10x BAM files to the original FASTQs compatible with 10x pipelines. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.0`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/barrnap.md b/docs/version-specific/supported-software/b/barrnap.md new file mode 100644 index 000000000..71a90db7f --- /dev/null +++ b/docs/version-specific/supported-software/b/barrnap.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# barrnap + +Barrnap (BAsic Rapid Ribosomal RNA Predictor) predicts the location of ribosomal RNA genes in genomes. + +*homepage*: + +version | toolchain +--------|---------- +``0.9`` | ``GCC/8.2.0-2.31.1`` +``0.9`` | ``foss/2018b`` +``0.9`` | ``gompi/2020b`` +``0.9`` | ``gompi/2021b`` +``0.9`` | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/basemap.md b/docs/version-specific/supported-software/b/basemap.md new file mode 100644 index 000000000..99e6ef2a4 --- /dev/null +++ b/docs/version-specific/supported-software/b/basemap.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# basemap + +The matplotlib basemap toolkit is a library for plotting 2D data on maps in Python + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.7`` | ``-Python-2.7.13`` | ``intel/2017a`` +``1.0.7`` | ``-Python-3.6.3`` | ``intel/2017b`` +``1.0.7`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.2.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``1.2.2`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.3.6`` | | ``foss/2022a`` +``1.3.9`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bases2fastq.md b/docs/version-specific/supported-software/b/bases2fastq.md new file mode 100644 index 000000000..5f2c05844 --- /dev/null +++ b/docs/version-specific/supported-software/b/bases2fastq.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# bases2fastq + +Bases2Fastq Software demultiplexes sequencing data and converts base calls into FASTQ files for secondary analysis with the FASTQ-compatible software of your choice. The Element AVITI™ System records base calls, which are the main output of a sequencing run, with associated quality scores (Q-scores) in bases files. Bases files must be converted into the FASTQ file format for secondary analysis. To generate QC reports, also load BeautifulSoup and bokeh. + +*homepage*: + +version | toolchain +--------|---------- +``1.5.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bashplotlib.md b/docs/version-specific/supported-software/b/bashplotlib.md new file mode 100644 index 000000000..b8a74e879 --- /dev/null +++ b/docs/version-specific/supported-software/b/bashplotlib.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# bashplotlib + +bashplotlib is a python package and command line tool for making basic plots in the terminal. It's a quick way to visualize data when you don't have a GUI. + +*homepage*: + +version | toolchain +--------|---------- +``0.6.5`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bat.md b/docs/version-specific/supported-software/b/bat.md new file mode 100644 index 000000000..91d6777ee --- /dev/null +++ b/docs/version-specific/supported-software/b/bat.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# bat + +The BAT Python package supports the processing and analysis of Bro data with Pandas, scikit-learn, and Spark + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.3`` | ``-Python-3.6.3`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/batchgenerators.md b/docs/version-specific/supported-software/b/batchgenerators.md new file mode 100644 index 000000000..37d85fa0b --- /dev/null +++ b/docs/version-specific/supported-software/b/batchgenerators.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# batchgenerators + +Data augmentation toolkit developed at the Division of Medical Image Computing at the German Cancer Research Center (DKFZ) to suit all our deep learning data augmentation needs. + +*homepage*: + +version | toolchain +--------|---------- +``0.25`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bbFTP.md b/docs/version-specific/supported-software/b/bbFTP.md new file mode 100644 index 000000000..e3d66f132 --- /dev/null +++ b/docs/version-specific/supported-software/b/bbFTP.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# bbFTP + +bbFTP is a file transfer software. It implements its own transfer protocol, which is optimized for large files (larger than 2GB) and secure as it does not read the password in a file and encrypts the connection information. bbFTP main features are: * Encoded username and password at connection * SSH and Certificate authentication modules * Multi-stream transfer * Big windows as defined in RFC1323 * On-the-fly data compression * Automatic retry * Customizable time-outs * Transfer simulation * AFS authentication integration * RFIO interface + +*homepage*: + +version | toolchain +--------|---------- +``3.2.1`` | ``GCCcore/9.3.0`` +``3.2.1`` | ``intel/2016a`` +``3.2.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bbcp.md b/docs/version-specific/supported-software/b/bbcp.md new file mode 100644 index 000000000..12b83ce24 --- /dev/null +++ b/docs/version-specific/supported-software/b/bbcp.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# bbcp + +BBCP is an alternative to Gridftp when transferring large amounts of data, capable of breaking up your transfer into multiple simultaneous transferring streams, thereby transferring data much faster than single-streaming utilities such as SCP and SFTP. See details at http://pcbunn.cithep.caltech.edu/bbcp/using_bbcp.htm or http://www.nics.tennessee.edu/computing-resources/data-transfer/bbcp + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``12.01.30.00.0`` | ``-amd64_linux26`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bc.md b/docs/version-specific/supported-software/b/bc.md new file mode 100644 index 000000000..e0b87c378 --- /dev/null +++ b/docs/version-specific/supported-software/b/bc.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# bc + +bc is an arbitrary precision numeric processing language. + +*homepage*: + +version | toolchain +--------|---------- +``1.06.95`` | ``GCC/4.8.2`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bcbio-gff.md b/docs/version-specific/supported-software/b/bcbio-gff.md new file mode 100644 index 000000000..c38b984e5 --- /dev/null +++ b/docs/version-specific/supported-software/b/bcbio-gff.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# bcbio-gff + +Read and write Generic Feature Format (GFF) with Biopython integration. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.6.6`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.6.7`` | | ``foss/2021a`` +``0.7.0`` | | ``foss/2020b`` +``0.7.0`` | | ``foss/2022a`` +``0.7.0`` | | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bcgTree.md b/docs/version-specific/supported-software/b/bcgTree.md new file mode 100644 index 000000000..4193b01a7 --- /dev/null +++ b/docs/version-specific/supported-software/b/bcgTree.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# bcgTree + +Automatized phylogenetic tree building from bacterial core genomes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.10`` | ``-Perl-5.26.1`` | ``intel/2018a`` +``1.1.0`` | ``-Perl-5.28.0`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bcl-convert.md b/docs/version-specific/supported-software/b/bcl-convert.md new file mode 100644 index 000000000..442ff10ad --- /dev/null +++ b/docs/version-specific/supported-software/b/bcl-convert.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# bcl-convert + +The Illumina BCL Convert v4.0 is a standalone local software app that converts the Binary Base Call (BCL) files produced by Illumina sequencing systems to FASTQ files. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.0.3-2`` | ``el7.x86_64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bcl2fastq2.md b/docs/version-specific/supported-software/b/bcl2fastq2.md new file mode 100644 index 000000000..00b87c467 --- /dev/null +++ b/docs/version-specific/supported-software/b/bcl2fastq2.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# bcl2fastq2 + +bcl2fastq Conversion Software both demultiplexes data and converts BCL files generated by Illumina sequencing systems to standard FASTQ file formats for downstream analysis. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.19.1`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2.20.0`` | | ``GCC/10.2.0`` +``2.20.0`` | | ``GCC/10.3.0`` +``2.20.0`` | | ``GCC/11.2.0`` +``2.20.0`` | | ``GCC/11.3.0`` +``2.20.0`` | | ``GCC/12.2.0`` +``2.20.0`` | | ``GCC/8.3.0`` +``2.20.0`` | | ``GCC/9.3.0`` +``2.20.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2.20.0`` | | ``foss/2018b`` +``2.20.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.20.0`` | | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bcolz.md b/docs/version-specific/supported-software/b/bcolz.md new file mode 100644 index 000000000..e8b225d35 --- /dev/null +++ b/docs/version-specific/supported-software/b/bcolz.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# bcolz + +bcolz provides columnar, chunked data containers that can be compressed either in-memory and on-disk. Column storage allows for efficiently querying tables, as well as for cheap column addition and removal. It is based on NumPy, and uses it as the standard data container to communicate with bcolz objects, but it also comes with support for import/export facilities to/from HDF5/PyTables tables and pandas dataframes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.1`` | ``-Python-2.7.13`` | ``foss/2017a`` +``1.2.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.2.1`` | | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bcrypt.md b/docs/version-specific/supported-software/b/bcrypt.md new file mode 100644 index 000000000..ccb4a564a --- /dev/null +++ b/docs/version-specific/supported-software/b/bcrypt.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# bcrypt + +Acceptable password hashing for your software and your servers (but you should really use argon2id or scrypt) + +*homepage*: + +version | toolchain +--------|---------- +``4.0.1`` | ``GCCcore/12.3.0`` +``4.1.3`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/beagle-lib.md b/docs/version-specific/supported-software/b/beagle-lib.md new file mode 100644 index 000000000..25227ffbc --- /dev/null +++ b/docs/version-specific/supported-software/b/beagle-lib.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# beagle-lib + +beagle-lib is a high-performance library that can perform the core calculations at the heart of most Bayesian and Maximum Likelihood phylogenetics packages. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.2`` | | ``foss/2016a`` +``2.1.2`` | | ``foss/2017a`` +``3.0.1`` | | ``foss/2018a`` +``3.0.1`` | | ``intel/2018a`` +``3.0.2`` | ``-CUDA-9.2.88`` | ``foss/2018b`` +``3.0.2`` | | ``foss/2018b`` +``3.1.2`` | | ``GCC/10.2.0`` +``3.1.2`` | | ``GCC/10.3.0`` +``3.1.2`` | | ``GCC/8.2.0-2.31.1`` +``3.1.2`` | | ``GCC/9.3.0`` +``3.1.2`` | | ``gcccuda/2019b`` +``3.1.2`` | | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``4.0.0`` | | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/behave.md b/docs/version-specific/supported-software/b/behave.md new file mode 100644 index 000000000..5c4f9f8bb --- /dev/null +++ b/docs/version-specific/supported-software/b/behave.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# behave + +behave: Behavior-driven development (or BDD) is an agile software development technique that encourages collaboration between developers, QA and non-technical or business participants in a software project. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.5`` | ``-Python-2.7.12`` | ``foss/2016b`` +``1.2.6`` | ``-Python-3.6.4`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bench.md b/docs/version-specific/supported-software/b/bench.md new file mode 100644 index 000000000..746378853 --- /dev/null +++ b/docs/version-specific/supported-software/b/bench.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# bench + +Tools to accurately benchmark and analyze execution times for R expressions. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.2`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bgen-reader.md b/docs/version-specific/supported-software/b/bgen-reader.md new file mode 100644 index 000000000..ec59e4589 --- /dev/null +++ b/docs/version-specific/supported-software/b/bgen-reader.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# bgen-reader + +A bgen file format reader. This python package is a wrapper around the bgen library, a low-memory footprint reader that efficiently reads bgen files. It fully supports the bgen format specifications: 1.2 and 1.3; as well as their optional compressed formats. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.2`` | ``-Python-3.6.6`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bgen.md b/docs/version-specific/supported-software/b/bgen.md new file mode 100644 index 000000000..62006e8e4 --- /dev/null +++ b/docs/version-specific/supported-software/b/bgen.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# bgen + +A BGEN file format reader. It fully supports the BGEN format specifications 1.2 and 1.3. + +*homepage*: + +version | toolchain +--------|---------- +``3.0.2`` | ``GCCcore/7.3.0`` +``3.0.3`` | ``GCCcore/9.3.0`` +``4.1.3`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bibtexparser.md b/docs/version-specific/supported-software/b/bibtexparser.md new file mode 100644 index 000000000..0857405d1 --- /dev/null +++ b/docs/version-specific/supported-software/b/bibtexparser.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# bibtexparser + +Bibtex parser in Python 2.7 and 3.x + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/binutils.md b/docs/version-specific/supported-software/b/binutils.md new file mode 100644 index 000000000..fe1c98eb4 --- /dev/null +++ b/docs/version-specific/supported-software/b/binutils.md @@ -0,0 +1,79 @@ +--- +search: + boost: 0.5 +--- +# binutils + +binutils: GNU binary utilities + +*homepage*: + +version | toolchain +--------|---------- +``2.25`` | ``GCC/4.9.2-binutils-2.25`` +``2.25`` | ``GCC/4.9.2`` +``2.25`` | ``GCC/4.9.3-binutils-2.25`` +``2.25`` | ``GCC/4.9.3`` +``2.25`` | ``GCC/5.1.0-binutils-2.25`` +``2.25`` | ``GCCcore/4.9.2`` +``2.25`` | ``GCCcore/4.9.3`` +``2.25`` | ``GCCcore/4.9.4`` +``2.25.1`` | ``system`` +``2.25`` | ``system`` +``2.26`` | ``GCCcore/5.3.0`` +``2.26`` | ``GCCcore/5.4.0`` +``2.26`` | ``GCCcore/5.5.0`` +``2.26`` | ``GCCcore/6.3.0`` +``2.26`` | ``system`` +``2.27`` | ``GCCcore/6.1.0`` +``2.27`` | ``GCCcore/6.2.0`` +``2.27`` | ``GCCcore/6.3.0`` +``2.27`` | ``system`` +``2.28`` | ``GCCcore/6.3.0`` +``2.28`` | ``GCCcore/6.4.0`` +``2.28`` | ``GCCcore/7.1.0`` +``2.28`` | ``system`` +``2.29`` | ``GCCcore/7.2.0`` +``2.29`` | ``GCCcore/system`` +``2.29`` | ``system`` +``2.30`` | ``GCCcore/7.3.0`` +``2.30`` | ``GCCcore/8.1.0`` +``2.30`` | ``system`` +``2.31.1`` | ``GCCcore/7.4.0`` +``2.31.1`` | ``GCCcore/8.2.0`` +``2.31.1`` | ``system`` +``2.32`` | ``GCCcore/8.3.0`` +``2.32`` | ``GCCcore/9.1.0`` +``2.32`` | ``GCCcore/9.2.0`` +``2.32`` | ``system`` +``2.34`` | ``GCCcore/10.1.0`` +``2.34`` | ``GCCcore/9.3.0`` +``2.34`` | ``system`` +``2.35`` | ``GCCcore/10.2.0`` +``2.35`` | ``system`` +``2.36.1`` | ``FCC/4.5.0`` +``2.36.1`` | ``GCCcore/10.3.0`` +``2.36.1`` | ``GCCcore/11.1.0`` +``2.36.1`` | ``GCCcore/8.4.0`` +``2.36.1`` | ``GCCcore/9.4.0`` +``2.36.1`` | ``system`` +``2.37`` | ``GCCcore/11.2.0`` +``2.37`` | ``system`` +``2.38`` | ``GCCcore/11.3.0`` +``2.38`` | ``GCCcore/12.1.0`` +``2.38`` | ``GCCcore/9.5.0`` +``2.38`` | ``system`` +``2.39`` | ``GCCcore/12.2.0`` +``2.39`` | ``system`` +``2.40`` | ``GCCcore/11.4.0`` +``2.40`` | ``GCCcore/12.3.0`` +``2.40`` | ``GCCcore/13.1.0`` +``2.40`` | ``GCCcore/13.2.0`` +``2.40`` | ``system`` +``2.42`` | ``GCCcore/13.3.0`` +``2.42`` | ``GCCcore/14.1.0`` +``2.42`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bioawk.md b/docs/version-specific/supported-software/b/bioawk.md new file mode 100644 index 000000000..c702a07d1 --- /dev/null +++ b/docs/version-specific/supported-software/b/bioawk.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# bioawk + +Bioawk is an extension to Brian Kernighan's awk, adding the support of several common biological data formats, including optionally gzip'ed BED, GFF, SAM, VCF, FASTA/Q and TAB-delimited formats with column names. + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``GCC/10.3.0`` +``1.0`` | ``GCC/11.2.0`` +``1.0`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/biobakery-workflows.md b/docs/version-specific/supported-software/b/biobakery-workflows.md new file mode 100644 index 000000000..e4bc81622 --- /dev/null +++ b/docs/version-specific/supported-software/b/biobakery-workflows.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# biobakery-workflows + +bioBakery workflows is a collection of workflows and tasks for executing common microbial community analyses using standardized, validated tools and parameters. Quality control and statistical summary reports are automatically generated for most data types, which include 16S amplicons, metagenomes, and metatranscriptomes. Workflows are run directly from the command line and tasks can be imported to create your own custom workflows. The workflows and tasks are built with AnADAMA2 which allows for parallel task execution locally and in a grid compute environment. + +*homepage*: + +version | toolchain +--------|---------- +``3.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/biobambam2.md b/docs/version-specific/supported-software/b/biobambam2.md new file mode 100644 index 000000000..16a4d2f32 --- /dev/null +++ b/docs/version-specific/supported-software/b/biobambam2.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# biobambam2 + +Tools for processing BAM files + +*homepage*: + +version | toolchain +--------|---------- +``2.0.185`` | ``GCC/12.3.0`` +``2.0.87`` | ``GCC/11.3.0`` +``2.0.87`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/biogeme.md b/docs/version-specific/supported-software/b/biogeme.md new file mode 100644 index 000000000..33b21c21a --- /dev/null +++ b/docs/version-specific/supported-software/b/biogeme.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# biogeme + +Biogeme is a open source Python package designed for the maximum likelihood estimation of parametric models in general, with a special emphasis on discrete choice models. + +*homepage*: + +version | toolchain +--------|---------- +``3.1.2`` | ``foss/2021a`` +``3.2.10`` | ``foss/2022a`` +``3.2.6`` | ``foss/2022a`` +``3.2.8`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/biom-format.md b/docs/version-specific/supported-software/b/biom-format.md new file mode 100644 index 000000000..43242b1b2 --- /dev/null +++ b/docs/version-specific/supported-software/b/biom-format.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# biom-format + +The BIOM file format (canonically pronounced biome) is designed to be a general-use format for representing biological sample by observation contingency tables. BIOM is a recognized standard for the Earth Microbiome Project and is a Genomics Standards Consortium supported project. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.10`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2.1.12`` | | ``foss/2021b`` +``2.1.14`` | | ``foss/2022a`` +``2.1.15`` | | ``foss/2022b`` +``2.1.15`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/biomart-perl.md b/docs/version-specific/supported-software/b/biomart-perl.md new file mode 100644 index 000000000..b411e9d1b --- /dev/null +++ b/docs/version-specific/supported-software/b/biomart-perl.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# biomart-perl + +The BioMart Perl API allows you to go a step further with BioMart and integrate BioMart Perl Code into custom Perl scripts. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7_e6db561`` | ``-Perl-5.26.0`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/biscuit.md b/docs/version-specific/supported-software/b/biscuit.md new file mode 100644 index 000000000..d4c3b5532 --- /dev/null +++ b/docs/version-specific/supported-software/b/biscuit.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# biscuit + +Utilities to help analyze bisulfite-treated sequence data + +*homepage*: + +version | toolchain +--------|---------- +``0.1.4`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bitarray.md b/docs/version-specific/supported-software/b/bitarray.md new file mode 100644 index 000000000..32f52f3a8 --- /dev/null +++ b/docs/version-specific/supported-software/b/bitarray.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# bitarray + +bitarray provides an object type which efficiently represents an array of booleans + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8.3`` | ``-Python-2.7.15`` | ``intel/2018b`` +``0.8.3`` | ``-Python-3.6.6`` | ``intel/2018b`` +``1.2.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.5.3`` | ``-Python-2.7.16`` | ``GCC/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bitshuffle.md b/docs/version-specific/supported-software/b/bitshuffle.md new file mode 100644 index 000000000..a18c3cfe4 --- /dev/null +++ b/docs/version-specific/supported-software/b/bitshuffle.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# bitshuffle + +Filter for improving compression of typed binary data. Bitshuffle is an algorithm that rearranges typed, binary data for improving compression, as well as a python/C package that implements this algorithm within the Numpy framework. The library can be used along side HDF5 to compress and decompress datasets and is integrated through the dynamically loaded filters framework. Bitshuffle is HDF5 filter number 32008. + +*homepage*: + +version | toolchain +--------|---------- +``0.5.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/blasr_libcpp.md b/docs/version-specific/supported-software/b/blasr_libcpp.md new file mode 100644 index 000000000..135f6de19 --- /dev/null +++ b/docs/version-specific/supported-software/b/blasr_libcpp.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# blasr_libcpp + +Blasr_libcpp is a library used by blasr and other executables such as samtoh5, loadPulses for analyzing PacBio sequences + +*homepage*: + +version | toolchain +--------|---------- +``20170426`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bmtagger.md b/docs/version-specific/supported-software/b/bmtagger.md new file mode 100644 index 000000000..a52364de9 --- /dev/null +++ b/docs/version-specific/supported-software/b/bmtagger.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# bmtagger + +Best Match Tagger for removing human reads from metagenomics datasets + +*homepage*: + +version | toolchain +--------|---------- +``3.101`` | ``foss/2018b`` +``3.101`` | ``gompi/2019a`` +``3.101`` | ``gompi/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bnpy.md b/docs/version-specific/supported-software/b/bnpy.md new file mode 100644 index 000000000..d1e567b2c --- /dev/null +++ b/docs/version-specific/supported-software/b/bnpy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# bnpy + +Bayesian nonparametric machine learning for python provides code for training popular clustering models on large datasets. The focus is on Bayesian nonparametric models based on the Dirichlet process, but it also provides parametric counterparts. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.6`` | ``-Python-2.7.15`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bokeh.md b/docs/version-specific/supported-software/b/bokeh.md new file mode 100644 index 000000000..8c3e2ac7a --- /dev/null +++ b/docs/version-specific/supported-software/b/bokeh.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# bokeh + +Statistical and novel interactive HTML plots for Python + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.12.15`` | ``-Python-3.6.4`` | ``intel/2018a`` +``0.12.3`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.12.3`` | ``-Python-3.5.2`` | ``intel/2016b`` +``1.0.4`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.0.4`` | ``-Python-3.6.6`` | ``intel/2018b`` +``1.3.4`` | ``-Python-3.7.2`` | ``foss/2019a`` +``1.4.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.4.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``1.4.0`` | ``-Python-3.7.4`` | ``intel/2019b`` +``2.0.2`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2.0.2`` | ``-Python-3.8.2`` | ``intel/2020a`` +``2.2.3`` | | ``foss/2020b`` +``2.2.3`` | | ``fosscuda/2020b`` +``2.2.3`` | | ``intel/2020b`` +``2.2.3`` | | ``intelcuda/2020b`` +``2.4.1`` | | ``foss/2021a`` +``2.4.2`` | | ``foss/2021b`` +``2.4.3`` | | ``foss/2022a`` +``3.2.1`` | | ``foss/2022b`` +``3.2.2`` | | ``foss/2023a`` +``3.4.1`` | | ``gfbf/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/boost_histogram.md b/docs/version-specific/supported-software/b/boost_histogram.md new file mode 100644 index 000000000..66d5cbbd0 --- /dev/null +++ b/docs/version-specific/supported-software/b/boost_histogram.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# boost_histogram + +Boost-histogram is a Python package providing Python bindings for Boost.Histogram. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.1`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/boto3.md b/docs/version-specific/supported-software/b/boto3.md new file mode 100644 index 000000000..f58785efa --- /dev/null +++ b/docs/version-specific/supported-software/b/boto3.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# boto3 + +Boto3 is the Amazon Web Services (AWS) Software Development Kit (SDK) for Python, which allows Python developers to write software that makes use of services like Amazon S3 and Amazon EC2. + +*homepage*: + +version | toolchain +--------|---------- +``1.20.13`` | ``GCCcore/10.3.0`` +``1.20.13`` | ``GCCcore/11.2.0`` +``1.26.163`` | ``GCCcore/12.2.0`` +``1.26.37`` | ``GCCcore/11.3.0`` +``1.28.70`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bpp.md b/docs/version-specific/supported-software/b/bpp.md new file mode 100644 index 000000000..c44241c0b --- /dev/null +++ b/docs/version-specific/supported-software/b/bpp.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# bpp + +The aim of this project is to implement a versatile high-performance version of the BPP software. + +*homepage*: + +version | toolchain +--------|---------- +``4.3.8`` | ``GCC/8.3.0`` +``4.4.0`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bpytop.md b/docs/version-specific/supported-software/b/bpytop.md new file mode 100644 index 000000000..c8bf85cff --- /dev/null +++ b/docs/version-specific/supported-software/b/bpytop.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# bpytop + +Resource monitor that shows usage and stats for processor, memory, disks, network and processes. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.60`` | ``GCCcore/10.2.0`` +``1.0.67`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/breseq.md b/docs/version-specific/supported-software/b/breseq.md new file mode 100644 index 000000000..9f01b17ab --- /dev/null +++ b/docs/version-specific/supported-software/b/breseq.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# breseq + +breseq is a computational pipeline for the analysis of short-read re-sequencing data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.35.0`` | ``-R-3.6.0`` | ``intel/2019a`` +``0.35.4`` | ``-R-4.0.0`` | ``foss/2020a`` +``0.36.1`` | | ``foss/2021b`` +``0.38.1`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bsddb3.md b/docs/version-specific/supported-software/b/bsddb3.md new file mode 100644 index 000000000..48cf51d8d --- /dev/null +++ b/docs/version-specific/supported-software/b/bsddb3.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# bsddb3 + +bsddb3 is a nearly complete Python binding of the Oracle/Sleepycat C API for the Database Environment, Database, Cursor, Log Cursor, Sequence and Transaction objects. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``6.2.6`` | | ``GCCcore/8.2.0`` +``6.2.6`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``6.2.9`` | | ``GCCcore/10.2.0`` +``6.2.9`` | | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/btllib.md b/docs/version-specific/supported-software/b/btllib.md new file mode 100644 index 000000000..02e555085 --- /dev/null +++ b/docs/version-specific/supported-software/b/btllib.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# btllib + +Bioinformatics Technology Lab common code library + +*homepage*: + +version | toolchain +--------|---------- +``1.7.0`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/build.md b/docs/version-specific/supported-software/b/build.md new file mode 100644 index 000000000..bfe1e6e68 --- /dev/null +++ b/docs/version-specific/supported-software/b/build.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# build + +A simple, correct Python build frontend. + +*homepage*: + +version | toolchain +--------|---------- +``0.10.0`` | ``foss/2022a`` +``0.10.0`` | ``foss/2022b`` +``1.0.3`` | ``foss/2023a`` +``1.0.3`` | ``foss/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/buildenv.md b/docs/version-specific/supported-software/b/buildenv.md new file mode 100644 index 000000000..c898545bd --- /dev/null +++ b/docs/version-specific/supported-software/b/buildenv.md @@ -0,0 +1,52 @@ +--- +search: + boost: 0.5 +--- +# buildenv + +This module sets a group of environment variables for compilers, linkers, maths libraries, etc., that you can use to easily transition between toolchains when building your software. To query the variables being set please use: module show + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``default`` | | ``FCC/4.5.0`` +``default`` | | ``Fujitsu/21.05`` +``default`` | | ``foss/2017b`` +``default`` | | ``foss/2018b`` +``default`` | | ``foss/2019b`` +``default`` | | ``foss/2020a`` +``default`` | | ``foss/2020b`` +``default`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``default`` | | ``foss/2021a`` +``default`` | ``-CUDA-11.4.1`` | ``foss/2021b`` +``default`` | | ``foss/2021b`` +``default`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``default`` | | ``foss/2022a`` +``default`` | ``-CUDA-12.0.0`` | ``foss/2022b`` +``default`` | | ``foss/2022b`` +``default`` | ``-CUDA-12.1.1`` | ``foss/2023a`` +``default`` | | ``foss/2023a`` +``default`` | | ``foss/2023b`` +``default`` | | ``fosscuda/2019b`` +``default`` | | ``fosscuda/2020a`` +``default`` | | ``fosscuda/2020b`` +``default`` | | ``intel/2016b`` +``default`` | | ``intel/2017a`` +``default`` | | ``intel/2019b`` +``default`` | | ``intel/2020a`` +``default`` | | ``intel/2020b`` +``default`` | | ``intel/2021a`` +``default`` | | ``intel/2021b`` +``default`` | | ``intel/2022a`` +``default`` | | ``intel/2022b`` +``default`` | | ``intel/2023a`` +``default`` | | ``intel/2023b`` +``default`` | | ``intelcuda/2019b`` +``default`` | | ``intelcuda/2020a`` +``default`` | | ``intelcuda/2020b`` +``default`` | | ``nvompi/2022.07`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/buildingspy.md b/docs/version-specific/supported-software/b/buildingspy.md new file mode 100644 index 000000000..a8191635e --- /dev/null +++ b/docs/version-specific/supported-software/b/buildingspy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# buildingspy + +Python modules for automating Modelica simulations and for running unit test for the Buildings library + +*homepage*: + +version | toolchain +--------|---------- +``4.0.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bwa-mem2.md b/docs/version-specific/supported-software/b/bwa-mem2.md new file mode 100644 index 000000000..0bb79c56f --- /dev/null +++ b/docs/version-specific/supported-software/b/bwa-mem2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# bwa-mem2 + +The tool bwa-mem2 is the next version of the bwa-mem algorithm in bwa. It produces alignment identical to bwa and is ~1.3-3.1x faster depending on the use-case, dataset and the running machine. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.1`` | ``intel-compilers/2023.1.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bwa-meth.md b/docs/version-specific/supported-software/b/bwa-meth.md new file mode 100644 index 000000000..d367ec8af --- /dev/null +++ b/docs/version-specific/supported-software/b/bwa-meth.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# bwa-meth + +Fast and accurante alignment of BS-Seq reads. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.2`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``0.2.2`` | ``iccifort/2019.5.281`` +``0.2.6`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bwakit.md b/docs/version-specific/supported-software/b/bwakit.md new file mode 100644 index 000000000..c3b73dcbc --- /dev/null +++ b/docs/version-specific/supported-software/b/bwakit.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# bwakit + +Bwakit is a self-consistent installation-free package of scripts and precompiled binaries, providing an end-to-end solution to read mapping. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7.15`` | ``_x64-linux`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bwidget.md b/docs/version-specific/supported-software/b/bwidget.md new file mode 100644 index 000000000..5079f2667 --- /dev/null +++ b/docs/version-specific/supported-software/b/bwidget.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# bwidget + +The BWidget Toolkit is a high-level Widget Set for Tcl/Tk built using native Tcl/Tk 8.x namespaces. + +*homepage*: + +version | toolchain +--------|---------- +``1.9.13`` | ``GCCcore/8.2.0`` +``1.9.14`` | ``GCCcore/10.2.0`` +``1.9.14`` | ``GCCcore/8.3.0`` +``1.9.14`` | ``GCCcore/9.3.0`` +``1.9.15`` | ``GCCcore/11.2.0`` +``1.9.15`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bx-python.md b/docs/version-specific/supported-software/b/bx-python.md new file mode 100644 index 000000000..7175bb54e --- /dev/null +++ b/docs/version-specific/supported-software/b/bx-python.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# bx-python + +The bx-python project is a Python library and associated set of scripts to allow for rapid implementation of genome scale analyses. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.0`` | | ``foss/2023a`` +``0.7.4`` | ``-Python-2.7.12`` | ``foss/2016b`` +``0.7.4`` | ``-Python-2.7.13`` | ``intel/2017a`` +``0.8.1`` | ``-Python-2.7.14`` | ``intel/2018a`` +``0.8.11`` | | ``foss/2021a`` +``0.8.13`` | | ``foss/2021b`` +``0.8.2`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.8.4`` | | ``foss/2019a`` +``0.8.8`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.8.9`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.9.0`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/byacc.md b/docs/version-specific/supported-software/b/byacc.md new file mode 100644 index 000000000..5891a6a73 --- /dev/null +++ b/docs/version-specific/supported-software/b/byacc.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# byacc + +Berkeley Yacc (byacc) is generally conceded to be the best yacc variant available. In contrast to bison, it is written to avoid dependencies upon a particular compiler. + +*homepage*: + +version | toolchain +--------|---------- +``20160324`` | ``intel/2016a`` +``20160606`` | ``foss/2016b`` +``20160606`` | ``intel/2016b`` +``20170709`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/byobu.md b/docs/version-specific/supported-software/b/byobu.md new file mode 100644 index 000000000..7f6cd602d --- /dev/null +++ b/docs/version-specific/supported-software/b/byobu.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# byobu + +Byobu is an elegant enhancement of the otherwise functional, plain, practical GNU Screen. Byobu includes an enhanced profile, configuration utilities, and system status notifications for the GNU screen window manager as well as the Tmux terminal multiplexer + +*homepage*: + +version | toolchain +--------|---------- +``5.133`` | ``GCC/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/bzip2.md b/docs/version-specific/supported-software/b/bzip2.md new file mode 100644 index 000000000..194fd254e --- /dev/null +++ b/docs/version-specific/supported-software/b/bzip2.md @@ -0,0 +1,53 @@ +--- +search: + boost: 0.5 +--- +# bzip2 + +bzip2 is a freely available, patent free, high-quality data compressor. It typically compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical compressors), whilst being around twice as fast at compression and six times faster at decompression. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.6`` | ``GCC/4.8.1`` +``1.0.6`` | ``GCC/4.8.2`` +``1.0.6`` | ``GCC/4.8.4`` +``1.0.6`` | ``GCC/4.9.2`` +``1.0.6`` | ``GCC/4.9.3-2.25`` +``1.0.6`` | ``GCC/5.4.0-2.26`` +``1.0.6`` | ``GCCcore/4.9.3`` +``1.0.6`` | ``GCCcore/5.4.0`` +``1.0.6`` | ``GCCcore/6.3.0`` +``1.0.6`` | ``GCCcore/6.4.0`` +``1.0.6`` | ``GCCcore/7.2.0`` +``1.0.6`` | ``GCCcore/7.3.0`` +``1.0.6`` | ``GCCcore/8.2.0`` +``1.0.6`` | ``GNU/4.9.3-2.25`` +``1.0.6`` | ``foss/2016.04`` +``1.0.6`` | ``foss/2016a`` +``1.0.6`` | ``foss/2016b`` +``1.0.6`` | ``gimkl/2.11.5`` +``1.0.6`` | ``gimkl/2017a`` +``1.0.6`` | ``intel/2016.02-GCC-4.9`` +``1.0.6`` | ``intel/2016a`` +``1.0.6`` | ``intel/2016b`` +``1.0.6`` | ``iomkl/2016.07`` +``1.0.6`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``1.0.6`` | ``system`` +``1.0.8`` | ``GCCcore/10.2.0`` +``1.0.8`` | ``GCCcore/10.3.0`` +``1.0.8`` | ``GCCcore/11.2.0`` +``1.0.8`` | ``GCCcore/11.3.0`` +``1.0.8`` | ``GCCcore/12.2.0`` +``1.0.8`` | ``GCCcore/12.3.0`` +``1.0.8`` | ``GCCcore/13.1.0`` +``1.0.8`` | ``GCCcore/13.2.0`` +``1.0.8`` | ``GCCcore/13.3.0`` +``1.0.8`` | ``GCCcore/8.3.0`` +``1.0.8`` | ``GCCcore/9.3.0`` +``1.0.8`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/b/index.md b/docs/version-specific/supported-software/b/index.md new file mode 100644 index 000000000..ed88dc249 --- /dev/null +++ b/docs/version-specific/supported-software/b/index.md @@ -0,0 +1,172 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (b) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - *b* - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [BA3-SNPS-autotune](BA3-SNPS-autotune.md) + * [BabelStream](BabelStream.md) + * [babl](babl.md) + * [Bader](Bader.md) + * [BAGEL](BAGEL.md) + * [BAli-Phy](BAli-Phy.md) + * [bam-readcount](bam-readcount.md) + * [Bambi](Bambi.md) + * [bamFilters](bamFilters.md) + * [BAMM](BAMM.md) + * [BAMSurgeon](BAMSurgeon.md) + * [bamtofastq](bamtofastq.md) + * [BamTools](BamTools.md) + * [BamUtil](BamUtil.md) + * [Bandage](Bandage.md) + * [barrnap](barrnap.md) + * [basemap](basemap.md) + * [bases2fastq](bases2fastq.md) + * [Bash](Bash.md) + * [bashplotlib](bashplotlib.md) + * [bat](bat.md) + * [batchgenerators](batchgenerators.md) + * [BatMeth2](BatMeth2.md) + * [BayesAss](BayesAss.md) + * [BayesAss3-SNPs](BayesAss3-SNPs.md) + * [BayeScan](BayeScan.md) + * [BayeScEnv](BayeScEnv.md) + * [BayesPrism](BayesPrism.md) + * [BayesTraits](BayesTraits.md) + * [Bazel](Bazel.md) + * [bbcp](bbcp.md) + * [bbFTP](bbFTP.md) + * [BBMap](BBMap.md) + * [bc](bc.md) + * [BCALM](BCALM.md) + * [bcbio-gff](bcbio-gff.md) + * [BCEL](BCEL.md) + * [BCFtools](BCFtools.md) + * [bcgTree](bcgTree.md) + * [bcl-convert](bcl-convert.md) + * [bcl2fastq2](bcl2fastq2.md) + * [bcolz](bcolz.md) + * [bcrypt](bcrypt.md) + * [BDBag](BDBag.md) + * [Beagle](Beagle.md) + * [beagle-lib](beagle-lib.md) + * [Beast](Beast.md) + * [BeautifulSoup](BeautifulSoup.md) + * [BEDOPS](BEDOPS.md) + * [BEDTools](BEDTools.md) + * [BEEF](BEEF.md) + * [behave](behave.md) + * [bench](bench.md) + * [BerkeleyGW](BerkeleyGW.md) + * [BFAST](BFAST.md) + * [BFC](BFC.md) + * [BGC-Bayesian-genomic-clines](BGC-Bayesian-genomic-clines.md) + * [BgeeCall](BgeeCall.md) + * [BgeeDB](BgeeDB.md) + * [bgen](bgen.md) + * [bgen-reader](bgen-reader.md) + * [BiasAdjustCXX](BiasAdjustCXX.md) + * [bibtexparser](bibtexparser.md) + * [BiG-SCAPE](BiG-SCAPE.md) + * [BigDFT](BigDFT.md) + * [BinSanity](BinSanity.md) + * [binutils](binutils.md) + * [Bio-DB-HTS](Bio-DB-HTS.md) + * [Bio-EUtilities](Bio-EUtilities.md) + * [Bio-FeatureIO](Bio-FeatureIO.md) + * [Bio-SamTools](Bio-SamTools.md) + * [Bio-SearchIO-hmmer](Bio-SearchIO-hmmer.md) + * [bioawk](bioawk.md) + * [biobakery-workflows](biobakery-workflows.md) + * [biobambam2](biobambam2.md) + * [biogeme](biogeme.md) + * [biom-format](biom-format.md) + * [biomart-perl](biomart-perl.md) + * [BioPerl](BioPerl.md) + * [BioPP](BioPP.md) + * [Biopython](Biopython.md) + * [BioServices](BioServices.md) + * [BirdNET](BirdNET.md) + * [biscuit](biscuit.md) + * [Bismark](Bismark.md) + * [Bison](Bison.md) + * [bitarray](bitarray.md) + * [bitshuffle](bitshuffle.md) + * [BLACS](BLACS.md) + * [BLASR](BLASR.md) + * [blasr_libcpp](blasr_libcpp.md) + * [BLAST](BLAST.md) + * [BLAST+](BLAST+.md) + * [BLAT](BLAT.md) + * [Blender](Blender.md) + * [BLIS](BLIS.md) + * [Blitz++](Blitz++.md) + * [BlobTools](BlobTools.md) + * [Block](Block.md) + * [Blosc](Blosc.md) + * [Blosc2](Blosc2.md) + * [BLT](BLT.md) + * [bmtagger](bmtagger.md) + * [BMTK](BMTK.md) + * [bnpy](bnpy.md) + * [BOINC](BOINC.md) + * [bokeh](bokeh.md) + * [BoltzTraP](BoltzTraP.md) + * [BoltzTraP2](BoltzTraP2.md) + * [Bonito](Bonito.md) + * [Bonmin](Bonmin.md) + * [Bonnie++](Bonnie++.md) + * [Boost](Boost.md) + * [Boost.MPI](Boost.MPI.md) + * [Boost.Python](Boost.Python.md) + * [Boost.Python-NumPy](Boost.Python-NumPy.md) + * [boost_histogram](boost_histogram.md) + * [BOPTEST](BOPTEST.md) + * [boto3](boto3.md) + * [Bottleneck](Bottleneck.md) + * [Bowtie](Bowtie.md) + * [Bowtie2](Bowtie2.md) + * [Bpipe](Bpipe.md) + * [bpp](bpp.md) + * [bpytop](bpytop.md) + * [Bracken](Bracken.md) + * [Braindecode](Braindecode.md) + * [BRAKER](BRAKER.md) + * [BreakDancer](BreakDancer.md) + * [breseq](breseq.md) + * [BRiAl](BRiAl.md) + * [Brotli](Brotli.md) + * [Brotli-python](Brotli-python.md) + * [Brunsli](Brunsli.md) + * [bsddb3](bsddb3.md) + * [BSMAPz](BSMAPz.md) + * [Bsoft](Bsoft.md) + * [BSseeker2](BSseeker2.md) + * [btllib](btllib.md) + * [BuDDy](BuDDy.md) + * [BUFRLIB](BUFRLIB.md) + * [build](build.md) + * [buildenv](buildenv.md) + * [buildingspy](buildingspy.md) + * [Bullet](Bullet.md) + * [BUSCO](BUSCO.md) + * [BUStools](BUStools.md) + * [BWA](BWA.md) + * [bwa-mem2](bwa-mem2.md) + * [bwa-meth](bwa-meth.md) + * [bwakit](bwakit.md) + * [bwidget](bwidget.md) + * [BWISE](BWISE.md) + * [bx-python](bx-python.md) + * [BXH_XCEDE_TOOLS](BXH_XCEDE_TOOLS.md) + * [byacc](byacc.md) + * [byobu](byobu.md) + * [bzip2](bzip2.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - *b* - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/C3D.md b/docs/version-specific/supported-software/c/C3D.md new file mode 100644 index 000000000..b8e62d897 --- /dev/null +++ b/docs/version-specific/supported-software/c/C3D.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# C3D + +Convert3D Medical Image Processing Tool + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CAFE5.md b/docs/version-specific/supported-software/c/CAFE5.md new file mode 100644 index 000000000..26291befb --- /dev/null +++ b/docs/version-specific/supported-software/c/CAFE5.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CAFE5 + +Software for Computational Analysis of gene Family Evolution The purpose of CAFE is to analyze changes in gene family size in a way that accounts for phylogenetic history and provides a statistical foundation for evolutionary inferences. The program uses a birth and death process to model gene gain and loss across a user-specified phylogenetic tree. The distribution of family sizes generated under this model can provide a basis for assessing the significance of the observed family size differences among taxa. + +*homepage*: + +version | toolchain +--------|---------- +``5.0.0`` | ``GCC/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CAMPARI.md b/docs/version-specific/supported-software/c/CAMPARI.md new file mode 100644 index 000000000..af66b36d8 --- /dev/null +++ b/docs/version-specific/supported-software/c/CAMPARI.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# CAMPARI + +CAMPARI is a joint package for performing and analyzing molecular simulations, in particular of systems of biological relevance. It focuses on a wide availability of algorithms for (advanced) sampling and is capable of combining Monte Carlo and molecular dynamics in seamless fashion. + +*homepage*: + +version | toolchain +--------|---------- +``4.0`` | ``intel/2020b`` +``4.0`` | ``intel/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CAP3.md b/docs/version-specific/supported-software/c/CAP3.md new file mode 100644 index 000000000..8c93ceef6 --- /dev/null +++ b/docs/version-specific/supported-software/c/CAP3.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# CAP3 + +CAP3 assembly program + +*homepage*: + +version | toolchain +--------|---------- +``20071221-intel-x86`` | ``system`` +``20071221-intel-x86_64`` | ``system`` +``20071221-opteron`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CASA.md b/docs/version-specific/supported-software/c/CASA.md new file mode 100644 index 000000000..f4ec02a79 --- /dev/null +++ b/docs/version-specific/supported-software/c/CASA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CASA + +CASA, the Common Astronomy Software Applications package, is the primary data processing software for the Atacama Large Millimeter/submillimeter Array (ALMA) and NSF's Karl G. Jansky Very Large Array (VLA), and is frequently used also for other radio telescopes. The CASA software can process data from both single-dish and aperture-synthesis telescopes, and one of its core functionalities is to support the data reduction and imaging pipelines for ALMA, VLA and the VLA Sky Survey (VLASS). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``6.5.5-21`` | ``-py3.8`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CASPR.md b/docs/version-specific/supported-software/c/CASPR.md new file mode 100644 index 000000000..45128e26d --- /dev/null +++ b/docs/version-specific/supported-software/c/CASPR.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CASPR + +Running CASPR is extremely easy and convenient to analyze CRIPR-Cas9 screens using pgRNAs. + +*homepage*: + +version | toolchain +--------|---------- +``20200730`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CASTEP.md b/docs/version-specific/supported-software/c/CASTEP.md new file mode 100644 index 000000000..caad7400f --- /dev/null +++ b/docs/version-specific/supported-software/c/CASTEP.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# CASTEP + +CASTEP is an electronic structure materials modelling code based on density functional theory (DFT), with functionality including geometry optimization molecular dynamics, phonons, NMR chemical shifts and much more. + +*homepage*: + +version | toolchain +--------|---------- +``21.1.1`` | ``CrayCCE/19.06`` +``21.1.1`` | ``CrayGNU/19.06`` +``21.1.1`` | ``foss/2019b`` +``21.1.1`` | ``intel/2019b`` +``21.1.1`` | ``iomkl/2019b`` +``22.11`` | ``foss/2022a`` +``23.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CAT-BAT.md b/docs/version-specific/supported-software/c/CAT-BAT.md new file mode 100644 index 000000000..e0674cc9f --- /dev/null +++ b/docs/version-specific/supported-software/c/CAT-BAT.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CAT-BAT + +Tool for taxonomic classification of contigs and metagenome-assembled genomes (MAGs). + +*homepage*: + +version | toolchain +--------|---------- +``5.2.3`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CAVIAR.md b/docs/version-specific/supported-software/c/CAVIAR.md new file mode 100644 index 000000000..3e2285761 --- /dev/null +++ b/docs/version-specific/supported-software/c/CAVIAR.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CAVIAR + +CAusal Variants Identication in Associated Regions. A statistical framework that quantifies the probability of each variant to be causal while allowing an arbitrary number of causal variants. + +*homepage*: + +version | toolchain +--------|---------- +``2.2-20190419`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CBLAS.md b/docs/version-specific/supported-software/c/CBLAS.md new file mode 100644 index 000000000..3a98057cf --- /dev/null +++ b/docs/version-specific/supported-software/c/CBLAS.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# CBLAS + +C interface to the BLAS + +*homepage*: + +version | toolchain +--------|---------- +``20110120`` | ``foss/2016b`` +``20110120`` | ``intel/2019b`` +``20110120`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CCCL.md b/docs/version-specific/supported-software/c/CCCL.md new file mode 100644 index 000000000..6a001cb63 --- /dev/null +++ b/docs/version-specific/supported-software/c/CCCL.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CCCL + +CUDA C++ Core Libraries (header only) + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.3.0`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CCL.md b/docs/version-specific/supported-software/c/CCL.md new file mode 100644 index 000000000..48f195a33 --- /dev/null +++ b/docs/version-specific/supported-software/c/CCL.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# CCL + +Clozure CL (often called CCL for short) is a free Common Lisp implementation with a long history. Some distinguishing features of the implementation include fast compilation speed, native threads, a precise, generational, compacting garbage collector, and a convenient foreign-function interface. + +*homepage*: + +version | toolchain +--------|---------- +``1.11.5`` | ``system`` +``1.12`` | ``GCCcore/9.3.0`` +``1.12.1`` | ``GCCcore/10.3.0`` +``1.12.2`` | ``GCCcore/11.3.0`` +``1.12.2`` | ``GCCcore/12.3.0`` +``1.12.2`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CCfits.md b/docs/version-specific/supported-software/c/CCfits.md new file mode 100644 index 000000000..26f87604c --- /dev/null +++ b/docs/version-specific/supported-software/c/CCfits.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CCfits + +CCfits is an object oriented interface to the cfitsio library. It is designed to make the capabilities of cfitsio available to programmers working in C++. + +*homepage*: + +version | toolchain +--------|---------- +``2.5`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CD-HIT.md b/docs/version-specific/supported-software/c/CD-HIT.md new file mode 100644 index 000000000..acb41c735 --- /dev/null +++ b/docs/version-specific/supported-software/c/CD-HIT.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# CD-HIT + +CD-HIT is a very widely used program for clustering and comparing protein or nucleotide sequences. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.6.4`` | ``-2015-0603`` | ``GNU/4.9.3-2.25`` +``4.6.6`` | | ``foss/2016b`` +``4.6.8`` | | ``foss/2018b`` +``4.6.8`` | | ``intel/2017a`` +``4.6.8`` | | ``intel/2018a`` +``4.8.1`` | | ``GCC/10.2.0`` +``4.8.1`` | | ``GCC/10.3.0`` +``4.8.1`` | | ``GCC/11.2.0`` +``4.8.1`` | | ``GCC/11.3.0`` +``4.8.1`` | | ``GCC/12.2.0`` +``4.8.1`` | | ``GCC/8.3.0`` +``4.8.1`` | | ``GCC/9.3.0`` +``4.8.1`` | | ``foss/2018b`` +``4.8.1`` | | ``iccifort/2019.5.281`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CDAT.md b/docs/version-specific/supported-software/c/CDAT.md new file mode 100644 index 000000000..aa25e9d5c --- /dev/null +++ b/docs/version-specific/supported-software/c/CDAT.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CDAT + +CDAT is a powerful and complete front-end to a rich set of visual-data exploration and analysis capabilities well suited for data analysis problems. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``8.2.1`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CDBtools.md b/docs/version-specific/supported-software/c/CDBtools.md new file mode 100644 index 000000000..593575ede --- /dev/null +++ b/docs/version-specific/supported-software/c/CDBtools.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# CDBtools + +CDB (Constant DataBase) indexing and retrieval tools for FASTA files + +*homepage*: + +version | toolchain +--------|---------- +``0.99`` | ``GCC/10.2.0`` +``0.99`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CDFlib.md b/docs/version-specific/supported-software/c/CDFlib.md new file mode 100644 index 000000000..a973dc5c1 --- /dev/null +++ b/docs/version-specific/supported-software/c/CDFlib.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CDFlib + +cdflib is a python module to read/write CDF (Common Data Format .cdf) files without needing to install the CDF NASA library. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.9`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CDO.md b/docs/version-specific/supported-software/c/CDO.md new file mode 100644 index 000000000..255d9dcf6 --- /dev/null +++ b/docs/version-specific/supported-software/c/CDO.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# CDO + +CDO is a collection of command line Operators to manipulate and analyse Climate and NWP model Data. + +*homepage*: + +version | toolchain +--------|---------- +``1.7.2`` | ``intel/2016b`` +``1.8.1`` | ``intel/2017a`` +``1.9.1`` | ``intel/2017b`` +``1.9.10`` | ``gompi/2019b`` +``1.9.10`` | ``gompi/2020b`` +``1.9.10`` | ``gompi/2021a`` +``1.9.10`` | ``iimpi/2021b`` +``1.9.2`` | ``intel/2017b`` +``1.9.5`` | ``intel/2018a`` +``1.9.5`` | ``intel/2018b`` +``1.9.5`` | ``iomkl/2018b`` +``1.9.8`` | ``intel/2019b`` +``2.0.5`` | ``gompi/2021b`` +``2.0.6`` | ``gompi/2022a`` +``2.1.1`` | ``gompi/2021a`` +``2.2.2`` | ``gompi/2023a`` +``2.2.2`` | ``gompi/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CENSO.md b/docs/version-specific/supported-software/c/CENSO.md new file mode 100644 index 000000000..c1962b06b --- /dev/null +++ b/docs/version-specific/supported-software/c/CENSO.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# CENSO + +Commandline Energetic SOrting (CENSO) is a sorting algorithm for efficient evaluation of Structure Ensembles (SE). The input ensemble (or single structure) originating from a CREST[SQM/FF] run can be ranked by free energy at DFT level and/or geometries can be optimized using DFT. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.0`` | ``GCCcore/12.3.0`` +``1.2.0`` | ``intel/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CESM-deps.md b/docs/version-specific/supported-software/c/CESM-deps.md new file mode 100644 index 000000000..ca2bd1727 --- /dev/null +++ b/docs/version-specific/supported-software/c/CESM-deps.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# CESM-deps + +CESM is a fully-coupled, community, global climate model that provides state-of-the-art computer simulations of the Earth's past, present, and future climate states. + +*homepage*: + +version | toolchain +--------|---------- +``2`` | ``foss/2018b`` +``2`` | ``foss/2021b`` +``2`` | ``foss/2022a`` +``2`` | ``intel/2018b`` +``2`` | ``iomkl/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CFDEMcoupling.md b/docs/version-specific/supported-software/c/CFDEMcoupling.md new file mode 100644 index 000000000..b90dc9567 --- /dev/null +++ b/docs/version-specific/supported-software/c/CFDEMcoupling.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# CFDEMcoupling + +CFDEMcoupling is an open source CFD-DEM engine. It provides the possibility to couple the DEM engine LIGGGHTS to a CFD framework. + +*homepage*: + +version | toolchain +--------|---------- +``3.8.0`` | ``foss/2018a`` +``3.8.0`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CFITSIO.md b/docs/version-specific/supported-software/c/CFITSIO.md new file mode 100644 index 000000000..590bddfd8 --- /dev/null +++ b/docs/version-specific/supported-software/c/CFITSIO.md @@ -0,0 +1,35 @@ +--- +search: + boost: 0.5 +--- +# CFITSIO + +CFITSIO is a library of C and Fortran subroutines for reading and writing data files in FITS (Flexible Image Transport System) data format. + +*homepage*: + +version | toolchain +--------|---------- +``3.38`` | ``foss/2016a`` +``3.38`` | ``intel/2016a`` +``3.41`` | ``GCCcore/5.4.0`` +``3.41`` | ``GCCcore/6.3.0`` +``3.41`` | ``intel/2016b`` +``3.42`` | ``GCCcore/6.4.0`` +``3.42`` | ``intel/2017b`` +``3.45`` | ``GCCcore/7.3.0`` +``3.45`` | ``intel/2018b`` +``3.47`` | ``GCCcore/8.2.0`` +``3.47`` | ``GCCcore/8.3.0`` +``3.48`` | ``GCCcore/9.3.0`` +``3.49`` | ``GCCcore/10.2.0`` +``3.49`` | ``GCCcore/10.3.0`` +``3.49`` | ``GCCcore/11.2.0`` +``4.2.0`` | ``GCCcore/11.3.0`` +``4.2.0`` | ``GCCcore/12.2.0`` +``4.3.0`` | ``GCCcore/12.3.0`` +``4.3.1`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CGAL.md b/docs/version-specific/supported-software/c/CGAL.md new file mode 100644 index 000000000..92a8dff8f --- /dev/null +++ b/docs/version-specific/supported-software/c/CGAL.md @@ -0,0 +1,50 @@ +--- +search: + boost: 0.5 +--- +# CGAL + +The goal of the CGAL Open Source Project is to provide easy access to efficient and reliable geometric algorithms in the form of a C++ library. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.11`` | ``-Python-2.7.14`` | ``foss/2017b`` +``4.11`` | ``-Python-3.6.3`` | ``foss/2017b`` +``4.11`` | ``-Python-2.7.13`` | ``intel/2017a`` +``4.11`` | ``-Python-2.7.14`` | ``intel/2017b`` +``4.11`` | ``-Python-3.6.3`` | ``intel/2017b`` +``4.11.1`` | ``-Python-2.7.14`` | ``foss/2018a`` +``4.11.1`` | ``-Python-3.6.4`` | ``foss/2018a`` +``4.11.1`` | ``-Python-2.7.15`` | ``foss/2018b`` +``4.11.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``4.11.1`` | ``-Python-2.7.14`` | ``intel/2018a`` +``4.14`` | ``-Python-3.7.2`` | ``foss/2019a`` +``4.14`` | ``-Python-3.7.2`` | ``intel/2019a`` +``4.14.1`` | ``-Python-2.7.16`` | ``foss/2019b`` +``4.14.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``4.14.1`` | ``-Python-3.7.4`` | ``intel/2019b`` +``4.14.3`` | ``-Python-3.8.2`` | ``gompi/2020a`` +``4.14.3`` | | ``gompi/2021a`` +``4.14.3`` | | ``gompi/2021b`` +``4.14.3`` | | ``gompi/2022a`` +``4.14.3`` | ``-Python-3.8.2`` | ``iimpi/2020a`` +``4.14.3`` | | ``iimpi/2021a`` +``4.8`` | ``-Python-2.7.11`` | ``foss/2016a`` +``4.8`` | ``-Python-2.7.11`` | ``intel/2016a`` +``4.8.1`` | ``-Python-2.7.12`` | ``foss/2016b`` +``4.8.1`` | | ``foss/2016b`` +``4.8.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``4.8.1`` | | ``intel/2016b`` +``4.9`` | ``-Python-2.7.12`` | ``intel/2016b`` +``4.9`` | ``-Python-2.7.13`` | ``intel/2017a`` +``5.2`` | | ``gompi/2020b`` +``5.4`` | | ``GCCcore/12.3.0`` +``5.5.2`` | | ``GCCcore/12.2.0`` +``5.6`` | | ``GCCcore/12.3.0`` +``5.6.1`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CGNS.md b/docs/version-specific/supported-software/c/CGNS.md new file mode 100644 index 000000000..eb52f3db8 --- /dev/null +++ b/docs/version-specific/supported-software/c/CGNS.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# CGNS + +The CGNS system is designed to facilitate the exchange of data between sites and applications, and to help stabilize the archiving of aerodynamic data. + +*homepage*: + +version | toolchain +--------|---------- +``3.3.1`` | ``foss/2016b`` +``4.1.0`` | ``intelcuda/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CGmapTools.md b/docs/version-specific/supported-software/c/CGmapTools.md new file mode 100644 index 000000000..79c9425fd --- /dev/null +++ b/docs/version-specific/supported-software/c/CGmapTools.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CGmapTools + +Command-line Toolset for Bisulfite Sequencing Data Analysis + +*homepage*: + +version | toolchain +--------|---------- +``0.1.2`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CHASE.md b/docs/version-specific/supported-software/c/CHASE.md new file mode 100644 index 000000000..e1d6edebc --- /dev/null +++ b/docs/version-specific/supported-software/c/CHASE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CHASE + +Case-control HAplotype Sharing analyses. Haplotype sharing analyses for genome-wide association studies. + +*homepage*: + +version | toolchain +--------|---------- +``20130626`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CHERAB.md b/docs/version-specific/supported-software/c/CHERAB.md new file mode 100644 index 000000000..a10510b64 --- /dev/null +++ b/docs/version-specific/supported-software/c/CHERAB.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# CHERAB + +CHERAB is a python library for forward modelling diagnostics based on spectroscopic plasma emission. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``1.3.0`` | | ``foss/2020b`` +``1.3.0`` | | ``intel/2020b`` +``1.4.0`` | | ``foss/2020b`` +``1.4.0`` | | ``intel/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CIF2Cell.md b/docs/version-specific/supported-software/c/CIF2Cell.md new file mode 100644 index 000000000..18b9d0b0d --- /dev/null +++ b/docs/version-specific/supported-software/c/CIF2Cell.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CIF2Cell + +CIF2Cell is a tool to generate the geometrical setup for various electronic structure codes from a CIF (Crystallographic Information Framework) file. The program currently supports output for a number of popular electronic structure programs, including ABINIT, ASE, CASTEP, CP2K, CPMD, CRYSTAL09, Elk, EMTO, Exciting, Fleur, FHI-aims, Hutsepot, MOPAC, Quantum Espresso, RSPt, Siesta, SPR-KKR, VASP. Also exports some related formats like .coo, .cfg and .xyz-files. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.10`` | ``-Python-2.7.16`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CIRCexplorer.md b/docs/version-specific/supported-software/c/CIRCexplorer.md new file mode 100644 index 000000000..518a9e466 --- /dev/null +++ b/docs/version-specific/supported-software/c/CIRCexplorer.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CIRCexplorer + +CIRCexplorer2 is a comprehensive and integrative circular RNA analysis toolset. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.10`` | ``-Python-2.7.14`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CIRCexplorer2.md b/docs/version-specific/supported-software/c/CIRCexplorer2.md new file mode 100644 index 000000000..8dcf5f6d5 --- /dev/null +++ b/docs/version-specific/supported-software/c/CIRCexplorer2.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# CIRCexplorer2 + +CIRCexplorer2 is a comprehensive and integrative circular RNA analysis toolset. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.3.2`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.3.3`` | ``-Python-2.7.14`` | ``intel/2018a`` +``2.3.8`` | ``-Python-2.7.18`` | ``foss/2020b`` +``2.3.8`` | ``-Python-2.7.18`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CIRI-long.md b/docs/version-specific/supported-software/c/CIRI-long.md new file mode 100644 index 000000000..e2912a387 --- /dev/null +++ b/docs/version-specific/supported-software/c/CIRI-long.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CIRI-long + +Circular RNA Identification for Long-Reads Nanopore Sequencing Data + +*homepage*: + +version | toolchain +--------|---------- +``1.0.2`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CIRI.md b/docs/version-specific/supported-software/c/CIRI.md new file mode 100644 index 000000000..c71755ed9 --- /dev/null +++ b/docs/version-specific/supported-software/c/CIRI.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CIRI + +CircRNA Identifier. A de novo circular RNA identification tool + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.6`` | ``-Perl-5.26.0`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CIRIquant.md b/docs/version-specific/supported-software/c/CIRIquant.md new file mode 100644 index 000000000..b8b64d0a5 --- /dev/null +++ b/docs/version-specific/supported-software/c/CIRIquant.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CIRIquant + +CIRIquant is a comprehensive analysis pipeline for circRNA detection and quantification in RNA-Seq data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.2-20221201`` | ``-Python-2.7.18`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CITE-seq-Count.md b/docs/version-specific/supported-software/c/CITE-seq-Count.md new file mode 100644 index 000000000..150685ace --- /dev/null +++ b/docs/version-specific/supported-software/c/CITE-seq-Count.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# CITE-seq-Count + +A python package that allows to count antibody TAGS from a CITE-seq and/or cell hashing experiment. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4.3`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.4.3`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CLAPACK.md b/docs/version-specific/supported-software/c/CLAPACK.md new file mode 100644 index 000000000..1826f980e --- /dev/null +++ b/docs/version-specific/supported-software/c/CLAPACK.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# CLAPACK + +C version of LAPACK + +*homepage*: + +version | toolchain +--------|---------- +``3.2.1`` | ``GCC/6.4.0-2.28`` +``3.2.1`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` +``3.2.1`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CLEAR.md b/docs/version-specific/supported-software/c/CLEAR.md new file mode 100644 index 000000000..28480f1aa --- /dev/null +++ b/docs/version-specific/supported-software/c/CLEAR.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CLEAR + +Direct comparison of circular and linear RNA expression + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20210117`` | ``-Python-2.7.18`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CLEASE.md b/docs/version-specific/supported-software/c/CLEASE.md new file mode 100644 index 000000000..b70d4f888 --- /dev/null +++ b/docs/version-specific/supported-software/c/CLEASE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CLEASE + +CLuster Expansion in Atomic Simulation Environment (CLEASE) is a package that automates the cumbersome setup and construction procedure of cluster expansion (CE). It provides a comprehensive list of tools for specifying parameters for CE, generating training structures, fitting effective cluster interaction (ECI) values and running Monte Carlo simulations. + +*homepage*: + +version | toolchain +--------|---------- +``0.10.6`` | ``intel/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CLHEP.md b/docs/version-specific/supported-software/c/CLHEP.md new file mode 100644 index 000000000..30d178b74 --- /dev/null +++ b/docs/version-specific/supported-software/c/CLHEP.md @@ -0,0 +1,35 @@ +--- +search: + boost: 0.5 +--- +# CLHEP + +The CLHEP project is intended to be a set of HEP-specific foundation and utility classes such as random generators, physics vectors, geometry and linear algebra. CLHEP is structured in a set of packages independent of any external package. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.1.0`` | ``intel/2016a`` +``2.1.3.1`` | ``intel/2016a`` +``2.2.0.8`` | ``intel/2016a`` +``2.3.1.1`` | ``intel/2016a`` +``2.3.4.3`` | ``foss/2017b`` +``2.3.4.3`` | ``intel/2017b`` +``2.4.0.0`` | ``intel/2017b`` +``2.4.1.0`` | ``foss/2017b`` +``2.4.1.0`` | ``foss/2018b`` +``2.4.1.0`` | ``intel/2017b`` +``2.4.1.0`` | ``intel/2018b`` +``2.4.1.3`` | ``foss/2019b`` +``2.4.1.3`` | ``foss/2020a`` +``2.4.4.0`` | ``GCC/10.2.0`` +``2.4.4.0`` | ``GCC/11.2.0`` +``2.4.5.1`` | ``GCC/11.2.0`` +``2.4.5.3`` | ``GCC/11.3.0`` +``2.4.6.2`` | ``GCC/11.3.0`` +``2.4.6.4`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CLIP.md b/docs/version-specific/supported-software/c/CLIP.md new file mode 100644 index 000000000..6b636a743 --- /dev/null +++ b/docs/version-specific/supported-software/c/CLIP.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CLIP + +CLIP (Contrastive Language-Image Pre-Training) is a neural network trained on a variety of (image, text) pairs. It can be instructed in natural language to predict the most relevant text snippet, given an image, without directly optimizing for the task, similarly to the zero-shot capabilities of GPT-2 and 3. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20230220`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CLISP.md b/docs/version-specific/supported-software/c/CLISP.md new file mode 100644 index 000000000..38a437bf5 --- /dev/null +++ b/docs/version-specific/supported-software/c/CLISP.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# CLISP + +Common Lisp is a high-level, general-purpose, object-oriented, dynamic, functional programming language. + +*homepage*: + +version | toolchain +--------|---------- +``2.49`` | ``GCCcore/6.4.0`` +``2.49`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CLooG.md b/docs/version-specific/supported-software/c/CLooG.md new file mode 100644 index 000000000..82563a1da --- /dev/null +++ b/docs/version-specific/supported-software/c/CLooG.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CLooG + +CLooG is a free software and library to generate code for scanning Z-polyhedra. That is, it finds a code (e.g. in C, FORTRAN...) that reaches each integral point of one or more parameterized polyhedra. CLooG has been originally written to solve the code generation problem for optimizing compilers based on the polytope model. Nevertheless it is used now in various area e.g. to build control automata for high-level synthesis or to find the best polynomial approximation of a function. CLooG may help in any situation where scanning polyhedra matters. While the user has full control on generated code quality, CLooG is designed to avoid control overhead and to produce a very effective code. + +*homepage*: + +version | toolchain +--------|---------- +``0.18.1`` | ``GCC/4.8.2`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CMAverse.md b/docs/version-specific/supported-software/c/CMAverse.md new file mode 100644 index 000000000..e5d1ed0bf --- /dev/null +++ b/docs/version-specific/supported-software/c/CMAverse.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CMAverse + +The R package CMAverse provides a suite of functions for reproducible causal mediation analysis including cmdag for DAG visualization, cmest for statistical modeling and cmsens for sensitivity analysis. + +*homepage*: + +version | toolchain +--------|---------- +``20220112`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CMSeq.md b/docs/version-specific/supported-software/c/CMSeq.md new file mode 100644 index 000000000..fb02ca592 --- /dev/null +++ b/docs/version-specific/supported-software/c/CMSeq.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# CMSeq + +CMSeq is a set of commands to provide an interface to .bam files for coverage and sequence consensus. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.3`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.0.4`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CMake.md b/docs/version-specific/supported-software/c/CMake.md new file mode 100644 index 000000000..eb2949022 --- /dev/null +++ b/docs/version-specific/supported-software/c/CMake.md @@ -0,0 +1,101 @@ +--- +search: + boost: 0.5 +--- +# CMake + +CMake, the cross-platform, open-source build system. CMake is a family of tools designed to build, test and package software. + +*homepage*: + +version | toolchain +--------|---------- +``2.8.11`` | ``GCC/4.8.1`` +``2.8.12`` | ``GCC/4.8.1`` +``2.8.12`` | ``GCC/4.8.2`` +``3.0.0`` | ``GCC/4.8.3`` +``3.1.0`` | ``GCC/4.9.2`` +``3.1.3`` | ``GCC/4.9.2`` +``3.1.3`` | ``system`` +``3.10.0`` | ``GCCcore/6.4.0`` +``3.10.1`` | ``GCCcore/6.4.0`` +``3.10.2`` | ``GCCcore/6.4.0`` +``3.10.2`` | ``GCCcore/7.2.0`` +``3.10.3`` | ``GCCcore/6.4.0`` +``3.10.3`` | ``GCCcore/7.2.0`` +``3.11.1`` | ``GCCcore/6.4.0`` +``3.11.4`` | ``GCCcore/6.4.0`` +``3.11.4`` | ``GCCcore/7.3.0`` +``3.11.4`` | ``GCCcore/8.3.0`` +``3.12.1`` | ``GCCcore/6.4.0`` +``3.12.1`` | ``GCCcore/7.2.0`` +``3.12.1`` | ``GCCcore/7.3.0`` +``3.12.1`` | ``system`` +``3.13.3`` | ``GCCcore/8.2.0`` +``3.15.1`` | ``system`` +``3.15.3`` | ``GCCcore/8.3.0`` +``3.16.4`` | ``GCCcore/9.3.0`` +``3.18.4`` | ``GCCcore/10.2.0`` +``3.18.4`` | ``system`` +``3.2.1`` | ``GCC/4.9.2`` +``3.2.1`` | ``GNU/4.9.3-2.25`` +``3.20.1`` | ``GCCcore/10.2.0`` +``3.20.1`` | ``GCCcore/10.3.0`` +``3.21.1`` | ``GCCcore/11.2.0`` +``3.22.1`` | ``GCCcore/11.2.0`` +``3.23.1`` | ``GCCcore/11.3.0`` +``3.24.3`` | ``GCCcore/11.3.0`` +``3.24.3`` | ``GCCcore/12.2.0`` +``3.26.3`` | ``GCCcore/12.3.0`` +``3.26.3`` | ``GCCcore/13.1.0`` +``3.27.6`` | ``GCCcore/13.2.0`` +``3.29.3`` | ``GCCcore/13.3.0`` +``3.3.1`` | ``system`` +``3.3.2`` | ``GNU/4.9.3-2.25`` +``3.3.2`` | ``gimkl/2.11.5`` +``3.4.1`` | ``GCC/4.9.2`` +``3.4.1`` | ``GCCcore/4.9.3`` +``3.4.1`` | ``foss/2016a`` +``3.4.1`` | ``intel/2016.02-GCC-4.9`` +``3.4.1`` | ``intel/2016a`` +``3.4.1`` | ``iomkl/2016.07`` +``3.4.1`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``3.4.3`` | ``foss/2016a`` +``3.4.3`` | ``foss/2016b`` +``3.4.3`` | ``gimkl/2.11.5`` +``3.4.3`` | ``intel/2016a`` +``3.5.1`` | ``intel/2016a`` +``3.5.2`` | ``GCC/4.9.3-2.25`` +``3.5.2`` | ``foss/2016a`` +``3.5.2`` | ``foss/2016b`` +``3.5.2`` | ``intel/2016a`` +``3.5.2`` | ``intel/2016b`` +``3.5.2`` | ``system`` +``3.6.1`` | ``GCC/5.4.0-2.26`` +``3.6.1`` | ``GCCcore/4.9.3`` +``3.6.1`` | ``foss/2016b`` +``3.6.1`` | ``intel/2016b`` +``3.6.1`` | ``system`` +``3.6.2`` | ``GCCcore/5.4.0`` +``3.6.2`` | ``foss/2016b`` +``3.6.2`` | ``intel/2016b`` +``3.7.1`` | ``GCCcore/5.4.0`` +``3.7.1`` | ``GCCcore/6.2.0`` +``3.7.1`` | ``foss/2016b`` +``3.7.1`` | ``intel/2016b`` +``3.7.2`` | ``GCCcore/6.3.0`` +``3.7.2`` | ``foss/2016b`` +``3.7.2`` | ``intel/2016b`` +``3.8.0`` | ``GCCcore/6.3.0`` +``3.8.1`` | ``GCCcore/6.3.0`` +``3.8.2`` | ``GCCcore/6.3.0`` +``3.9.1`` | ``GCCcore/6.3.0`` +``3.9.1`` | ``GCCcore/6.4.0`` +``3.9.1`` | ``system`` +``3.9.4`` | ``GCCcore/6.4.0`` +``3.9.5`` | ``GCCcore/6.4.0`` +``3.9.6`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CNT-ILP.md b/docs/version-specific/supported-software/c/CNT-ILP.md new file mode 100644 index 000000000..21050bef3 --- /dev/null +++ b/docs/version-specific/supported-software/c/CNT-ILP.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CNT-ILP + +Integer Linear Program for the Copy-Number Tree Problem + +*homepage*: + +version | toolchain +--------|---------- +``20171031`` | ``GCC/8.2.0-2.31.1`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CNVkit.md b/docs/version-specific/supported-software/c/CNVkit.md new file mode 100644 index 000000000..d0783100e --- /dev/null +++ b/docs/version-specific/supported-software/c/CNVkit.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# CNVkit + +A command-line toolkit and Python library for detecting copy number variants and alterations genome-wide from high-throughput sequencing. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.9.10`` | ``-R-4.2.2`` | ``foss/2022b`` +``0.9.2`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.9.3`` | ``-Python-3.6.4`` | ``intel/2018a`` +``0.9.6`` | ``-Python-3.7.2-R-3.6.0`` | ``foss/2019a`` +``0.9.8`` | ``-R-4.0.3`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CNVnator.md b/docs/version-specific/supported-software/c/CNVnator.md new file mode 100644 index 000000000..3a89c3aaf --- /dev/null +++ b/docs/version-specific/supported-software/c/CNVnator.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CNVnator + +a tool for CNV discovery and genotyping from depth-of-coverage by mapped reads + +*homepage*: + +version | toolchain +--------|---------- +``0.3.3`` | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/COBRApy.md b/docs/version-specific/supported-software/c/COBRApy.md new file mode 100644 index 000000000..77dabef61 --- /dev/null +++ b/docs/version-specific/supported-software/c/COBRApy.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# COBRApy + +COBRApy is a package for constraint-based modeling of metabolic networks. + +*homepage*: + +version | toolchain +--------|---------- +``0.26.0`` | ``foss/2021a`` +``0.29.0`` | ``foss/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CODEX2.md b/docs/version-specific/supported-software/c/CODEX2.md new file mode 100644 index 000000000..fac7b7f0a --- /dev/null +++ b/docs/version-specific/supported-software/c/CODEX2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CODEX2 + +Full-spectrum copy number variation detection by high-throughput DNA sequencing + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20180227`` | ``-R-3.4.3`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/COMEBin.md b/docs/version-specific/supported-software/c/COMEBin.md new file mode 100644 index 000000000..60884f2a5 --- /dev/null +++ b/docs/version-specific/supported-software/c/COMEBin.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# COMEBin + +Effective binning of metagenomic contigs using COntrastive Multi-viEw representation learning + +*homepage*: + +version | toolchain +--------|---------- +``1.0.3-20240310`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/COMSOL.md b/docs/version-specific/supported-software/c/COMSOL.md new file mode 100644 index 000000000..5a1449769 --- /dev/null +++ b/docs/version-specific/supported-software/c/COMSOL.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# COMSOL + +COMSOL Multiphysics is a general-purpose software platform, based on advanced numerical methods, for modeling and simulating physics-based problems. + +*homepage*: + +version | toolchain +--------|---------- +``5.4.0.225`` | ``system`` +``6.2.0.290`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CONCOCT.md b/docs/version-specific/supported-software/c/CONCOCT.md new file mode 100644 index 000000000..f2d923d12 --- /dev/null +++ b/docs/version-specific/supported-software/c/CONCOCT.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# CONCOCT + +Clustering cONtigs with COverage and ComposiTion (CONCOCT) is a program for unsupervised binning of metagenomic contigs by using nucleotide composition, coverage data in multiple samples and linkage data from paired end reads. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.0`` | ``-Python-2.7.14`` | ``foss/2017b`` +``1.0.0`` | ``-Python-3.6.3`` | ``foss/2017b`` +``1.0.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.1.0`` | ``-Python-2.7.15`` | ``foss/2019a`` +``1.1.0`` | ``-Python-2.7.18`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CONN.md b/docs/version-specific/supported-software/c/CONN.md new file mode 100644 index 000000000..5064ac522 --- /dev/null +++ b/docs/version-specific/supported-software/c/CONN.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CONN + +CONN is an open-source Matlab/SPM-based cross-platform software for the computation, display, and analysis of functional connectivity Magnetic Resonance Imaging (fcMRI). CONN is used to analyze resting state data (rsfMRI) as well as task-related designs. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``21a`` | ``-MATLAB-2021a`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CP2K.md b/docs/version-specific/supported-software/c/CP2K.md new file mode 100644 index 000000000..39475573c --- /dev/null +++ b/docs/version-specific/supported-software/c/CP2K.md @@ -0,0 +1,44 @@ +--- +search: + boost: 0.5 +--- +# CP2K + +CP2K is a freely available (GPL) program, written in Fortran 95, to perform atomistic and molecular simulations of solid state, liquid, molecular and biological systems. It provides a general framework for different methods such as e.g. density functional theory (DFT) using a mixed Gaussian and plane waves approach (GPW), and classical pair and many-body potentials. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2022.1`` | | ``foss/2022a`` +``2023.1`` | | ``foss/2022b`` +``2023.1`` | | ``foss/2023a`` +``3.0`` | | ``intel/2016a`` +``3.0`` | ``-psmp`` | ``intel/2016b`` +``3.0`` | | ``intel/2016b`` +``3.0`` | | ``intel/2017b`` +``3.0`` | | ``intel/2018a`` +``4.1`` | ``-psmp`` | ``foss/2016b`` +``4.1`` | | ``intel/2016b`` +``5.1`` | | ``foss/2018a`` +``5.1`` | | ``foss/2020a`` +``5.1`` | | ``foss/2020b`` +``5.1`` | | ``intel/2017b`` +``5.1`` | | ``intel/2018a`` +``5.1`` | | ``intel/2020a`` +``6.1`` | | ``foss/2019a`` +``6.1`` | | ``intel/2018a`` +``6.1`` | | ``intel/2020a`` +``7.1`` | | ``foss/2020a`` +``7.1`` | ``-psmp`` | ``foss/2020b`` +``7.1`` | | ``foss/2020b`` +``7.1`` | | ``intel/2020a`` +``7.1`` | | ``intel/2020b`` +``8.1`` | | ``foss/2020b`` +``8.2`` | | ``foss/2021a`` +``8.2`` | | ``intel/2021a`` +``9.1`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CPB.md b/docs/version-specific/supported-software/c/CPB.md new file mode 100644 index 000000000..38280c999 --- /dev/null +++ b/docs/version-specific/supported-software/c/CPB.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CPB + +CPB is a novel two-step Pearson correlation based biclustering approach to mine genes that are co-regulated with a given reference gene in order to discover genes that function in a common biological process. In the first step, the algorithm identifies subsets of genes with high correlation, reducing false negatives with a nonparametric filtering scheme. In the second step, biclusters from multiple datasets are used to extract and rank gene correlation information. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``11-4-2011`` | ``-Python-2.7.13`` | ``foss/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CPC2.md b/docs/version-specific/supported-software/c/CPC2.md new file mode 100644 index 000000000..001ba54e5 --- /dev/null +++ b/docs/version-specific/supported-software/c/CPC2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CPC2 + +a fast and accurate coding potential calculator based on sequence intrinsic features + +*homepage*: + +version | toolchain +--------|---------- +``1.0.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CPLEX.md b/docs/version-specific/supported-software/c/CPLEX.md new file mode 100644 index 000000000..7044f8b89 --- /dev/null +++ b/docs/version-specific/supported-software/c/CPLEX.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# CPLEX + +IBM ILOG CPLEX Optimizer's mathematical programming technology enables analytical decision support for improving efficiency, reducing costs, and increasing profitability. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``12.10`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``12.9`` | | ``GCCcore/8.2.0`` +``22.1.1`` | | ``GCCcore/11.2.0`` +``22.1.1`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CPMD.md b/docs/version-specific/supported-software/c/CPMD.md new file mode 100644 index 000000000..d6636d4bb --- /dev/null +++ b/docs/version-specific/supported-software/c/CPMD.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CPMD + +The CPMD code is a parallelized plane wave / pseudopotential implementation of DFT, particularly designed for ab-initio molecular dynamics. + +*homepage*: + +version | toolchain +--------|---------- +``4.3`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CPPE.md b/docs/version-specific/supported-software/c/CPPE.md new file mode 100644 index 000000000..13cee025f --- /dev/null +++ b/docs/version-specific/supported-software/c/CPPE.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# CPPE + +CPPE is an open-source, light-weight C++ and Python library for Polarizable Embedding (PE)1,2 calculations. It provides an easy-to-use API to implement PE for ground-state self-consistent field (SCF) calculations and post-SCF methods. A convenient Python interface is also available. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.1`` | ``GCC/11.3.0`` +``0.3.1`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CREST.md b/docs/version-specific/supported-software/c/CREST.md new file mode 100644 index 000000000..8cf10c8b4 --- /dev/null +++ b/docs/version-specific/supported-software/c/CREST.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# CREST + +CREST is an utility/driver program for the xtb program. Originally it was designed as conformer sampling program, hence the abbreviation Conformer–Rotamer Ensemble Sampling Tool, but now offers also some utility functions for calculations with the GFNn–xTB methods. Generally the program functions as an IO based OMP scheduler (i.e., calculations are performed by the xtb program) and tool for the creation and analysation of structure ensembles. + +*homepage*: + +version | toolchain +--------|---------- +``2.11`` | ``intel/2021a`` +``2.11.2`` | ``intel/2021a`` +``2.12`` | ``gfbf/2023a`` +``2.12`` | ``intel/2022a`` +``20240319`` | ``gfbf/2023a`` +``3.0.1`` | ``gfbf/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CRF++.md b/docs/version-specific/supported-software/c/CRF++.md new file mode 100644 index 000000000..4463e7019 --- /dev/null +++ b/docs/version-specific/supported-software/c/CRF++.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# CRF++ + +CRF++ is a simple, customizable, and open source implementation of Conditional Random Fields (CRFs) for segmenting/labeling sequential data. CRF++ is designed for generic purpose and will be applied to a variety of NLP tasks, such as Named Entity Recognition, Information Extraction and Text Chunking. + +*homepage*: + +version | toolchain +--------|---------- +``0.58`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``0.58`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CRISPR-DAV.md b/docs/version-specific/supported-software/c/CRISPR-DAV.md new file mode 100644 index 000000000..81be292df --- /dev/null +++ b/docs/version-specific/supported-software/c/CRISPR-DAV.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CRISPR-DAV + +CRISPR-DAV is a pipeline to analyze amplicon-based NGS data of CRISPR clones in a high throughput manner. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.4`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CRISPResso2.md b/docs/version-specific/supported-software/c/CRISPResso2.md new file mode 100644 index 000000000..55b7dec26 --- /dev/null +++ b/docs/version-specific/supported-software/c/CRISPResso2.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# CRISPResso2 + +CRISPResso2 is a software pipeline designed to enable rapid and intuitive interpretation of genome editing experiments. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.44`` | ``-Python-2.7.16`` | ``foss/2019b`` +``2.1.2`` | ``-Python-2.7.18`` | ``foss/2020b`` +``2.2.1`` | | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CRPropa.md b/docs/version-specific/supported-software/c/CRPropa.md new file mode 100644 index 000000000..b344635d0 --- /dev/null +++ b/docs/version-specific/supported-software/c/CRPropa.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# CRPropa + +CRPropa is a publicly available code to study the propagation of ultra high energy nuclei up to iron on their voyage through an extra galactic environment. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.1.5`` | ``-Python-3.7.2`` | ``foss/2019a`` +``3.1.6`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CSB.md b/docs/version-specific/supported-software/c/CSB.md new file mode 100644 index 000000000..51395741c --- /dev/null +++ b/docs/version-specific/supported-software/c/CSB.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CSB + +Computational Structural Biology Toolbox CSB is a python library and application framework, which can be used to solve problems in the field of structural bioinformatics. If you are a bioinformatician, software engineer or a researcher working in this field, chances are you may find something useful here. Our package consists of a few major components: 1. Core class library - object-oriented, granular, with an emphasis on design and clean interfaces. 2. Application framework - console applications ("protocols"), which consume objects from the core library in order to build something executable (and hopefully useful). 3. Test framework - ensures that the library actually works. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.5`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CSBDeep.md b/docs/version-specific/supported-software/c/CSBDeep.md new file mode 100644 index 000000000..575f39e9e --- /dev/null +++ b/docs/version-specific/supported-software/c/CSBDeep.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# CSBDeep + +CSBDeep is a toolbox for Content-aware Image Restoration (CARE). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.4.1`` | ``-Python-3.7.2`` | ``foss/2019a`` +``0.4.1`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` +``0.7.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.7.4`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CSBLAST.md b/docs/version-specific/supported-software/c/CSBLAST.md new file mode 100644 index 000000000..43f9a8f47 --- /dev/null +++ b/docs/version-specific/supported-software/c/CSBLAST.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# CSBLAST + +Context-specific extension of BLAST that significantly improves sensitivity and alignment quality. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.3`` | ``GCCcore/8.3.0`` +``2.2.4`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CTPL.md b/docs/version-specific/supported-software/c/CTPL.md new file mode 100644 index 000000000..a75cc809d --- /dev/null +++ b/docs/version-specific/supported-software/c/CTPL.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CTPL + +Modern and efficient C++ Thread Pool Library + +*homepage*: + +version | toolchain +--------|---------- +``0.0.2`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CUDA-Samples.md b/docs/version-specific/supported-software/c/CUDA-Samples.md new file mode 100644 index 000000000..d4122844a --- /dev/null +++ b/docs/version-specific/supported-software/c/CUDA-Samples.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# CUDA-Samples + +Samples for CUDA Developers which demonstrates features in CUDA Toolkit + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``11.3`` | ``-CUDA-11.3.1`` | ``GCC/10.3.0`` +``11.6`` | ``-CUDA-11.7.0`` | ``GCC/11.3.0`` +``12.1`` | ``-CUDA-12.1.1`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CUDA.md b/docs/version-specific/supported-software/c/CUDA.md new file mode 100644 index 000000000..65db18289 --- /dev/null +++ b/docs/version-specific/supported-software/c/CUDA.md @@ -0,0 +1,68 @@ +--- +search: + boost: 0.5 +--- +# CUDA + +CUDA (formerly Compute Unified Device Architecture) is a parallel computing platform and programming model created by NVIDIA and implemented by the graphics processing units (GPUs) that they produce. CUDA gives developers access to the virtual instruction set and memory of the parallel computational elements in CUDA GPUs. + +*homepage*: + +version | toolchain +--------|---------- +``10.0.130`` | ``system`` +``10.1.105`` | ``GCC/8.2.0-2.31.1`` +``10.1.105`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``10.1.105`` | ``system`` +``10.1.168`` | ``system`` +``10.1.243`` | ``GCC/8.3.0`` +``10.1.243`` | ``iccifort/2019.5.281`` +``10.1.243`` | ``system`` +``10.2.89`` | ``GCC/8.3.0`` +``11.0.2`` | ``GCC/9.3.0`` +``11.0.2`` | ``iccifort/2020.1.217`` +``11.1.1`` | ``GCC/10.2.0`` +``11.1.1`` | ``iccifort/2020.4.304`` +``11.3.1`` | ``system`` +``11.4.1`` | ``system`` +``11.4.2`` | ``system`` +``11.5.0`` | ``system`` +``11.5.1`` | ``system`` +``11.5.2`` | ``system`` +``11.6.0`` | ``system`` +``11.7.0`` | ``system`` +``11.8.0`` | ``system`` +``12.0.0`` | ``system`` +``12.1.0`` | ``system`` +``12.1.1`` | ``system`` +``12.2.0`` | ``system`` +``12.2.2`` | ``system`` +``12.3.0`` | ``system`` +``12.3.2`` | ``system`` +``12.4.0`` | ``system`` +``5.5.22`` | ``GCC/4.8.2`` +``5.5.22`` | ``system`` +``6.0.37`` | ``system`` +``6.5.14`` | ``system`` +``7.0.28`` | ``system`` +``7.5.18`` | ``GCC/4.9.4-2.25`` +``7.5.18`` | ``iccifort/2016.3.210-GCC-4.9.3-2.25`` +``7.5.18`` | ``system`` +``8.0.44`` | ``GCC/5.4.0-2.26`` +``8.0.44`` | ``iccifort/2016.3.210-GCC-5.4.0-2.26`` +``8.0.44`` | ``system`` +``8.0.61`` | ``system`` +``8.0.61_375.26`` | ``GCC/5.4.0-2.26`` +``9.0.176`` | ``GCC/6.4.0-2.28`` +``9.0.176`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` +``9.0.176`` | ``system`` +``9.1.85`` | ``GCC/6.4.0-2.28`` +``9.1.85`` | ``system`` +``9.2.148.1`` | ``system`` +``9.2.88`` | ``GCC/6.4.0-2.28`` +``9.2.88`` | ``GCC/7.3.0-2.30`` +``9.2.88`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CUDAcompat.md b/docs/version-specific/supported-software/c/CUDAcompat.md new file mode 100644 index 000000000..adc5d6d7f --- /dev/null +++ b/docs/version-specific/supported-software/c/CUDAcompat.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# CUDAcompat + +Using the CUDA Forward Compatibility package, system administrators can run applications built using a newer toolkit even when an older driver that does not satisfy the minimum required driver version is installed on the system. This forward compatibility allows the CUDA deployments in data centers and enterprises to benefit from the faster release cadence and the latest features and performance of CUDA Toolkit. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``11.6`` | ``-510.85.02`` | ``system`` +``11.6`` | | ``system`` +``11.7`` | ``-515.65.01`` | ``system`` +``11.7`` | | ``system`` +``11`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CUDAcore.md b/docs/version-specific/supported-software/c/CUDAcore.md new file mode 100644 index 000000000..e55b4b8d8 --- /dev/null +++ b/docs/version-specific/supported-software/c/CUDAcore.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# CUDAcore + +CUDA (formerly Compute Unified Device Architecture) is a parallel computing platform and programming model created by NVIDIA and implemented by the graphics processing units (GPUs) that they produce. CUDA gives developers access to the virtual instruction set and memory of the parallel computational elements in CUDA GPUs. + +*homepage*: + +version | toolchain +--------|---------- +``11.0.2`` | ``system`` +``11.1.1`` | ``system`` +``11.2.1`` | ``system`` +``11.2.2`` | ``system`` +``11.3.0`` | ``system`` +``11.4.0`` | ``system`` +``11.5.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CUDD.md b/docs/version-specific/supported-software/c/CUDD.md new file mode 100644 index 000000000..7ea48740f --- /dev/null +++ b/docs/version-specific/supported-software/c/CUDD.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CUDD + +The CUDD package is a package written in C for the manipulation of decision diagrams. It supports binary decision diagrams (BDDs), algebraic decision diagrams (ADDs), and Zero-Suppressed BDDs (ZDDs). + +*homepage*: + +version | toolchain +--------|---------- +``3.0.0`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CUTLASS.md b/docs/version-specific/supported-software/c/CUTLASS.md new file mode 100644 index 000000000..55afd663a --- /dev/null +++ b/docs/version-specific/supported-software/c/CUTLASS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CUTLASS + +CUTLASS is a collection of CUDA C++ template abstractions for implementing high-performance matrix-matrix multiplication (GEMM) and related computations at all levels and scales within CUDA. It incorporates strategies for hierarchical decomposition and data movement similar to those used to implement cuBLAS and cuDNN. CUTLASS decomposes these "moving parts" into reusable, modular software components abstracted by C++ template classes. Primitives for different levels of a conceptual parallelization hierarchy can be specialized and tuned via custom tiling sizes, data types, and other algorithmic policy. The resulting flexibility simplifies their use as building blocks within custom kernels and applications. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.11.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CUnit.md b/docs/version-specific/supported-software/c/CUnit.md new file mode 100644 index 000000000..d47d93999 --- /dev/null +++ b/docs/version-specific/supported-software/c/CUnit.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# CUnit + +Automated testing framework for C. + +*homepage*: + +version | toolchain +--------|---------- +``2.1-3`` | ``GCCcore/11.2.0`` +``2.1-3`` | ``GCCcore/11.3.0`` +``2.1-3`` | ``GCCcore/12.3.0`` +``2.1-3`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CVX.md b/docs/version-specific/supported-software/c/CVX.md new file mode 100644 index 000000000..9a5c5b170 --- /dev/null +++ b/docs/version-specific/supported-software/c/CVX.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CVX + +CVX is a Matlab-based modeling system for convex optimization. CVX turns Matlab into a modeling language, allowing constraints and objectives to be specified using standard Matlab expression syntax. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2`` | ``-MATLAB-2023a`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CVXOPT.md b/docs/version-specific/supported-software/c/CVXOPT.md new file mode 100644 index 000000000..377f7a150 --- /dev/null +++ b/docs/version-specific/supported-software/c/CVXOPT.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# CVXOPT + +CVXOPT is a free software package for convex optimization based on the Python programming language. Its main purpose is to make the development of software for convex optimization applications straightforward by building on Python's extensive standard library and on the strengths of Python as a high-level programming language. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.9`` | ``-Python-2.7.13`` | ``intel/2017a`` +``1.2.1`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.2.3`` | | ``foss/2019a`` +``1.2.3`` | ``-Python-3.6.6`` | ``intel/2018b`` +``1.2.4`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.2.6`` | | ``foss/2020b`` +``1.2.6`` | | ``foss/2021a`` +``1.3.1`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CVXPY.md b/docs/version-specific/supported-software/c/CVXPY.md new file mode 100644 index 000000000..21cf32ec6 --- /dev/null +++ b/docs/version-specific/supported-software/c/CVXPY.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# CVXPY + +CVXPY is a Python-embedded modeling language for convex optimization problems. It allows you to express your problem in a natural way that follows the math, rather than in the restrictive standard form required by solvers. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.24`` | | ``foss/2019a`` +``1.0.28`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.3.0`` | | ``foss/2022a`` +``1.4.2`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CVglasso.md b/docs/version-specific/supported-software/c/CVglasso.md new file mode 100644 index 000000000..01f80a092 --- /dev/null +++ b/docs/version-specific/supported-software/c/CVglasso.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CVglasso + +CVglasso is an R package that estimates a lasso-penalized precision matrix via block-wise coordinate descent – also known as the graphical lasso (glasso) algorithm. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CWIPI.md b/docs/version-specific/supported-software/c/CWIPI.md new file mode 100644 index 000000000..c0c3902de --- /dev/null +++ b/docs/version-specific/supported-software/c/CWIPI.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# CWIPI + +CWIPI (Coupling With Interpolation Parallel Interface) library helps in chaining and coupling codes. Provides exchanges of interpolated fields through a non-compliant geometric interface and allows control of the coupling algorithm using control parameters. CWIPI takes advantage of the distribution of the definition of the coupling algorithm in the different codes. + +*homepage*: + +version | toolchain +--------|---------- +``0.12.0`` | ``gompi/2021a`` +``0.12.0`` | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CaDiCaL.md b/docs/version-specific/supported-software/c/CaDiCaL.md new file mode 100644 index 000000000..e0674b18c --- /dev/null +++ b/docs/version-specific/supported-software/c/CaDiCaL.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CaDiCaL + +CaDiCaL is a simplified satisfiability solver. The original goal of the development of CaDiCaL was to obtain a CDCL solver, which is easy to understand and change, while at the same time not being much slower than other state-of-the-art CDCL solvers. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.0`` | ``GCC/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CaSpER.md b/docs/version-specific/supported-software/c/CaSpER.md new file mode 100644 index 000000000..066cb521d --- /dev/null +++ b/docs/version-specific/supported-software/c/CaSpER.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CaSpER + +CaSpER is a signal processing approach for identification, visualization, and integrative analysis of focal and large-scale CNV events in multiscale resolution using either bulk or single-cell RNA sequencing data. + +*homepage*: + +version | toolchain +--------|---------- +``2.0`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CaVEMan.md b/docs/version-specific/supported-software/c/CaVEMan.md new file mode 100644 index 000000000..4799c3787 --- /dev/null +++ b/docs/version-specific/supported-software/c/CaVEMan.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CaVEMan + +SNV expectation maximisation based mutation calling algorithm aimed at detecting somatic mutations in paired (tumour/normal) cancer samples. Supports both bam and cram format via htslib + +*homepage*: + +version | toolchain +--------|---------- +``1.13.2`` | ``foss/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Caffe.md b/docs/version-specific/supported-software/c/Caffe.md new file mode 100644 index 000000000..690f1387d --- /dev/null +++ b/docs/version-specific/supported-software/c/Caffe.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Caffe + +Caffe is a deep learning framework made with expression, speed, and modularity in mind. It is developed by the Berkeley Vision and Learning Center (BVLC) and community contributors. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``1.0`` | ``-CUDA-9.1.85-Python-2.7.14`` | ``intel/2017b`` +``1.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``rc3`` | ``-CUDA-7.5.18-Python-2.7.11`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Calcam.md b/docs/version-specific/supported-software/c/Calcam.md new file mode 100644 index 000000000..c64940765 --- /dev/null +++ b/docs/version-specific/supported-software/c/Calcam.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Calcam + +Calcam is a Python package providing tools for spatial calibration of cameras, i.e. determining the mapping between pixel coordinates in an image and real-world 3D sight lines & coordinates. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.0`` | ``-Python-2.7.14`` | ``intel/2018a`` +``2.1.0`` | ``-Python-3.6.4`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CalculiX-CrunchiX.md b/docs/version-specific/supported-software/c/CalculiX-CrunchiX.md new file mode 100644 index 000000000..1eff92e03 --- /dev/null +++ b/docs/version-specific/supported-software/c/CalculiX-CrunchiX.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# CalculiX-CrunchiX + +A Free Software Three-Dimensional Structural Finite Element Program + +*homepage*: + +version | toolchain +--------|---------- +``2.20`` | ``foss/2021a`` +``2.20`` | ``foss/2022b`` +``2.20`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Calendrical.md b/docs/version-specific/supported-software/c/Calendrical.md new file mode 100644 index 000000000..0b089469a --- /dev/null +++ b/docs/version-specific/supported-software/c/Calendrical.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Calendrical + +Calendrical module is for calendrical calculations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.1`` | ``-Python-3.6.3`` | ``intel/2017b`` +``2.0.2a`` | ``-Python-3.6.4`` | ``intel/2018a`` +``2.0.2a`` | ``-Python-3.6.6`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Calib.md b/docs/version-specific/supported-software/c/Calib.md new file mode 100644 index 000000000..2ca2f4a83 --- /dev/null +++ b/docs/version-specific/supported-software/c/Calib.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Calib + +Calib clusters paired-end reads using their barcodes and sequences. Calib is suitable for amplicon sequencing where a molecule is tagged, then PCR amplified with high depth, also known as Unique Molecule Identifier (UMI) sequencing. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.4`` | ``GCC/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Cantera.md b/docs/version-specific/supported-software/c/Cantera.md new file mode 100644 index 000000000..ea0f157b3 --- /dev/null +++ b/docs/version-specific/supported-software/c/Cantera.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# Cantera + +Chemical kinetics, thermodynamics, and transport tool suite + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2.3.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2.3.0`` | ``-Python-2.7.14`` | ``foss/2017b`` +``2.3.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2.3.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``2.3.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.3.0`` | ``-Python-2.7.14`` | ``intel/2018a`` +``2.4.0`` | ``-Python-2.7.14`` | ``intel/2018a`` +``2.6.0`` | | ``foss/2022a`` +``3.0.0`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Canvas.md b/docs/version-specific/supported-software/c/Canvas.md new file mode 100644 index 000000000..dd31ce507 --- /dev/null +++ b/docs/version-specific/supported-software/c/Canvas.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Canvas + +Copy number variant (CNV) calling from DNA sequencing data + +*homepage*: + +version | toolchain +--------|---------- +``1.39.0.1598`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CapnProto.md b/docs/version-specific/supported-software/c/CapnProto.md new file mode 100644 index 000000000..b8308ce34 --- /dev/null +++ b/docs/version-specific/supported-software/c/CapnProto.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# CapnProto + +Cap’n Proto is an insanely fast data interchange format and capability-based RPC system. + +*homepage*: + +version | toolchain +--------|---------- +``0.10.2`` | ``GCCcore/11.3.0`` +``0.10.3`` | ``GCCcore/12.2.0`` +``0.6.1`` | ``GCCcore/6.4.0`` +``0.7.0`` | ``GCCcore/7.3.0`` +``0.8.0`` | ``GCCcore/9.3.0`` +``0.9.1`` | ``GCCcore/10.2.0`` +``0.9.1`` | ``GCCcore/10.3.0`` +``0.9.1`` | ``GCCcore/11.2.0`` +``1.0.1`` | ``GCCcore/12.3.0`` +``1.0.1.1`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Cargo.md b/docs/version-specific/supported-software/c/Cargo.md new file mode 100644 index 000000000..39a663f55 --- /dev/null +++ b/docs/version-specific/supported-software/c/Cargo.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Cargo + +The Rust package manager + +*homepage*: + +version | toolchain +--------|---------- +``0.13.0`` | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Carma.md b/docs/version-specific/supported-software/c/Carma.md new file mode 100644 index 000000000..0dfe4c0a4 --- /dev/null +++ b/docs/version-specific/supported-software/c/Carma.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Carma + +Carma - A molecular dynamics analysis program + +*homepage*: + +version | toolchain +--------|---------- +``2.01`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Cartopy.md b/docs/version-specific/supported-software/c/Cartopy.md new file mode 100644 index 000000000..4a23d1f08 --- /dev/null +++ b/docs/version-specific/supported-software/c/Cartopy.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# Cartopy + +Cartopy is a Python package designed to make drawing maps for data analysis and visualisation easy. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.18.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.18.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.19.0.post1`` | | ``foss/2020b`` +``0.19.0.post1`` | | ``intel/2020b`` +``0.20.0`` | | ``foss/2021a`` +``0.20.3`` | | ``foss/2021b`` +``0.20.3`` | | ``foss/2022a`` +``0.22.0`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Casanovo.md b/docs/version-specific/supported-software/c/Casanovo.md new file mode 100644 index 000000000..cd0f8d1ab --- /dev/null +++ b/docs/version-specific/supported-software/c/Casanovo.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Casanovo + +De Novo Mass Spectrometry Peptide Sequencing with a Transformer Model + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.3.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``3.3.0`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Cassiopeia.md b/docs/version-specific/supported-software/c/Cassiopeia.md new file mode 100644 index 000000000..3da4e3879 --- /dev/null +++ b/docs/version-specific/supported-software/c/Cassiopeia.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Cassiopeia + +A Package for Cas9-Enabled Single Cell Lineage Tracing Tree Reconstruction. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.0`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CastXML.md b/docs/version-specific/supported-software/c/CastXML.md new file mode 100644 index 000000000..a214ac146 --- /dev/null +++ b/docs/version-specific/supported-software/c/CastXML.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# CastXML + +CastXML is a C-family abstract syntax tree XML output tool. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.3`` | ``GCCcore/8.3.0`` +``20160617`` | ``foss/2016a`` +``20180806`` | ``foss/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CatBoost.md b/docs/version-specific/supported-software/c/CatBoost.md new file mode 100644 index 000000000..2b3fd06ba --- /dev/null +++ b/docs/version-specific/supported-software/c/CatBoost.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CatBoost + +CatBoost is a high-performance open source library for gradient boosting on decision trees + +*homepage*: + +version | toolchain +--------|---------- +``1.2`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CatLearn.md b/docs/version-specific/supported-software/c/CatLearn.md new file mode 100644 index 000000000..923d9de25 --- /dev/null +++ b/docs/version-specific/supported-software/c/CatLearn.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CatLearn + +An environment for atomistic machine learning in Python for applications in catalysis + +*homepage*: + +version | toolchain +--------|---------- +``0.6.2`` | ``intel/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CatMAP.md b/docs/version-specific/supported-software/c/CatMAP.md new file mode 100644 index 000000000..12eb188b0 --- /dev/null +++ b/docs/version-specific/supported-software/c/CatMAP.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# CatMAP + +Catalyst Micro-kinetic Analysis Package for automated creation of micro-kinetic models used in catalyst screening. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20170927`` | ``-Python-2.7.14`` | ``intel/2017b`` +``20220519`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Catch2.md b/docs/version-specific/supported-software/c/Catch2.md new file mode 100644 index 000000000..bac6b59fd --- /dev/null +++ b/docs/version-specific/supported-software/c/Catch2.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# Catch2 + +A modern, C++-native, header-only, test framework for unit-tests, TDD and BDD - using C++11, C++14, C++17 and later (or C++03 on the Catch1.x branch) + +*homepage*: + +version | toolchain +--------|---------- +``2.11.0`` | ``system`` +``2.13.4`` | ``system`` +``2.13.9`` | ``GCCcore/12.2.0`` +``2.13.9`` | ``GCCcore/12.3.0`` +``2.13.9`` | ``GCCcore/13.2.0`` +``2.13.9`` | ``system`` +``2.9.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Cbc.md b/docs/version-specific/supported-software/c/Cbc.md new file mode 100644 index 000000000..3aab1d878 --- /dev/null +++ b/docs/version-specific/supported-software/c/Cbc.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Cbc + +Cbc (Coin-or branch and cut) is an open-source mixed integer linear programming solver written in C++. It can be used as a callable library or using a stand-alone executable. + +*homepage*: + +version | toolchain +--------|---------- +``2.10.11`` | ``foss/2023a`` +``2.10.3`` | ``foss/2018b`` +``2.10.5`` | ``foss/2020b`` +``2.10.5`` | ``foss/2021a`` +``2.10.5`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CellBender.md b/docs/version-specific/supported-software/c/CellBender.md new file mode 100644 index 000000000..c7a48075e --- /dev/null +++ b/docs/version-specific/supported-software/c/CellBender.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# CellBender + +CellBender is a software package for eliminating technical artifacts from high-throughput single-cell RNA sequencing (scRNA-seq) data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.1`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``0.2.2`` | | ``foss/2022a`` +``0.3.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` +``0.3.0`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CellChat.md b/docs/version-specific/supported-software/c/CellChat.md new file mode 100644 index 000000000..7033ad8f5 --- /dev/null +++ b/docs/version-specific/supported-software/c/CellChat.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CellChat + +" R toolkit for inference, visualization and analysis of cell-cell communication from single-cell data + +*homepage*: + +version | toolchain +--------|---------- +``1.5.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CellMix.md b/docs/version-specific/supported-software/c/CellMix.md new file mode 100644 index 000000000..0383df495 --- /dev/null +++ b/docs/version-specific/supported-software/c/CellMix.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CellMix + +A Comprehensive Toolbox for Gene Expression Deconvolution + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.6.2`` | ``-R-3.5.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CellOracle.md b/docs/version-specific/supported-software/c/CellOracle.md new file mode 100644 index 000000000..452beff6d --- /dev/null +++ b/docs/version-specific/supported-software/c/CellOracle.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CellOracle + +CellOracle is a Python library for in silico gene perturbation analyses using single-cell omics data and Gene Regulatory Network models. + +*homepage*: + +version | toolchain +--------|---------- +``0.12.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CellRanger-ARC.md b/docs/version-specific/supported-software/c/CellRanger-ARC.md new file mode 100644 index 000000000..558abd434 --- /dev/null +++ b/docs/version-specific/supported-software/c/CellRanger-ARC.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# CellRanger-ARC + +Cell Ranger ARC is a set of analysis pipelines that process Chromium Single Cell Multiome ATAC + Gene Expression sequencing data to generate a variety of analyses pertaining to gene expression, chromatin accessibility and their linkage. Furthermore, since the ATAC and gene expression measurements are on the very same cell, we are able to perform analyses that link chromatin accessibility and gene expression. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.1`` | ``system`` +``2.0.0`` | ``system`` +``2.0.1`` | ``system`` +``2.0.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CellRanger-ATAC.md b/docs/version-specific/supported-software/c/CellRanger-ATAC.md new file mode 100644 index 000000000..b6e1c5b74 --- /dev/null +++ b/docs/version-specific/supported-software/c/CellRanger-ATAC.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# CellRanger-ATAC + +Cell Ranger ATAC is a set of analysis pipelines that process Chromium Single Cell ATAC data. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.0`` | ``system`` +``2.0.0`` | ``system`` +``2.1.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CellRanger.md b/docs/version-specific/supported-software/c/CellRanger.md new file mode 100644 index 000000000..c968d9905 --- /dev/null +++ b/docs/version-specific/supported-software/c/CellRanger.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# CellRanger + +Cell Ranger is a set of analysis pipelines that process Chromium single-cell RNA-seq output to align reads, generate gene-cell matrices and perform clustering and gene expression analysis. + +*homepage*: + +version | toolchain +--------|---------- +``3.0.0`` | ``system`` +``3.0.2`` | ``system`` +``3.1.0`` | ``system`` +``4.0.0`` | ``system`` +``5.0.0`` | ``system`` +``5.0.1`` | ``system`` +``6.0.0`` | ``system`` +``6.0.1`` | ``system`` +``6.0.2`` | ``system`` +``6.1.2`` | ``system`` +``7.0.0`` | ``system`` +``7.1.0`` | ``system`` +``7.2.0`` | ``system`` +``8.0.0`` | ``system`` +``8.0.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CellRank.md b/docs/version-specific/supported-software/c/CellRank.md new file mode 100644 index 000000000..ad905247a --- /dev/null +++ b/docs/version-specific/supported-software/c/CellRank.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# CellRank + +CellRank is a toolkit to uncover cellular dynamics based on Markov state modeling of single-cell data. It contains two main modules: kernels compute cell-cell transition probabilities and estimators generate hypothesis based on these. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.0`` | ``foss/2021a`` +``2.0.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CellTypist.md b/docs/version-specific/supported-software/c/CellTypist.md new file mode 100644 index 000000000..5297b67ae --- /dev/null +++ b/docs/version-specific/supported-software/c/CellTypist.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# CellTypist + +A tool for semi-automatic cell type annotation + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0`` | ``foss/2021b`` +``1.6.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Cellpose.md b/docs/version-specific/supported-software/c/Cellpose.md new file mode 100644 index 000000000..d7855f127 --- /dev/null +++ b/docs/version-specific/supported-software/c/Cellpose.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Cellpose + +a generalist algorithm for cellular segmentation + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.6.5`` | | ``foss/2020b`` +``0.6.5`` | | ``fosscuda/2020b`` +``2.2.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``2.2.2`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Centrifuge.md b/docs/version-specific/supported-software/c/Centrifuge.md new file mode 100644 index 000000000..118a67c35 --- /dev/null +++ b/docs/version-specific/supported-software/c/Centrifuge.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Centrifuge + +Classifier for metagenomic sequences + +*homepage*: + +version | toolchain +--------|---------- +``1.0.3`` | ``foss/2018b`` +``1.0.4-beta`` | ``foss/2018b`` +``1.0.4-beta`` | ``gompi/2020a`` +``1.0.4`` | ``gompi/2020b`` +``1.0.4`` | ``gompi/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Cereal.md b/docs/version-specific/supported-software/c/Cereal.md new file mode 100644 index 000000000..d119563cf --- /dev/null +++ b/docs/version-specific/supported-software/c/Cereal.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Cereal + +cereal is a header-only C++11 serialization library. cereal takes arbitrary data types and reversibly turns them into different representations, such as compact binary encodings, XML, or JSON. cereal was designed to be fast, light-weight, and easy to extend - it has no external dependencies and can be easily bundled with other code or used standalone. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.0`` | ``system`` +``1.3.2`` | ``GCCcore/12.2.0`` +``1.3.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Cgl.md b/docs/version-specific/supported-software/c/Cgl.md new file mode 100644 index 000000000..b7d45dbbe --- /dev/null +++ b/docs/version-specific/supported-software/c/Cgl.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Cgl + +The COIN-OR Cut Generation Library (Cgl) is a collection of cut generators that can be used with other COIN-OR packages that make use of cuts, such as, among others, the linear solver Clp or the mixed integer linear programming solvers Cbc or BCP. Cgl uses the abstract class OsiSolverInterface (see Osi) to use or communicate with a solver. It does not directly call a solver. + +*homepage*: + +version | toolchain +--------|---------- +``0.60.2`` | ``foss/2018b`` +``0.60.3`` | ``foss/2020b`` +``0.60.3`` | ``foss/2021a`` +``0.60.7`` | ``foss/2022b`` +``0.60.8`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/ChIPseeker.md b/docs/version-specific/supported-software/c/ChIPseeker.md new file mode 100644 index 000000000..3c938c48f --- /dev/null +++ b/docs/version-specific/supported-software/c/ChIPseeker.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ChIPseeker + +This package implements functions to retrieve the nearest genes around the peak, annotate genomic region of the peak, statstical methods for estimate the significance of overlap among ChIP peak data sets, and incorporate GEO database for user to compare the own dataset with those deposited in database. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.32.1`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CharLS.md b/docs/version-specific/supported-software/c/CharLS.md new file mode 100644 index 000000000..f0c6eea1e --- /dev/null +++ b/docs/version-specific/supported-software/c/CharLS.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# CharLS + +CharLS is a C++ implementation of the JPEG-LS standard for lossless and near-lossless image compression and decompression. JPEG-LS is a low-complexity image compression standard that matches JPEG 2000 compression ratios. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.0`` | ``GCCcore/6.4.0`` +``2.0.0`` | ``GCCcore/7.3.0`` +``2.1.0`` | ``GCCcore/8.2.0`` +``2.1.0`` | ``GCCcore/8.3.0`` +``2.2.0`` | ``GCCcore/10.2.0`` +``2.3.4`` | ``GCCcore/10.3.0`` +``2.4.1`` | ``GCCcore/11.3.0`` +``2.4.2`` | ``GCCcore/12.2.0`` +``2.4.2`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CheMPS2.md b/docs/version-specific/supported-software/c/CheMPS2.md new file mode 100644 index 000000000..b1cac90c1 --- /dev/null +++ b/docs/version-specific/supported-software/c/CheMPS2.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# CheMPS2 + +CheMPS2 is a scientific library which contains a spin-adapted implementation of the density matrix renormalization group (DMRG) for ab initio quantum chemistry. + +*homepage*: + +version | toolchain +--------|---------- +``1.6`` | ``intel/2016a`` +``1.7-rc2`` | ``intel/2016a`` +``1.7.1`` | ``intel/2016a`` +``1.7.2`` | ``intel/2016a`` +``1.8`` | ``intel/2016b`` +``1.8.11`` | ``foss/2021b`` +``1.8.12`` | ``foss/2022a`` +``1.8.12`` | ``foss/2022b`` +``1.8.8`` | ``intel/2018b`` +``1.8.9`` | ``foss/2018b`` +``1.8.9`` | ``foss/2019a`` +``1.8.9`` | ``intel/2018b`` +``1.8.9`` | ``intel/2019a`` +``1.8.9`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Check.md b/docs/version-specific/supported-software/c/Check.md new file mode 100644 index 000000000..bc6363982 --- /dev/null +++ b/docs/version-specific/supported-software/c/Check.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# Check + +Check is a unit testing framework for C. It features a simple interface for defining unit tests, putting little in the way of the developer. Tests are run in a separate address space, so both assertion failures and code errors that cause segmentation faults or other signals can be caught. Test results are reportable in the following: Subunit, TAP, XML, and a generic logging format. + +*homepage*: + +version | toolchain +--------|---------- +``0.12.0`` | ``GCCcore/6.4.0`` +``0.15.2`` | ``GCCcore/10.2.0`` +``0.15.2`` | ``GCCcore/10.3.0`` +``0.15.2`` | ``GCCcore/11.2.0`` +``0.15.2`` | ``GCCcore/11.3.0`` +``0.15.2`` | ``GCCcore/12.2.0`` +``0.15.2`` | ``GCCcore/12.3.0`` +``0.15.2`` | ``GCCcore/13.2.0`` +``0.15.2`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CheckM-Database.md b/docs/version-specific/supported-software/c/CheckM-Database.md new file mode 100644 index 000000000..594b6b44d --- /dev/null +++ b/docs/version-specific/supported-software/c/CheckM-Database.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CheckM-Database + +CheckM provides a set of tools for assessing the quality of genomes recovered from isolates, single cells, or metagenomes. This is the corresponding database. + +*homepage*: + +version | toolchain +--------|---------- +``2015_01_16`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CheckM.md b/docs/version-specific/supported-software/c/CheckM.md new file mode 100644 index 000000000..80c91b211 --- /dev/null +++ b/docs/version-specific/supported-software/c/CheckM.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# CheckM + +CheckM provides a set of tools for assessing the quality of genomes recovered from isolates, single cells, or metagenomes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.13`` | ``-Python-2.7.14`` | ``foss/2017b`` +``1.0.13`` | ``-Python-3.6.3`` | ``foss/2017b`` +``1.0.13`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.0.13`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.0.13`` | ``-Python-3.6.3`` | ``intel/2017b`` +``1.0.18`` | ``-Python-2.7.15`` | ``foss/2019a`` +``1.0.18`` | ``-Python-2.7.18`` | ``foss/2020b`` +``1.1.2`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.1.2`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.1.3`` | | ``foss/2021a`` +``1.1.3`` | | ``foss/2021b`` +``1.1.3`` | ``-Python-3.8.2`` | ``intel/2020a`` +``1.2.2`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CheckM2.md b/docs/version-specific/supported-software/c/CheckM2.md new file mode 100644 index 000000000..dfd33c140 --- /dev/null +++ b/docs/version-specific/supported-software/c/CheckM2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CheckM2 + +Assessing the quality of metagenome-derived genome bins using machine learning + +*homepage*: + +version | toolchain +--------|---------- +``1.0.2`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Cheetah.md b/docs/version-specific/supported-software/c/Cheetah.md new file mode 100644 index 000000000..d5907ac17 --- /dev/null +++ b/docs/version-specific/supported-software/c/Cheetah.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Cheetah + +Cheetah is an open source template engine and code generation tool. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.4.4`` | ``-Python-2.7.15`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Chemaxon-Marvin.md b/docs/version-specific/supported-software/c/Chemaxon-Marvin.md new file mode 100644 index 000000000..f0307eb83 --- /dev/null +++ b/docs/version-specific/supported-software/c/Chemaxon-Marvin.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Chemaxon-Marvin + +Marvin suite is a chemically intelligent desktop toolkit built to help you draw, edit, publish, render, import and export your chemical structures and as well as allowing you to convert between various chemical and graphical file formats. It is free for individual, academic and non-commercial use. + +*homepage*: + +version | toolchain +--------|---------- +``21.14`` | ``system`` +``23.9`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/ChimPipe.md b/docs/version-specific/supported-software/c/ChimPipe.md new file mode 100644 index 000000000..8d0bebf69 --- /dev/null +++ b/docs/version-specific/supported-software/c/ChimPipe.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ChimPipe + +ChimPipe is a computational method for the detection of novel transcription-induced chimeric transcripts and fusion genes from Illumina Paired-End RNA-seq data. It combines junction spanning and paired-end read information to accurately detect chimeric splice junctions at base-pair resolution. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.9.5`` | ``-Python-2.7.12`` | ``foss/2016b`` +``0.9.5`` | | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Chimera.md b/docs/version-specific/supported-software/c/Chimera.md new file mode 100644 index 000000000..9dd573ddf --- /dev/null +++ b/docs/version-specific/supported-software/c/Chimera.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Chimera + +UCSF Chimera is a highly extensible program for interactive visualization and analysis of molecular structures and related data, including density maps, supramolecular assemblies, sequence alignments, docking results, trajectories, and conformational ensembles. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.10`` | ``-linux_x86_64`` | ``system`` +``1.16`` | ``-linux_x86_64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Chromaprint.md b/docs/version-specific/supported-software/c/Chromaprint.md new file mode 100644 index 000000000..e1cfa15a7 --- /dev/null +++ b/docs/version-specific/supported-software/c/Chromaprint.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Chromaprint + +Chromaprint is the core component of the AcoustID project. It's a client-side library that implements a custom algorithm for extracting fingerprints from any audio source. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.3`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Circlator.md b/docs/version-specific/supported-software/c/Circlator.md new file mode 100644 index 000000000..ee37bca8d --- /dev/null +++ b/docs/version-specific/supported-software/c/Circlator.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Circlator + +A tool to circularize genome assemblies.s + +*homepage*: + +version | toolchain +--------|---------- +``1.5.5`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Circos.md b/docs/version-specific/supported-software/c/Circos.md new file mode 100644 index 000000000..d0bcaa264 --- /dev/null +++ b/docs/version-specific/supported-software/c/Circos.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Circos + +Circos is a software package for visualizing data and information. It visualizes data in a circular layout - this makes Circos ideal for exploring relationships between objects or positions. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.69-5`` | ``-Perl-5.24.0`` | ``foss/2016b`` +``0.69-6`` | ``-Perl-5.26.1`` | ``GCCcore/6.4.0`` +``0.69-6`` | ``-Perl-5.28.0`` | ``GCCcore/7.3.0`` +``0.69-9`` | | ``GCCcore/11.3.0`` +``0.69-9`` | | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Circuitscape.md b/docs/version-specific/supported-software/c/Circuitscape.md new file mode 100644 index 000000000..d0eb66c8b --- /dev/null +++ b/docs/version-specific/supported-software/c/Circuitscape.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Circuitscape + +Algorithms from circuit theory to predict connectivity in heterogeneous landscapes + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.12.3`` | ``-Julia-1.7.2`` | ``system`` +``5.12.3`` | ``-Julia-1.9.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Clair3.md b/docs/version-specific/supported-software/c/Clair3.md new file mode 100644 index 000000000..f12f39dba --- /dev/null +++ b/docs/version-specific/supported-software/c/Clair3.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Clair3 + +Clair3 is a germline small variant caller for long-reads. Clair3 makes the best of two major method categories: pileup calling handles most variant candidates with speed, and full-alignment tackles complicated candidates to maximize precision and recall. Clair3 runs fast and has superior performance, especially at lower coverage. Clair3 is simple and modular for easy deployment and integration. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.4`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Clang-AOMP.md b/docs/version-specific/supported-software/c/Clang-AOMP.md new file mode 100644 index 000000000..c7865fd7b --- /dev/null +++ b/docs/version-specific/supported-software/c/Clang-AOMP.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Clang-AOMP + +AOMP is an open source Clang/LLVM based compiler with added support for the OpenMP® API on Radeon™ GPUs. + +*homepage*: + +version | toolchain +--------|---------- +``4.5.0`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Clang-Python-bindings.md b/docs/version-specific/supported-software/c/Clang-Python-bindings.md new file mode 100644 index 000000000..5a6486f87 --- /dev/null +++ b/docs/version-specific/supported-software/c/Clang-Python-bindings.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Clang-Python-bindings + +Python bindings for libclang + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``10.0.1`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``13.0.1`` | | ``GCCcore/11.2.0`` +``13.0.1`` | | ``GCCcore/11.3.0`` +``16.0.6`` | | ``GCCcore/12.3.0`` +``8.0.0`` | ``-Python-2.7.15`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Clang.md b/docs/version-specific/supported-software/c/Clang.md new file mode 100644 index 000000000..b39e643f2 --- /dev/null +++ b/docs/version-specific/supported-software/c/Clang.md @@ -0,0 +1,59 @@ +--- +search: + boost: 0.5 +--- +# Clang + +C, C++, Objective-C compiler, based on LLVM. Does not include C++ standard library -- use libstdc++ from GCC. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``10.0.0`` | | ``GCCcore/8.3.0`` +``10.0.0`` | | ``GCCcore/9.3.0`` +``10.0.1`` | | ``GCCcore/9.3.0`` +``11.0.0`` | | ``GCCcore/9.3.0`` +``11.0.1`` | | ``GCCcore/10.2.0`` +``11.0.1`` | | ``gcccuda/2020b`` +``12.0.1`` | ``-CUDA-11.3.1`` | ``GCCcore/10.3.0`` +``12.0.1`` | | ``GCCcore/10.3.0`` +``12.0.1`` | | ``GCCcore/11.2.0`` +``13.0.1`` | ``-CUDA-11.4.1`` | ``GCCcore/11.2.0`` +``13.0.1`` | | ``GCCcore/11.2.0`` +``13.0.1`` | ``-CUDA-11.7.0`` | ``GCCcore/11.3.0`` +``13.0.1`` | | ``GCCcore/11.3.0`` +``15.0.5`` | | ``GCCcore/11.3.0`` +``16.0.4`` | | ``GCCcore/12.2.0`` +``16.0.6`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` +``16.0.6`` | | ``GCCcore/12.3.0`` +``17.0.6`` | | ``GCCcore/13.2.0`` +``3.3`` | | ``GCC/4.8.1`` +``3.4`` | | ``GCC/4.8.2`` +``3.4.1`` | | ``GCC/4.8.2`` +``3.4.2`` | | ``GCC/4.8.2`` +``3.6.0`` | | ``GCC/4.9.2`` +``3.6.1`` | | ``GCC/4.9.2`` +``3.7.0`` | | ``GNU/4.9.3-2.25`` +``3.7.1`` | | ``GCC/4.9.3-2.25`` +``3.7.1`` | | ``foss/2016a`` +``3.8.0`` | | ``GCC/4.9.3-2.25`` +``3.8.1`` | | ``GCC/5.4.0-2.26`` +``3.8.1`` | | ``foss/2016b`` +``5.0.0`` | | ``GCC/6.4.0-2.28`` +``5.0.1`` | | ``GCC/6.4.0-2.28`` +``6.0.1`` | | ``GCC/6.4.0-2.28`` +``6.0.1`` | | ``GCC/7.3.0-2.30`` +``7.0.0`` | | ``GCC/6.4.0-2.28`` +``7.0.1`` | | ``GCC/7.3.0-2.30`` +``8.0.0`` | ``-CUDA-10.1.105`` | ``GCCcore/8.2.0`` +``8.0.0`` | | ``GCCcore/8.2.0`` +``8.0.1`` | ``-CUDA-10.1.105`` | ``GCC/8.2.0-2.31.1`` +``8.0.1`` | ``-CUDA-10.1.243`` | ``GCC/8.3.0`` +``9.0.1`` | ``-CUDA-10.1.243`` | ``GCC/8.3.0`` +``9.0.1`` | | ``GCCcore/8.3.0`` +``9.0.1`` | | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Clarabel.rs.md b/docs/version-specific/supported-software/c/Clarabel.rs.md new file mode 100644 index 000000000..bc6f8f5a7 --- /dev/null +++ b/docs/version-specific/supported-software/c/Clarabel.rs.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Clarabel.rs + +Interior-point solver for convex conic optimisation problems in Rust. + +*homepage*: + +version | toolchain +--------|---------- +``0.7.1`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CliMetLab.md b/docs/version-specific/supported-software/c/CliMetLab.md new file mode 100644 index 000000000..b7c60fe68 --- /dev/null +++ b/docs/version-specific/supported-software/c/CliMetLab.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CliMetLab + +CliMetLab is a Python package aiming at simplifying access to climate and meteorological datasets, allowing users to focus on science instead of technical issues such as data access and data formats. It is mostly intended to be used in Jupyter notebooks, and be interoperable with all popular data analytic packages, such as Numpy, Pandas, Xarray, SciPy, Matplotlib, etc. as well as machine learning frameworks, such as Tensorflow, Keras or PyTorch. + +*homepage*: + +version | toolchain +--------|---------- +``0.12.6`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/ClonalFrameML.md b/docs/version-specific/supported-software/c/ClonalFrameML.md new file mode 100644 index 000000000..753583336 --- /dev/null +++ b/docs/version-specific/supported-software/c/ClonalFrameML.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ClonalFrameML + +Efficient Inference of Recombination in Whole Bacterial Genomes + +*homepage*: + +version | toolchain +--------|---------- +``1.11`` | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CloudCompare.md b/docs/version-specific/supported-software/c/CloudCompare.md new file mode 100644 index 000000000..880392ca7 --- /dev/null +++ b/docs/version-specific/supported-software/c/CloudCompare.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CloudCompare + +3D point cloud and mesh processing software + +*homepage*: + +version | toolchain +--------|---------- +``2.12.4`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Clp.md b/docs/version-specific/supported-software/c/Clp.md new file mode 100644 index 000000000..7f4ba437a --- /dev/null +++ b/docs/version-specific/supported-software/c/Clp.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# Clp + +Clp (Coin-or linear programming) is an open-source linear programming solver. It is primarily meant to be used as a callable library, but a basic, stand-alone executable version is also available. + +*homepage*: + +version | toolchain +--------|---------- +``1.17.3`` | ``foss/2018b`` +``1.17.6`` | ``foss/2020b`` +``1.17.6`` | ``foss/2021a`` +``1.17.7`` | ``foss/2021b`` +``1.17.8`` | ``foss/2022b`` +``1.17.9`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Clustal-Omega.md b/docs/version-specific/supported-software/c/Clustal-Omega.md new file mode 100644 index 000000000..e2d8fe494 --- /dev/null +++ b/docs/version-specific/supported-software/c/Clustal-Omega.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# Clustal-Omega + +Clustal Omega is a multiple sequence alignment program for proteins. It produces biologically meaningful multiple sequence alignments of divergent sequences. Evolutionary relationships can be seen via viewing Cladograms or Phylograms + +*homepage*: + +version | toolchain +--------|---------- +``1.2.0`` | ``foss/2016b`` +``1.2.4`` | ``GCC/10.2.0`` +``1.2.4`` | ``GCC/10.3.0`` +``1.2.4`` | ``GCC/11.2.0`` +``1.2.4`` | ``GCC/8.3.0`` +``1.2.4`` | ``foss/2018b`` +``1.2.4`` | ``intel/2018a`` +``1.2.4`` | ``intel/2018b`` +``1.2.4`` | ``intel-compilers/2021.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/ClustalW2.md b/docs/version-specific/supported-software/c/ClustalW2.md new file mode 100644 index 000000000..d7f63b57c --- /dev/null +++ b/docs/version-specific/supported-software/c/ClustalW2.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# ClustalW2 + +ClustalW2 is a general purpose multiple sequence alignment program for DNA or proteins. + +*homepage*: + +version | toolchain +--------|---------- +``2.1`` | ``GCC/10.3.0`` +``2.1`` | ``GCC/11.2.0`` +``2.1`` | ``GCC/12.3.0`` +``2.1`` | ``foss/2016b`` +``2.1`` | ``foss/2018b`` +``2.1`` | ``foss/2021a`` +``2.1`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``2.1`` | ``intel/2017b`` +``2.1`` | ``intel/2018b`` +``2.1`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Cluster-Buster.md b/docs/version-specific/supported-software/c/Cluster-Buster.md new file mode 100644 index 000000000..7a1fba504 --- /dev/null +++ b/docs/version-specific/supported-software/c/Cluster-Buster.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Cluster-Buster + +Cluster-Buster: Finding dense clusters of motifs in DNA sequences + +*homepage*: + +version | toolchain +--------|---------- +``20160106`` | ``intel/2016a`` +``20200507`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/ClusterShell.md b/docs/version-specific/supported-software/c/ClusterShell.md new file mode 100644 index 000000000..a571d4441 --- /dev/null +++ b/docs/version-specific/supported-software/c/ClusterShell.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ClusterShell + +ClusterShell is an event-driven open source Python library, designed to run local or distant commands in parallel on server farms or on large Linux clusters. + +*homepage*: + +version | toolchain +--------|---------- +``1.7.3`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CmdStanR.md b/docs/version-specific/supported-software/c/CmdStanR.md new file mode 100644 index 000000000..868deddbe --- /dev/null +++ b/docs/version-specific/supported-software/c/CmdStanR.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# CmdStanR + +CmdStanR is a lightweight interface to Stan for R users + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.5.0`` | ``-R-4.1.2`` | ``foss/2021b`` +``0.5.2`` | ``-R-4.2.1`` | ``foss/2022a`` +``0.7.1`` | ``-R-4.3.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Co-phylog.md b/docs/version-specific/supported-software/c/Co-phylog.md new file mode 100644 index 000000000..df0e470f8 --- /dev/null +++ b/docs/version-specific/supported-software/c/Co-phylog.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Co-phylog + +Co-phylog: an assembly-free phylogenomic approach for closely related organisms H Yi, L Jin Nucleic acids research 41 (7), e75-e75 + +*homepage*: + +version | toolchain +--------|---------- +``20201012`` | ``GCC/7.3.0-2.30`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CoCoALib.md b/docs/version-specific/supported-software/c/CoCoALib.md new file mode 100644 index 000000000..cc1daf483 --- /dev/null +++ b/docs/version-specific/supported-software/c/CoCoALib.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# CoCoALib + +CoCoALib is a free GPL3 C++ library for doing Computations in Commutative Algebra. + +*homepage*: + +version | toolchain +--------|---------- +``0.99601`` | ``GCC/8.2.0-2.31.1`` +``0.99700`` | ``GCC/8.3.0`` +``0.99818`` | ``GCC/11.3.0`` +``0.99850`` | ``GCC/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CoSymLib.md b/docs/version-specific/supported-software/c/CoSymLib.md new file mode 100644 index 000000000..e1c669ca1 --- /dev/null +++ b/docs/version-specific/supported-software/c/CoSymLib.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CoSymLib + +Cosymlib is a python library for computing continuous symmetry & shape measures (CSMs & CShMs). Although its main aim is to provide simple and ready-to-use tools for the analysis of the symmetry & shape of molecules, many of the procedures contained in cosymlib can be easily applied to any finite geometrical object defined by a set of vertices or a by mass distribution function. + +*homepage*: + +version | toolchain +--------|---------- +``0.10.9`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CodAn.md b/docs/version-specific/supported-software/c/CodAn.md new file mode 100644 index 000000000..7bf2d8d54 --- /dev/null +++ b/docs/version-specific/supported-software/c/CodAn.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CodAn + +CodAn (Coding sequence Annotator) is a computational tool designed to characterize the CDS and UTR regions on transcripts from any Eukaryote species. + +*homepage*: + +version | toolchain +--------|---------- +``1.2`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CodingQuarry.md b/docs/version-specific/supported-software/c/CodingQuarry.md new file mode 100644 index 000000000..ebc1b4b95 --- /dev/null +++ b/docs/version-specific/supported-software/c/CodingQuarry.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CodingQuarry + +Highly accurate hidden Markov model gene prediction in fungal genomes using RNA-seq transcripts + +*homepage*: + +version | toolchain +--------|---------- +``2.0`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Cogent.md b/docs/version-specific/supported-software/c/Cogent.md new file mode 100644 index 000000000..0d45af031 --- /dev/null +++ b/docs/version-specific/supported-software/c/Cogent.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Cogent + +Cogent is a tool for reconstructing the coding genome using high-quality full-length transcriptome sequences. It is designed to be used on Iso-Seq data and in cases where there is no reference genome or the ref genome is highly incomplete. + +*homepage*: + +version | toolchain +--------|---------- +``8.0.0`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Coin.md b/docs/version-specific/supported-software/c/Coin.md new file mode 100644 index 000000000..5db26a862 --- /dev/null +++ b/docs/version-specific/supported-software/c/Coin.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Coin + +Coin is an OpenGL-based, 3D graphics library that has its roots in the Open Inventor 2.1 API, which Coin still is compatible with. + +*homepage*: + +version | toolchain +--------|---------- +``4.0.0`` | ``GCC/10.3.0`` +``4.0.0`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CoinUtils.md b/docs/version-specific/supported-software/c/CoinUtils.md new file mode 100644 index 000000000..6ecccd394 --- /dev/null +++ b/docs/version-specific/supported-software/c/CoinUtils.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# CoinUtils + +CoinUtils (Coin-OR Utilities) is an open-source collection of classes and functions that are generally useful to more than one COIN-OR project. + +*homepage*: + +version | toolchain +--------|---------- +``2.11.10`` | ``GCC/12.3.0`` +``2.11.3`` | ``GCCcore/7.3.0`` +``2.11.3`` | ``foss/2018b`` +``2.11.4`` | ``GCC/10.3.0`` +``2.11.4`` | ``GCCcore/10.2.0`` +``2.11.6`` | ``GCC/11.2.0`` +``2.11.9`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/ColabFold.md b/docs/version-specific/supported-software/c/ColabFold.md new file mode 100644 index 000000000..3724017a6 --- /dev/null +++ b/docs/version-specific/supported-software/c/ColabFold.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ColabFold + +Making protein folding accessible to all. Predict proteins structures both in google colab and on your machine. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``1.5.2`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Commet.md b/docs/version-specific/supported-software/c/Commet.md new file mode 100644 index 000000000..a0e172866 --- /dev/null +++ b/docs/version-specific/supported-software/c/Commet.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Commet + +COMMET ("COmpare Multiple METagenomes") provides a global similarity overview between all datasets of a large metagenomic project. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20150415`` | ``-Python-2.7.11`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CompareM.md b/docs/version-specific/supported-software/c/CompareM.md new file mode 100644 index 000000000..e46a47ffd --- /dev/null +++ b/docs/version-specific/supported-software/c/CompareM.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# CompareM + +A toolbox for comparative genomics. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.0.23`` | ``-Python-2.7.15`` | ``foss/2018b`` +``0.1.2`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Compass.md b/docs/version-specific/supported-software/c/Compass.md new file mode 100644 index 000000000..b760ba94f --- /dev/null +++ b/docs/version-specific/supported-software/c/Compass.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Compass + +In-Silico Modeling of Metabolic Heterogeneity using Single-Cell Transcriptomes. + +*homepage*: + +version | toolchain +--------|---------- +``2024.04`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Compress-Raw-Zlib.md b/docs/version-specific/supported-software/c/Compress-Raw-Zlib.md new file mode 100644 index 000000000..84ccb4bfd --- /dev/null +++ b/docs/version-specific/supported-software/c/Compress-Raw-Zlib.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Compress-Raw-Zlib + +Low-Level Interface to zlib or zlib-ng compression library + +*homepage*: + +version | toolchain +--------|---------- +``2.202`` | ``GCCcore/11.3.0`` +``2.202`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Con3F.md b/docs/version-specific/supported-software/c/Con3F.md new file mode 100644 index 000000000..52055e6ab --- /dev/null +++ b/docs/version-specific/supported-software/c/Con3F.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Con3F + +Con3F is a Python package to read, manipulate and convert force field files + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0-20190329`` | ``-Python-3.7.2`` | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Concorde.md b/docs/version-specific/supported-software/c/Concorde.md new file mode 100644 index 000000000..8501e6482 --- /dev/null +++ b/docs/version-specific/supported-software/c/Concorde.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Concorde + +Concorde is a computer code for the symmetric traveling salesman problem (TSP) and some related network optimization problems + +*homepage*: + +version | toolchain +--------|---------- +``20031219`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/ConcurrentVersionsSystem.md b/docs/version-specific/supported-software/c/ConcurrentVersionsSystem.md new file mode 100644 index 000000000..bfd283786 --- /dev/null +++ b/docs/version-specific/supported-software/c/ConcurrentVersionsSystem.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# ConcurrentVersionsSystem + +CVS is a version control system, an important component of Source Configuration Management (SCM). + +*homepage*: + +version | toolchain +--------|---------- +``1.11.23`` | ``GCC/4.8.2`` +``1.11.23`` | ``GCCcore/11.2.0`` +``1.11.23`` | ``GCCcore/4.9.3`` +``1.11.23`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/ConnectomeWorkbench.md b/docs/version-specific/supported-software/c/ConnectomeWorkbench.md new file mode 100644 index 000000000..d51410b38 --- /dev/null +++ b/docs/version-specific/supported-software/c/ConnectomeWorkbench.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# ConnectomeWorkbench + +Connectome Workbench is an open-source visualization and discovery tool used to explore data generated by the Human Connectome Project. The distribution includes wb_view, a GUI-based visualization platform, and wb_command, a command-line program for performing a variety of algorithmic tasks using volume, surface, and grayordinate data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.2`` | | ``system`` +``1.3.2`` | | ``GCCcore/8.2.0`` +``1.3.2`` | | ``foss/2017b`` +``1.3.2`` | | ``intel/2017b`` +``1.4.2`` | ``-rh_linux64`` | ``system`` +``1.5.0`` | | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Control-FREEC.md b/docs/version-specific/supported-software/c/Control-FREEC.md new file mode 100644 index 000000000..a20dfaf1c --- /dev/null +++ b/docs/version-specific/supported-software/c/Control-FREEC.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Control-FREEC + +Copy number and genotype annotation from whole genome and whole exome sequencing data. + +*homepage*: + +version | toolchain +--------|---------- +``11.5`` | ``GCC/7.3.0-2.30`` +``11.5`` | ``GCC/8.2.0-2.31.1`` +``11.6`` | ``GCC/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CoordgenLibs.md b/docs/version-specific/supported-software/c/CoordgenLibs.md new file mode 100644 index 000000000..d40ee8d32 --- /dev/null +++ b/docs/version-specific/supported-software/c/CoordgenLibs.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# CoordgenLibs + +Schrodinger-developed 2D Coordinate Generation + +*homepage*: + +version | toolchain +--------|---------- +``1.3.2`` | ``gompi/2019a`` +``1.3.2`` | ``iimpi/2019a`` +``3.0.1`` | ``gompi/2019b`` +``3.0.1`` | ``gompi/2021a`` +``3.0.1`` | ``gompi/2022a`` +``3.0.1`` | ``iimpi/2020a`` +``3.0.2`` | ``gompi/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Coot.md b/docs/version-specific/supported-software/c/Coot.md new file mode 100644 index 000000000..aadb83952 --- /dev/null +++ b/docs/version-specific/supported-software/c/Coot.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Coot + +Coot is for macromolecular model building, model completion and validation, particularly suitable for protein modelling using X-ray data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8.1`` | ``-binary-Linux-x86_64-rhel-6-python-gtk2`` | ``system`` +``0.9.8.92`` | ``-binary-Linux-x86_64-scientific-linux-7.6-python-gtk2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CopyKAT.md b/docs/version-specific/supported-software/c/CopyKAT.md new file mode 100644 index 000000000..00c62c241 --- /dev/null +++ b/docs/version-specific/supported-software/c/CopyKAT.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# CopyKAT + +CopyKAT: Inference of genomic copy number and subclonal structure of human tumors from high-throughput single cell RNAseq data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.0`` | ``-R-4.2.1`` | ``foss/2022a`` +``1.1.0`` | ``-R-4.2.2`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Coreutils.md b/docs/version-specific/supported-software/c/Coreutils.md new file mode 100644 index 000000000..39e9803ec --- /dev/null +++ b/docs/version-specific/supported-software/c/Coreutils.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# Coreutils + +The GNU Core Utilities are the basic file, shell and text manipulation utilities of the GNU operating system. These are the core utilities which are expected to exist on every operating system. + +*homepage*: + +version | toolchain +--------|---------- +``8.23`` | ``GCC/4.9.2`` +``8.27`` | ``GCCcore/5.4.0`` +``8.29`` | ``GCCcore/6.4.0`` +``8.32`` | ``GCCcore/8.3.0`` +``8.32`` | ``GCCcore/9.3.0`` +``9.0`` | ``GCCcore/11.2.0`` +``9.1`` | ``GCCcore/11.3.0`` +``9.1`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CppHeaderParser.md b/docs/version-specific/supported-software/c/CppHeaderParser.md new file mode 100644 index 000000000..c85db1f6c --- /dev/null +++ b/docs/version-specific/supported-software/c/CppHeaderParser.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CppHeaderParser + +CppHeaderParser is a pure python module that will parse C++ header files and generate a data structure representing the class. + +*homepage*: + +version | toolchain +--------|---------- +``2.7.4`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CppUnit.md b/docs/version-specific/supported-software/c/CppUnit.md new file mode 100644 index 000000000..22f279498 --- /dev/null +++ b/docs/version-specific/supported-software/c/CppUnit.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# CppUnit + +CppUnit is the C++ port of the famous JUnit framework for unit testing. + +*homepage*: + +version | toolchain +--------|---------- +``1.12.1`` | ``GCCcore/6.4.0`` +``1.12.1`` | ``GCCcore/7.3.0`` +``1.12.1`` | ``foss/2016a`` +``1.15.1`` | ``GCCcore/10.2.0`` +``1.15.1`` | ``GCCcore/10.3.0`` +``1.15.1`` | ``GCCcore/11.3.0`` +``1.15.1`` | ``GCCcore/12.2.0`` +``1.15.1`` | ``GCCcore/12.3.0`` +``1.15.1`` | ``GCCcore/8.3.0`` +``1.15.1`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CrayCCE.md b/docs/version-specific/supported-software/c/CrayCCE.md new file mode 100644 index 000000000..08b6e8e4e --- /dev/null +++ b/docs/version-specific/supported-software/c/CrayCCE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CrayCCE + +Toolchain using Cray compiler wrapper, using PrgEnv-cray (PE release: June 2019). + +*homepage*: + +version | toolchain +--------|---------- +``19.06`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CrayGNU.md b/docs/version-specific/supported-software/c/CrayGNU.md new file mode 100644 index 000000000..da87f867c --- /dev/null +++ b/docs/version-specific/supported-software/c/CrayGNU.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CrayGNU + +Toolchain using Cray compiler wrapper, using PrgEnv-gnu module (PE release: June 2019). + +*homepage*: + +version | toolchain +--------|---------- +``19.06`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CrayIntel.md b/docs/version-specific/supported-software/c/CrayIntel.md new file mode 100644 index 000000000..8d2d6b927 --- /dev/null +++ b/docs/version-specific/supported-software/c/CrayIntel.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CrayIntel + +Toolchain using Cray compiler wrapper, using PrgEnv-intel (PE release: June 2019). + +*homepage*: + +version | toolchain +--------|---------- +``19.06`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CrayPGI.md b/docs/version-specific/supported-software/c/CrayPGI.md new file mode 100644 index 000000000..0166150df --- /dev/null +++ b/docs/version-specific/supported-software/c/CrayPGI.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CrayPGI + +Toolchain using Cray compiler wrapper, PrgEnv-pgi compiler (PE release: June 2019). + +*homepage*: + +version | toolchain +--------|---------- +``19.06`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CrossMap.md b/docs/version-specific/supported-software/c/CrossMap.md new file mode 100644 index 000000000..286c62950 --- /dev/null +++ b/docs/version-specific/supported-software/c/CrossMap.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CrossMap + +CrossMap is a program for genome coordinates conversion between different assemblies (such as hg18 (NCBI36) <=> hg19 (GRCh37)). It supports commonly used file formats including BAM, CRAM, SAM, Wiggle, BigWig, BED, GFF, GTF and VCF. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.9`` | ``-Python-3.7.2`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CrossTalkZ.md b/docs/version-specific/supported-software/c/CrossTalkZ.md new file mode 100644 index 000000000..ea6b01b0b --- /dev/null +++ b/docs/version-specific/supported-software/c/CrossTalkZ.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CrossTalkZ + +CrossTalkZ is a statistical method and software to assess the significance of crosstalk enrichment between pairs of gene or protein groups in large biological networks. + +*homepage*: + +version | toolchain +--------|---------- +``1.4`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Crumble.md b/docs/version-specific/supported-software/c/Crumble.md new file mode 100644 index 000000000..7d5ddff6a --- /dev/null +++ b/docs/version-specific/supported-software/c/Crumble.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Crumble + +Exploration of controlled loss of quality values for compressing CRAM files + +*homepage*: + +version | toolchain +--------|---------- +``0.8.3`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CryptoMiniSat.md b/docs/version-specific/supported-software/c/CryptoMiniSat.md new file mode 100644 index 000000000..735f4a042 --- /dev/null +++ b/docs/version-specific/supported-software/c/CryptoMiniSat.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CryptoMiniSat + +CryptoMiniSat is an advanced SAT solver + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.0.1`` | ``-Python-2.7.12`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CrystFEL.md b/docs/version-specific/supported-software/c/CrystFEL.md new file mode 100644 index 000000000..73dab904a --- /dev/null +++ b/docs/version-specific/supported-software/c/CrystFEL.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# CrystFEL + +CrystFEL is a suite of programs for processing diffraction data acquired "serially" in a "snapshot" manner, such as when using the technique of Serial Femtosecond Crystallography (SFX) with a free-electron laser source. + +*homepage*: + +version | toolchain +--------|---------- +``0.8.0`` | ``foss/2019a`` +``0.8.0`` | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CuCLARK.md b/docs/version-specific/supported-software/c/CuCLARK.md new file mode 100644 index 000000000..c413dc22d --- /dev/null +++ b/docs/version-specific/supported-software/c/CuCLARK.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# CuCLARK + +Metagenomic classifier for CUDA-enabled GPUs + +*homepage*: + +version | toolchain +--------|---------- +``1.1`` | ``fosscuda/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CuPy.md b/docs/version-specific/supported-software/c/CuPy.md new file mode 100644 index 000000000..64bb84619 --- /dev/null +++ b/docs/version-specific/supported-software/c/CuPy.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# CuPy + +CuPy is an open-source array library accelerated with NVIDIA CUDA. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``11.4.0`` | ``-CUDA-11.4.1`` | ``foss/2021b`` +``12.1.0`` | ``-CUDA-12.0.0`` | ``foss/2022b`` +``13.0.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` +``8.2.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``8.5.0`` | | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Cube.md b/docs/version-specific/supported-software/c/Cube.md new file mode 100644 index 000000000..4a0067d98 --- /dev/null +++ b/docs/version-specific/supported-software/c/Cube.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Cube + +Cube, which is used as performance report explorer for Scalasca and Score-P, is a generic tool for displaying a multi-dimensional performance space consisting of the dimensions (i) performance metric, (ii) call path, and (iii) system resource. Each dimension can be represented as a tree, where non-leaf nodes of the tree can be collapsed or expanded to achieve the desired level of granularity. + +*homepage*: + +version | toolchain +--------|---------- +``4.3.4`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CubeGUI.md b/docs/version-specific/supported-software/c/CubeGUI.md new file mode 100644 index 000000000..a96fd4fb7 --- /dev/null +++ b/docs/version-specific/supported-software/c/CubeGUI.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# CubeGUI + +Cube, which is used as performance report explorer for Scalasca and Score-P, is a generic tool for displaying a multi-dimensional performance space consisting of the dimensions (i) performance metric, (ii) call path, and (iii) system resource. Each dimension can be represented as a tree, where non-leaf nodes of the tree can be collapsed or expanded to achieve the desired level of granularity. This module provides the Cube graphical report explorer. + +*homepage*: + +version | toolchain +--------|---------- +``4.4.4`` | ``GCCcore/8.2.0`` +``4.4.4`` | ``GCCcore/9.3.0`` +``4.6`` | ``GCCcore/10.2.0`` +``4.6`` | ``GCCcore/10.3.0`` +``4.8`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CubeLib.md b/docs/version-specific/supported-software/c/CubeLib.md new file mode 100644 index 000000000..2d7f17f48 --- /dev/null +++ b/docs/version-specific/supported-software/c/CubeLib.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# CubeLib + +Cube, which is used as performance report explorer for Scalasca and Score-P, is a generic tool for displaying a multi-dimensional performance space consisting of the dimensions (i) performance metric, (ii) call path, and (iii) system resource. Each dimension can be represented as a tree, where non-leaf nodes of the tree can be collapsed or expanded to achieve the desired level of granularity. This module provides the Cube general purpose C++ library component and command-line tools. + +*homepage*: + +version | toolchain +--------|---------- +``4.4.4`` | ``GCCcore/8.2.0`` +``4.4.4`` | ``GCCcore/8.3.0`` +``4.4.4`` | ``GCCcore/9.3.0`` +``4.6`` | ``GCCcore/10.2.0`` +``4.6`` | ``GCCcore/10.3.0`` +``4.8`` | ``GCCcore/11.2.0`` +``4.8`` | ``GCCcore/11.3.0`` +``4.8.1`` | ``GCCcore/12.2.0`` +``4.8.1`` | ``GCCcore/12.3.0`` +``4.8.2`` | ``GCCcore/12.2.0`` +``4.8.2`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/CubeWriter.md b/docs/version-specific/supported-software/c/CubeWriter.md new file mode 100644 index 000000000..347a6097e --- /dev/null +++ b/docs/version-specific/supported-software/c/CubeWriter.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# CubeWriter + +Cube, which is used as performance report explorer for Scalasca and Score-P, is a generic tool for displaying a multi-dimensional performance space consisting of the dimensions (i) performance metric, (ii) call path, and (iii) system resource. Each dimension can be represented as a tree, where non-leaf nodes of the tree can be collapsed or expanded to achieve the desired level of granularity. This module provides the Cube high-performance C writer library component. + +*homepage*: + +version | toolchain +--------|---------- +``4.4.3`` | ``GCCcore/10.2.0`` +``4.4.3`` | ``GCCcore/8.2.0`` +``4.4.3`` | ``GCCcore/8.3.0`` +``4.4.3`` | ``GCCcore/9.3.0`` +``4.6`` | ``GCCcore/10.2.0`` +``4.6`` | ``GCCcore/10.3.0`` +``4.8`` | ``GCCcore/11.2.0`` +``4.8`` | ``GCCcore/11.3.0`` +``4.8.1`` | ``GCCcore/12.2.0`` +``4.8.1`` | ``GCCcore/12.3.0`` +``4.8.2`` | ``GCCcore/12.2.0`` +``4.8.2`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Cufflinks.md b/docs/version-specific/supported-software/c/Cufflinks.md new file mode 100644 index 000000000..4180c91ce --- /dev/null +++ b/docs/version-specific/supported-software/c/Cufflinks.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# Cufflinks + +Transcript assembly, differential expression, and differential regulation for RNA-Seq + +*homepage*: + +version | toolchain +--------|---------- +``2.2.1`` | ``foss/2016a`` +``2.2.1`` | ``foss/2016b`` +``2.2.1`` | ``foss/2018b`` +``2.2.1`` | ``gompi/2019b`` +``2.2.1`` | ``intel/2017b`` +``2.2.1`` | ``intel/2018a`` +``20190706`` | ``GCC/10.2.0`` +``20190706`` | ``GCC/11.2.0`` +``20190706`` | ``gompi/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Cython.md b/docs/version-specific/supported-software/c/Cython.md new file mode 100644 index 000000000..820a9cccc --- /dev/null +++ b/docs/version-specific/supported-software/c/Cython.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# Cython + +The Cython language makes writing C extensions for the Python language as easy as Python itself. Cython is a source code translator based on the well-known Pyrex, but supports more cutting edge functionality and optimizations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.23.4`` | ``-Python-2.7.10`` | ``gimkl/2.11.5`` +``0.24.1`` | ``-Python-2.7.11`` | ``foss/2016a`` +``0.25.2`` | ``-Python-2.7.12`` | ``foss/2016b`` +``0.25.2`` | ``-Python-3.6.4`` | ``intel/2018a`` +``0.27.3`` | ``-Python-2.7.15`` | ``GCCcore/8.2.0`` +``0.29.10`` | ``-Python-2.7.14`` | ``foss/2017b`` +``0.29.10`` | ``-Python-3.6.3`` | ``foss/2017b`` +``0.29.10`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.29.10`` | ``-Python-3.6.3`` | ``intel/2017b`` +``0.29.22`` | | ``GCCcore/10.2.0`` +``0.29.33`` | | ``GCCcore/11.3.0`` +``3.0.10`` | | ``GCCcore/13.2.0`` +``3.0.7`` | | ``GCCcore/12.3.0`` +``3.0.8`` | | ``GCCcore/11.3.0`` +``3.0.8`` | | ``GCCcore/12.2.0`` +``3.0.8`` | | ``GCCcore/12.3.0`` +``3.0a5`` | | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/Cytoscape.md b/docs/version-specific/supported-software/c/Cytoscape.md new file mode 100644 index 000000000..09e1953c5 --- /dev/null +++ b/docs/version-specific/supported-software/c/Cytoscape.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Cytoscape + +Cytoscape is an open source software platform for visualizing complex networks and integrating these with any type of attribute data. A lot of Apps are available for various kinds of problem domains, including bioinformatics, social network analysis, and semantic web. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.9.1`` | ``-Java-11`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/c-ares.md b/docs/version-specific/supported-software/c/c-ares.md new file mode 100644 index 000000000..b27e584ec --- /dev/null +++ b/docs/version-specific/supported-software/c/c-ares.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# c-ares + +c-ares is a C library for asynchronous DNS requests (including name resolves) + +*homepage*: + +version | toolchain +--------|---------- +``1.17.2`` | ``GCCcore/10.2.0`` +``1.17.2`` | ``GCCcore/10.3.0`` +``1.18.1`` | ``GCCcore/11.2.0`` +``1.18.1`` | ``GCCcore/11.3.0`` +``1.19.1`` | ``GCCcore/12.3.0`` +``1.27.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cDNA_Cupcake.md b/docs/version-specific/supported-software/c/cDNA_Cupcake.md new file mode 100644 index 000000000..1440b285c --- /dev/null +++ b/docs/version-specific/supported-software/c/cDNA_Cupcake.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# cDNA_Cupcake + +cDNA_Cupcake is a miscellaneous collection of Python and R scripts used for analyzing sequencing data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``24.2.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``26.0.0`` | | ``foss/2021a`` +``5.8`` | ``-Python-2.7.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cURL.md b/docs/version-specific/supported-software/c/cURL.md new file mode 100644 index 000000000..b7a35daf2 --- /dev/null +++ b/docs/version-specific/supported-software/c/cURL.md @@ -0,0 +1,53 @@ +--- +search: + boost: 0.5 +--- +# cURL + +libcurl is a free and easy-to-use client-side URL transfer library, supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, Kerberos), file transfer resume, http proxy tunneling and more. + +*homepage*: + +version | toolchain +--------|---------- +``7.33.0`` | ``GCC/4.8.2`` +``7.34.0`` | ``GCC/4.8.2`` +``7.40.0`` | ``GCC/4.9.2`` +``7.46.0`` | ``iomkl/2016.07`` +``7.46.0`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``7.47.0`` | ``foss/2016a`` +``7.47.0`` | ``intel/2016.02-GCC-4.9`` +``7.47.0`` | ``intel/2016a`` +``7.49.1`` | ``GCCcore/5.4.0`` +``7.49.1`` | ``foss/2016a`` +``7.49.1`` | ``foss/2016b`` +``7.49.1`` | ``intel/2016a`` +``7.49.1`` | ``intel/2016b`` +``7.52.1`` | ``gimkl/2017a`` +``7.52.1`` | ``intel/2016b`` +``7.53.1`` | ``GCCcore/6.3.0`` +``7.54.0`` | ``GCCcore/6.3.0`` +``7.55.1`` | ``GCCcore/6.4.0`` +``7.56.0`` | ``GCCcore/6.4.0`` +``7.56.1`` | ``GCCcore/6.4.0`` +``7.58.0`` | ``GCCcore/6.4.0`` +``7.59.0`` | ``GCCcore/6.4.0`` +``7.60.0`` | ``GCCcore/7.2.0`` +``7.60.0`` | ``GCCcore/7.3.0`` +``7.63.0`` | ``GCCcore/8.2.0`` +``7.66.0`` | ``GCCcore/8.3.0`` +``7.69.1`` | ``GCCcore/9.3.0`` +``7.72.0`` | ``GCCcore/10.2.0`` +``7.76.0`` | ``GCCcore/10.3.0`` +``7.78.0`` | ``GCCcore/11.2.0`` +``7.83.0`` | ``GCCcore/11.3.0`` +``7.84.0`` | ``GCCcore/12.1.0`` +``7.86.0`` | ``GCCcore/12.2.0`` +``8.0.1`` | ``GCCcore/12.3.0`` +``8.0.1`` | ``GCCcore/13.1.0`` +``8.3.0`` | ``GCCcore/13.2.0`` +``8.7.1`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cadaver.md b/docs/version-specific/supported-software/c/cadaver.md new file mode 100644 index 000000000..f03d32a3f --- /dev/null +++ b/docs/version-specific/supported-software/c/cadaver.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# cadaver + +cadaver is a command-line WebDAV client for Unix. + +*homepage*: + +version | toolchain +--------|---------- +``0.23.3`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cairo.md b/docs/version-specific/supported-software/c/cairo.md new file mode 100644 index 000000000..6d810f4ba --- /dev/null +++ b/docs/version-specific/supported-software/c/cairo.md @@ -0,0 +1,38 @@ +--- +search: + boost: 0.5 +--- +# cairo + +Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System (via both Xlib and XCB), Quartz, Win32, image buffers, PostScript, PDF, and SVG file output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.14.10`` | | ``GCCcore/6.3.0`` +``1.14.10`` | | ``GCCcore/6.4.0`` +``1.14.10`` | | ``intel/2017b`` +``1.14.12`` | | ``GCCcore/6.4.0`` +``1.14.12`` | | ``GCCcore/7.3.0`` +``1.14.6`` | ``-GLib-2.48.0`` | ``foss/2016a`` +``1.14.6`` | | ``foss/2016a`` +``1.14.6`` | | ``foss/2016b`` +``1.14.6`` | ``-GLib-2.48.0`` | ``intel/2016a`` +``1.14.6`` | | ``intel/2016a`` +``1.14.6`` | | ``intel/2016b`` +``1.14.8`` | | ``intel/2017a`` +``1.16.0`` | | ``GCCcore/10.2.0`` +``1.16.0`` | | ``GCCcore/10.3.0`` +``1.16.0`` | | ``GCCcore/11.2.0`` +``1.16.0`` | | ``GCCcore/8.2.0`` +``1.16.0`` | | ``GCCcore/8.3.0`` +``1.16.0`` | | ``GCCcore/9.3.0`` +``1.17.4`` | | ``GCCcore/11.3.0`` +``1.17.4`` | | ``GCCcore/12.2.0`` +``1.17.8`` | | ``GCCcore/12.3.0`` +``1.18.0`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cairomm.md b/docs/version-specific/supported-software/c/cairomm.md new file mode 100644 index 000000000..9d899f114 --- /dev/null +++ b/docs/version-specific/supported-software/c/cairomm.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# cairomm + +The Cairomm package provides a C++ interface to Cairo. + +*homepage*: + +version | toolchain +--------|---------- +``1.12.2`` | ``GCCcore/6.4.0`` +``1.12.2`` | ``GCCcore/7.3.0`` +``1.16.2`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/canu.md b/docs/version-specific/supported-software/c/canu.md new file mode 100644 index 000000000..8adea8eec --- /dev/null +++ b/docs/version-specific/supported-software/c/canu.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# canu + +Canu is a fork of the Celera Assembler, designed for high-noise single-molecule sequencing (such as the PacBio RS II or Oxford Nanopore MinION). Canu is a hierarchical assembly pipeline which runs in four steps: Detect overlaps in high-noise sequences using MHAP Generate corrected sequence consensus Trim corrected sequences Assemble trimmed corrected sequences + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4`` | | ``foss/2016b`` +``1.7`` | | ``intel/2018a`` +``1.8`` | ``-Perl-5.28.1`` | ``GCCcore/8.2.0`` +``1.8`` | ``-Perl-5.26.0`` | ``foss/2017b`` +``1.8`` | ``-Perl-5.28.0`` | ``foss/2018b`` +``1.8`` | ``-Perl-5.26.0`` | ``intel/2017b`` +``1.9`` | ``-Java-11`` | ``GCCcore/8.3.0`` +``2.1.1`` | | ``GCCcore/10.2.0`` +``2.1.1`` | ``-Java-11`` | ``GCCcore/9.3.0`` +``2.2`` | | ``GCC/12.2.0`` +``2.2`` | ``-Java-11`` | ``GCCcore/10.3.0`` +``2.2`` | | ``GCCcore/10.3.0`` +``2.2`` | | ``GCCcore/11.2.0`` +``2.2`` | | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/captum.md b/docs/version-specific/supported-software/c/captum.md new file mode 100644 index 000000000..9387fffaf --- /dev/null +++ b/docs/version-specific/supported-software/c/captum.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# captum + +Captum is a model interpretability and understanding library for PyTorch. Captum means comprehension in Latin and contains general purpose implementations of integrated gradients, saliency maps, smoothgrad, vargrad and others for PyTorch models. It has quick integration for models built with domain-specific libraries such as torchvision, torchtext, and others. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.5.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.5.0`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/carputils.md b/docs/version-specific/supported-software/c/carputils.md new file mode 100644 index 000000000..3e48586e6 --- /dev/null +++ b/docs/version-specific/supported-software/c/carputils.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# carputils + +carputils is a Python framework for generating and running openCARP examples. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20200915`` | ``-Python-3.8.2`` | ``foss/2020a`` +``20210513`` | | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/casacore.md b/docs/version-specific/supported-software/c/casacore.md new file mode 100644 index 000000000..bca2a635b --- /dev/null +++ b/docs/version-specific/supported-software/c/casacore.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# casacore + +A suite of C++ libraries for radio astronomy data processing. The ephemerides data needs to be in DATA_DIR and the location must be specified at runtime. Thus user's can update them. + +*homepage*: + +version | toolchain +--------|---------- +``3.4.0`` | ``foss/2021b`` +``3.5.0`` | ``foss/2022a`` +``3.5.0`` | ``foss/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/castor.md b/docs/version-specific/supported-software/c/castor.md new file mode 100644 index 000000000..c57508bfa --- /dev/null +++ b/docs/version-specific/supported-software/c/castor.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# castor + +Efficient phylogenetic analyses on massive phylogenies comprising up to millions of tips. Functions include pruning, rerooting, calculation of most-recent common ancestors, calculating distances from the tree root and calculating pairwise distances. Calculation of phylogenetic signal and mean trait depth (trait conservatism), ancestral state reconstruction and hidden character prediction of discrete characters, simulating and fitting models of trait evolution, fitting and simulating diversification models, dating trees, comparing trees, and reading/writing trees in Newick format. + +*homepage*: + +version | toolchain +--------|---------- +``1.7.11`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/category_encoders.md b/docs/version-specific/supported-software/c/category_encoders.md new file mode 100644 index 000000000..599b3b9f0 --- /dev/null +++ b/docs/version-specific/supported-software/c/category_encoders.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# category_encoders + +A set of scikit-learn-style transformers for encoding categorical variables into numeric by means of different techniques. + +*homepage*: + +version | toolchain +--------|---------- +``2.4.1`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/causallift.md b/docs/version-specific/supported-software/c/causallift.md new file mode 100644 index 000000000..ba9f56c9c --- /dev/null +++ b/docs/version-specific/supported-software/c/causallift.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# causallift + +CausalLift: Python package for Uplift Modeling in real-world business; applicable for both A/B testing and observational data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.6`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/causalml.md b/docs/version-specific/supported-software/c/causalml.md new file mode 100644 index 000000000..f0350ff6e --- /dev/null +++ b/docs/version-specific/supported-software/c/causalml.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# causalml + +Causal ML: A Python Package for Uplift Modeling and Causal Inference with ML + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.0-20180610`` | ``-Python-3.7.2`` | ``foss/2019a`` +``0.8.0-20200909`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/ccache.md b/docs/version-specific/supported-software/c/ccache.md new file mode 100644 index 000000000..41d13a5b3 --- /dev/null +++ b/docs/version-specific/supported-software/c/ccache.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# ccache + +ccache-3.1.9: Cache for C/C++ compilers + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.2.5`` | | ``system`` +``3.3.1`` | | ``system`` +``3.3.3`` | | ``system`` +``3.3.4`` | ``-f90`` | ``system`` +``3.7.11`` | | ``system`` +``4.2.1`` | | ``system`` +``4.6.1`` | | ``GCCcore/11.2.0`` +``4.6.3`` | | ``GCCcore/11.3.0`` +``4.6.3`` | | ``system`` +``4.7.5`` | | ``system`` +``4.8.3`` | | ``system`` +``4.9`` | | ``GCCcore/12.2.0`` +``4.9`` | | ``GCCcore/12.3.0`` +``4.9`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cclib.md b/docs/version-specific/supported-software/c/cclib.md new file mode 100644 index 000000000..108dea75c --- /dev/null +++ b/docs/version-specific/supported-software/c/cclib.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# cclib + +cclib is a Python library that provides parsers for computational chemistry log files. It alsoprovides a platform to implement algorithms in a package-independent manner. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5`` | ``-Python-3.5.2`` | ``foss/2016b`` +``1.6.3`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.6.3`` | ``-Python-3.8.2`` | ``intel/2020a`` +``1.7.2`` | | ``foss/2021b`` +``1.8`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cctbx-base.md b/docs/version-specific/supported-software/c/cctbx-base.md new file mode 100644 index 000000000..e6195a0ef --- /dev/null +++ b/docs/version-specific/supported-software/c/cctbx-base.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# cctbx-base + +The Computational Crystallography Toolbox (cctbx) is being developed as the open source component of the Phenix project. The goal of the Phenix project is to advance automation of macromolecular structure determination. Phenix depends on the cctbx, but not vice versa. This hierarchical approach enforces a clean design as a reusable library. The cctbx is therefore also useful for small-molecule crystallography and even general scientific applications. + +*homepage*: + +version | toolchain +--------|---------- +``2020.8`` | ``foss/2020b`` +``2020.8`` | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cctools.md b/docs/version-specific/supported-software/c/cctools.md new file mode 100644 index 000000000..1ec0c39a9 --- /dev/null +++ b/docs/version-specific/supported-software/c/cctools.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# cctools + +The Cooperating Computing Tools (CCTools) help you to design and deploy scalable applications that run on hundreds or thousands of machines at once. + +*homepage*: + +version | toolchain +--------|---------- +``7.0.22`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cdbfasta.md b/docs/version-specific/supported-software/c/cdbfasta.md new file mode 100644 index 000000000..5e66ab893 --- /dev/null +++ b/docs/version-specific/supported-software/c/cdbfasta.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# cdbfasta + +Fasta file indexing and retrival tool + +*homepage*: + +version | toolchain +--------|---------- +``0.99`` | ``GCC/8.3.0`` +``0.99`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``0.99`` | ``iccifort/2019.5.281`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cddlib.md b/docs/version-specific/supported-software/c/cddlib.md new file mode 100644 index 000000000..463bd2e5a --- /dev/null +++ b/docs/version-specific/supported-software/c/cddlib.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# cddlib + +An efficient implementation of the Double Description Method + +*homepage*: + +version | toolchain +--------|---------- +``0.94i`` | ``GCCcore/8.2.0`` +``0.94j`` | ``GCCcore/8.3.0`` +``0.94m`` | ``GCCcore/11.3.0`` +``0.94m`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cdo-bindings.md b/docs/version-specific/supported-software/c/cdo-bindings.md new file mode 100644 index 000000000..dbd6b8445 --- /dev/null +++ b/docs/version-specific/supported-software/c/cdo-bindings.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# cdo-bindings + +Python interface to CDO. + +*homepage*: + +version | toolchain +--------|---------- +``1.5.7`` | ``foss/2021b`` +``1.6.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cdsapi.md b/docs/version-specific/supported-software/c/cdsapi.md new file mode 100644 index 000000000..71b7be54a --- /dev/null +++ b/docs/version-specific/supported-software/c/cdsapi.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# cdsapi + +Climate Data Store API + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.4`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.1.4`` | | ``foss/2019a`` +``0.3.0`` | | ``GCCcore/9.3.0`` +``0.5.1`` | | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cell2location.md b/docs/version-specific/supported-software/c/cell2location.md new file mode 100644 index 000000000..a1fc552da --- /dev/null +++ b/docs/version-specific/supported-software/c/cell2location.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# cell2location + +Comprehensive mapping of tissue cell architecture via integrated single cell and spatial transcriptomics (cell2location model) + +*homepage*: + +version | toolchain +--------|---------- +``0.05-alpha`` | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/centerline.md b/docs/version-specific/supported-software/c/centerline.md new file mode 100644 index 000000000..fc0f76651 --- /dev/null +++ b/docs/version-specific/supported-software/c/centerline.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# centerline + +Roads, rivers and similar linear structures are often represented by long and complex polygons. Since one of the most important attributes of a linear structure is its length, extracting that attribute from a polygon can prove to be more or less difficult. This library tries to solve this problem by creating the the polygon's centerline using the Voronoi diagram. For more info on how to use this package, see the official documentation. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cffi.md b/docs/version-specific/supported-software/c/cffi.md new file mode 100644 index 000000000..d0ea78c46 --- /dev/null +++ b/docs/version-specific/supported-software/c/cffi.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# cffi + +C Foreign Function Interface for Python. Interact with almost any C code from Python, based on C-like declarations that you can often copy-paste from header files or documentation. + +*homepage*: + +version | toolchain +--------|---------- +``1.15.1`` | ``GCCcore/11.3.0`` +``1.15.1`` | ``GCCcore/12.3.0`` +``1.15.1`` | ``GCCcore/13.2.0`` +``1.16.0`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cftime.md b/docs/version-specific/supported-software/c/cftime.md new file mode 100644 index 000000000..1f479d5d1 --- /dev/null +++ b/docs/version-specific/supported-software/c/cftime.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# cftime + +Time-handling functionality from netcdf4-python + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.0.0b1`` | ``-Python-3.6.2`` | ``foss/2017b`` +``1.0.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.0.1`` | ``-Python-2.7.15`` | ``intel/2018b`` +``1.0.1`` | ``-Python-3.6.6`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cget.md b/docs/version-specific/supported-software/c/cget.md new file mode 100644 index 000000000..b89a3563e --- /dev/null +++ b/docs/version-specific/supported-software/c/cget.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# cget + +Cmake package retrieval. This can be used to download and install cmake packages + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.6`` | ``-Python-3.6.4`` | ``foss/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/charm-gems.md b/docs/version-specific/supported-software/c/charm-gems.md new file mode 100644 index 000000000..63cdded45 --- /dev/null +++ b/docs/version-specific/supported-software/c/charm-gems.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# charm-gems + +This repository contains the gems C++ code and python bindings used in Freesurfer's Sequence-Adaptive Multimodal SEGmentation (SAMSEG) and in SimNIBS 4.0 Complete Head Anatomy Reconstruction Method (CHARM) to create individualized head models for electric field simulations. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.3`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/chemprop.md b/docs/version-specific/supported-software/c/chemprop.md new file mode 100644 index 000000000..ccc83fea3 --- /dev/null +++ b/docs/version-specific/supported-software/c/chemprop.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# chemprop + +Message Passing Neural Networks for Molecule Property Prediction + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``1.5.2`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/chewBBACA.md b/docs/version-specific/supported-software/c/chewBBACA.md new file mode 100644 index 000000000..c1bee4d93 --- /dev/null +++ b/docs/version-specific/supported-software/c/chewBBACA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# chewBBACA + +chewBBACA stands for "BSR-Based Allele Calling Algorithm". chewBBACA is a comprehensive pipeline including a set of functions for the creation and validation of whole genome and core genome MultiLocus Sequence Typing (wg/cgMLST) schemas, providing an allele calling algorithm based on Blast Score Ratio that can be run in multiprocessor settings and a set of functions to visualize and validate allele variation in the loci. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.5.5`` | ``-Python-3.8.2`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/chi2comb.md b/docs/version-specific/supported-software/c/chi2comb.md new file mode 100644 index 000000000..94207b302 --- /dev/null +++ b/docs/version-specific/supported-software/c/chi2comb.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# chi2comb + +Cumulative density function of linear combinations of independent chi-square random variables and a standard Normal distribution. As of now, this is basically a repackaging of the davies function implemented in the CompQuadForm library for R. + +*homepage*: + +version | toolchain +--------|---------- +``0.0.3`` | ``GCCcore/7.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/chromVARmotifs.md b/docs/version-specific/supported-software/c/chromVARmotifs.md new file mode 100644 index 000000000..cd4a2d919 --- /dev/null +++ b/docs/version-specific/supported-software/c/chromVARmotifs.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# chromVARmotifs + +The goal of chromVARmotifs is to make it easy to use several different motif collections in R, particularly for use with motifmatchr and chromVAR packages. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.0`` | ``-R-4.3.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cicero.md b/docs/version-specific/supported-software/c/cicero.md new file mode 100644 index 000000000..db30d5741 --- /dev/null +++ b/docs/version-specific/supported-software/c/cicero.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# cicero + +Cicero is an R package that provides tools for analyzing single-cell chromatin accessibility experiments. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.4.11`` | ``-R-4.0.3-Monocle3`` | ``foss/2020b`` +``1.3.8`` | ``-R-4.2.1-Monocle3`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cimfomfa.md b/docs/version-specific/supported-software/c/cimfomfa.md new file mode 100644 index 000000000..b27a57e92 --- /dev/null +++ b/docs/version-specific/supported-software/c/cimfomfa.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# cimfomfa + +This library supports both MCL, a cluster algorithm for graphs, and zoem, a macro/DSL language. It supplies abstractions for memory management, I/O, associative arrays, strings, heaps, and a few other things. The string library has had heavy testing as part of zoem. Both understandably and regrettably I chose long ago to make it C-string-compatible, hence nul bytes may not be part of a string. At some point I hope to rectify this, perhaps unrealistically. + +*homepage*: + +version | toolchain +--------|---------- +``22.273`` | ``GCCcore/11.2.0`` +``22.273`` | ``GCCcore/11.3.0`` +``22.273`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cisTEM.md b/docs/version-specific/supported-software/c/cisTEM.md new file mode 100644 index 000000000..fdab14cbb --- /dev/null +++ b/docs/version-specific/supported-software/c/cisTEM.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# cisTEM + +cisTEM is user-friendly software to process cryo-EM images of macromolecular complexes and obtain high-resolution 3D reconstructions from them. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0-beta`` | ``foss/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cliquer.md b/docs/version-specific/supported-software/c/cliquer.md new file mode 100644 index 000000000..27cd583e9 --- /dev/null +++ b/docs/version-specific/supported-software/c/cliquer.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# cliquer + +Cliquer is a set of C routines for finding cliques in an arbitrary weighted graph. It uses an exact branch-and-bound algorithm developed by Patric Ostergard. It is designed with the aim of being efficient while still being flexible and easy to use. + +*homepage*: + +version | toolchain +--------|---------- +``1.21`` | ``GCCcore/11.3.0`` +``1.21`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cmocean.md b/docs/version-specific/supported-software/c/cmocean.md new file mode 100644 index 000000000..bcf097bc2 --- /dev/null +++ b/docs/version-specific/supported-software/c/cmocean.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# cmocean + +This package contains colormaps for commonly-used oceanographic variables. Most of the colormaps started from matplotlib colormaps, but have now been adjusted using the viscm tool to be perceptually uniform. + +*homepage*: + +version | toolchain +--------|---------- +``2.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cmph.md b/docs/version-specific/supported-software/c/cmph.md new file mode 100644 index 000000000..fee0e65f5 --- /dev/null +++ b/docs/version-specific/supported-software/c/cmph.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# cmph + +Cmph is a free minimal perfect hash C library, providing several algorithms in the literature in a consistent, ease to use, API. + +*homepage*: + +version | toolchain +--------|---------- +``2.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/code-cli.md b/docs/version-specific/supported-software/c/code-cli.md new file mode 100644 index 000000000..f4d48cfef --- /dev/null +++ b/docs/version-specific/supported-software/c/code-cli.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# code-cli + +Visual Studio Code is a lightweight but powerful source code editor which runs on your desktop and is available for Windows, macOS and Linux. It comes with built-in support for JavaScript, TypeScript and Node.js and has a rich ecosystem of extensions for other languages and runtimes (such as C++, C#, Java, Python, PHP, Go, .NET). Begin your journey with VS Code with these introductory videos. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.85.1`` | ``-x64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/code-server.md b/docs/version-specific/supported-software/c/code-server.md new file mode 100644 index 000000000..41aef0160 --- /dev/null +++ b/docs/version-specific/supported-software/c/code-server.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# code-server + +Run VS Code on any machine anywhere and access it in the browser. + +*homepage*: + +version | toolchain +--------|---------- +``3.7.3`` | ``system`` +``4.16.1`` | ``system`` +``4.21.1`` | ``system`` +``4.22.1`` | ``system`` +``4.89.1`` | ``system`` +``4.9.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/colossalai.md b/docs/version-specific/supported-software/c/colossalai.md new file mode 100644 index 000000000..057c3fea7 --- /dev/null +++ b/docs/version-specific/supported-software/c/colossalai.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# colossalai + +Colossal-AI: A Unified Deep Learning System for Big Model Era + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.8`` | ``-CUDA-11.3.1`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/conan.md b/docs/version-specific/supported-software/c/conan.md new file mode 100644 index 000000000..012073ef3 --- /dev/null +++ b/docs/version-specific/supported-software/c/conan.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# conan + +Decentralized, open-source (MIT), C/C++ package manager. + +*homepage*: + +version | toolchain +--------|---------- +``1.58.0`` | ``GCCcore/11.3.0`` +``1.60.2`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/configparser.md b/docs/version-specific/supported-software/c/configparser.md new file mode 100644 index 000000000..5f38d76f1 --- /dev/null +++ b/docs/version-specific/supported-software/c/configparser.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# configparser + +configparser is a Python library that brings the updated configparser from Python 3.5 to Python 2.6-3.5 + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.5.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``3.5.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``3.5.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``3.5.0`` | ``-Python-3.5.2`` | ``intel/2016b`` +``3.5.0`` | ``-Python-3.6.3`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/configurable-http-proxy.md b/docs/version-specific/supported-software/c/configurable-http-proxy.md new file mode 100644 index 000000000..8cc8128ae --- /dev/null +++ b/docs/version-specific/supported-software/c/configurable-http-proxy.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# configurable-http-proxy + +HTTP proxy for node.js including a REST API for updating the routing table. Developed as a part of the Jupyter Hub multi-user server. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.0`` | ``-nodejs-4.4.7`` | ``foss/2016a`` +``3.1.1`` | ``-nodejs-8.9.4`` | ``foss/2017a`` +``4.2.1`` | | ``GCCcore/10.2.0`` +``4.4.0`` | | ``GCCcore/10.3.0`` +``4.5.3`` | | ``GCCcore/11.3.0`` +``4.5.5`` | | ``GCCcore/12.2.0`` +``4.5.6`` | | ``GCCcore/12.3.0`` +``4.6.1`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/connected-components-3d.md b/docs/version-specific/supported-software/c/connected-components-3d.md new file mode 100644 index 000000000..89db19cc3 --- /dev/null +++ b/docs/version-specific/supported-software/c/connected-components-3d.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# connected-components-3d + +cc3d is an implementation of connected components in three dimensions using a 26, 18, or 6-connected neighborhood in 3D or 4 and 8-connected in 2D. + +*homepage*: + +version | toolchain +--------|---------- +``3.12.1`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/contextily.md b/docs/version-specific/supported-software/c/contextily.md new file mode 100644 index 000000000..0c3bf4bbb --- /dev/null +++ b/docs/version-specific/supported-software/c/contextily.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# contextily + +contextily is a small Python 3 package to retrieve tile maps from the internet. It can add those tiles as basemap to matplotlib figures or write tile maps to disk into geospatial raster files. Bounding boxes can be passed in both WGS84 (EPSG:4326) and Spheric Mercator (EPSG:3857). + +*homepage*: + +version | toolchain +--------|---------- +``1.5.0`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cooler.md b/docs/version-specific/supported-software/c/cooler.md new file mode 100644 index 000000000..9f30ab8f8 --- /dev/null +++ b/docs/version-specific/supported-software/c/cooler.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# cooler + +Cooler is a support library for a storage format, also called cooler, used to store genomic interaction data of any size, such as Hi-C contact matrices. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/core-counter.md b/docs/version-specific/supported-software/c/core-counter.md new file mode 100644 index 000000000..b53627b10 --- /dev/null +++ b/docs/version-specific/supported-software/c/core-counter.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# core-counter + +Tool to check available cores and OMP threads + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/corner.md b/docs/version-specific/supported-software/c/corner.md new file mode 100644 index 000000000..2bb61b255 --- /dev/null +++ b/docs/version-specific/supported-software/c/corner.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# corner + +Make some beautiful corner plots. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.1`` | ``-Python-2.7.15`` | ``foss/2019a`` +``2.0.1`` | ``-Python-3.7.2`` | ``foss/2019a`` +``2.2.2`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/coverage.md b/docs/version-specific/supported-software/c/coverage.md new file mode 100644 index 000000000..33cb9b15e --- /dev/null +++ b/docs/version-specific/supported-software/c/coverage.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# coverage + +Coverage.py is a tool for measuring code coverage of Python programs. It monitors your program, noting which parts of the code have been executed, then analyzes the source to identify code that could have been executed but was not. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.5.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``5.5`` | | ``GCCcore/10.2.0`` +``5.5`` | | ``GCCcore/10.3.0`` +``7.2.3`` | | ``GCCcore/12.2.0`` +``7.2.3`` | | ``GCCcore/12.3.0`` +``7.2.7`` | | ``GCCcore/11.3.0`` +``7.4.4`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cowsay.md b/docs/version-specific/supported-software/c/cowsay.md new file mode 100644 index 000000000..1358f0886 --- /dev/null +++ b/docs/version-specific/supported-software/c/cowsay.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# cowsay + +Configurable talking characters in ASCII art + +*homepage*: + +version | toolchain +--------|---------- +``3.04`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cpio.md b/docs/version-specific/supported-software/c/cpio.md new file mode 100644 index 000000000..c1e32ea0a --- /dev/null +++ b/docs/version-specific/supported-software/c/cpio.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# cpio + +The cpio package contains tools for archiving. + +*homepage*: + +version | toolchain +--------|---------- +``2.14`` | ``GCCcore/11.3.0`` +``2.15`` | ``GCCcore/12.2.0`` +``2.15`` | ``GCCcore/12.3.0`` +``2.15`` | ``GCCcore/13.2.0`` +``2.15`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cppy.md b/docs/version-specific/supported-software/c/cppy.md new file mode 100644 index 000000000..cb786a3b6 --- /dev/null +++ b/docs/version-specific/supported-software/c/cppy.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# cppy + +A small C++ header library which makes it easier to write Python extension modules. The primary feature is a PyObject smart pointer which automatically handles reference counting and provides convenience methods for performing common object operations. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``GCCcore/10.3.0`` +``1.1.0`` | ``GCCcore/11.2.0`` +``1.2.1`` | ``GCCcore/11.3.0`` +``1.2.1`` | ``GCCcore/12.2.0`` +``1.2.1`` | ``GCCcore/12.3.0`` +``1.2.1`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cppyy.md b/docs/version-specific/supported-software/c/cppyy.md new file mode 100644 index 000000000..c518cecbc --- /dev/null +++ b/docs/version-specific/supported-software/c/cppyy.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# cppyy + +cppyy is an automatic, run-time, Python-C++ bindings generator, for calling C++ from Python and Python from C++. + +*homepage*: + +version | toolchain +--------|---------- +``3.0.0`` | ``GCCcore/11.3.0`` +``3.1.2`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cppzmq.md b/docs/version-specific/supported-software/c/cppzmq.md new file mode 100644 index 000000000..bb269d2da --- /dev/null +++ b/docs/version-specific/supported-software/c/cppzmq.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# cppzmq + +cppzmq is a C++ binding for libzmq. + +*homepage*: + +version | toolchain +--------|---------- +``4.9.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cpu_features.md b/docs/version-specific/supported-software/c/cpu_features.md new file mode 100644 index 000000000..dc98dbe1e --- /dev/null +++ b/docs/version-specific/supported-software/c/cpu_features.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# cpu_features + +A cross-platform C library to retrieve CPU features (such as available instructions) at runtime. + +*homepage*: + +version | toolchain +--------|---------- +``0.6.0`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cram.md b/docs/version-specific/supported-software/c/cram.md new file mode 100644 index 000000000..2539fa5e3 --- /dev/null +++ b/docs/version-specific/supported-software/c/cram.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# cram + +Cram is a functional testing framework for command line applications. + +*homepage*: + +version | toolchain +--------|---------- +``0.7`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cramtools.md b/docs/version-specific/supported-software/c/cramtools.md new file mode 100644 index 000000000..c71fc4fa8 --- /dev/null +++ b/docs/version-specific/supported-software/c/cramtools.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# cramtools + +CRAMTools is a set of Java tools and APIs for efficient compression of sequence read data. Although this is intended as a stable version the code is released as early access. Parts of the CRAMTools are experimental and may not be supported in the future. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0`` | ``-Java-1.7.0_80`` | ``system`` +``3.0`` | ``-Java-1.7.0_80`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/crb-blast.md b/docs/version-specific/supported-software/c/crb-blast.md new file mode 100644 index 000000000..270ab7da7 --- /dev/null +++ b/docs/version-specific/supported-software/c/crb-blast.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# crb-blast + +Conditional Reciprocal Best BLAST - high confidence ortholog assignment. CRB-BLAST is a novel method for finding orthologs between one set of sequences and another. This is particularly useful in genome and transcriptome annotation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.6.9`` | ``-Ruby-2.6.1`` | ``foss/2018b`` +``0.6.9`` | | ``gompi/2021a`` +``0.6.9`` | | ``gompi/2021b`` +``0.6.9`` | | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cromwell.md b/docs/version-specific/supported-software/c/cromwell.md new file mode 100644 index 000000000..fdcfcd6a1 --- /dev/null +++ b/docs/version-specific/supported-software/c/cromwell.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# cromwell + +Cromwell is a Workflow Management System geared towards scientific workflows. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``56`` | ``-Java-11`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/crossguid.md b/docs/version-specific/supported-software/c/crossguid.md new file mode 100644 index 000000000..0fc7c7796 --- /dev/null +++ b/docs/version-specific/supported-software/c/crossguid.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# crossguid + +CrossGuid is a minimal, cross platform, C++ GUID library. It uses the best native GUID/UUID generator on the given platform and has a generic class for parsing, stringifying, and comparing IDs. The guid generation technique is determined by your platform: + +*homepage*: + +version | toolchain +--------|---------- +``20190529`` | ``GCCcore/11.2.0`` +``20190529`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cryoCARE.md b/docs/version-specific/supported-software/c/cryoCARE.md new file mode 100644 index 000000000..b0b2ab010 --- /dev/null +++ b/docs/version-specific/supported-software/c/cryoCARE.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# cryoCARE + +This package is a memory efficient implementation of cryoCARE. This setup trains a denoising U-Net for tomographic reconstruction according to the Noise2Noise training paradigm. Therefore the user has to provide two tomograms of the same sample. The simplest way to achieve this is with direct- detector movie-frames. You can use Warp to generate two reconstructed tomograms based on the even/odd frames. Alternatively, the movie-frames can be split in two halves (e.g. with MotionCor2 -SplitSum 1 or with IMOD alignframes -debug 10000) from which two identical, up to random noise, tomograms can be reconstructed. These two (even and odd) tomograms can be used as input to this cryoCARE implementation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.1`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``0.3.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cryoDRGN.md b/docs/version-specific/supported-software/c/cryoDRGN.md new file mode 100644 index 000000000..fbbf1f298 --- /dev/null +++ b/docs/version-specific/supported-software/c/cryoDRGN.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# cryoDRGN + +cryoDRGN: Deep Reconstructing Generative Networks for cryo-EM heterogeneous reconstruction. CryoDRGN is a neural network based algorithm for heterogeneous cryo-EM reconstruction. In particular, the method models a continuous distribution over 3D structures by using a neural network based representation for the volume. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.2`` | | ``fosscuda/2020b`` +``0.3.5`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``1.0.0-beta`` | ``-CUDA-11.3.1`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cryptography.md b/docs/version-specific/supported-software/c/cryptography.md new file mode 100644 index 000000000..a04e1b542 --- /dev/null +++ b/docs/version-specific/supported-software/c/cryptography.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# cryptography + +cryptography is a package designed to expose cryptographic primitives and recipes to Python developers. + +*homepage*: + +version | toolchain +--------|---------- +``41.0.1`` | ``GCCcore/12.3.0`` +``41.0.5`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cscope.md b/docs/version-specific/supported-software/c/cscope.md new file mode 100644 index 000000000..49653f011 --- /dev/null +++ b/docs/version-specific/supported-software/c/cscope.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# cscope + +Cscope is a developer's tool for browsing source code. + +*homepage*: + +version | toolchain +--------|---------- +``15.9`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/csvkit.md b/docs/version-specific/supported-software/c/csvkit.md new file mode 100644 index 000000000..2034503c7 --- /dev/null +++ b/docs/version-specific/supported-software/c/csvkit.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# csvkit + +csvkit is a suite of command-line tools for converting to and working with CSV, the king of tabular file formats. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.4`` | | ``GCCcore/8.2.0`` +``1.0.5`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``1.1.0`` | | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/ctags.md b/docs/version-specific/supported-software/c/ctags.md new file mode 100644 index 000000000..dbb6f4b1a --- /dev/null +++ b/docs/version-specific/supported-software/c/ctags.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ctags + +Ctags generates an index (or tag) file of language objects found in source files that allows these items to be quickly and easily located by a text editor or other utility. + +*homepage*: + +version | toolchain +--------|---------- +``5.8`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/ctffind.md b/docs/version-specific/supported-software/c/ctffind.md new file mode 100644 index 000000000..a1f2896f5 --- /dev/null +++ b/docs/version-specific/supported-software/c/ctffind.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# ctffind + +Program for finding CTFs of electron micrographs. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.1.13`` | | ``foss/2019a`` +``4.1.13`` | | ``fosscuda/2019a`` +``4.1.13`` | | ``fosscuda/2019b`` +``4.1.14`` | | ``foss/2019b`` +``4.1.14`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``4.1.14`` | | ``foss/2021b`` +``4.1.14`` | | ``foss/2022a`` +``4.1.14`` | | ``foss/2022b`` +``4.1.14`` | | ``foss/2023a`` +``4.1.14`` | | ``fosscuda/2019b`` +``4.1.14`` | | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/ctffind5.md b/docs/version-specific/supported-software/c/ctffind5.md new file mode 100644 index 000000000..3b44b11bf --- /dev/null +++ b/docs/version-specific/supported-software/c/ctffind5.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ctffind5 + +Program for finding CTFs of electron micrographs. + +*homepage*: + +version | toolchain +--------|---------- +``5.0.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cuDNN.md b/docs/version-specific/supported-software/c/cuDNN.md new file mode 100644 index 000000000..ad4f6461f --- /dev/null +++ b/docs/version-specific/supported-software/c/cuDNN.md @@ -0,0 +1,57 @@ +--- +search: + boost: 0.5 +--- +# cuDNN + +The NVIDIA CUDA Deep Neural Network library (cuDNN) is a GPU-accelerated library of primitives for deep neural networks. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.0`` | | ``system`` +``5.0`` | ``-CUDA-7.5.18`` | ``system`` +``5.0-rc`` | | ``system`` +``5.1`` | ``-CUDA-8.0.44`` | ``system`` +``6.0`` | ``-CUDA-8.0.61`` | ``system`` +``6.0.21`` | ``-CUDA-7.5.18`` | ``system`` +``6.0.21`` | ``-CUDA-8.0.44`` | ``system`` +``7.0.2`` | ``-CUDA-9.0.176`` | ``system`` +``7.0.5`` | ``-CUDA-8.0.44`` | ``system`` +``7.0.5`` | ``-CUDA-9.0.176`` | ``system`` +``7.0.5`` | ``-CUDA-9.1.85`` | ``system`` +``7.0.5.15`` | | ``fosscuda/2017b`` +``7.0.5.15`` | | ``fosscuda/2018a`` +``7.0.5.15`` | | ``intelcuda/2017b`` +``7.1.4.18`` | | ``fosscuda/2018b`` +``7.4.2.24`` | ``-CUDA-10.0.130`` | ``system`` +``7.4.2.24`` | | ``gcccuda/2019a`` +``7.5.0.56`` | ``-CUDA-10.0.130`` | ``system`` +``7.6.2.24`` | ``-CUDA-10.1.243`` | ``system`` +``7.6.4.38`` | ``-CUDA-10.0.130`` | ``system`` +``7.6.4.38`` | | ``gcccuda/2019a`` +``7.6.4.38`` | | ``gcccuda/2019b`` +``8.0.4.30`` | ``-CUDA-11.0.2`` | ``system`` +``8.0.4.30`` | ``-CUDA-11.1.1`` | ``system`` +``8.0.5.39`` | ``-CUDA-11.1.1`` | ``system`` +``8.1.0.77`` | ``-CUDA-11.2.1`` | ``system`` +``8.1.1.33`` | ``-CUDA-11.2.1`` | ``system`` +``8.2.1.32`` | ``-CUDA-11.3.1`` | ``system`` +``8.2.2.26`` | ``-CUDA-11.4.0`` | ``system`` +``8.2.2.26`` | ``-CUDA-11.4.1`` | ``system`` +``8.4.0.27`` | ``-CUDA-11.6.0`` | ``system`` +``8.4.1.50`` | ``-CUDA-11.5.2`` | ``system`` +``8.4.1.50`` | ``-CUDA-11.6.0`` | ``system`` +``8.4.1.50`` | ``-CUDA-11.7.0`` | ``system`` +``8.5.0.96`` | ``-CUDA-11.7.0`` | ``system`` +``8.6.0.163`` | ``-CUDA-11.8.0`` | ``system`` +``8.7.0.84`` | ``-CUDA-11.8.0`` | ``system`` +``8.8.0.121`` | ``-CUDA-12.0.0`` | ``system`` +``8.9.2.26`` | ``-CUDA-12.1.1`` | ``system`` +``8.9.2.26`` | ``-CUDA-12.2.0`` | ``system`` +``8.9.7.29`` | ``-CUDA-12.3.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cuSPARSELt.md b/docs/version-specific/supported-software/c/cuSPARSELt.md new file mode 100644 index 000000000..faec479fe --- /dev/null +++ b/docs/version-specific/supported-software/c/cuSPARSELt.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# cuSPARSELt + +NVIDIA cuSPARSELt is a high-performance CUDA library dedicated to general matrix-matrix operations in which at least one operand is a sparse matrix + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.0.3`` | ``-CUDA-11.4.1`` | ``system`` +``0.6.0.6`` | ``-CUDA-12.1.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cuTENSOR.md b/docs/version-specific/supported-software/c/cuTENSOR.md new file mode 100644 index 000000000..8533d7b09 --- /dev/null +++ b/docs/version-specific/supported-software/c/cuTENSOR.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# cuTENSOR + +The cuTENSOR Library is a GPU-accelerated tensor linear algebra library providing tensor contraction, reduction and elementwise operations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.2.5`` | ``-CUDA-11.1.1`` | ``system`` +``1.2.2.5`` | | ``gcccuda/2019b`` +``1.6.0.3`` | ``-CUDA-11.3.1`` | ``system`` +``1.6.1.5`` | ``-CUDA-11.4.1`` | ``system`` +``1.6.1.5`` | ``-CUDA-11.7.0`` | ``system`` +``1.7.0.1`` | ``-CUDA-12.0.0`` | ``system`` +``2.0.1.2`` | ``-CUDA-12.1.1`` | ``system`` +``2.0.1.2`` | ``-CUDA-12.2.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/currentNe.md b/docs/version-specific/supported-software/c/currentNe.md new file mode 100644 index 000000000..4f3505be0 --- /dev/null +++ b/docs/version-specific/supported-software/c/currentNe.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# currentNe + +Estimation of current effective population using artificial neural networks. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/custodian.md b/docs/version-specific/supported-software/c/custodian.md new file mode 100644 index 000000000..dfda95a5b --- /dev/null +++ b/docs/version-specific/supported-software/c/custodian.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# custodian + +A simple JIT job management framework in Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.0`` | ``-Python-2.7.13`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cutadapt.md b/docs/version-specific/supported-software/c/cutadapt.md new file mode 100644 index 000000000..5b32f22de --- /dev/null +++ b/docs/version-specific/supported-software/c/cutadapt.md @@ -0,0 +1,45 @@ +--- +search: + boost: 0.5 +--- +# cutadapt + +Cutadapt finds and removes adapter sequences, primers, poly-A tails and other types of unwanted sequence from your high-throughput sequencing reads. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.14`` | ``-Python-2.7.13`` | ``foss/2017a`` +``1.14`` | ``-Python-2.7.13`` | ``intel/2017a`` +``1.15`` | ``-Python-3.5.2`` | ``foss/2016b`` +``1.16`` | ``-Python-2.7.14`` | ``foss/2017b`` +``1.16`` | ``-Python-3.6.3`` | ``foss/2017b`` +``1.16`` | ``-Python-3.6.4`` | ``foss/2018a`` +``1.16`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.16`` | ``-Python-3.6.3`` | ``intel/2017b`` +``1.16`` | ``-Python-2.7.14`` | ``intel/2018a`` +``1.16`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.18`` | ``-Python-2.7.18`` | ``GCC/10.2.0`` +``1.18`` | | ``GCCcore/8.2.0`` +``1.18`` | | ``GCCcore/8.3.0`` +``1.18`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.18`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.18`` | ``-Python-3.6.6`` | ``intel/2018b`` +``1.9.1`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.9.1`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``2.10`` | | ``GCCcore/10.2.0`` +``2.10`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``2.10`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``2.7`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``2.8`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``3.4`` | | ``GCCcore/10.2.0`` +``3.4`` | | ``GCCcore/10.3.0`` +``3.5`` | | ``GCCcore/11.2.0`` +``4.2`` | | ``GCCcore/11.3.0`` +``4.4`` | | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cuteSV.md b/docs/version-specific/supported-software/c/cuteSV.md new file mode 100644 index 000000000..872d4ed8c --- /dev/null +++ b/docs/version-specific/supported-software/c/cuteSV.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# cuteSV + +cuteSV uses tailored methods to collect the signatures of various types of SVs and employs a clustering-and-refinement method to analyze the signatures to implement sensitive SV detection. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.3`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cwltool.md b/docs/version-specific/supported-software/c/cwltool.md new file mode 100644 index 000000000..b1b11743a --- /dev/null +++ b/docs/version-specific/supported-software/c/cwltool.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# cwltool + +Common workflow language (CWL) reference implementation. + +*homepage*: + +version | toolchain +--------|---------- +``3.1.20221008225030`` | ``foss/2021a`` +``3.1.20221018083734`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cxxopts.md b/docs/version-specific/supported-software/c/cxxopts.md new file mode 100644 index 000000000..240d2ffe9 --- /dev/null +++ b/docs/version-specific/supported-software/c/cxxopts.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# cxxopts + +cxxopts is a lightweight C++ command line option parser + +*homepage*: + +version | toolchain +--------|---------- +``3.0.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cysignals.md b/docs/version-specific/supported-software/c/cysignals.md new file mode 100644 index 000000000..caabc1a91 --- /dev/null +++ b/docs/version-specific/supported-software/c/cysignals.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# cysignals + +The cysignals package provides mechanisms to handle interrupts (and other signals and errors) in Cython code. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.10.2`` | ``-Python-2.7.14`` | ``foss/2017b`` +``1.10.2`` | ``-Python-3.6.3`` | ``foss/2017b`` +``1.10.2`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.10.2`` | ``-Python-3.6.3`` | ``intel/2017b`` +``1.11.2`` | | ``GCCcore/11.3.0`` +``1.11.4`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cython-blis.md b/docs/version-specific/supported-software/c/cython-blis.md new file mode 100644 index 000000000..c65a18222 --- /dev/null +++ b/docs/version-specific/supported-software/c/cython-blis.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# cython-blis + +Fast BLAS-like operations from Python and Cython, without the tears. Provides the Blis linear algebra routines as a self-contained Python C-extension. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cytoolz.md b/docs/version-specific/supported-software/c/cytoolz.md new file mode 100644 index 000000000..fa338521a --- /dev/null +++ b/docs/version-specific/supported-software/c/cytoolz.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# cytoolz + +Cython implementation of the toolz package, which provides high performance utility functions for iterables, functions, and dictionaries. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.1`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` +``0.10.1`` | ``-Python-3.6.6`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cytosim.md b/docs/version-specific/supported-software/c/cytosim.md new file mode 100644 index 000000000..a70b49378 --- /dev/null +++ b/docs/version-specific/supported-software/c/cytosim.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# cytosim + +Cytosim is a cytoskeleton simulation engine written in C++ working on Mac OS, GNU/Linux and Windows (with Cygwin). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20190117`` | ``-mkl`` | ``gomkl/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/cyvcf2.md b/docs/version-specific/supported-software/c/cyvcf2.md new file mode 100644 index 000000000..c80627b4c --- /dev/null +++ b/docs/version-specific/supported-software/c/cyvcf2.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# cyvcf2 + +cython + htslib == fast VCF and BCF processing + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.10`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.11.5`` | | ``foss/2019a`` +``0.11.5`` | | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/c/index.md b/docs/version-specific/supported-software/c/index.md new file mode 100644 index 000000000..e442d705d --- /dev/null +++ b/docs/version-specific/supported-software/c/index.md @@ -0,0 +1,283 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (c) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - *c* - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [c-ares](c-ares.md) + * [C3D](C3D.md) + * [cadaver](cadaver.md) + * [CaDiCaL](CaDiCaL.md) + * [CAFE5](CAFE5.md) + * [Caffe](Caffe.md) + * [cairo](cairo.md) + * [cairomm](cairomm.md) + * [Calcam](Calcam.md) + * [CalculiX-CrunchiX](CalculiX-CrunchiX.md) + * [Calendrical](Calendrical.md) + * [Calib](Calib.md) + * [CAMPARI](CAMPARI.md) + * [Cantera](Cantera.md) + * [canu](canu.md) + * [Canvas](Canvas.md) + * [CAP3](CAP3.md) + * [CapnProto](CapnProto.md) + * [captum](captum.md) + * [Cargo](Cargo.md) + * [Carma](Carma.md) + * [carputils](carputils.md) + * [Cartopy](Cartopy.md) + * [CASA](CASA.md) + * [casacore](casacore.md) + * [Casanovo](Casanovo.md) + * [CaSpER](CaSpER.md) + * [CASPR](CASPR.md) + * [Cassiopeia](Cassiopeia.md) + * [CASTEP](CASTEP.md) + * [castor](castor.md) + * [CastXML](CastXML.md) + * [CAT-BAT](CAT-BAT.md) + * [CatBoost](CatBoost.md) + * [Catch2](Catch2.md) + * [category_encoders](category_encoders.md) + * [CatLearn](CatLearn.md) + * [CatMAP](CatMAP.md) + * [causallift](causallift.md) + * [causalml](causalml.md) + * [CaVEMan](CaVEMan.md) + * [CAVIAR](CAVIAR.md) + * [Cbc](Cbc.md) + * [CBLAS](CBLAS.md) + * [ccache](ccache.md) + * [CCCL](CCCL.md) + * [CCfits](CCfits.md) + * [CCL](CCL.md) + * [cclib](cclib.md) + * [cctbx-base](cctbx-base.md) + * [cctools](cctools.md) + * [CD-HIT](CD-HIT.md) + * [CDAT](CDAT.md) + * [cdbfasta](cdbfasta.md) + * [CDBtools](CDBtools.md) + * [cddlib](cddlib.md) + * [CDFlib](CDFlib.md) + * [cDNA_Cupcake](cDNA_Cupcake.md) + * [CDO](CDO.md) + * [cdo-bindings](cdo-bindings.md) + * [cdsapi](cdsapi.md) + * [cell2location](cell2location.md) + * [CellBender](CellBender.md) + * [CellChat](CellChat.md) + * [CellMix](CellMix.md) + * [CellOracle](CellOracle.md) + * [Cellpose](Cellpose.md) + * [CellRanger](CellRanger.md) + * [CellRanger-ARC](CellRanger-ARC.md) + * [CellRanger-ATAC](CellRanger-ATAC.md) + * [CellRank](CellRank.md) + * [CellTypist](CellTypist.md) + * [CENSO](CENSO.md) + * [centerline](centerline.md) + * [Centrifuge](Centrifuge.md) + * [Cereal](Cereal.md) + * [CESM-deps](CESM-deps.md) + * [CFDEMcoupling](CFDEMcoupling.md) + * [cffi](cffi.md) + * [CFITSIO](CFITSIO.md) + * [cftime](cftime.md) + * [CGAL](CGAL.md) + * [cget](cget.md) + * [Cgl](Cgl.md) + * [CGmapTools](CGmapTools.md) + * [CGNS](CGNS.md) + * [CharLS](CharLS.md) + * [charm-gems](charm-gems.md) + * [CHASE](CHASE.md) + * [Check](Check.md) + * [CheckM](CheckM.md) + * [CheckM-Database](CheckM-Database.md) + * [CheckM2](CheckM2.md) + * [Cheetah](Cheetah.md) + * [Chemaxon-Marvin](Chemaxon-Marvin.md) + * [chemprop](chemprop.md) + * [CheMPS2](CheMPS2.md) + * [CHERAB](CHERAB.md) + * [chewBBACA](chewBBACA.md) + * [chi2comb](chi2comb.md) + * [Chimera](Chimera.md) + * [ChimPipe](ChimPipe.md) + * [ChIPseeker](ChIPseeker.md) + * [Chromaprint](Chromaprint.md) + * [chromVARmotifs](chromVARmotifs.md) + * [cicero](cicero.md) + * [CIF2Cell](CIF2Cell.md) + * [cimfomfa](cimfomfa.md) + * [CIRCexplorer](CIRCexplorer.md) + * [CIRCexplorer2](CIRCexplorer2.md) + * [Circlator](Circlator.md) + * [Circos](Circos.md) + * [Circuitscape](Circuitscape.md) + * [CIRI](CIRI.md) + * [CIRI-long](CIRI-long.md) + * [CIRIquant](CIRIquant.md) + * [cisTEM](cisTEM.md) + * [CITE-seq-Count](CITE-seq-Count.md) + * [Clair3](Clair3.md) + * [Clang](Clang.md) + * [Clang-AOMP](Clang-AOMP.md) + * [Clang-Python-bindings](Clang-Python-bindings.md) + * [CLAPACK](CLAPACK.md) + * [Clarabel.rs](Clarabel.rs.md) + * [CLEAR](CLEAR.md) + * [CLEASE](CLEASE.md) + * [CLHEP](CLHEP.md) + * [CliMetLab](CliMetLab.md) + * [CLIP](CLIP.md) + * [cliquer](cliquer.md) + * [CLISP](CLISP.md) + * [ClonalFrameML](ClonalFrameML.md) + * [CLooG](CLooG.md) + * [CloudCompare](CloudCompare.md) + * [Clp](Clp.md) + * [Clustal-Omega](Clustal-Omega.md) + * [ClustalW2](ClustalW2.md) + * [Cluster-Buster](Cluster-Buster.md) + * [ClusterShell](ClusterShell.md) + * [CMake](CMake.md) + * [CMAverse](CMAverse.md) + * [CmdStanR](CmdStanR.md) + * [cmocean](cmocean.md) + * [cmph](cmph.md) + * [CMSeq](CMSeq.md) + * [CNT-ILP](CNT-ILP.md) + * [CNVkit](CNVkit.md) + * [CNVnator](CNVnator.md) + * [Co-phylog](Co-phylog.md) + * [COBRApy](COBRApy.md) + * [CoCoALib](CoCoALib.md) + * [CodAn](CodAn.md) + * [code-cli](code-cli.md) + * [code-server](code-server.md) + * [CODEX2](CODEX2.md) + * [CodingQuarry](CodingQuarry.md) + * [Cogent](Cogent.md) + * [Coin](Coin.md) + * [CoinUtils](CoinUtils.md) + * [ColabFold](ColabFold.md) + * [colossalai](colossalai.md) + * [COMEBin](COMEBin.md) + * [Commet](Commet.md) + * [CompareM](CompareM.md) + * [Compass](Compass.md) + * [Compress-Raw-Zlib](Compress-Raw-Zlib.md) + * [COMSOL](COMSOL.md) + * [Con3F](Con3F.md) + * [conan](conan.md) + * [CONCOCT](CONCOCT.md) + * [Concorde](Concorde.md) + * [ConcurrentVersionsSystem](ConcurrentVersionsSystem.md) + * [configparser](configparser.md) + * [configurable-http-proxy](configurable-http-proxy.md) + * [CONN](CONN.md) + * [connected-components-3d](connected-components-3d.md) + * [ConnectomeWorkbench](ConnectomeWorkbench.md) + * [contextily](contextily.md) + * [Control-FREEC](Control-FREEC.md) + * [cooler](cooler.md) + * [CoordgenLibs](CoordgenLibs.md) + * [Coot](Coot.md) + * [CopyKAT](CopyKAT.md) + * [core-counter](core-counter.md) + * [Coreutils](Coreutils.md) + * [corner](corner.md) + * [CoSymLib](CoSymLib.md) + * [coverage](coverage.md) + * [cowsay](cowsay.md) + * [CP2K](CP2K.md) + * [CPB](CPB.md) + * [CPC2](CPC2.md) + * [cpio](cpio.md) + * [CPLEX](CPLEX.md) + * [CPMD](CPMD.md) + * [CPPE](CPPE.md) + * [CppHeaderParser](CppHeaderParser.md) + * [CppUnit](CppUnit.md) + * [cppy](cppy.md) + * [cppyy](cppyy.md) + * [cppzmq](cppzmq.md) + * [cpu_features](cpu_features.md) + * [cram](cram.md) + * [cramtools](cramtools.md) + * [CrayCCE](CrayCCE.md) + * [CrayGNU](CrayGNU.md) + * [CrayIntel](CrayIntel.md) + * [CrayPGI](CrayPGI.md) + * [crb-blast](crb-blast.md) + * [CREST](CREST.md) + * [CRF++](CRF++.md) + * [CRISPR-DAV](CRISPR-DAV.md) + * [CRISPResso2](CRISPResso2.md) + * [cromwell](cromwell.md) + * [crossguid](crossguid.md) + * [CrossMap](CrossMap.md) + * [CrossTalkZ](CrossTalkZ.md) + * [CRPropa](CRPropa.md) + * [Crumble](Crumble.md) + * [cryoCARE](cryoCARE.md) + * [cryoDRGN](cryoDRGN.md) + * [cryptography](cryptography.md) + * [CryptoMiniSat](CryptoMiniSat.md) + * [CrystFEL](CrystFEL.md) + * [CSB](CSB.md) + * [CSBDeep](CSBDeep.md) + * [CSBLAST](CSBLAST.md) + * [cscope](cscope.md) + * [csvkit](csvkit.md) + * [ctags](ctags.md) + * [ctffind](ctffind.md) + * [ctffind5](ctffind5.md) + * [CTPL](CTPL.md) + * [Cube](Cube.md) + * [CubeGUI](CubeGUI.md) + * [CubeLib](CubeLib.md) + * [CubeWriter](CubeWriter.md) + * [CuCLARK](CuCLARK.md) + * [CUDA](CUDA.md) + * [CUDA-Samples](CUDA-Samples.md) + * [CUDAcompat](CUDAcompat.md) + * [CUDAcore](CUDAcore.md) + * [CUDD](CUDD.md) + * [cuDNN](cuDNN.md) + * [Cufflinks](Cufflinks.md) + * [CUnit](CUnit.md) + * [CuPy](CuPy.md) + * [cURL](cURL.md) + * [currentNe](currentNe.md) + * [cuSPARSELt](cuSPARSELt.md) + * [custodian](custodian.md) + * [cutadapt](cutadapt.md) + * [cuTENSOR](cuTENSOR.md) + * [cuteSV](cuteSV.md) + * [CUTLASS](CUTLASS.md) + * [CVglasso](CVglasso.md) + * [CVX](CVX.md) + * [CVXOPT](CVXOPT.md) + * [CVXPY](CVXPY.md) + * [CWIPI](CWIPI.md) + * [cwltool](cwltool.md) + * [cxxopts](cxxopts.md) + * [cysignals](cysignals.md) + * [Cython](Cython.md) + * [cython-blis](cython-blis.md) + * [cytoolz](cytoolz.md) + * [Cytoscape](Cytoscape.md) + * [cytosim](cytosim.md) + * [cyvcf2](cyvcf2.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - *c* - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DALI.md b/docs/version-specific/supported-software/d/DALI.md new file mode 100644 index 000000000..9c76ea9ef --- /dev/null +++ b/docs/version-specific/supported-software/d/DALI.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DALI + +R-package for the analysis of single-cell TCR/BCR data in the Seurat ecosystem + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.2`` | ``-R-4.2.2`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DANPOS2.md b/docs/version-specific/supported-software/d/DANPOS2.md new file mode 100644 index 000000000..71e5ed0de --- /dev/null +++ b/docs/version-specific/supported-software/d/DANPOS2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DANPOS2 + +A toolkit for Dynamic Analysis of Nucleosome and Protein Occupancy by Sequencing, version 2 + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.2`` | ``-Python-2.7.12`` | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DAS_Tool.md b/docs/version-specific/supported-software/d/DAS_Tool.md new file mode 100644 index 000000000..c343a9d7d --- /dev/null +++ b/docs/version-specific/supported-software/d/DAS_Tool.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# DAS_Tool + +DAS Tool is an automated method that integrates the results of a flexible number of binning algorithms to calculate an optimized, non-redundant set of bins from a single assembly. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.1`` | ``-R-3.5.1-Python-2.7.15`` | ``foss/2018b`` +``1.1.1`` | ``-R-4.1.2`` | ``foss/2021b`` +``1.1.3`` | ``-R-4.1.0`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DB.md b/docs/version-specific/supported-software/d/DB.md new file mode 100644 index 000000000..70535d433 --- /dev/null +++ b/docs/version-specific/supported-software/d/DB.md @@ -0,0 +1,34 @@ +--- +search: + boost: 0.5 +--- +# DB + +Berkeley DB enables the development of custom data management solutions, without the overhead traditionally associated with such custom projects. + +*homepage*: + +version | toolchain +--------|---------- +``18.1.25`` | ``GCCcore/7.3.0`` +``18.1.32`` | ``GCCcore/8.2.0`` +``18.1.32`` | ``GCCcore/8.3.0`` +``18.1.32`` | ``GCCcore/9.3.0`` +``18.1.40`` | ``FCC/4.5.0`` +``18.1.40`` | ``GCCcore/10.2.0`` +``18.1.40`` | ``GCCcore/10.3.0`` +``18.1.40`` | ``GCCcore/11.2.0`` +``18.1.40`` | ``GCCcore/11.3.0`` +``18.1.40`` | ``GCCcore/12.1.0`` +``18.1.40`` | ``GCCcore/12.2.0`` +``18.1.40`` | ``GCCcore/12.3.0`` +``18.1.40`` | ``GCCcore/8.2.0`` +``18.1.40`` | ``GCCcore/8.3.0`` +``4.8.30`` | ``intel/2016a`` +``6.2.23`` | ``foss/2016a`` +``6.2.32`` | ``GCCcore/6.4.0`` +``6.2.32`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DBCSR.md b/docs/version-specific/supported-software/d/DBCSR.md new file mode 100644 index 000000000..906caa870 --- /dev/null +++ b/docs/version-specific/supported-software/d/DBCSR.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DBCSR + +DBCSR stands for Distributed Blocked Compressed Sparse Row. DBCSR is a library designed to efficiently perform sparse matrix-matrix multiplication, among other operations. + +*homepage*: + +version | toolchain +--------|---------- +``2.5.0`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DBD-mysql.md b/docs/version-specific/supported-software/d/DBD-mysql.md new file mode 100644 index 000000000..2ed013148 --- /dev/null +++ b/docs/version-specific/supported-software/d/DBD-mysql.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# DBD-mysql + +Perl binding for MySQL + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.032`` | ``-Perl-5.22.2`` | ``intel/2016a`` +``4.033`` | ``-Perl-5.24.0`` | ``intel/2016b`` +``4.042`` | ``-Perl-5.24.1`` | ``intel/2017a`` +``4.046`` | ``-Perl-5.26.0`` | ``foss/2017b`` +``4.046`` | ``-Perl-5.26.0`` | ``intel/2017b`` +``4.046`` | ``-Perl-5.26.1`` | ``intel/2018a`` +``4.048`` | ``-Perl-5.28.0`` | ``foss/2018b`` +``4.050`` | | ``GCC/10.2.0`` +``4.050`` | | ``GCC/11.2.0`` +``4.050`` | | ``GCC/11.3.0`` +``4.050`` | | ``GCC/12.2.0`` +``4.050`` | ``-Perl-5.28.1`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DBG2OLC.md b/docs/version-specific/supported-software/d/DBG2OLC.md new file mode 100644 index 000000000..52d32e654 --- /dev/null +++ b/docs/version-specific/supported-software/d/DBG2OLC.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# DBG2OLC + +DBG2OLC:Efficient Assembly of Large Genomes Using Long Erroneous Reads of the Third Generation Sequencing Technologies + +*homepage*: + +version | toolchain +--------|---------- +``20170208`` | ``intel/2016b`` +``20170208`` | ``intel/2017a`` +``20180221`` | ``GCC/6.4.0-2.28`` +``20180221`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` +``20200724`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DB_File.md b/docs/version-specific/supported-software/d/DB_File.md new file mode 100644 index 000000000..9b1335729 --- /dev/null +++ b/docs/version-specific/supported-software/d/DB_File.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# DB_File + +Perl5 access to Berkeley DB version 1.x. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.835`` | | ``GCCcore/9.3.0`` +``1.835`` | ``-Perl-5.22.1`` | ``foss/2016a`` +``1.835`` | ``-Perl-5.20.3`` | ``intel/2016a`` +``1.855`` | | ``GCCcore/10.2.0`` +``1.856`` | | ``GCCcore/10.3.0`` +``1.857`` | | ``GCCcore/11.2.0`` +``1.858`` | | ``GCCcore/11.3.0`` +``1.859`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DBus.md b/docs/version-specific/supported-software/d/DBus.md new file mode 100644 index 000000000..5cbda6803 --- /dev/null +++ b/docs/version-specific/supported-software/d/DBus.md @@ -0,0 +1,34 @@ +--- +search: + boost: 0.5 +--- +# DBus + +D-Bus is a message bus system, a simple way for applications to talk to one another. In addition to interprocess communication, D-Bus helps coordinate process lifecycle; it makes it simple and reliable to code a "single instance" application or daemon, and to launch applications and daemons on demand when their services are needed. + +*homepage*: + +version | toolchain +--------|---------- +``1.10.12`` | ``intel/2016b`` +``1.10.20`` | ``GCCcore/6.4.0`` +``1.10.8`` | ``foss/2016a`` +``1.10.8`` | ``intel/2016a`` +``1.11.20`` | ``intel/2017a`` +``1.13.0`` | ``intel/2017b`` +``1.13.12`` | ``GCCcore/8.3.0`` +``1.13.12`` | ``GCCcore/9.3.0`` +``1.13.18`` | ``GCCcore/10.2.0`` +``1.13.18`` | ``GCCcore/10.3.0`` +``1.13.18`` | ``GCCcore/11.2.0`` +``1.13.6`` | ``GCCcore/6.4.0`` +``1.13.6`` | ``GCCcore/7.3.0`` +``1.13.8`` | ``GCCcore/8.2.0`` +``1.14.0`` | ``GCCcore/11.3.0`` +``1.15.2`` | ``GCCcore/12.2.0`` +``1.15.4`` | ``GCCcore/12.3.0`` +``1.15.8`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DCMTK.md b/docs/version-specific/supported-software/d/DCMTK.md new file mode 100644 index 000000000..199d17e84 --- /dev/null +++ b/docs/version-specific/supported-software/d/DCMTK.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# DCMTK + +DCMTK is a collection of libraries and applications implementing large parts the DICOM standard. It includes software for examining, constructing and converting DICOM image files, handling offline media, sending and receiving images over a network connection, as well as demonstrative image storage and worklist servers. + +*homepage*: + +version | toolchain +--------|---------- +``3.6.3`` | ``GCCcore/7.3.0`` +``3.6.5`` | ``GCCcore/8.2.0`` +``3.6.5`` | ``GCCcore/8.3.0`` +``3.6.6`` | ``GCCcore/10.3.0`` +``3.6.6`` | ``GCCcore/11.2.0`` +``3.6.7`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DEICODE.md b/docs/version-specific/supported-software/d/DEICODE.md new file mode 100644 index 000000000..62ff9fc63 --- /dev/null +++ b/docs/version-specific/supported-software/d/DEICODE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DEICODE + +DEICODE is a form of Aitchison Distance that is robust to high levels of sparsity. DEICODE utilizes a natural solution to the zero problem formulated in recommendation systems called matrix completion. A simple way to interpret the method is, as a robust compositional PCA (via SVD) where zero values do not influence the resulting ordination. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.4`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DETONATE.md b/docs/version-specific/supported-software/d/DETONATE.md new file mode 100644 index 000000000..88217b6a8 --- /dev/null +++ b/docs/version-specific/supported-software/d/DETONATE.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# DETONATE + +DETONATE (DE novo TranscriptOme rNa-seq Assembly with or without the Truth Evaluation) consists of two component packages, RSEM-EVAL and REF-EVAL. Both packages are mainly intended to be used to evaluate de novo transcriptome assemblies, although REF-EVAL can be used to compare sets of any kinds of genomic sequences. + +*homepage*: + +version | toolchain +--------|---------- +``1.11`` | ``GCC/12.3.0`` +``1.11`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DFA.md b/docs/version-specific/supported-software/d/DFA.md new file mode 100644 index 000000000..46743836a --- /dev/null +++ b/docs/version-specific/supported-software/d/DFA.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# DFA + +Python library for modeling DFAs, Moore Machines, and Transition Systems. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.4`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``2.1.2`` | | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DFT-D3.md b/docs/version-specific/supported-software/d/DFT-D3.md new file mode 100644 index 000000000..2d99c7694 --- /dev/null +++ b/docs/version-specific/supported-software/d/DFT-D3.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# DFT-D3 + +DFT-D3 implements a dispersion correction for density functionals, Hartree-Fock and semi-empirical quantum chemical methods. + +*homepage*: + +version | toolchain +--------|---------- +``3.2.0`` | ``GCC/8.3.0`` +``3.2.0`` | ``iccifort/2020.4.304`` +``3.2.0`` | ``intel/2019a`` +``3.2.0`` | ``intel-compilers/2021.2.0`` +``3.2.0`` | ``intel-compilers/2021.4.0`` +``3.2.0`` | ``intel-compilers/2022.2.1`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DFT-D4.md b/docs/version-specific/supported-software/d/DFT-D4.md new file mode 100644 index 000000000..ba7fda236 --- /dev/null +++ b/docs/version-specific/supported-software/d/DFT-D4.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# DFT-D4 + +Generally Applicable Atomic-Charge Dependent London Dispersion Correction. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.2.0`` | ``-Python-3.7.4`` | ``intel/2019b`` +``3.6.0`` | | ``intel/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DFTB+.md b/docs/version-specific/supported-software/d/DFTB+.md new file mode 100644 index 000000000..f402a4347 --- /dev/null +++ b/docs/version-specific/supported-software/d/DFTB+.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# DFTB+ + +DFTB+ is a fast and efficient versatile quantum mechanical simulation package. It is based on the Density Functional Tight Binding (DFTB) method, containing almost all of the useful extensions which have been developed for the DFTB framework so far. Using DFTB+ you can carry out quantum mechanical simulations like with ab-initio density functional theory based packages, but in an approximate way gaining typically around two order of magnitude in speed. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.1`` | | ``intel/2017a`` +``17.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``19.1`` | ``-Python-2.7.16-mpi`` | ``foss/2019b`` +``19.1`` | ``-Python-2.7.16`` | ``foss/2019b`` +``21.1`` | | ``intel/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DGL.md b/docs/version-specific/supported-software/d/DGL.md new file mode 100644 index 000000000..38b8109c7 --- /dev/null +++ b/docs/version-specific/supported-software/d/DGL.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# DGL + +DGL is an easy-to-use, high performance and scalable Python package for deep learning on graphs. DGL is framework agnostic, meaning if a deep graph model is a component of an end-to-end application, the rest of the logics can be implemented in any major frameworks, such as PyTorch, Apache MXNet or TensorFlow. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.6.1`` | ``-Python-3.7.4-PyTorch-1.8.1`` | ``fosscuda/2019b`` +``0.9.1`` | ``-CUDA-11.3.1`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DIA-NN.md b/docs/version-specific/supported-software/d/DIA-NN.md new file mode 100644 index 000000000..5094bf1ca --- /dev/null +++ b/docs/version-specific/supported-software/d/DIA-NN.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DIA-NN + +DIA-NN is a universal software for data-independent acquisition (DIA) proteomics data processing. + +*homepage*: + +version | toolchain +--------|---------- +``1.8.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DIAL.md b/docs/version-specific/supported-software/d/DIAL.md new file mode 100644 index 000000000..6abe81171 --- /dev/null +++ b/docs/version-specific/supported-software/d/DIAL.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DIAL + +DIAL (De novo Identification of Alleles) is a collection of programs to automate the discovery of alleles for a species where we lack a reference sequence. The SNPs/alleles are specifically selected for a low error rate in genotyping assays. + +*homepage*: + +version | toolchain +--------|---------- +``2011.06.06`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DIALOGUE.md b/docs/version-specific/supported-software/d/DIALOGUE.md new file mode 100644 index 000000000..93496bd7d --- /dev/null +++ b/docs/version-specific/supported-software/d/DIALOGUE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DIALOGUE + +DIALOGUE is a dimensionality reduction method that uses cross-cell-type associations to identify multicellular programs (MCPs) and map the cell transcriptome as a function of its environment. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0-20230228`` | ``-R-4.2.0`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DIAMOND.md b/docs/version-specific/supported-software/d/DIAMOND.md new file mode 100644 index 000000000..1174a1ca0 --- /dev/null +++ b/docs/version-specific/supported-software/d/DIAMOND.md @@ -0,0 +1,35 @@ +--- +search: + boost: 0.5 +--- +# DIAMOND + +Accelerated BLAST compatible local sequence aligner + +*homepage*: + +version | toolchain +--------|---------- +``0.9.22`` | ``foss/2018a`` +``0.9.22`` | ``foss/2018b`` +``0.9.22`` | ``intel/2018a`` +``0.9.22`` | ``intel/2018b`` +``0.9.24`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``0.9.30`` | ``GCC/8.3.0`` +``0.9.30`` | ``iccifort/2019.5.281`` +``0.9.36`` | ``GCC/9.3.0`` +``2.0.11`` | ``GCC/10.3.0`` +``2.0.13`` | ``GCC/10.3.0`` +``2.0.13`` | ``GCC/11.2.0`` +``2.0.4`` | ``GCC/9.3.0`` +``2.0.6`` | ``GCC/7.3.0-2.30`` +``2.0.7`` | ``GCC/10.2.0`` +``2.1.0`` | ``GCC/11.3.0`` +``2.1.8`` | ``GCC/10.3.0`` +``2.1.8`` | ``GCC/12.2.0`` +``2.1.8`` | ``GCC/12.3.0`` +``2.1.9`` | ``GCC/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DIRAC.md b/docs/version-specific/supported-software/d/DIRAC.md new file mode 100644 index 000000000..c02528d83 --- /dev/null +++ b/docs/version-specific/supported-software/d/DIRAC.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# DIRAC + +DIRAC: Program for Atomic and Molecular Direct Iterative Relativistic All-electron Calculations + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``19.0`` | ``-Python-2.7.18-int64`` | ``intel/2020a`` +``19.0`` | ``-Python-2.7.18-mpi-int64`` | ``intel/2020a`` +``22.0`` | | ``foss/2021a`` +``22.0`` | ``-int64`` | ``intel/2021a`` +``22.0`` | | ``intel/2021a`` +``23.0`` | | ``foss/2022a`` +``23.0`` | | ``foss/2022b`` +``23.0`` | | ``foss/2023a`` +``23.0`` | | ``intel/2022a`` +``23.0`` | ``-int64`` | ``intel/2022b`` +``23.0`` | | ``intel/2022b`` +``23.0`` | ``-int64`` | ``intel/2023a`` +``23.0`` | | ``intel/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DLPack.md b/docs/version-specific/supported-software/d/DLPack.md new file mode 100644 index 000000000..456ef65b9 --- /dev/null +++ b/docs/version-specific/supported-software/d/DLPack.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# DLPack + +DLPack is a stable in-memory data structure for an ndarray system to interact with a variety of frameworks. + +*homepage*: + +version | toolchain +--------|---------- +``0.3`` | ``GCC/10.3.0`` +``0.8`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DL_POLY_4.md b/docs/version-specific/supported-software/d/DL_POLY_4.md new file mode 100644 index 000000000..02664124c --- /dev/null +++ b/docs/version-specific/supported-software/d/DL_POLY_4.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# DL_POLY_4 + +DL_POLY is a general purpose classical molecular dynamics (MD) simulation software + +*homepage*: + +version | toolchain +--------|---------- +``5.0.0`` | ``foss/2020b`` +``5.0.0`` | ``intel/2020b`` +``5.1.0`` | ``foss/2022b`` +``5.1.0`` | ``intel/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DL_POLY_Classic.md b/docs/version-specific/supported-software/d/DL_POLY_Classic.md new file mode 100644 index 000000000..90d817ee5 --- /dev/null +++ b/docs/version-specific/supported-software/d/DL_POLY_Classic.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# DL_POLY_Classic + +DL_POLY Classic is a general purpose (parallel and serial) molecular dynamics simulation package. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.10`` | | ``foss/2019b`` +``1.10`` | | ``intel/2019b`` +``1.9`` | ``-PLUMED-2.2.3`` | ``intel/2016b`` +``1.9`` | | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DMCfun.md b/docs/version-specific/supported-software/d/DMCfun.md new file mode 100644 index 000000000..996c5797e --- /dev/null +++ b/docs/version-specific/supported-software/d/DMCfun.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DMCfun + +Diffusion Model of Conflict (DMC) in Reaction Time Tasks + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.0`` | ``-R-3.6.2`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DMLC-Core.md b/docs/version-specific/supported-software/d/DMLC-Core.md new file mode 100644 index 000000000..2d063e858 --- /dev/null +++ b/docs/version-specific/supported-software/d/DMLC-Core.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# DMLC-Core + +DMLC-Core is the backbone library to support all DMLC projects, offers the bricks to build efficient and scalable distributed machine learning libraries. + +*homepage*: + +version | toolchain +--------|---------- +``0.5`` | ``GCC/10.3.0`` +``0.5`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DMTCP.md b/docs/version-specific/supported-software/d/DMTCP.md new file mode 100644 index 000000000..4f822af79 --- /dev/null +++ b/docs/version-specific/supported-software/d/DMTCP.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# DMTCP + +DMTCP (Distributed MultiThreaded Checkpointing) transparently checkpoints a single-host or distributed computation in user-space -- with no modifications to user code or to the O/S. + +*homepage*: + +version | toolchain +--------|---------- +``2.4.5`` | ``system`` +``2.5.0`` | ``foss/2016a`` +``2.5.1`` | ``system`` +``2.5.2`` | ``GCCcore/8.3.0`` +``2.5.2`` | ``foss/2016b`` +``2.5.2`` | ``foss/2018b`` +``2.6.0`` | ``GCCcore/8.2.0`` +``2.6.0`` | ``GCCcore/9.3.0`` +``3.0.0`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DOLFIN.md b/docs/version-specific/supported-software/d/DOLFIN.md new file mode 100644 index 000000000..038b422c5 --- /dev/null +++ b/docs/version-specific/supported-software/d/DOLFIN.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# DOLFIN + +DOLFIN is the C++/Python interface of FEniCS, providing a consistent PSE (Problem Solving Environment) for ordinary and partial differential equations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2018.1.0.post1`` | ``-Python-3.6.4`` | ``foss/2018a`` +``2019.1.0.post0`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DP3.md b/docs/version-specific/supported-software/d/DP3.md new file mode 100644 index 000000000..d7610ddd7 --- /dev/null +++ b/docs/version-specific/supported-software/d/DP3.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# DP3 + +DP3: streaming processing pipeline for radio interferometric data. + +*homepage*: + +version | toolchain +--------|---------- +``6.0`` | ``foss/2022a`` +``6.0`` | ``foss/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DRAGMAP.md b/docs/version-specific/supported-software/d/DRAGMAP.md new file mode 100644 index 000000000..574efdc4d --- /dev/null +++ b/docs/version-specific/supported-software/d/DRAGMAP.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DRAGMAP + +Dragmap is the Dragen mapper/aligner Open Source Software. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.0`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DROP.md b/docs/version-specific/supported-software/d/DROP.md new file mode 100644 index 000000000..163712334 --- /dev/null +++ b/docs/version-specific/supported-software/d/DROP.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# DROP + +Pipeline to find aberrant events in RNA-Seq data, useful for diagnosis of rare disorders + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.3`` | ``-R-4.0.3`` | ``foss/2020b`` +``1.1.0`` | ``-R-4.0.3`` | ``foss/2020b`` +``1.1.1`` | ``-R-4.1.2`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DSA.md b/docs/version-specific/supported-software/d/DSA.md new file mode 100644 index 000000000..be77ca250 --- /dev/null +++ b/docs/version-specific/supported-software/d/DSA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DSA + +Digital Sorting Algorithm + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0`` | ``-R-3.5.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DSRC.md b/docs/version-specific/supported-software/d/DSRC.md new file mode 100644 index 000000000..55b8dcf2b --- /dev/null +++ b/docs/version-specific/supported-software/d/DSRC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DSRC + +DNA Sequence Reads Compression is an application designed for compression of data files containing reads from DNA sequencing in FASTQ format. The amount of such files can be huge, e.g., a few (or tens) of gigabytes, so a need for a robust data compression tool is clear. Usually universal compression programs like gzip or bzip2 are used for this purpose, but it is obvious that a specialized tool can work better. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0rc`` | ``-linux-64-bit`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DUBStepR.md b/docs/version-specific/supported-software/d/DUBStepR.md new file mode 100644 index 000000000..f8b1784f1 --- /dev/null +++ b/docs/version-specific/supported-software/d/DUBStepR.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DUBStepR + +DUBStepR (Determining the Underlying Basis using Step-wise Regression) is a feature selection algorithm for cell type identification in single-cell RNA-sequencing data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.0`` | ``-R-4.1.2`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/Dakota.md b/docs/version-specific/supported-software/d/Dakota.md new file mode 100644 index 000000000..701433fe4 --- /dev/null +++ b/docs/version-specific/supported-software/d/Dakota.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Dakota + +The Dakota project delivers both state-of-the-art research and robust, usable software for optimization and UQ. Broadly, the Dakota software's advanced parametric analyses enable design exploration, model calibration, risk analysis, and quantification of margins and uncertainty with computational models. + +*homepage*: + +version | toolchain +--------|---------- +``6.16.0`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DaliLite.md b/docs/version-specific/supported-software/d/DaliLite.md new file mode 100644 index 000000000..36a87cd38 --- /dev/null +++ b/docs/version-specific/supported-software/d/DaliLite.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DaliLite + +DaliLite is a light version of the software run by the Dali server. The web server has search and data visualization options which are not included in this package. DaliLite supports data import (import.pl) to convert PDB entries to Dali's internal data format and pairwise comparison (dali.pl) to structurally align a list of query structures to a list of target structures. + +*homepage*: + +version | toolchain +--------|---------- +``4.1`` | ``gompi/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/Dalton.md b/docs/version-specific/supported-software/d/Dalton.md new file mode 100644 index 000000000..a15f9e98c --- /dev/null +++ b/docs/version-specific/supported-software/d/Dalton.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Dalton + +The Dalton code is a powerful tool for a wide range of molecular properties at different levels of theory. Any published work arising from use of one of the Dalton2016 programs must acknowledge that by a proper reference, https://www.daltonprogram.org/www/citation.html. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2016`` | ``-i8`` | ``intel/2017b`` +``2020.0`` | | ``foss/2021a`` +``2020.1`` | | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DeMixT.md b/docs/version-specific/supported-software/d/DeMixT.md new file mode 100644 index 000000000..8b3c8cc09 --- /dev/null +++ b/docs/version-specific/supported-software/d/DeMixT.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DeMixT + +Cell type-specific deconvolution of heterogeneous tumor samples with two or three components using expression data from RNAseq or microarray platforms. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.1`` | ``-R-3.5.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DeconICA.md b/docs/version-specific/supported-software/d/DeconICA.md new file mode 100644 index 000000000..e8f0b8705 --- /dev/null +++ b/docs/version-specific/supported-software/d/DeconICA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DeconICA + +Deconvolution of transcriptome through Immune Component Analysis (DeconICA) is an R package for identifying immune-related signals in transcriptome through deconvolution or unsupervised source separation methods. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.0`` | ``-R-3.5.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DeepLabCut.md b/docs/version-specific/supported-software/d/DeepLabCut.md new file mode 100644 index 000000000..4ba826ec8 --- /dev/null +++ b/docs/version-specific/supported-software/d/DeepLabCut.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# DeepLabCut + +Markerless tracking of user-defined features with deep learning + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.0.6`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``2.2.0.6`` | | ``foss/2021a`` +``2.3.6`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DeepLoc.md b/docs/version-specific/supported-software/d/DeepLoc.md new file mode 100644 index 000000000..d9aa4dbbd --- /dev/null +++ b/docs/version-specific/supported-software/d/DeepLoc.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DeepLoc + +DeepLoc 2.0 predicts the subcellular localization(s) of eukaryotic proteins + +*homepage*: + +version | toolchain +--------|---------- +``2.0`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DeepMod2.md b/docs/version-specific/supported-software/d/DeepMod2.md new file mode 100644 index 000000000..833f8ef01 --- /dev/null +++ b/docs/version-specific/supported-software/d/DeepMod2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DeepMod2 + +DeepMod2 is a computational tool for detecting DNA methylation and modifications from Oxford Nanopore reads. + +*homepage*: + +version | toolchain +--------|---------- +``0.0.1`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DeepSurv.md b/docs/version-specific/supported-software/d/DeepSurv.md new file mode 100644 index 000000000..5095bfd1d --- /dev/null +++ b/docs/version-specific/supported-software/d/DeepSurv.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DeepSurv + +DeepSurv is a deep learning approach to survival analysis. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.0-20180922`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/Delft3D.md b/docs/version-specific/supported-software/d/Delft3D.md new file mode 100644 index 000000000..3905f32f5 --- /dev/null +++ b/docs/version-specific/supported-software/d/Delft3D.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Delft3D + +Simulation of multi-dimensional hydrodynamic flows and transport phenomena, including sediments. Delft3D-FLOW is part of Delft3D 4. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.04.01`` | ``-FLOW`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/Delly.md b/docs/version-specific/supported-software/d/Delly.md new file mode 100644 index 000000000..97a69d8ca --- /dev/null +++ b/docs/version-specific/supported-software/d/Delly.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Delly + +Delly is an integrated structural variant (SV) prediction method that can discover, genotype and visualize deletions, tandem duplications, inversions and translocations at single-nucleotide resolution in short-read massively parallel sequencing data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7.8`` | ``-linux_x86_64`` | ``system`` +``0.8.7`` | | ``gompi/2020b`` +``1.1.5`` | | ``GCC/11.3.0`` +``1.1.6`` | | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DeltaLake.md b/docs/version-specific/supported-software/d/DeltaLake.md new file mode 100644 index 000000000..1549dd4a9 --- /dev/null +++ b/docs/version-specific/supported-software/d/DeltaLake.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DeltaLake + +Native Delta Lake Python binding based on delta-rs with Pandas integration. The Delta Lake project aims to unlock the power of the Deltalake for as many users and projects as possible by providing native low-level APIs aimed at developers and integrators, as well as a high-level operations API that lets you query, inspect, and operate your Delta Lake with ease. + +*homepage*: + +version | toolchain +--------|---------- +``0.15.1`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/Demystify.md b/docs/version-specific/supported-software/d/Demystify.md new file mode 100644 index 000000000..8d4c54055 --- /dev/null +++ b/docs/version-specific/supported-software/d/Demystify.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Demystify + +Demystify is a tool which allows puzzles to be expressed in a high-level constraint programming language and uses MUSes to automatically produce descriptions of steps in the puzzle solving. + +*homepage*: + +version | toolchain +--------|---------- +``0.0.17`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DendroPy.md b/docs/version-specific/supported-software/d/DendroPy.md new file mode 100644 index 000000000..2ff8797cf --- /dev/null +++ b/docs/version-specific/supported-software/d/DendroPy.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# DendroPy + +A Python library for phylogenetics and phylogenetic computing: reading, writing, simulation, processing and manipulation of phylogenetic trees (phylogenies) and characters. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.4.0`` | | ``GCCcore/8.2.0`` +``4.4.0`` | | ``GCCcore/8.3.0`` +``4.4.0`` | | ``GCCcore/9.3.0`` +``4.4.0`` | ``-Python-2.7.15`` | ``intel/2018b`` +``4.4.0`` | | ``intel/2019a`` +``4.5.2`` | ``-Python-2.7.18`` | ``GCCcore/10.2.0`` +``4.5.2`` | | ``GCCcore/10.2.0`` +``4.5.2`` | | ``GCCcore/10.3.0`` +``4.5.2`` | | ``GCCcore/11.2.0`` +``4.5.2`` | | ``GCCcore/11.3.0`` +``4.5.2`` | | ``GCCcore/12.2.0`` +``4.6.1`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DensPart.md b/docs/version-specific/supported-software/d/DensPart.md new file mode 100644 index 000000000..636e950ca --- /dev/null +++ b/docs/version-specific/supported-software/d/DensPart.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DensPart + +Atoms-in-molecules density partitioning schemes based on stockholder recipe + +*homepage*: + +version | toolchain +--------|---------- +``20220603`` | ``intel/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/Deprecated.md b/docs/version-specific/supported-software/d/Deprecated.md new file mode 100644 index 000000000..19f8ca27e --- /dev/null +++ b/docs/version-specific/supported-software/d/Deprecated.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Deprecated + +If you need to mark a function or a method as deprecated, you can use the @deprecated decorator. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.13`` | ``foss/2021a`` +``1.2.13`` | ``foss/2022a`` +``1.2.14`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/Detectron2.md b/docs/version-specific/supported-software/d/Detectron2.md new file mode 100644 index 000000000..61cde4b36 --- /dev/null +++ b/docs/version-specific/supported-software/d/Detectron2.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Detectron2 + +Detectron2 is Facebook AI Research's next generation library that provides state-of-the-art detection and segmentation algorithms. It is the successor of Detectron and maskrcnn-benchmark. It supports a number of computer vision research projects and production applications in Facebook. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.6`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``0.6`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/Devito.md b/docs/version-specific/supported-software/d/Devito.md new file mode 100644 index 000000000..dd35b0d66 --- /dev/null +++ b/docs/version-specific/supported-software/d/Devito.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Devito + +Devito is a domain-specific Language (DSL) and code generation framework for performing optimised Finite Difference (FD) computation from high-level symbolic problem definitions. Devito performs automated code generation and Just-In-time (JIT) compilation based on symbolic equations defined in SymPy to create and execute highly optimised Finite Difference stencil kernels on multiple computer platforms. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.6.1`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DiCE-ML.md b/docs/version-specific/supported-software/d/DiCE-ML.md new file mode 100644 index 000000000..23ca7d430 --- /dev/null +++ b/docs/version-specific/supported-software/d/DiCE-ML.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DiCE-ML + +Diverse Counterfactual Explanations (DiCE) for ML + +*homepage*: + +version | toolchain +--------|---------- +``0.9`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/Dice.md b/docs/version-specific/supported-software/d/Dice.md new file mode 100644 index 000000000..2b1b586f5 --- /dev/null +++ b/docs/version-specific/supported-software/d/Dice.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Dice + +Dice contains code for performing SHCI, VMC, GFMC, DMC, FCIQMC, stochastic MRCI and SC-NEVPT2, and AFQMC calculations with a focus on ab initio systems. + +*homepage*: + +version | toolchain +--------|---------- +``20221025`` | ``foss/2022a`` +``20240101`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DicomBrowser.md b/docs/version-specific/supported-software/d/DicomBrowser.md new file mode 100644 index 000000000..490b4a3be --- /dev/null +++ b/docs/version-specific/supported-software/d/DicomBrowser.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DicomBrowser + +DicomBrowser is an application for inspecting and modifying DICOM metadata in many files at once. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.7.0b5`` | ``-Java-1.7.0_80`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DiffBind.md b/docs/version-specific/supported-software/d/DiffBind.md new file mode 100644 index 000000000..08b6fb7be --- /dev/null +++ b/docs/version-specific/supported-software/d/DiffBind.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DiffBind + +Compute differentially bound sites from multiple ChIP-seq experiments using affinity (quantitative) data. Also enables occupancy (overlap) analysis and plotting functions. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.6.5`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/Diffutils.md b/docs/version-specific/supported-software/d/Diffutils.md new file mode 100644 index 000000000..5f6fc2059 --- /dev/null +++ b/docs/version-specific/supported-software/d/Diffutils.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Diffutils + +Diffutils: GNU diff utilities - find the differences between files + +*homepage*: + +version | toolchain +--------|---------- +``3.3`` | ``GCC/4.8.2`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DistributedStream.md b/docs/version-specific/supported-software/d/DistributedStream.md new file mode 100644 index 000000000..88113aea1 --- /dev/null +++ b/docs/version-specific/supported-software/d/DistributedStream.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DistributedStream + +A MPI distributed stream benchmark, useful to identifying nodes with poor memory performance and characterising memory bandwidth variation over systems. + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``gompi/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DjVuLibre.md b/docs/version-specific/supported-software/d/DjVuLibre.md new file mode 100644 index 000000000..2703755c2 --- /dev/null +++ b/docs/version-specific/supported-software/d/DjVuLibre.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DjVuLibre + +DjVuLibre is an open source (GPL'ed) implementation of DjVu, including viewers, browser plugins, decoders, simple encoders, and utilities. + +*homepage*: + +version | toolchain +--------|---------- +``3.5.28`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/Doris.md b/docs/version-specific/supported-software/d/Doris.md new file mode 100644 index 000000000..e7218359c --- /dev/null +++ b/docs/version-specific/supported-software/d/Doris.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Doris + +Delft object-oriented radar interferometric software + +*homepage*: + +version | toolchain +--------|---------- +``4.02`` | ``intel/2017a`` +``4.04beta4`` | ``foss/2018a`` +``4.04beta4`` | ``intel/2017a`` +``4.06beta2`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DosageConvertor.md b/docs/version-specific/supported-software/d/DosageConvertor.md new file mode 100644 index 000000000..f344a4278 --- /dev/null +++ b/docs/version-specific/supported-software/d/DosageConvertor.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DosageConvertor + +DosageConvertor is a C++ tool to convert dosage files (in VCF format) from Minimac3/4 to other formats such as MaCH or PLINK. Please note that this tool CANNOT handle missing values in the input files and may NOT work for non-Minimac3/4 VCF files. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.4`` | ``GCC/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DoubletFinder.md b/docs/version-specific/supported-software/d/DoubletFinder.md new file mode 100644 index 000000000..2c66a40c1 --- /dev/null +++ b/docs/version-specific/supported-software/d/DoubletFinder.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# DoubletFinder + +R package for detecting doublets in single-cell RNA sequencing data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.3-20230131`` | ``-R-4.2.1`` | ``foss/2022a`` +``2.0.3-20230819`` | ``-R-4.2.2`` | ``foss/2022b`` +``2.0.3`` | ``-R-4.0.0`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/Doxygen.md b/docs/version-specific/supported-software/d/Doxygen.md new file mode 100644 index 000000000..3379d3902 --- /dev/null +++ b/docs/version-specific/supported-software/d/Doxygen.md @@ -0,0 +1,44 @@ +--- +search: + boost: 0.5 +--- +# Doxygen + +Doxygen is a documentation system for C++, C, Java, Objective-C, Python, IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D. + +*homepage*: + +version | toolchain +--------|---------- +``1.11.0`` | ``GCCcore/13.3.0`` +``1.8.10`` | ``GNU/4.9.3-2.25`` +``1.8.10`` | ``intel/2016.02-GCC-4.9`` +``1.8.11`` | ``GCC/4.9.2`` +``1.8.11`` | ``GCCcore/5.4.0`` +``1.8.11`` | ``foss/2016a`` +``1.8.11`` | ``foss/2016b`` +``1.8.11`` | ``intel/2016a`` +``1.8.11`` | ``intel/2016b`` +``1.8.11`` | ``iomkl/2016.07`` +``1.8.11`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``1.8.13`` | ``GCCcore/6.3.0`` +``1.8.13`` | ``GCCcore/6.4.0`` +``1.8.13`` | ``gimkl/2017a`` +``1.8.14`` | ``GCCcore/6.4.0`` +``1.8.14`` | ``GCCcore/7.2.0`` +``1.8.14`` | ``GCCcore/7.3.0`` +``1.8.15`` | ``GCCcore/8.2.0`` +``1.8.16`` | ``GCCcore/8.3.0`` +``1.8.17`` | ``GCCcore/9.3.0`` +``1.8.20`` | ``GCCcore/10.2.0`` +``1.8.9.1`` | ``GCC/4.9.2`` +``1.9.1`` | ``GCCcore/10.3.0`` +``1.9.1`` | ``GCCcore/11.2.0`` +``1.9.4`` | ``GCCcore/11.3.0`` +``1.9.5`` | ``GCCcore/12.2.0`` +``1.9.7`` | ``GCCcore/12.3.0`` +``1.9.8`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/Drake.md b/docs/version-specific/supported-software/d/Drake.md new file mode 100644 index 000000000..5d24bfea0 --- /dev/null +++ b/docs/version-specific/supported-software/d/Drake.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Drake + +Drake is a simple-to-use, extensible, text-based data workflow tool that organizes command execution around data and its dependencies. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.3`` | ``-Java-1.8`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/Dsuite.md b/docs/version-specific/supported-software/d/Dsuite.md new file mode 100644 index 000000000..52724404b --- /dev/null +++ b/docs/version-specific/supported-software/d/Dsuite.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Dsuite + +Fast calculation of the ABBA-BABA statistics across many populations/species + +*homepage*: + +version | toolchain +--------|---------- +``20190713`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``20210718`` | ``GCC/10.3.0`` +``20210718`` | ``intel-compilers/2021.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DualSPHysics.md b/docs/version-specific/supported-software/d/DualSPHysics.md new file mode 100644 index 000000000..81a60d16e --- /dev/null +++ b/docs/version-specific/supported-software/d/DualSPHysics.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# DualSPHysics + +DualSPHysics is based on the Smoothed Particle Hydrodynamics model named SPHysics. The code is developed to study free-surface flow phenomena where Eulerian methods can be difficult to apply, such as waves or impact of dam-breaks on off-shore structures. DualSPHysics is a set of C++, CUDA and Java codes designed to deal with real-life engineering problems. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.0.175`` | ``-CUDA-%(cudaver)s`` | ``GCC/11.2.0`` +``5.0.175`` | | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/DyMat.md b/docs/version-specific/supported-software/d/DyMat.md new file mode 100644 index 000000000..b133baca2 --- /dev/null +++ b/docs/version-specific/supported-software/d/DyMat.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# DyMat + +Read and process result files from Dymola and OpenModelica with Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7`` | ``-2020-12-12`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dRep.md b/docs/version-specific/supported-software/d/dRep.md new file mode 100644 index 000000000..964e32f9d --- /dev/null +++ b/docs/version-specific/supported-software/d/dRep.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# dRep + +dRep is a python program which performs rapid pair-wise comparison of genome sets. One of it’s major purposes is for genome de-replication, but it can do a lot more. + +*homepage*: + +version | toolchain +--------|---------- +``3.0.0`` | ``foss/2021a`` +``3.4.2`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dSFMT.md b/docs/version-specific/supported-software/d/dSFMT.md new file mode 100644 index 000000000..0ebc7de07 --- /dev/null +++ b/docs/version-specific/supported-software/d/dSFMT.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# dSFMT + +Double precision SIMD-oriented Fast Mersenne Twister. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.5`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dadi.md b/docs/version-specific/supported-software/d/dadi.md new file mode 100644 index 000000000..4f8de69e2 --- /dev/null +++ b/docs/version-specific/supported-software/d/dadi.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# dadi + +∂a∂i implements methods for demographic history and selection inference from genetic data, based on diffusion approximations to the allele frequency spectrum. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.7.0`` | ``-Python-2.7.12`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dagitty.md b/docs/version-specific/supported-software/d/dagitty.md new file mode 100644 index 000000000..4881f6383 --- /dev/null +++ b/docs/version-specific/supported-software/d/dagitty.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# dagitty + +A port of the web-based software 'DAGitty', available at , for analyzing structural causal models (also known as directed acyclic graphs or DAGs). This package computes covariate adjustment sets for estimating causal effects, enumerates instrumental variables, derives testable implications (d-separation and vanishing tetrads), generates equivalent models, and includes a simple facility for data simulation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2-2`` | ``-R-3.5.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/damageproto.md b/docs/version-specific/supported-software/d/damageproto.md new file mode 100644 index 000000000..13330c71a --- /dev/null +++ b/docs/version-specific/supported-software/d/damageproto.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# damageproto + +X protocol and ancillary headers for xinerama + +*homepage*: + +version | toolchain +--------|---------- +``1.2.1`` | ``foss/2016a`` +``1.2.1`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dammit.md b/docs/version-specific/supported-software/d/dammit.md new file mode 100644 index 000000000..b8fd17eb5 --- /dev/null +++ b/docs/version-specific/supported-software/d/dammit.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# dammit + +dammit is a simple de novo transcriptome annotator. It was born out of the observations that annotation is mundane and annoying, all the individual pieces of the process exist already, and the existing solutions are overly complicated or rely on crappy non-free software. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.2`` | ``-Python-2.7.13`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dask-labextension.md b/docs/version-specific/supported-software/d/dask-labextension.md new file mode 100644 index 000000000..d59afc7d7 --- /dev/null +++ b/docs/version-specific/supported-software/d/dask-labextension.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# dask-labextension + +This package provides a JupyterLab extension to manage Dask clusters, as well as embed Dask's dashboard plots directly into JupyterLab panes. + +*homepage*: + +version | toolchain +--------|---------- +``6.0.0`` | ``foss/2022a`` +``7.0.0`` | ``foss/2023a`` +``7.0.0`` | ``gfbf/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dask.md b/docs/version-specific/supported-software/d/dask.md new file mode 100644 index 000000000..729e376e0 --- /dev/null +++ b/docs/version-specific/supported-software/d/dask.md @@ -0,0 +1,56 @@ +--- +search: + boost: 0.5 +--- +# dask + +Dask provides multi-core execution on larger-than-memory datasets using blocked algorithms and task scheduling. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.11.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``0.11.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.11.0`` | ``-Python-3.5.2`` | ``intel/2016b`` +``0.12.0`` | ``-Python-3.5.2`` | ``foss/2016b`` +``0.12.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.12.0`` | ``-Python-3.5.2`` | ``intel/2016b`` +``0.16.0`` | ``-Python-2.7.14`` | ``foss/2017b`` +``0.16.0`` | ``-Python-3.6.3`` | ``foss/2017b`` +``0.16.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.16.0`` | ``-Python-3.6.3`` | ``intel/2017b`` +``0.17.0`` | ``-Python-2.7.13`` | ``foss/2017a`` +``0.17.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``0.17.0`` | ``-Python-3.6.1`` | ``intel/2017a`` +``0.17.2`` | ``-Python-3.6.4`` | ``foss/2018a`` +``0.17.2`` | ``-Python-3.6.4`` | ``intel/2018a`` +``0.19.4`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.19.4`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``0.19.4`` | ``-Python-3.6.6`` | ``intel/2018b`` +``0.8.2`` | ``-Python-2.7.11`` | ``intel/2016a`` +``0.8.2`` | ``-Python-3.5.1`` | ``intel/2016a`` +``1.0.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.0.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``1.1.4`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``2.18.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2.18.1`` | ``-Python-3.8.2`` | ``intel/2020a`` +``2.3.0`` | ``-Python-3.7.2`` | ``foss/2019a`` +``2.8.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.8.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``2.8.0`` | ``-Python-3.7.4`` | ``intel/2019b`` +``2021.2.0`` | | ``foss/2020b`` +``2021.2.0`` | | ``fosscuda/2020b`` +``2021.2.0`` | | ``intel/2020b`` +``2021.2.0`` | | ``intelcuda/2020b`` +``2021.9.1`` | | ``foss/2021a`` +``2022.1.0`` | | ``foss/2021b`` +``2022.10.0`` | | ``foss/2022a`` +``2023.12.1`` | | ``foss/2023a`` +``2023.7.1`` | | ``foss/2022b`` +``2023.9.2`` | | ``foss/2023a`` +``2024.5.1`` | | ``gfbf/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/datalad.md b/docs/version-specific/supported-software/d/datalad.md new file mode 100644 index 000000000..6ece7b30b --- /dev/null +++ b/docs/version-specific/supported-software/d/datalad.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# datalad + +DataLad is a free and open source distributed data management system that keeps track of your data, creates structure, ensures reproducibility, supports collaboration, and integrates with widely used data infrastructure. + +*homepage*: + +version | toolchain +--------|---------- +``0.18.4`` | ``GCCcore/12.2.0`` +``0.19.5`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/datamash.md b/docs/version-specific/supported-software/d/datamash.md new file mode 100644 index 000000000..4c6ef594f --- /dev/null +++ b/docs/version-specific/supported-software/d/datamash.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# datamash + +GNU datamash performs basic numeric, textual and statistical operations on input data files + +*homepage*: + +version | toolchain +--------|---------- +``1.3`` | ``foss/2018a`` +``1.5`` | ``GCCcore/10.2.0`` +``1.5`` | ``GCCcore/7.3.0`` +``1.5`` | ``GCCcore/8.3.0`` +``1.8`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/davix.md b/docs/version-specific/supported-software/d/davix.md new file mode 100644 index 000000000..ba298a1f6 --- /dev/null +++ b/docs/version-specific/supported-software/d/davix.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# davix + +The davix project aims to make file management over HTTP-based protocols simple. The focus is on high-performance remote I/O and data management of large collections of files. Currently, there is support for the WebDav (link is external), Amazon S3 (link is external), Microsoft Azure (link is external), and HTTP (link is external) protocols. + +*homepage*: + +version | toolchain +--------|---------- +``0.6.6`` | ``intel/2017a`` +``0.7.5`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dbus-glib.md b/docs/version-specific/supported-software/d/dbus-glib.md new file mode 100644 index 000000000..13d75c84f --- /dev/null +++ b/docs/version-specific/supported-software/d/dbus-glib.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# dbus-glib + +D-Bus is a message bus system, a simple way for applications to talk to one another. + +*homepage*: + +version | toolchain +--------|---------- +``0.106`` | ``foss/2016a`` +``0.106`` | ``intel/2016a`` +``0.108`` | ``intel/2016b`` +``0.108`` | ``intel/2017a`` +``0.110`` | ``GCCcore/7.3.0`` +``0.110`` | ``GCCcore/8.2.0`` +``0.110`` | ``GCCcore/8.3.0`` +``0.110`` | ``intel/2017b`` +``0.112`` | ``GCCcore/10.3.0`` +``0.112`` | ``GCCcore/11.2.0`` +``0.112`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dclone.md b/docs/version-specific/supported-software/d/dclone.md new file mode 100644 index 000000000..39ed9674d --- /dev/null +++ b/docs/version-specific/supported-software/d/dclone.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# dclone + +Low level functions for implementing maximum likelihood estimating procedures for complex models using data cloning and Bayesian Markov chain Monte Carlo methods + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.3-0`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dcm2niix.md b/docs/version-specific/supported-software/d/dcm2niix.md new file mode 100644 index 000000000..2ab2dfdad --- /dev/null +++ b/docs/version-specific/supported-software/d/dcm2niix.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# dcm2niix + +dcm2niix is a designed program to convert neuroimaging data from the DICOM format to the NIfTI format. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.20180622`` | ``GCCcore/6.4.0`` +``1.0.20180622`` | ``GCCcore/7.3.0`` +``1.0.20190902`` | ``GCCcore/7.3.0`` +``1.0.20190902`` | ``GCCcore/8.2.0`` +``1.0.20200331`` | ``GCCcore/8.3.0`` +``1.0.20201102`` | ``GCCcore/8.3.0`` +``1.0.20211006`` | ``GCCcore/10.3.0`` +``1.0.20220720`` | ``GCCcore/11.3.0`` +``1.0.20230411`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dd.md b/docs/version-specific/supported-software/d/dd.md new file mode 100644 index 000000000..b3a3723b3 --- /dev/null +++ b/docs/version-specific/supported-software/d/dd.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# dd + +dd is a package for working with binary decision diagrams that includes both a pure Python implementation and Cython bindings to C libraries (CUDD, Sylvan, BuDDy). The Python and Cython modules implement the same API, so the same user code runs with both. All the standard operations on BDDs are available, including dynamic variable reordering using sifting, garbage collection, dump/load from files, plotting, and a parser of quantified Boolean expressions. This module includes bindings for: CUDD v3.0.0, Sylvan v1.0.0 + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.5.6`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/deal.II.md b/docs/version-specific/supported-software/d/deal.II.md new file mode 100644 index 000000000..f8660de85 --- /dev/null +++ b/docs/version-specific/supported-software/d/deal.II.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# deal.II + +deal.II is a C++ program library targeted at the computational solution of partial differential equations using adaptive finite elements. + +*homepage*: + +version | toolchain +--------|---------- +``9.1.1`` | ``foss/2019a`` +``9.1.1`` | ``intel/2019a`` +``9.3.3`` | ``foss/2021a`` +``9.5.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/deap.md b/docs/version-specific/supported-software/d/deap.md new file mode 100644 index 000000000..60c5d52b0 --- /dev/null +++ b/docs/version-specific/supported-software/d/deap.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# deap + +DEAP is a novel evolutionary computation framework for rapid prototyping and testing of ideas. It seeks to make algorithms explicit and data structures transparent. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.9.2`` | ``-Python-2.7.12`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/decona.md b/docs/version-specific/supported-software/d/decona.md new file mode 100644 index 000000000..2bb1792da --- /dev/null +++ b/docs/version-specific/supported-software/d/decona.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# decona + +fastq to polished sequenses: pipeline suitable for mixed samples and long (Nanopore) reads + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.2`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/deconf.md b/docs/version-specific/supported-software/d/deconf.md new file mode 100644 index 000000000..54a094eed --- /dev/null +++ b/docs/version-specific/supported-software/d/deconf.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# deconf + +decomposition (deconfounding) of OMICS datasets in heterogeneous tissues + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.1`` | ``-R-3.5.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/deepTools.md b/docs/version-specific/supported-software/d/deepTools.md new file mode 100644 index 000000000..632b314b9 --- /dev/null +++ b/docs/version-specific/supported-software/d/deepTools.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# deepTools + +deepTools is a suite of python tools particularly developed for the efficient analysis of high-throughput sequencing data, such as ChIP-seq, RNA-seq or MNase-seq. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.5.4`` | ``-Python-3.6.3`` | ``intel/2017b`` +``3.3.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``3.3.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``3.3.1`` | ``-Python-3.7.4`` | ``intel/2019b`` +``3.5.0`` | | ``foss/2021a`` +``3.5.1`` | | ``foss/2021b`` +``3.5.2`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/deepdiff.md b/docs/version-specific/supported-software/d/deepdiff.md new file mode 100644 index 000000000..17415efe8 --- /dev/null +++ b/docs/version-specific/supported-software/d/deepdiff.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# deepdiff + +DeepDiff: Deep Difference of dictionaries, iterables and almost any other object recursively. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.3.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``3.3.0`` | ``-Python-2.7.15`` | ``intel/2018b`` +``3.3.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``4.0.6`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` +``5.0.2`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``5.7.0`` | | ``GCCcore/11.2.0`` +``5.8.1`` | | ``GCCcore/11.3.0`` +``6.7.1`` | | ``GCCcore/12.2.0`` +``6.7.1`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/deepfold.md b/docs/version-specific/supported-software/d/deepfold.md new file mode 100644 index 000000000..5fe0ef097 --- /dev/null +++ b/docs/version-specific/supported-software/d/deepfold.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# deepfold + +This package provides an implementation of DeepFold, a trainable, Transformer-based deep protein folding model. We modified the open-source code of DeepMind AlphaFold v2.0 and Uni-Fold-jax. Pretrained models can be found in environment variable $DEEPFOLD_PARAMETERS + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20240308`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/deepmedic.md b/docs/version-specific/supported-software/d/deepmedic.md new file mode 100644 index 000000000..56305c133 --- /dev/null +++ b/docs/version-specific/supported-software/d/deepmedic.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# deepmedic + +Efficient Multi-Scale 3D Convolutional Neural Network for Segmentation of 3D Medical Scans. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8.2`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``0.8.2`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/denseweight.md b/docs/version-specific/supported-software/d/denseweight.md new file mode 100644 index 000000000..1298ef6cd --- /dev/null +++ b/docs/version-specific/supported-software/d/denseweight.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# denseweight + +This package implements the method for imbalanced regression DenseWeight. The corresponding paper "Density-based weighting for imbalanced regression". The goal of DenseWeight is to allow training machine learning models for regression tasks that emphasize performance for data points with rare target values in comparison to data points with more common target values. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.2`` | ``foss/2022a`` +``0.1.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/desktop-file-utils.md b/docs/version-specific/supported-software/d/desktop-file-utils.md new file mode 100644 index 000000000..4f0aa5d32 --- /dev/null +++ b/docs/version-specific/supported-software/d/desktop-file-utils.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# desktop-file-utils + +desktop-file-utils contains a few command line utilities for working with desktop entries: * desktop-file-validate: validates a desktop file and prints warnings/errors about desktop entry specification violations. * desktop-file-install: installs a desktop file to the applications directory, optionally munging it a bit in transit. * update-desktop-database: updates the database containing a cache of MIME types handled by desktop files. It requires GLib to compile, because the implementation requires Unicode utilities and such. + +*homepage*: + +version | toolchain +--------|---------- +``0.27`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/destiny.md b/docs/version-specific/supported-software/d/destiny.md new file mode 100644 index 000000000..7075b60aa --- /dev/null +++ b/docs/version-specific/supported-software/d/destiny.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# destiny + +R packages to create and plot diffusion maps. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.5.6`` | ``-R-3.4.0`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/devbio-napari.md b/docs/version-specific/supported-software/d/devbio-napari.md new file mode 100644 index 000000000..5d6015a34 --- /dev/null +++ b/docs/version-specific/supported-software/d/devbio-napari.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# devbio-napari + +A bundle of napari plugins useful for 3D+t image processing and analysis for studying developmental biology. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.10.1`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dftd3-lib.md b/docs/version-specific/supported-software/d/dftd3-lib.md new file mode 100644 index 000000000..792cf4390 --- /dev/null +++ b/docs/version-specific/supported-software/d/dftd3-lib.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# dftd3-lib + +This is a repackaged version of the DFTD3 program by S. Grimme and his coworkers. The original program (V3.1 Rev 1) was downloaded at 2016-04-03. It has been converted to free format and encapsulated into modules. + +*homepage*: + +version | toolchain +--------|---------- +``0.9`` | ``GCC/8.3.0`` +``0.9`` | ``intel-compilers/2021.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dftd4.md b/docs/version-specific/supported-software/d/dftd4.md new file mode 100644 index 000000000..d5b0fbcb5 --- /dev/null +++ b/docs/version-specific/supported-software/d/dftd4.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# dftd4 + +Generally Applicable Atomic-Charge Dependent London Dispersion Correction. + +*homepage*: + +version | toolchain +--------|---------- +``3.4.0`` | ``gfbf/2022b`` +``3.4.0`` | ``iimkl/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dialog.md b/docs/version-specific/supported-software/d/dialog.md new file mode 100644 index 000000000..874e5d8eb --- /dev/null +++ b/docs/version-specific/supported-software/d/dialog.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# dialog + +A utility for creating TTY dialog boxes + +*homepage*: + +version | toolchain +--------|---------- +``1.3-20231002`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dicom2nifti.md b/docs/version-specific/supported-software/d/dicom2nifti.md new file mode 100644 index 000000000..c99a5632e --- /dev/null +++ b/docs/version-specific/supported-software/d/dicom2nifti.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# dicom2nifti + +Python library for converting dicom files to nifti + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.12`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2.3.0`` | | ``foss/2020b`` +``2.3.0`` | | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dijitso.md b/docs/version-specific/supported-software/d/dijitso.md new file mode 100644 index 000000000..f427e1c16 --- /dev/null +++ b/docs/version-specific/supported-software/d/dijitso.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# dijitso + +dijitso is a Python module for distributed just-in-time shared library building. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2019.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dill.md b/docs/version-specific/supported-software/d/dill.md new file mode 100644 index 000000000..e339da528 --- /dev/null +++ b/docs/version-specific/supported-software/d/dill.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# dill + +dill extends python's pickle module for serializing and de-serializing python objects to the majority of the built-in python types. Serialization is the process of converting an object to a byte stream, and the inverse of which is converting a byte stream back to on python object hierarchy. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.0`` | ``GCCcore/8.2.0`` +``0.3.3`` | ``GCCcore/10.2.0`` +``0.3.3`` | ``GCCcore/8.3.0`` +``0.3.4`` | ``GCCcore/10.3.0`` +``0.3.4`` | ``GCCcore/11.2.0`` +``0.3.6`` | ``GCCcore/11.3.0`` +``0.3.7`` | ``GCCcore/12.2.0`` +``0.3.7`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/distributed.md b/docs/version-specific/supported-software/d/distributed.md new file mode 100644 index 000000000..1cdf73a37 --- /dev/null +++ b/docs/version-specific/supported-software/d/distributed.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# distributed + +Dask.distributed is a lightweight library for distributed computing in Python. It extends both the concurrent.futures and dask APIs to moderate sized clusters. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.14.3`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.14.3`` | ``-Python-3.5.2`` | ``intel/2016b`` +``1.21.6`` | ``-Python-3.6.4`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dlb.md b/docs/version-specific/supported-software/d/dlb.md new file mode 100644 index 000000000..2c14567b9 --- /dev/null +++ b/docs/version-specific/supported-software/d/dlb.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# dlb + +DLB is a dynamic library designed to speed up HPC hybrid applications (i.e., two levels of parallelism) by improving the load balance of the outer level of parallelism (e.g., MPI) by dynamically redistributing the computational resources at the inner level of parallelism (e.g., OpenMP). at run time. + +*homepage*: + +version | toolchain +--------|---------- +``3.2`` | ``gompi/2022a`` +``3.2`` | ``iimpi/2022a`` +``3.3.1`` | ``gompi/2022a`` +``3.3.1`` | ``iimpi/2022a`` +``3.4`` | ``gompi/2023b`` +``3.4`` | ``iimpi/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dlib.md b/docs/version-specific/supported-software/d/dlib.md new file mode 100644 index 000000000..c27f9108f --- /dev/null +++ b/docs/version-specific/supported-software/d/dlib.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# dlib + +Dlib is a modern C++ toolkit containing machine learning algorithms and tools for creating complex software in C++ to solve real world problems. It is used in both industry and academia in a wide range of domains including robotics, embedded devices, mobile phones, and large high performance computing environments. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``19.22`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``19.22`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dm-haiku.md b/docs/version-specific/supported-software/d/dm-haiku.md new file mode 100644 index 000000000..e5eb23a69 --- /dev/null +++ b/docs/version-specific/supported-software/d/dm-haiku.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# dm-haiku + +Haiku is a simple neural network library for JAX developed by some of the authors of Sonnet, a neural network library for TensorFlow. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.0.9`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``0.0.9`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.0.9`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dm-reverb.md b/docs/version-specific/supported-software/d/dm-reverb.md new file mode 100644 index 000000000..4b419a0cb --- /dev/null +++ b/docs/version-specific/supported-software/d/dm-reverb.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# dm-reverb + +Reverb is an efficient and easy-to-use data storage and transport system designed for machine learning research. Reverb is primarily used as an experience replay system for distributed reinforcement learning algorithms but the system also supports multiple data structure representations such as FIFO, LIFO, and priority queues. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.0`` | ``foss/2020b`` +``0.7.0`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dm-tree.md b/docs/version-specific/supported-software/d/dm-tree.md new file mode 100644 index 000000000..15f25baa5 --- /dev/null +++ b/docs/version-specific/supported-software/d/dm-tree.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# dm-tree + +dm-tree provides tree, a library for working with nested data structures. In a way, tree generalizes the builtin map function which only supports flat sequences, and allows to apply a function to each "leaf" preserving the overall structure. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.1`` | ``GCCcore/8.3.0`` +``0.1.5`` | ``GCCcore/10.2.0`` +``0.1.6`` | ``GCCcore/10.3.0`` +``0.1.6`` | ``GCCcore/11.2.0`` +``0.1.8`` | ``GCCcore/11.3.0`` +``0.1.8`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dominate.md b/docs/version-specific/supported-software/d/dominate.md new file mode 100644 index 000000000..5679a3d20 --- /dev/null +++ b/docs/version-specific/supported-software/d/dominate.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# dominate + +Dominate is a Python library for creating and manipulating HTML documents using an elegant DOM API. It allows you to write HTML pages in pure Python very concisely, which eliminates the need to learn another template language, and lets you take advantage of the more powerful features of Python. + +*homepage*: + +version | toolchain +--------|---------- +``2.8.0`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dorado.md b/docs/version-specific/supported-software/d/dorado.md new file mode 100644 index 000000000..f3d3d8093 --- /dev/null +++ b/docs/version-specific/supported-software/d/dorado.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# dorado + +Dorado is a high-performance, easy-to-use, open source basecaller for Oxford Nanopore reads. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.3.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.3.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.5.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.5.3`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dotNET-Core-Runtime.md b/docs/version-specific/supported-software/d/dotNET-Core-Runtime.md new file mode 100644 index 000000000..4701e063a --- /dev/null +++ b/docs/version-specific/supported-software/d/dotNET-Core-Runtime.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# dotNET-Core-Runtime + +.NET is a free, cross-platform, open source developer platform for building many different types of applications. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.7`` | ``GCCcore/6.4.0`` +``5.0.17`` | ``GCCcore/10.3.0`` +``6.0.1`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dotNET-Core.md b/docs/version-specific/supported-software/d/dotNET-Core.md new file mode 100644 index 000000000..9c7a7de01 --- /dev/null +++ b/docs/version-specific/supported-software/d/dotNET-Core.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# dotNET-Core + +.NET is a free, cross-platform, open source developer platform for building many different types of applications. With .NET, you can use multiple languages, editors, and libraries to build for web, mobile, desktop, gaming, and IoT. Contains the SDK and the Runtime. + +*homepage*: + +version | toolchain +--------|---------- +``6.0.420`` | ``system`` +``6.0`` | ``system`` +``8.0.203`` | ``system`` +``8.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dotNET-SDK.md b/docs/version-specific/supported-software/d/dotNET-SDK.md new file mode 100644 index 000000000..a3eb92bba --- /dev/null +++ b/docs/version-specific/supported-software/d/dotNET-SDK.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# dotNET-SDK + +.NET is a free, cross-platform, open source developer platform for building many different types of applications. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.1.300`` | ``-linux-x64`` | ``system`` +``6.0.101`` | ``-linux-x64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/double-conversion.md b/docs/version-specific/supported-software/d/double-conversion.md new file mode 100644 index 000000000..0b53524f1 --- /dev/null +++ b/docs/version-specific/supported-software/d/double-conversion.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# double-conversion + +Efficient binary-decimal and decimal-binary conversion routines for IEEE doubles. + +*homepage*: + +version | toolchain +--------|---------- +``3.0.3`` | ``foss/2018a`` +``3.1.4`` | ``GCCcore/8.2.0`` +``3.1.4`` | ``GCCcore/8.3.0`` +``3.1.5`` | ``GCCcore/10.2.0`` +``3.1.5`` | ``GCCcore/10.3.0`` +``3.1.5`` | ``GCCcore/11.2.0`` +``3.1.5`` | ``GCCcore/9.3.0`` +``3.2.0`` | ``GCCcore/11.3.0`` +``3.2.1`` | ``GCCcore/12.2.0`` +``3.3.0`` | ``GCCcore/12.3.0`` +``3.3.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/drmaa-python.md b/docs/version-specific/supported-software/d/drmaa-python.md new file mode 100644 index 000000000..2fa8d7b9b --- /dev/null +++ b/docs/version-specific/supported-software/d/drmaa-python.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# drmaa-python + +Distributed Resource Management Application API (DRMAA) bindings for Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7.9`` | ``-slurm`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dropEst.md b/docs/version-specific/supported-software/d/dropEst.md new file mode 100644 index 000000000..a8ecb6778 --- /dev/null +++ b/docs/version-specific/supported-software/d/dropEst.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# dropEst + +Pipeline for initial analysis of droplet-based single-cell RNA-seq data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7.1`` | ``-R-3.4.3`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dtcmp.md b/docs/version-specific/supported-software/d/dtcmp.md new file mode 100644 index 000000000..06439934c --- /dev/null +++ b/docs/version-specific/supported-software/d/dtcmp.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# dtcmp + +Datatype Compare (DTCMP) Library for sorting and ranking distributed data using MPI + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``gompi/2019a`` +``1.1.0`` | ``gompi/2020a`` +``1.1.0`` | ``iimpi/2019a`` +``1.1.0`` | ``iimpi/2020a`` +``1.1.2`` | ``gompi/2020b`` +``1.1.4`` | ``gompi/2022a`` +``1.1.4`` | ``gompi/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dtcwt.md b/docs/version-specific/supported-software/d/dtcwt.md new file mode 100644 index 000000000..b2eae35ce --- /dev/null +++ b/docs/version-specific/supported-software/d/dtcwt.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# dtcwt + +Dual-Tree Complex Wavelet Transform library for Python + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.12.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``0.12.0`` | ``-Python-3.7.4`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dune-core.md b/docs/version-specific/supported-software/d/dune-core.md new file mode 100644 index 000000000..a642290c6 --- /dev/null +++ b/docs/version-specific/supported-software/d/dune-core.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# dune-core + +The Dune core modules build the stable basis of Dune. They follow a consistent release cycle and have high requirements regarding stability and backwards compatibility. These modules build the foundation for higher-level components. + +*homepage*: + +version | toolchain +--------|---------- +``2.8.0.post1`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dune-fem.md b/docs/version-specific/supported-software/d/dune-fem.md new file mode 100644 index 000000000..055a54ae4 --- /dev/null +++ b/docs/version-specific/supported-software/d/dune-fem.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# dune-fem + +DUNE-FEM is a discretization module based on DUNE containing all the building blocks required to implement efficient solvers for a wide range of (systems of non linear) partial differential equations. DUNE-FEM can also be used through an extensive Python interface which brings all components of DUNE-FEM and the DUNE core modules to Python. + +*homepage*: + +version | toolchain +--------|---------- +``2.8.0.6`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/duplex-tools.md b/docs/version-specific/supported-software/d/duplex-tools.md new file mode 100644 index 000000000..e3083eee9 --- /dev/null +++ b/docs/version-specific/supported-software/d/duplex-tools.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# duplex-tools + +Duplex Tools contains a set of utilities for dealing with Duplex sequencing data. Tools are provided to identify and prepare duplex pairs for basecalling by Dorado (recommended) and Guppy, and for recovering simplex basecalls from incorrectly concatenated pairs. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.1`` | ``foss/2022a`` +``0.3.3`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dx-toolkit.md b/docs/version-specific/supported-software/d/dx-toolkit.md new file mode 100644 index 000000000..948429c36 --- /dev/null +++ b/docs/version-specific/supported-software/d/dx-toolkit.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# dx-toolkit + +The DNAnexus Platform SDK - also called dx-toolkit - includes the dx command-line client; tools for building and debugging apps; utilities for working with DNA data on the DNAnexus Platform; and Python, Java, C++ and R bindings for working on the DNAnexus Platform. + +*homepage*: + +version | toolchain +--------|---------- +``0.350.1`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dxpy.md b/docs/version-specific/supported-software/d/dxpy.md new file mode 100644 index 000000000..63488287f --- /dev/null +++ b/docs/version-specific/supported-software/d/dxpy.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# dxpy + +DNAnexus Platform API bindings for Python + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.266.1`` | ``-Python-2.7.14`` | ``intel/2018a`` +``0.345.0`` | | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/dynesty.md b/docs/version-specific/supported-software/d/dynesty.md new file mode 100644 index 000000000..86b42c6d0 --- /dev/null +++ b/docs/version-specific/supported-software/d/dynesty.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# dynesty + +dynesty is a Pure Python, MIT-licensed Dynamic Nested Sampling package for estimating Bayesian posteriors and evidences. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.3`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/d/index.md b/docs/version-specific/supported-software/d/index.md new file mode 100644 index 000000000..2131aaeeb --- /dev/null +++ b/docs/version-specific/supported-software/d/index.md @@ -0,0 +1,137 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (d) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - *d* - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [dadi](dadi.md) + * [dagitty](dagitty.md) + * [Dakota](Dakota.md) + * [DALI](DALI.md) + * [DaliLite](DaliLite.md) + * [Dalton](Dalton.md) + * [damageproto](damageproto.md) + * [dammit](dammit.md) + * [DANPOS2](DANPOS2.md) + * [DAS_Tool](DAS_Tool.md) + * [dask](dask.md) + * [dask-labextension](dask-labextension.md) + * [datalad](datalad.md) + * [datamash](datamash.md) + * [davix](davix.md) + * [DB](DB.md) + * [DB_File](DB_File.md) + * [DBCSR](DBCSR.md) + * [DBD-mysql](DBD-mysql.md) + * [DBG2OLC](DBG2OLC.md) + * [DBus](DBus.md) + * [dbus-glib](dbus-glib.md) + * [dclone](dclone.md) + * [dcm2niix](dcm2niix.md) + * [DCMTK](DCMTK.md) + * [dd](dd.md) + * [deal.II](deal.II.md) + * [deap](deap.md) + * [decona](decona.md) + * [deconf](deconf.md) + * [DeconICA](DeconICA.md) + * [deepdiff](deepdiff.md) + * [deepfold](deepfold.md) + * [DeepLabCut](DeepLabCut.md) + * [DeepLoc](DeepLoc.md) + * [deepmedic](deepmedic.md) + * [DeepMod2](DeepMod2.md) + * [DeepSurv](DeepSurv.md) + * [deepTools](deepTools.md) + * [DEICODE](DEICODE.md) + * [Delft3D](Delft3D.md) + * [Delly](Delly.md) + * [DeltaLake](DeltaLake.md) + * [DeMixT](DeMixT.md) + * [Demystify](Demystify.md) + * [DendroPy](DendroPy.md) + * [denseweight](denseweight.md) + * [DensPart](DensPart.md) + * [Deprecated](Deprecated.md) + * [desktop-file-utils](desktop-file-utils.md) + * [destiny](destiny.md) + * [Detectron2](Detectron2.md) + * [DETONATE](DETONATE.md) + * [devbio-napari](devbio-napari.md) + * [Devito](Devito.md) + * [DFA](DFA.md) + * [DFT-D3](DFT-D3.md) + * [DFT-D4](DFT-D4.md) + * [DFTB+](DFTB+.md) + * [dftd3-lib](dftd3-lib.md) + * [dftd4](dftd4.md) + * [DGL](DGL.md) + * [DIA-NN](DIA-NN.md) + * [DIAL](DIAL.md) + * [dialog](dialog.md) + * [DIALOGUE](DIALOGUE.md) + * [DIAMOND](DIAMOND.md) + * [Dice](Dice.md) + * [DiCE-ML](DiCE-ML.md) + * [dicom2nifti](dicom2nifti.md) + * [DicomBrowser](DicomBrowser.md) + * [DiffBind](DiffBind.md) + * [Diffutils](Diffutils.md) + * [dijitso](dijitso.md) + * [dill](dill.md) + * [DIRAC](DIRAC.md) + * [distributed](distributed.md) + * [DistributedStream](DistributedStream.md) + * [DjVuLibre](DjVuLibre.md) + * [DL_POLY_4](DL_POLY_4.md) + * [DL_POLY_Classic](DL_POLY_Classic.md) + * [dlb](dlb.md) + * [dlib](dlib.md) + * [DLPack](DLPack.md) + * [dm-haiku](dm-haiku.md) + * [dm-reverb](dm-reverb.md) + * [dm-tree](dm-tree.md) + * [DMCfun](DMCfun.md) + * [DMLC-Core](DMLC-Core.md) + * [DMTCP](DMTCP.md) + * [DOLFIN](DOLFIN.md) + * [dominate](dominate.md) + * [dorado](dorado.md) + * [Doris](Doris.md) + * [DosageConvertor](DosageConvertor.md) + * [dotNET-Core](dotNET-Core.md) + * [dotNET-Core-Runtime](dotNET-Core-Runtime.md) + * [dotNET-SDK](dotNET-SDK.md) + * [double-conversion](double-conversion.md) + * [DoubletFinder](DoubletFinder.md) + * [Doxygen](Doxygen.md) + * [DP3](DP3.md) + * [DRAGMAP](DRAGMAP.md) + * [Drake](Drake.md) + * [dRep](dRep.md) + * [drmaa-python](drmaa-python.md) + * [DROP](DROP.md) + * [dropEst](dropEst.md) + * [DSA](DSA.md) + * [dSFMT](dSFMT.md) + * [DSRC](DSRC.md) + * [Dsuite](Dsuite.md) + * [dtcmp](dtcmp.md) + * [dtcwt](dtcwt.md) + * [DualSPHysics](DualSPHysics.md) + * [DUBStepR](DUBStepR.md) + * [dune-core](dune-core.md) + * [dune-fem](dune-fem.md) + * [duplex-tools](duplex-tools.md) + * [dx-toolkit](dx-toolkit.md) + * [dxpy](dxpy.md) + * [DyMat](DyMat.md) + * [dynesty](dynesty.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - *d* - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/E-ANTIC.md b/docs/version-specific/supported-software/e/E-ANTIC.md new file mode 100644 index 000000000..beaaf5526 --- /dev/null +++ b/docs/version-specific/supported-software/e/E-ANTIC.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# E-ANTIC + +E-ANTIC is a C/C++ library to deal with real embedded number fields built on top of ANTIC (https://github.com/wbhart/antic). Its aim is to have as fast as possible exact arithmetic operations and comparisons. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.2`` | ``GCC/8.2.0-2.31.1`` +``0.1.5`` | ``GCC/8.3.0`` +``1.3.0`` | ``gfbf/2022a`` +``2.0.2`` | ``gfbf/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ECL.md b/docs/version-specific/supported-software/e/ECL.md new file mode 100644 index 000000000..7c48a9ae9 --- /dev/null +++ b/docs/version-specific/supported-software/e/ECL.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ECL + +ECL (Embeddable Common-Lisp) is an interpreter of the Common-Lisp language as described in the X3J13 Ansi specification, featuring CLOS (Common-Lisp Object System), conditions, loops, etc, plus a translator to C, which can produce standalone executables. + +*homepage*: + +version | toolchain +--------|---------- +``23.9.9`` | ``GCCcore/11.3.0`` +``24.5.10`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ED2.md b/docs/version-specific/supported-software/e/ED2.md new file mode 100644 index 000000000..2af91262c --- /dev/null +++ b/docs/version-specific/supported-software/e/ED2.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ED2 + +The Ecosystem Demography Biosphere Model (ED2) is an integrated terrestrial biosphere model incorporating hydrology, land-surface biophysics, vegetation dynamics, and soil carbon and nitrogen biogeochemistry + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20170201`` | ``-serial`` | ``intel/2017a`` +``20170201`` | | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/EDirect.md b/docs/version-specific/supported-software/e/EDirect.md new file mode 100644 index 000000000..a7465ca5c --- /dev/null +++ b/docs/version-specific/supported-software/e/EDirect.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# EDirect + +Entrez Direct (EDirect) provides access to the NCBI's suite of interconnected databases from a Unix terminal window. Search terms are entered as command-line arguments. Individual operations are connected with Unix pipes to construct multi-step queries. Selected records can then be retrieved in a variety of formats. + +*homepage*: + +version | toolchain +--------|---------- +``19.7.20230531`` | ``GCCcore/10.3.0`` +``20.5.20231006`` | ``GCCcore/12.2.0`` +``20.5.20231006`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/EGTtools.md b/docs/version-specific/supported-software/e/EGTtools.md new file mode 100644 index 000000000..e4a9877bf --- /dev/null +++ b/docs/version-specific/supported-software/e/EGTtools.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# EGTtools + +EGTtools provides a centralized repository with analytical and numerical methods to study/model game theoretical problems under the Evolutionary Game Theory (EGT) framework. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.10.dev2`` | ``foss/2021b`` +``0.1.11`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/EIGENSOFT.md b/docs/version-specific/supported-software/e/EIGENSOFT.md new file mode 100644 index 000000000..9da97474d --- /dev/null +++ b/docs/version-specific/supported-software/e/EIGENSOFT.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# EIGENSOFT + +The EIGENSOFT package combines functionality from our population genetics methods (Patterson et al. 2006) and our EIGENSTRAT stratification correction method (Price et al. 2006). The EIGENSTRAT method uses principal components analysis to explicitly model ancestry differences between cases and controls along continuous axes of variation; the resulting correction is specific to a candidate marker’s variation in frequency across ancestral populations, minimizing spurious associations while maximizing power to detect true associations. The EIGENSOFT package has a built-in plotting script and supports multiple file formats and quantitative phenotypes. + +*homepage*: + +version | toolchain +--------|---------- +``6.0.1`` | ``foss/2016a`` +``6.1.1`` | ``foss/2016a`` +``6.1.4`` | ``foss/2016b`` +``7.2.1`` | ``foss/2018b`` +``7.2.1`` | ``foss/2019a`` +``7.2.1`` | ``foss/2019b`` +``7.2.1`` | ``foss/2020b`` +``7.2.1`` | ``foss/2021a`` +``7.2.1`` | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ELFIO.md b/docs/version-specific/supported-software/e/ELFIO.md new file mode 100644 index 000000000..e4129f864 --- /dev/null +++ b/docs/version-specific/supported-software/e/ELFIO.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ELFIO + +ELFIO is a header-only C++ library intended for reading and generating files in the ELF binary format. + +*homepage*: + +version | toolchain +--------|---------- +``3.9`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ELPA.md b/docs/version-specific/supported-software/e/ELPA.md new file mode 100644 index 000000000..f71f8873d --- /dev/null +++ b/docs/version-specific/supported-software/e/ELPA.md @@ -0,0 +1,57 @@ +--- +search: + boost: 0.5 +--- +# ELPA + +Eigenvalue SoLvers for Petaflop-Applications . + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2015.02.002`` | | ``foss/2018a`` +``2015.02.002`` | | ``gimkl/2017a`` +``2015.02.002`` | | ``intel/2018a`` +``2016.05.004`` | | ``intel/2016b`` +``2016.05.004`` | | ``intel/2017a`` +``2016.11.001.pre`` | | ``foss/2018b`` +``2016.11.001.pre`` | | ``intel/2018b`` +``2017.11.001`` | | ``foss/2018b`` +``2017.11.001`` | | ``intel/2018a`` +``2017.11.001`` | | ``intel/2018b`` +``2018.05.001`` | | ``foss/2018b`` +``2018.05.001`` | | ``intel/2018b`` +``2018.11.001`` | | ``intel/2019a`` +``2019.11.001`` | | ``foss/2019b`` +``2019.11.001`` | | ``foss/2020a`` +``2019.11.001`` | | ``intel/2019b`` +``2019.11.001`` | | ``intel/2020a`` +``2019.11.001`` | | ``iomkl/2019b`` +``2020.05.001`` | | ``intel/2020a`` +``2020.11.001`` | | ``foss/2020b`` +``2020.11.001`` | | ``intel/2020b`` +``2021.05.001`` | | ``foss/2021a`` +``2021.05.001`` | | ``foss/2021b`` +``2021.05.001`` | | ``intel/2021a`` +``2021.05.001`` | | ``intel/2021b`` +``2021.05.002`` | | ``intel/2020b`` +``2021.11.001`` | | ``foss/2021b`` +``2021.11.001`` | | ``foss/2022a`` +``2021.11.001`` | | ``intel/2021b`` +``2021.11.001`` | | ``intel/2022a`` +``2021.11.001`` | | ``intel/2022b`` +``2022.05.001`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``2022.05.001`` | | ``foss/2022a`` +``2022.05.001`` | ``-CUDA-12.0.0`` | ``foss/2022b`` +``2022.05.001`` | | ``foss/2022b`` +``2022.05.001`` | | ``intel/2022a`` +``2022.05.001`` | | ``intel/2022b`` +``2023.05.001`` | | ``foss/2023a`` +``2023.05.001`` | | ``intel/2023a`` +``2023.11.001`` | | ``foss/2023b`` +``2023.11.001`` | | ``intel/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ELPH.md b/docs/version-specific/supported-software/e/ELPH.md new file mode 100644 index 000000000..f57ca7678 --- /dev/null +++ b/docs/version-specific/supported-software/e/ELPH.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ELPH + +ELPH is a general-purpose Gibbs sampler for finding motifs in a set of DNA or protein sequences. The program takes as input a set containing anywhere from a few dozen to thousands of sequences, and searches through them for the most common motif, assuming that each sequence contains one copy of the motif. We have used ELPH to find patterns such as ribosome binding sites (RBSs) and exon splicing enhancers (ESEs). + +*homepage*: + +version | toolchain +--------|---------- +``1.0.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ELSI-RCI.md b/docs/version-specific/supported-software/e/ELSI-RCI.md new file mode 100644 index 000000000..c279a9f44 --- /dev/null +++ b/docs/version-specific/supported-software/e/ELSI-RCI.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# ELSI-RCI + +ELSI-RCI provides and enhances open-source software packages which iteratively solve or circumvent eigenvalue problems in self-consistent field calculations based on the Kohn-Sham density-functional theory. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.0`` | ``GCC/10.3.0`` +``0.1.0`` | ``GCC/11.2.0`` +``0.1.0`` | ``foss/2020b`` +``0.1.0`` | ``intel/2020b`` +``0.1.0`` | ``intel-compilers/2021.2.0`` +``0.1.0`` | ``intel-compilers/2021.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ELSI.md b/docs/version-specific/supported-software/e/ELSI.md new file mode 100644 index 000000000..2617778d9 --- /dev/null +++ b/docs/version-specific/supported-software/e/ELSI.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# ELSI + +ELSI provides and enhances scalable, open-source software library solutions for electronic structure calculations in materials science, condensed matter physics, chemistry, and many other fields. ELSI focuses on methods that solve or circumvent eigenvalue problems in electronic structure theory. The ELSI infrastructure should also be useful for other challenging eigenvalue problems. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.5.0`` | ``-PEXSI`` | ``foss/2019b`` +``2.5.0`` | | ``foss/2019b`` +``2.5.0`` | ``-PEXSI`` | ``intel/2019b`` +``2.5.0`` | | ``intel/2019b`` +``2.6.4`` | ``-PEXSI`` | ``foss/2020b`` +``2.6.4`` | ``-PEXSI`` | ``intel/2020b`` +``2.7.1`` | ``-PEXSI`` | ``foss/2021a`` +``2.7.1`` | ``-PEXSI`` | ``intel/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/EMAN2.md b/docs/version-specific/supported-software/e/EMAN2.md new file mode 100644 index 000000000..14a51e840 --- /dev/null +++ b/docs/version-specific/supported-software/e/EMAN2.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# EMAN2 + +EMAN2 is the successor to EMAN1. It is a broadly based greyscale scientific image processing suite with a primary focus on processing data from transmission electron microscopes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.21a`` | ``-Python-2.7.14-Boost-1.63.0`` | ``foss/2018a`` +``2.3`` | ``-Python-2.7.15`` | ``foss/2019a`` +``2.3`` | ``-Python-2.7.15`` | ``fosscuda/2019a`` +``2.3`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/EMBOSS.md b/docs/version-specific/supported-software/e/EMBOSS.md new file mode 100644 index 000000000..1e8990731 --- /dev/null +++ b/docs/version-specific/supported-software/e/EMBOSS.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# EMBOSS + +EMBOSS is 'The European Molecular Biology Open Software Suite' . EMBOSS is a free Open Source software analysis package specially developed for the needs of the molecular biology (e.g. EMBnet) user community. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``6.6.0`` | ``-Java-13`` | ``GCC/10.2.0`` +``6.6.0`` | | ``GCC/8.2.0-2.31.1`` +``6.6.0`` | ``-Java-11`` | ``GCC/8.3.0`` +``6.6.0`` | | ``foss/2016b`` +``6.6.0`` | | ``foss/2018b`` +``6.6.0`` | | ``foss/2021a`` +``6.6.0`` | | ``foss/2021b`` +``6.6.0`` | | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``6.6.0`` | ``-X11-20170314`` | ``intel/2017a`` +``6.6.0`` | | ``intel/2017a`` +``6.6.0`` | | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/EMU.md b/docs/version-specific/supported-software/e/EMU.md new file mode 100644 index 000000000..6ef38ee01 --- /dev/null +++ b/docs/version-specific/supported-software/e/EMU.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# EMU + +EMU infers population structure in the presence of missingness and works for both haploid, psuedo-haploid and diploid genotype datasets + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.66`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/EPD.md b/docs/version-specific/supported-software/e/EPD.md new file mode 100644 index 000000000..8c6c09401 --- /dev/null +++ b/docs/version-specific/supported-software/e/EPD.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# EPD + +The Enthought Python Distribution provides scientists with a comprehensive set of tools to perform rigorous data analysis and visualization. Python, distinguished by its flexibility, coherence, and ease-of-use, is rapidly becoming the programming language of choice for researchers worldwide. EPD extends this capacity with a powerful collection of Python libraries to enable interactive technical computing and cross-platform rapid application development. + +*homepage*: + +version | toolchain +--------|---------- +``7.3-2-rh5`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/EPIC.md b/docs/version-specific/supported-software/e/EPIC.md new file mode 100644 index 000000000..c8a40cb62 --- /dev/null +++ b/docs/version-specific/supported-software/e/EPIC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# EPIC + +Package implementing EPIC method to estimate the proportion of immune, stromal, endothelial and cancer or other cells from bulk gene expression data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1`` | ``-R-3.5.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ESL-Bundle.md b/docs/version-specific/supported-software/e/ESL-Bundle.md new file mode 100644 index 000000000..d5d28a798 --- /dev/null +++ b/docs/version-specific/supported-software/e/ESL-Bundle.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ESL-Bundle + +The ESL Bundle is a collection of libraries and utilities broadly used in electronic structure calculations, put together to make their use easier by researchers and scientific software developers. ESL stands for Electronic Structure Library, an initiative which distributes quality software and promotes open standards for high-performance computing applications in the field of electronic structure calculations. + +*homepage*: + +version | toolchain +--------|---------- +``0.6.1`` | ``foss/2020b`` +``0.6.1`` | ``intel/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ESM-2.md b/docs/version-specific/supported-software/e/ESM-2.md new file mode 100644 index 000000000..ba4568d02 --- /dev/null +++ b/docs/version-specific/supported-software/e/ESM-2.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# ESM-2 + +ESM-2 outperforms all tested single-sequence protein language models across a range of structure prediction tasks. ESMFold harnesses the ESM-2 language model to generate accurate structure predictions end to end directly from the sequence of a protein. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``2.0.0`` | | ``foss/2021a`` +``2.0.0`` | | ``foss/2022b`` +``2.0.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ESMF.md b/docs/version-specific/supported-software/e/ESMF.md new file mode 100644 index 000000000..70648616d --- /dev/null +++ b/docs/version-specific/supported-software/e/ESMF.md @@ -0,0 +1,38 @@ +--- +search: + boost: 0.5 +--- +# ESMF + +The Earth System Modeling Framework (ESMF) is software for building and coupling weather, climate, and related models. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``6.3.0rp1`` | ``-HDF5-1.8.18`` | ``intel/2017a`` +``6.3.0rp1`` | | ``intel/2017a`` +``7.0.0`` | | ``foss/2016a`` +``7.0.2`` | | ``intel/2017b`` +``7.1.0r`` | | ``foss/2018b`` +``7.1.0r`` | | ``foss/2019a`` +``7.1.0r`` | | ``intel/2018a`` +``7.1.0r`` | | ``intel/2018b`` +``7.1.0r`` | | ``iomkl/2018b`` +``8.0.0`` | | ``foss/2019b`` +``8.0.0`` | | ``intel/2019b`` +``8.0.1`` | | ``foss/2020a`` +``8.0.1`` | | ``foss/2020b`` +``8.0.1`` | | ``intel/2020a`` +``8.0.1`` | | ``intel/2020b`` +``8.1.1`` | | ``foss/2021a`` +``8.1.1`` | | ``intel/2021a`` +``8.2.0`` | | ``foss/2021b`` +``8.2.0`` | | ``intel/2021b`` +``8.3.0`` | | ``foss/2022a`` +``8.3.0`` | | ``intel/2022a`` +``8.4.2`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ESMPy.md b/docs/version-specific/supported-software/e/ESMPy.md new file mode 100644 index 000000000..9fa58c3b7 --- /dev/null +++ b/docs/version-specific/supported-software/e/ESMPy.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# ESMPy + +Earth System Modeling Framework (ESMF) Python Interface + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``8.0.0`` | ``-Python-3.7.4`` | ``intel/2019b`` +``8.0.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``8.0.1`` | | ``intel/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ESMValTool.md b/docs/version-specific/supported-software/e/ESMValTool.md new file mode 100644 index 000000000..268383fe7 --- /dev/null +++ b/docs/version-specific/supported-software/e/ESMValTool.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ESMValTool + +The Earth System Model eValuation Tool (ESMValTool) is a community diagnostics and performance metrics tool for the evaluation of Earth System Models (ESMs) that allows for routine comparison of single or multiple models, either against predecessor versions or against observations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.0`` | ``-Python-2.7.14`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ESPResSo.md b/docs/version-specific/supported-software/e/ESPResSo.md new file mode 100644 index 000000000..e4c7d0ace --- /dev/null +++ b/docs/version-specific/supported-software/e/ESPResSo.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# ESPResSo + +A software package for performing and analyzing scientific Molecular Dynamics simulations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.2.1`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``4.2.1`` | | ``foss/2021a`` +``4.2.1`` | ``-CUDA-11.8.0`` | ``foss/2022a`` +``4.2.1`` | | ``foss/2022a`` +``4.2.1`` | | ``foss/2023a`` +``4.2.2`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ETE.md b/docs/version-specific/supported-software/e/ETE.md new file mode 100644 index 000000000..cb9eca8c5 --- /dev/null +++ b/docs/version-specific/supported-software/e/ETE.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# ETE + +A Python framework for the analysis and visualization of trees + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.0b36`` | ``-Python-2.7.12`` | ``intel/2016b`` +``3.1.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``3.1.2`` | ``-Python-3.7.4`` | ``foss/2019b`` +``3.1.2`` | ``-Python-3.8.2`` | ``foss/2020a`` +``3.1.2`` | | ``foss/2020b`` +``3.1.2`` | | ``foss/2021a`` +``3.1.2`` | | ``foss/2021b`` +``3.1.3`` | | ``foss/2022b`` +``3.1.3`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ETSF_IO.md b/docs/version-specific/supported-software/e/ETSF_IO.md new file mode 100644 index 000000000..217f43cc9 --- /dev/null +++ b/docs/version-specific/supported-software/e/ETSF_IO.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# ETSF_IO + +A library of F90 routines to read/write the ETSF file format has been written. It is called ETSF_IO and available under LGPL. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.4`` | ``foss/2017b`` +``1.0.4`` | ``foss/2018a`` +``1.0.4`` | ``foss/2018b`` +``1.0.4`` | ``intel/2017b`` +``1.0.4`` | ``intel/2018a`` +``1.0.4`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/EUKulele.md b/docs/version-specific/supported-software/e/EUKulele.md new file mode 100644 index 000000000..2634b444f --- /dev/null +++ b/docs/version-specific/supported-software/e/EUKulele.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# EUKulele + +Formalizing environmental eukaryotic taxonomic assignment + +*homepage*: + +version | toolchain +--------|---------- +``2.0.6`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/EVcouplings.md b/docs/version-specific/supported-software/e/EVcouplings.md new file mode 100644 index 000000000..171c48ab4 --- /dev/null +++ b/docs/version-specific/supported-software/e/EVcouplings.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# EVcouplings + +Predict protein structure, function and mutations using evolutionary sequence covariation. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/EZC3D.md b/docs/version-specific/supported-software/e/EZC3D.md new file mode 100644 index 000000000..65de0ebac --- /dev/null +++ b/docs/version-specific/supported-software/e/EZC3D.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# EZC3D + +EZC3D is an easy to use reader, modifier and writer for C3D format files. It is written en C++ with proper binders for Python and MATLAB/Octave scripting langages. + +*homepage*: + +version | toolchain +--------|---------- +``1.5.2`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/EasyBuild.md b/docs/version-specific/supported-software/e/EasyBuild.md new file mode 100644 index 000000000..e71ff68c3 --- /dev/null +++ b/docs/version-specific/supported-software/e/EasyBuild.md @@ -0,0 +1,117 @@ +--- +search: + boost: 0.5 +--- +# EasyBuild + +EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0`` | ``system`` +``1.0.1`` | ``system`` +``1.0.2`` | ``system`` +``1.1.0`` | ``system`` +``1.10.0`` | ``system`` +``1.11.0`` | ``system`` +``1.11.1`` | ``system`` +``1.12.0`` | ``system`` +``1.12.1`` | ``system`` +``1.13.0`` | ``system`` +``1.14.0`` | ``system`` +``1.15.0`` | ``system`` +``1.15.1`` | ``system`` +``1.15.2`` | ``system`` +``1.16.0`` | ``system`` +``1.16.1`` | ``system`` +``1.16.2`` | ``system`` +``1.2.0`` | ``system`` +``1.3.0`` | ``system`` +``1.4.0`` | ``system`` +``1.5.0`` | ``system`` +``1.6.0`` | ``system`` +``1.7.0`` | ``system`` +``1.8.0`` | ``system`` +``1.8.1`` | ``system`` +``1.8.2`` | ``system`` +``1.9.0`` | ``system`` +``2.0.0`` | ``system`` +``2.1.0`` | ``system`` +``2.1.1`` | ``system`` +``2.2.0`` | ``system`` +``2.3.0`` | ``system`` +``2.4.0`` | ``system`` +``2.5.0`` | ``system`` +``2.6.0`` | ``system`` +``2.7.0`` | ``system`` +``2.8.0`` | ``system`` +``2.8.1`` | ``system`` +``2.8.2`` | ``system`` +``2.9.0`` | ``system`` +``3.0.0`` | ``system`` +``3.0.1`` | ``system`` +``3.0.2`` | ``system`` +``3.1.0`` | ``system`` +``3.1.1`` | ``system`` +``3.1.2`` | ``system`` +``3.2.0`` | ``system`` +``3.2.1`` | ``system`` +``3.3.0`` | ``system`` +``3.3.1`` | ``system`` +``3.4.0`` | ``system`` +``3.4.1`` | ``system`` +``3.5.0`` | ``system`` +``3.5.1`` | ``system`` +``3.5.2`` | ``system`` +``3.5.3`` | ``system`` +``3.6.0`` | ``system`` +``3.6.1`` | ``system`` +``3.6.2`` | ``system`` +``3.7.0`` | ``system`` +``3.7.1`` | ``system`` +``3.8.0`` | ``system`` +``3.8.1`` | ``system`` +``3.9.0`` | ``system`` +``3.9.1`` | ``system`` +``3.9.2`` | ``system`` +``3.9.3`` | ``system`` +``3.9.4`` | ``system`` +``4.0.0`` | ``system`` +``4.0.1`` | ``system`` +``4.1.0`` | ``system`` +``4.1.1`` | ``system`` +``4.1.2`` | ``system`` +``4.2.0`` | ``system`` +``4.2.1`` | ``system`` +``4.2.2`` | ``system`` +``4.3.0`` | ``system`` +``4.3.1`` | ``system`` +``4.3.2`` | ``system`` +``4.3.3`` | ``system`` +``4.3.4`` | ``system`` +``4.4.0`` | ``system`` +``4.4.1`` | ``system`` +``4.4.2`` | ``system`` +``4.5.0`` | ``system`` +``4.5.1`` | ``system`` +``4.5.2`` | ``system`` +``4.5.3`` | ``system`` +``4.5.4`` | ``system`` +``4.5.5`` | ``system`` +``4.6.0`` | ``system`` +``4.6.1`` | ``system`` +``4.6.2`` | ``system`` +``4.7.0`` | ``system`` +``4.7.1`` | ``system`` +``4.7.2`` | ``system`` +``4.8.0`` | ``system`` +``4.8.1`` | ``system`` +``4.8.2`` | ``system`` +``4.9.0`` | ``system`` +``4.9.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/EasyMocap.md b/docs/version-specific/supported-software/e/EasyMocap.md new file mode 100644 index 000000000..3264b699e --- /dev/null +++ b/docs/version-specific/supported-software/e/EasyMocap.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# EasyMocap + +EasyMoCap is an open-source toolbox designed for markerless human motion capture from RGB videos. This project offers a wide range of motion capture methods across various settings. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.2`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/EasyQC.md b/docs/version-specific/supported-software/e/EasyQC.md new file mode 100644 index 000000000..f6d16c1a4 --- /dev/null +++ b/docs/version-specific/supported-software/e/EasyQC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# EasyQC + +EasyQC is an R-package that provides advanced functionality to (1) perform file-level QC of single genome-wide association (GWA) data-sets (2) conduct quality control across several GWA data-sets (meta-level QC) (3) simplify data-handling of large-scale GWA data-sets. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``9.2`` | ``-R-3.3.1`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/EggLib.md b/docs/version-specific/supported-software/e/EggLib.md new file mode 100644 index 000000000..d91c3429e --- /dev/null +++ b/docs/version-specific/supported-software/e/EggLib.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# EggLib + +EggLib is a C++/Python library and program package for evolutionary genetics and genomics. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.10`` | ``intel/2016a`` +``3.3.0`` | ``GCC/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/Eigen.md b/docs/version-specific/supported-software/e/Eigen.md new file mode 100644 index 000000000..24733066e --- /dev/null +++ b/docs/version-specific/supported-software/e/Eigen.md @@ -0,0 +1,47 @@ +--- +search: + boost: 0.5 +--- +# Eigen + +Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms. + +*homepage*: + +version | toolchain +--------|---------- +``3.2.10`` | ``intel/2016b`` +``3.2.3`` | ``foss/2016a`` +``3.2.3`` | ``foss/2016b`` +``3.2.5`` | ``system`` +``3.2.6`` | ``system`` +``3.2.7`` | ``foss/2016a`` +``3.2.7`` | ``intel/2016a`` +``3.2.8`` | ``foss/2016a`` +``3.2.8`` | ``intel/2016a`` +``3.2.8`` | ``system`` +``3.2.9`` | ``foss/2016b`` +``3.2.9`` | ``intel/2016b`` +``3.3.2`` | ``foss/2016b`` +``3.3.2`` | ``intel/2016b`` +``3.3.3`` | ``GCCcore/6.3.0`` +``3.3.3`` | ``intel/2016b`` +``3.3.4`` | ``system`` +``3.3.5`` | ``system`` +``3.3.7`` | ``GCCcore/9.3.0`` +``3.3.7`` | ``system`` +``3.3.8`` | ``GCCcore/10.2.0`` +``3.3.9`` | ``GCCcore/10.2.0`` +``3.3.9`` | ``GCCcore/10.3.0`` +``3.3.9`` | ``GCCcore/11.2.0`` +``3.4.0`` | ``GCCcore/10.2.0`` +``3.4.0`` | ``GCCcore/11.2.0`` +``3.4.0`` | ``GCCcore/11.3.0`` +``3.4.0`` | ``GCCcore/12.2.0`` +``3.4.0`` | ``GCCcore/12.3.0`` +``3.4.0`` | ``GCCcore/13.2.0`` +``3.4.0`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/EigenExa.md b/docs/version-specific/supported-software/e/EigenExa.md new file mode 100644 index 000000000..b87956d11 --- /dev/null +++ b/docs/version-specific/supported-software/e/EigenExa.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# EigenExa + +EigenExa, a part of KMATHLIB, is a high performance eigen-solver. + +*homepage*: + +version | toolchain +--------|---------- +``2.11`` | ``intel/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/Elk.md b/docs/version-specific/supported-software/e/Elk.md new file mode 100644 index 000000000..f38abab39 --- /dev/null +++ b/docs/version-specific/supported-software/e/Elk.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# Elk + +An all-electron full-potential linearised augmented-plane wave (FP-LAPW) code with many advanced features. Written originally at Karl-Franzens-Universität Graz as a milestone of the EXCITING EU Research and Training Network, the code is designed to be as simple as possible so that new developments in the field of density functional theory (DFT) can be added quickly and reliably. + +*homepage*: + +version | toolchain +--------|---------- +``4.0.15`` | ``intel/2016b`` +``4.3.6`` | ``intel/2017a`` +``6.3.2`` | ``intel/2019b`` +``7.0.12`` | ``foss/2020b`` +``7.2.42`` | ``foss/2021a`` +``8.5.2`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/Elmer.md b/docs/version-specific/supported-software/e/Elmer.md new file mode 100644 index 000000000..fafdc166c --- /dev/null +++ b/docs/version-specific/supported-software/e/Elmer.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Elmer + +Elmer is an open source multiphysical simulation software mainly developed by CSC - IT Center for Science (CSC). Elmer includes physical models of fluid dynamics, structural mechanics, electromagnetics, heat transfer and acoustics, for example. These are described by partial differential equations which Elmer solves by the Finite Element Method (FEM). + +*homepage*: + +version | toolchain +--------|---------- +``9.0`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/Emacs.md b/docs/version-specific/supported-software/e/Emacs.md new file mode 100644 index 000000000..9629f3213 --- /dev/null +++ b/docs/version-specific/supported-software/e/Emacs.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# Emacs + +GNU Emacs is an extensible, customizable text editor—and more. At its core is an interpreter for Emacs Lisp, a dialect of the Lisp programming language with extensions to support text editing. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``24.3`` | ``-bare`` | ``GCC/4.8.3`` +``24.3`` | | ``GCC/4.8.3`` +``24.4`` | | ``GCC/4.9.2`` +``24.5`` | | ``GCC/4.9.3-2.25`` +``25.1`` | | ``foss/2016a`` +``25.3`` | | ``GCCcore/6.3.0`` +``25.3`` | | ``GCCcore/6.4.0`` +``25.3`` | | ``GCCcore/7.3.0`` +``26.3`` | | ``GCCcore/8.3.0`` +``27.1`` | | ``GCCcore/10.2.0`` +``27.1`` | | ``GCCcore/9.3.0`` +``27.2`` | | ``GCCcore/11.2.0`` +``28.1`` | | ``GCCcore/10.2.0`` +``28.2`` | | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/Embree.md b/docs/version-specific/supported-software/e/Embree.md new file mode 100644 index 000000000..bf5293d87 --- /dev/null +++ b/docs/version-specific/supported-software/e/Embree.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Embree + +High Performance Ray Tracing Kernels + +*homepage*: + +version | toolchain +--------|---------- +``3.13.4`` | ``system`` +``3.4.0`` | ``iccifort/2018.1.163-GCC-6.4.0-2.28`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/EnergyPlus.md b/docs/version-specific/supported-software/e/EnergyPlus.md new file mode 100644 index 000000000..f8d221a7e --- /dev/null +++ b/docs/version-specific/supported-software/e/EnergyPlus.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# EnergyPlus + +EnergyPlus is a whole building energy simulation program that engineers, architects, and researchers use to model both energy consumption—for heating, cooling, ventilation, lighting and plug and process loads—and water use in buildings. + +*homepage*: + +version | toolchain +--------|---------- +``23.2.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/EnsEMBLCoreAPI.md b/docs/version-specific/supported-software/e/EnsEMBLCoreAPI.md new file mode 100644 index 000000000..ffc788491 --- /dev/null +++ b/docs/version-specific/supported-software/e/EnsEMBLCoreAPI.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# EnsEMBLCoreAPI + +The Ensembl Core Perl API and SQL schema + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``96.0-r20190601`` | ``-Perl-5.28.1`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/EpiSCORE.md b/docs/version-specific/supported-software/e/EpiSCORE.md new file mode 100644 index 000000000..b597ee723 --- /dev/null +++ b/docs/version-specific/supported-software/e/EpiSCORE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# EpiSCORE + +Epigenetic cell-type deconvolution from Single-Cell Omic Reference profiles + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.9.5-20220621`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/EricScript.md b/docs/version-specific/supported-software/e/EricScript.md new file mode 100644 index 000000000..f2e666499 --- /dev/null +++ b/docs/version-specific/supported-software/e/EricScript.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# EricScript + +EricScript is a computational framework for the discovery of gene fusions in paired end RNA-seq data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.5.5`` | ``-R-3.4.0`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/Essentia.md b/docs/version-specific/supported-software/e/Essentia.md new file mode 100644 index 000000000..432c31f59 --- /dev/null +++ b/docs/version-specific/supported-software/e/Essentia.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Essentia + +Open-source library and tools for audio and music analysis, description and synthesis + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1_beta5`` | ``-Python-2.7.15`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/Evcxr-REPL.md b/docs/version-specific/supported-software/e/Evcxr-REPL.md new file mode 100644 index 000000000..51e05e311 --- /dev/null +++ b/docs/version-specific/supported-software/e/Evcxr-REPL.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Evcxr-REPL + +A Rust REPL (Read-Eval-Print loop) built using the evcxr evaluation context. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.14.2`` | ``-Rust-1.65.0`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/EveryBeam.md b/docs/version-specific/supported-software/e/EveryBeam.md new file mode 100644 index 000000000..ce9594b68 --- /dev/null +++ b/docs/version-specific/supported-software/e/EveryBeam.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# EveryBeam + +Library that provides the antenna response pattern for several instruments, such as LOFAR (and LOBES), SKA (OSKAR), MWA, JVLA, etc. + +*homepage*: + +version | toolchain +--------|---------- +``0.5.2`` | ``foss/2022a`` +``0.5.2`` | ``foss/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/EvidentialGene.md b/docs/version-specific/supported-software/e/EvidentialGene.md new file mode 100644 index 000000000..896109a16 --- /dev/null +++ b/docs/version-specific/supported-software/e/EvidentialGene.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# EvidentialGene + +EvidentialGene is a genome informatics project for "Evidence Directed Gene Construction for Eukaryotes", for constructing high quality, accurate gene sets for animals and plants (any eukaryotes), being developed by Don Gilbert at Indiana University, gilbertd at indiana edu. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2018.01.01`` | ``-Perl-5.24.1`` | ``intel/2017a`` +``2022.01.14`` | | ``gompi/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ExaBayes.md b/docs/version-specific/supported-software/e/ExaBayes.md new file mode 100644 index 000000000..987a9719d --- /dev/null +++ b/docs/version-specific/supported-software/e/ExaBayes.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ExaBayes + +ExaBayes is a software package for Bayesian tree inference. It is particularly suitable for large-scale analyses on computer clusters + +*homepage*: + +version | toolchain +--------|---------- +``1.5`` | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ExaML.md b/docs/version-specific/supported-software/e/ExaML.md new file mode 100644 index 000000000..07cc2232a --- /dev/null +++ b/docs/version-specific/supported-software/e/ExaML.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ExaML + +Exascale Maximum Likelihood (ExaML) code for phylogenetic inference using MPI + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.22`` | ``-hybrid-avx`` | ``gompi/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/Excel-Writer-XLSX.md b/docs/version-specific/supported-software/e/Excel-Writer-XLSX.md new file mode 100644 index 000000000..c1f75f38b --- /dev/null +++ b/docs/version-specific/supported-software/e/Excel-Writer-XLSX.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Excel-Writer-XLSX + +The Excel::Writer::XLSX module can be used to create an Excel file in the 2007+ XLSX format. Multiple worksheets can be added to a workbook and formatting can be applied to cells. Text, numbers, and formulas can be written to the cells. + +*homepage*: + +version | toolchain +--------|---------- +``1.09`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ExifTool.md b/docs/version-specific/supported-software/e/ExifTool.md new file mode 100644 index 000000000..b2e08dbfa --- /dev/null +++ b/docs/version-specific/supported-software/e/ExifTool.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ExifTool + +Perl module (Image::ExifTool) and program (exiftool) to read EXIF information from images + +*homepage*: + +version | toolchain +--------|---------- +``12.00`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/Exonerate.md b/docs/version-specific/supported-software/e/Exonerate.md new file mode 100644 index 000000000..379d4ba98 --- /dev/null +++ b/docs/version-specific/supported-software/e/Exonerate.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# Exonerate + +Exonerate is a generic tool for pairwise sequence comparison. It allows you to align sequences using a many alignment models, using either exhaustive dynamic programming, or a variety of heuristics. + +*homepage*: + +version | toolchain +--------|---------- +``2.4.0`` | ``GCC/10.2.0`` +``2.4.0`` | ``GCC/10.3.0`` +``2.4.0`` | ``GCC/11.2.0`` +``2.4.0`` | ``GCC/11.3.0`` +``2.4.0`` | ``GCC/12.2.0`` +``2.4.0`` | ``GCC/6.4.0-2.28`` +``2.4.0`` | ``GCC/8.3.0`` +``2.4.0`` | ``foss/2016a`` +``2.4.0`` | ``foss/2016b`` +``2.4.0`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` +``2.4.0`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``2.4.0`` | ``iccifort/2019.5.281`` +``2.4.0`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ExpressBetaDiversity.md b/docs/version-specific/supported-software/e/ExpressBetaDiversity.md new file mode 100644 index 000000000..27c799356 --- /dev/null +++ b/docs/version-specific/supported-software/e/ExpressBetaDiversity.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ExpressBetaDiversity + +Taxon- and phylogenetic-based beta diversity measures. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.10`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/Extrae.md b/docs/version-specific/supported-software/e/Extrae.md new file mode 100644 index 000000000..dc3c75ba5 --- /dev/null +++ b/docs/version-specific/supported-software/e/Extrae.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Extrae + +Extrae is the core instrumentation package developed by the Performance Tools group at BSC. Extrae is capable of instrumenting applications based on MPI, OpenMP, pthreads, CUDA1, OpenCL1, and StarSs1 using different instrumentation approaches. The information gathered by Extrae typically includes timestamped events of runtime calls, performance counters and source code references. Besides, Extrae provides its own API to allow the user to manually instrument his or her application. + +*homepage*: + +version | toolchain +--------|---------- +``3.4.1`` | ``foss/2017a`` +``3.7.1`` | ``intel/2019a`` +``3.8.0`` | ``gompi/2020b`` +``3.8.3`` | ``gompi/2021a`` +``4.0.4`` | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ExtremeLy.md b/docs/version-specific/supported-software/e/ExtremeLy.md new file mode 100644 index 000000000..33d91c6a9 --- /dev/null +++ b/docs/version-specific/supported-software/e/ExtremeLy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ExtremeLy + +A python package for Extreme Value Analysis. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/e3nn.md b/docs/version-specific/supported-software/e/e3nn.md new file mode 100644 index 000000000..1bbff2321 --- /dev/null +++ b/docs/version-specific/supported-software/e/e3nn.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# e3nn + +Euclidean neural networks (e3nn) is a python library based on pytorch to create equivariant neural networks for the group O(3). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.3`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.3.3`` | ``-PyTorch-1.13.1-CUDA-11.7.0`` | ``foss/2022a`` +``0.3.3`` | | ``foss/2022a`` +``0.3.3`` | ``-CUDA-12.1.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/eQuilibrator.md b/docs/version-specific/supported-software/e/eQuilibrator.md new file mode 100644 index 000000000..0cf05611d --- /dev/null +++ b/docs/version-specific/supported-software/e/eQuilibrator.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# eQuilibrator + +Calculation of standard thermodynamic potentials of biochemical reactions. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.7`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/eSpeak-NG.md b/docs/version-specific/supported-software/e/eSpeak-NG.md new file mode 100644 index 000000000..06ca1ce55 --- /dev/null +++ b/docs/version-specific/supported-software/e/eSpeak-NG.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# eSpeak-NG + +The eSpeak NG is a compact open source software text-to-speech synthesizer for Linux, Windows, Android and other operating systems. It supports more than 100 languages and accents. It is based on the eSpeak engine created by Jonathan Duddington. + +*homepage*: + +version | toolchain +--------|---------- +``1.50`` | ``gompi/2020a`` +``1.51`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/eXpress.md b/docs/version-specific/supported-software/e/eXpress.md new file mode 100644 index 000000000..a704749af --- /dev/null +++ b/docs/version-specific/supported-software/e/eXpress.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# eXpress + +Streaming quantification for high-throughput sequencing + +*homepage*: + +version | toolchain +--------|---------- +``1.5.1`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ea-utils.md b/docs/version-specific/supported-software/e/ea-utils.md new file mode 100644 index 000000000..6fbe1a214 --- /dev/null +++ b/docs/version-specific/supported-software/e/ea-utils.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# ea-utils + +Command-line tools for processing biological sequencing data. Barcode demultiplexing, adapter trimming, etc. Primarily written to support an Illumina based pipeline - but should work with any FASTQs. + +*homepage*: + +version | toolchain +--------|---------- +``1.04.807`` | ``foss/2016a`` +``1.04.807`` | ``foss/2016b`` +``1.04.807`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/earthengine-api.md b/docs/version-specific/supported-software/e/earthengine-api.md new file mode 100644 index 000000000..d4ea6916b --- /dev/null +++ b/docs/version-specific/supported-software/e/earthengine-api.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# earthengine-api + +Python and JavaScript bindings for calling the Earth Engine API + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.143`` | ``-Python-2.7.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/easel.md b/docs/version-specific/supported-software/e/easel.md new file mode 100644 index 000000000..f4dc6fe2c --- /dev/null +++ b/docs/version-specific/supported-software/e/easel.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# easel + +Easel supports computational analysis of biological sequences using probabilistic models. + +*homepage*: + +version | toolchain +--------|---------- +``0.48`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ebGSEA.md b/docs/version-specific/supported-software/e/ebGSEA.md new file mode 100644 index 000000000..42369f428 --- /dev/null +++ b/docs/version-specific/supported-software/e/ebGSEA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ebGSEA + +Gene Set Enrichment Analysis is one of the most common tasks in the analysis of omic data, and is critical for biological interpretation. In the context of Epigenome Wide Association Studies (EWAS), which typically rank individual cytosines according to the level of differential methylation, enrichment analysis of biological pathways is challenging due to differences in CpG/probe density between genes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.0`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ecBuild.md b/docs/version-specific/supported-software/e/ecBuild.md new file mode 100644 index 000000000..82b395e16 --- /dev/null +++ b/docs/version-specific/supported-software/e/ecBuild.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ecBuild + +A CMake-based build system, consisting of a collection of CMake macros and functions that ease the managing of software build systems + +*homepage*: + +version | toolchain +--------|---------- +``3.7.0`` | ``system`` +``3.8.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ecCodes.md b/docs/version-specific/supported-software/e/ecCodes.md new file mode 100644 index 000000000..f8f91897a --- /dev/null +++ b/docs/version-specific/supported-software/e/ecCodes.md @@ -0,0 +1,35 @@ +--- +search: + boost: 0.5 +--- +# ecCodes + +ecCodes is a package developed by ECMWF which provides an application programming interface and a set of tools for decoding and encoding messages in the following formats: WMO FM-92 GRIB edition 1 and edition 2, WMO FM-94 BUFR edition 3 and edition 4, WMO GTS abbreviated header (only decoding). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.12.5`` | | ``gompi/2019a`` +``2.15.0`` | | ``gompi/2019b`` +``2.15.0`` | | ``iimpi/2019b`` +``2.17.0`` | | ``foss/2018b`` +``2.17.0`` | | ``gompi/2019b`` +``2.18.0`` | | ``gompi/2020a`` +``2.20.0`` | | ``gompi/2020b`` +``2.22.1`` | | ``gompi/2021a`` +``2.24.2`` | | ``gompi/2021b`` +``2.24.2`` | | ``iimpi/2021b`` +``2.27.0`` | | ``gompi/2022a`` +``2.31.0`` | | ``gompi/2022b`` +``2.31.0`` | | ``gompi/2023a`` +``2.31.0`` | | ``gompi/2023b`` +``2.7.3`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.7.3`` | | ``intel/2018a`` +``2.8.2`` | | ``intel/2018a`` +``2.9.2`` | | ``intel/2018b`` +``2.9.2`` | | ``iomkl/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ecFlow.md b/docs/version-specific/supported-software/e/ecFlow.md new file mode 100644 index 000000000..07719f697 --- /dev/null +++ b/docs/version-specific/supported-software/e/ecFlow.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ecFlow + +ecFlow is a client/server workflow package that enables users to run a large number of programs (with dependencies on each other and on time) in a controlled environment. It provides reasonable tolerance for hardware and software failures, combined with restart capabilities. It is used at ECMWF to run all our operational suites across a range of platforms. + +*homepage*: + +version | toolchain +--------|---------- +``5.7.0`` | ``GCC/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/eccodes-python.md b/docs/version-specific/supported-software/e/eccodes-python.md new file mode 100644 index 000000000..ae4bc0565 --- /dev/null +++ b/docs/version-specific/supported-software/e/eccodes-python.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# eccodes-python + +Python 3 interface to decode and encode GRIB and BUFR files via the ECMWF ecCodes library. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.1.0`` | | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/eclib.md b/docs/version-specific/supported-software/e/eclib.md new file mode 100644 index 000000000..4f5dd8e1c --- /dev/null +++ b/docs/version-specific/supported-software/e/eclib.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# eclib + +The eclib package includes mwrank (for 2-descent on elliptic curves over Q) and modular symbol code used to create the elliptic curve database. + +*homepage*: + +version | toolchain +--------|---------- +``20230424`` | ``GCC/11.3.0`` +``20240408`` | ``GCC/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/edlib.md b/docs/version-specific/supported-software/e/edlib.md new file mode 100644 index 000000000..752e7f38e --- /dev/null +++ b/docs/version-specific/supported-software/e/edlib.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# edlib + +Lightweight, super fast library for sequence alignment using edit (Levenshtein) distance. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.8.post1`` | ``-Python-3.7.4`` | ``GCC/8.3.0`` +``1.3.8.post1`` | ``-Python-3.8.2`` | ``GCC/9.3.0`` +``1.3.8.post1`` | ``-Python-3.7.4`` | ``iccifort/2019.5.281`` +``1.3.8.post2`` | ``-Python-3.8.2`` | ``iccifort/2020.1.217`` +``1.3.9`` | | ``GCC/10.2.0`` +``1.3.9`` | | ``GCC/10.3.0`` +``1.3.9`` | | ``GCC/11.2.0`` +``1.3.9`` | | ``GCC/11.3.0`` +``1.3.9`` | | ``GCC/12.2.0`` +``1.3.9`` | | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/eggnog-mapper.md b/docs/version-specific/supported-software/e/eggnog-mapper.md new file mode 100644 index 000000000..e60a2e438 --- /dev/null +++ b/docs/version-specific/supported-software/e/eggnog-mapper.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# eggnog-mapper + +eggnog-mapper is a tool for fast functional annotation of novel sequences (genes or proteins) using precomputed eggNOG-based orthology assignments + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.3`` | ``-Python-2.7.14`` | ``intel/2018a`` +``2.1.10`` | | ``foss/2020b`` +``2.1.4`` | | ``foss/2020b`` +``2.1.7`` | | ``foss/2021b`` +``2.1.9`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/eht-imaging.md b/docs/version-specific/supported-software/e/eht-imaging.md new file mode 100644 index 000000000..5e787e168 --- /dev/null +++ b/docs/version-specific/supported-software/e/eht-imaging.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# eht-imaging + +Python modules for simulating and manipulating VLBI data and producing images with regularized maximum likelihood methods. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.2`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/einops.md b/docs/version-specific/supported-software/e/einops.md new file mode 100644 index 000000000..53258e847 --- /dev/null +++ b/docs/version-specific/supported-software/e/einops.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# einops + +Flexible and powerful tensor operations for readable and reliable code. Supports numpy, pytorch, tensorflow, jax, and others. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.2`` | ``GCCcore/10.2.0`` +``0.4.1`` | ``GCCcore/10.3.0`` +``0.4.1`` | ``GCCcore/11.3.0`` +``0.7.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/elastix.md b/docs/version-specific/supported-software/e/elastix.md new file mode 100644 index 000000000..d917ce852 --- /dev/null +++ b/docs/version-specific/supported-software/e/elastix.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# elastix + +elastix: a toolbox for rigid and nonrigid registration of images. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.9.0`` | | ``foss/2018a`` +``5.0.0`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/elbencho.md b/docs/version-specific/supported-software/e/elbencho.md new file mode 100644 index 000000000..42f51a447 --- /dev/null +++ b/docs/version-specific/supported-software/e/elbencho.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# elbencho + +A distributed storage benchmark for files, objects & blocks with support for GPUs + +*homepage*: + +version | toolchain +--------|---------- +``2.0-3`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/elfutils.md b/docs/version-specific/supported-software/e/elfutils.md new file mode 100644 index 000000000..0435c357d --- /dev/null +++ b/docs/version-specific/supported-software/e/elfutils.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# elfutils + +The elfutils project provides libraries and tools for ELF files and DWARF data. + +*homepage*: + +version | toolchain +--------|---------- +``0.182`` | ``GCCcore/9.3.0`` +``0.183`` | ``GCCcore/10.2.0`` +``0.185`` | ``GCCcore/10.3.0`` +``0.185`` | ``GCCcore/11.2.0`` +``0.185`` | ``GCCcore/8.2.0`` +``0.185`` | ``GCCcore/8.3.0`` +``0.187`` | ``GCCcore/11.3.0`` +``0.189`` | ``GCCcore/12.2.0`` +``0.189`` | ``GCCcore/12.3.0`` +``0.190`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/elprep.md b/docs/version-specific/supported-software/e/elprep.md new file mode 100644 index 000000000..3227b35f9 --- /dev/null +++ b/docs/version-specific/supported-software/e/elprep.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# elprep + +elPrep is a high-performance tool for analyzing .sam/.bam files (up to and including variant calling) in sequencing pipelines. + +*homepage*: + +version | toolchain +--------|---------- +``5.1.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/emcee.md b/docs/version-specific/supported-software/e/emcee.md new file mode 100644 index 000000000..4ba69425b --- /dev/null +++ b/docs/version-specific/supported-software/e/emcee.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# emcee + +Emcee is an extensible, pure-Python implementation of Goodman & Weare's Affine Invariant Markov chain Monte Carlo (MCMC) Ensemble sampler. It's designed for Bayesian parameter estimation and it's really sweet! + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.1`` | ``-Python-2.7.15`` | ``foss/2018b`` +``2.2.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``2.2.1`` | | ``foss/2019a`` +``2.2.1`` | ``-Python-2.7.15`` | ``intel/2018b`` +``2.2.1`` | ``-Python-3.6.6`` | ``intel/2018b`` +``3.1.4`` | | ``foss/2021b`` +``3.1.4`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/enaBrowserTool.md b/docs/version-specific/supported-software/e/enaBrowserTool.md new file mode 100644 index 000000000..6469361ea --- /dev/null +++ b/docs/version-specific/supported-software/e/enaBrowserTool.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# enaBrowserTool + +enaBrowserTools is a set of scripts that interface with the ENA web services to download data from ENA easily, without any knowledge of scripting required. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5.4`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` +``1.6`` | | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/enchant-2.md b/docs/version-specific/supported-software/e/enchant-2.md new file mode 100644 index 000000000..ac1c83fae --- /dev/null +++ b/docs/version-specific/supported-software/e/enchant-2.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# enchant-2 + +Enchant aims to provide a simple but comprehensive abstraction for dealing with different spell checking libraries in a consistent way. A client, such as a text editor or word processor, need not know anything about a specific spell-checker, and since all back-ends are plugins, new spell-checkers can be added without needing any change to the program using Enchant. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.3`` | ``GCCcore/11.2.0`` +``2.3.3`` | ``GCCcore/11.3.0`` +``2.6.5`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/enchant.md b/docs/version-specific/supported-software/e/enchant.md new file mode 100644 index 000000000..94865d15c --- /dev/null +++ b/docs/version-specific/supported-software/e/enchant.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# enchant + +Enchant is a library (and command-line program) that wraps a number of different spelling libraries and programs with a consistent interface. + +*homepage*: + +version | toolchain +--------|---------- +``1.6.1`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/ensmallen.md b/docs/version-specific/supported-software/e/ensmallen.md new file mode 100644 index 000000000..f9c9b80bb --- /dev/null +++ b/docs/version-specific/supported-software/e/ensmallen.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ensmallen + +ensmallen is a high-quality C++ library for non-linear numerical optimization + +*homepage*: + +version | toolchain +--------|---------- +``2.21.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/entrypoints.md b/docs/version-specific/supported-software/e/entrypoints.md new file mode 100644 index 000000000..ff7db3182 --- /dev/null +++ b/docs/version-specific/supported-software/e/entrypoints.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# entrypoints + +Entry points are a way for Python packages to advertise objects with some common interface. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.2`` | ``-Python-2.7.11`` | ``foss/2016a`` +``0.2.2`` | ``-Python-3.5.1`` | ``foss/2016a`` +``0.2.2`` | ``-Python-2.7.12`` | ``foss/2016b`` +``0.2.2`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.2.2`` | ``-Python-3.5.2`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/epct.md b/docs/version-specific/supported-software/e/epct.md new file mode 100644 index 000000000..3571d4ae5 --- /dev/null +++ b/docs/version-specific/supported-software/e/epct.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# epct + +This is the epct (EUMETSAT Product Customisation Toolbox) Python package for the EUMETSAT Data Tailor. The EUMETSAT Data Tailor makes it possible for users to subset and aggregate EUMETSAT data products in space and time, filter layers, generate quicklooks, project onto new coordinate reference systems, and reformat into common GIS formats (netCDF, GeoTIFF, etc.). + +*homepage*: + +version | toolchain +--------|---------- +``3.2.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/epiScanpy.md b/docs/version-specific/supported-software/e/epiScanpy.md new file mode 100644 index 000000000..01c3a47bd --- /dev/null +++ b/docs/version-specific/supported-software/e/epiScanpy.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# epiScanpy + +EpiScanpy is a toolkit to analyse single-cell open chromatin (scATAC-seq) and single-cell DNA methylation (for example scBS-seq) data. EpiScanpy is the epigenomic extension of the very popular scRNA-seq analysis tool Scanpy (Genome Biology, 2018) [Wolf18]. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.1`` | ``foss/2021a`` +``0.4.0`` | ``foss/2022a`` +``0.4.0`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/eudev.md b/docs/version-specific/supported-software/e/eudev.md new file mode 100644 index 000000000..7df1c9e7c --- /dev/null +++ b/docs/version-specific/supported-software/e/eudev.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# eudev + +eudev is a fork of systemd-udev with the goal of obtaining better compatibility with existing software such as OpenRC and Upstart, older kernels, various toolchains and anything else required by users and various distributions. + +*homepage*: + +version | toolchain +--------|---------- +``3.1.5`` | ``foss/2016a`` +``3.1.5`` | ``gimkl/2.11.5`` +``3.1.5`` | ``intel/2016a`` +``3.2`` | ``GCCcore/4.9.3`` +``3.2.2`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/evince.md b/docs/version-specific/supported-software/e/evince.md new file mode 100644 index 000000000..c81a7da51 --- /dev/null +++ b/docs/version-specific/supported-software/e/evince.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# evince + +Evince is a document viewer for multiple document formats. The goal of evince is to replace the multiple document viewers that exist on the GNOME Desktop with a single simple application. + +*homepage*: + +version | toolchain +--------|---------- +``45.0`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/evmix.md b/docs/version-specific/supported-software/e/evmix.md new file mode 100644 index 000000000..5815d4dd5 --- /dev/null +++ b/docs/version-specific/supported-software/e/evmix.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# evmix + +evmix: Extreme Value Mixture Modelling, Threshold Estimation and Boundary Corrected Kernel Density Estimation + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.6`` | ``-R-3.3.1`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/exiv2.md b/docs/version-specific/supported-software/e/exiv2.md new file mode 100644 index 000000000..3a3418cbe --- /dev/null +++ b/docs/version-specific/supported-software/e/exiv2.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# exiv2 + +Exiv2 is a Cross-platform C++ library and a command line utility to manage image metadata. + +*homepage*: + +version | toolchain +--------|---------- +``0.27.4`` | ``GCCcore/10.3.0`` +``0.27.5`` | ``GCCcore/11.2.0`` +``0.28.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/expat.md b/docs/version-specific/supported-software/e/expat.md new file mode 100644 index 000000000..653e0bf63 --- /dev/null +++ b/docs/version-specific/supported-software/e/expat.md @@ -0,0 +1,44 @@ +--- +search: + boost: 0.5 +--- +# expat + +Expat is an XML parser library written in C. It is a stream-oriented parser in which an application registers handlers for things the parser might find in the XML document (like start tags) + +*homepage*: + +version | toolchain +--------|---------- +``2.1.0`` | ``GCC/4.9.2`` +``2.1.0`` | ``foss/2016a`` +``2.1.0`` | ``intel/2016a`` +``2.1.1`` | ``foss/2016a`` +``2.1.1`` | ``intel/2016a`` +``2.2.0`` | ``GCCcore/4.9.3`` +``2.2.0`` | ``GCCcore/5.4.0`` +``2.2.0`` | ``GCCcore/6.3.0`` +``2.2.0`` | ``foss/2016a`` +``2.2.0`` | ``foss/2016b`` +``2.2.0`` | ``gimkl/2017a`` +``2.2.0`` | ``intel/2016b`` +``2.2.4`` | ``GCCcore/6.4.0`` +``2.2.5`` | ``GCCcore/6.4.0`` +``2.2.5`` | ``GCCcore/7.3.0`` +``2.2.6`` | ``GCCcore/8.2.0`` +``2.2.7`` | ``GCCcore/8.3.0`` +``2.2.9`` | ``FCC/4.5.0`` +``2.2.9`` | ``GCCcore/10.2.0`` +``2.2.9`` | ``GCCcore/10.3.0`` +``2.2.9`` | ``GCCcore/9.3.0`` +``2.4.1`` | ``GCCcore/11.2.0`` +``2.4.8`` | ``GCCcore/11.3.0`` +``2.4.8`` | ``GCCcore/12.1.0`` +``2.4.9`` | ``GCCcore/12.2.0`` +``2.5.0`` | ``GCCcore/12.3.0`` +``2.5.0`` | ``GCCcore/13.2.0`` +``2.6.2`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/expect.md b/docs/version-specific/supported-software/e/expect.md new file mode 100644 index 000000000..5a8d26cf6 --- /dev/null +++ b/docs/version-specific/supported-software/e/expect.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# expect + +Expect is a tool for automating interactive applications such as telnet, ftp, passwd, fsck, rlogin, tip, etc. Expect really makes this stuff trivial. Expect is also useful for testing these same applications. + +*homepage*: + +version | toolchain +--------|---------- +``5.45.4`` | ``GCCcore/7.3.0`` +``5.45.4`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/expecttest.md b/docs/version-specific/supported-software/e/expecttest.md new file mode 100644 index 000000000..6a8439b38 --- /dev/null +++ b/docs/version-specific/supported-software/e/expecttest.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# expecttest + +This library implements expect tests (also known as "golden" tests). Expect tests are a method of writing tests where instead of hard-coding the expected output of a test, you run the test to get the output, and the test framework automatically populates the expected output. If the output of the test changes, you can rerun the test with the environment variable EXPECTTEST_ACCEPT=1 to automatically update the expected output. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.3`` | ``GCCcore/10.2.0`` +``0.1.3`` | ``GCCcore/10.3.0`` +``0.1.3`` | ``GCCcore/11.2.0`` +``0.1.3`` | ``GCCcore/11.3.0`` +``0.1.3`` | ``GCCcore/12.2.0`` +``0.1.5`` | ``GCCcore/12.3.0`` +``0.2.1`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/e/index.md b/docs/version-specific/supported-software/e/index.md new file mode 100644 index 000000000..447f1c36c --- /dev/null +++ b/docs/version-specific/supported-software/e/index.md @@ -0,0 +1,103 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (e) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - *e* - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [E-ANTIC](E-ANTIC.md) + * [e3nn](e3nn.md) + * [ea-utils](ea-utils.md) + * [earthengine-api](earthengine-api.md) + * [easel](easel.md) + * [EasyBuild](EasyBuild.md) + * [EasyMocap](EasyMocap.md) + * [EasyQC](EasyQC.md) + * [ebGSEA](ebGSEA.md) + * [ecBuild](ecBuild.md) + * [ecCodes](ecCodes.md) + * [eccodes-python](eccodes-python.md) + * [ecFlow](ecFlow.md) + * [ECL](ECL.md) + * [eclib](eclib.md) + * [ED2](ED2.md) + * [EDirect](EDirect.md) + * [edlib](edlib.md) + * [EggLib](EggLib.md) + * [eggnog-mapper](eggnog-mapper.md) + * [EGTtools](EGTtools.md) + * [eht-imaging](eht-imaging.md) + * [Eigen](Eigen.md) + * [EigenExa](EigenExa.md) + * [EIGENSOFT](EIGENSOFT.md) + * [einops](einops.md) + * [elastix](elastix.md) + * [elbencho](elbencho.md) + * [ELFIO](ELFIO.md) + * [elfutils](elfutils.md) + * [Elk](Elk.md) + * [Elmer](Elmer.md) + * [ELPA](ELPA.md) + * [ELPH](ELPH.md) + * [elprep](elprep.md) + * [ELSI](ELSI.md) + * [ELSI-RCI](ELSI-RCI.md) + * [Emacs](Emacs.md) + * [EMAN2](EMAN2.md) + * [EMBOSS](EMBOSS.md) + * [Embree](Embree.md) + * [emcee](emcee.md) + * [EMU](EMU.md) + * [enaBrowserTool](enaBrowserTool.md) + * [enchant](enchant.md) + * [enchant-2](enchant-2.md) + * [EnergyPlus](EnergyPlus.md) + * [EnsEMBLCoreAPI](EnsEMBLCoreAPI.md) + * [ensmallen](ensmallen.md) + * [entrypoints](entrypoints.md) + * [epct](epct.md) + * [EPD](EPD.md) + * [EPIC](EPIC.md) + * [epiScanpy](epiScanpy.md) + * [EpiSCORE](EpiSCORE.md) + * [eQuilibrator](eQuilibrator.md) + * [EricScript](EricScript.md) + * [ESL-Bundle](ESL-Bundle.md) + * [ESM-2](ESM-2.md) + * [ESMF](ESMF.md) + * [ESMPy](ESMPy.md) + * [ESMValTool](ESMValTool.md) + * [eSpeak-NG](eSpeak-NG.md) + * [ESPResSo](ESPResSo.md) + * [Essentia](Essentia.md) + * [ETE](ETE.md) + * [ETSF_IO](ETSF_IO.md) + * [eudev](eudev.md) + * [EUKulele](EUKulele.md) + * [EVcouplings](EVcouplings.md) + * [Evcxr-REPL](Evcxr-REPL.md) + * [EveryBeam](EveryBeam.md) + * [EvidentialGene](EvidentialGene.md) + * [evince](evince.md) + * [evmix](evmix.md) + * [ExaBayes](ExaBayes.md) + * [ExaML](ExaML.md) + * [Excel-Writer-XLSX](Excel-Writer-XLSX.md) + * [ExifTool](ExifTool.md) + * [exiv2](exiv2.md) + * [Exonerate](Exonerate.md) + * [expat](expat.md) + * [expect](expect.md) + * [expecttest](expecttest.md) + * [eXpress](eXpress.md) + * [ExpressBetaDiversity](ExpressBetaDiversity.md) + * [Extrae](Extrae.md) + * [ExtremeLy](ExtremeLy.md) + * [EZC3D](EZC3D.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - *e* - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FACE.md b/docs/version-specific/supported-software/f/FACE.md new file mode 100644 index 000000000..cd1b17426 --- /dev/null +++ b/docs/version-specific/supported-software/f/FACE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FACE + +A Fortran Ansi Colors (and Styles) Environment. A KISS pure Fortran Library for easy colorize (and stylize) strings. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FALCON.md b/docs/version-specific/supported-software/f/FALCON.md new file mode 100644 index 000000000..6fa1c26ff --- /dev/null +++ b/docs/version-specific/supported-software/f/FALCON.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# FALCON + +Falcon: a set of tools for fast aligning long reads for consensus and assembly + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.8.8`` | | ``intel/2017b`` +``1.8.8`` | ``-Python-2.7.16`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FANN.md b/docs/version-specific/supported-software/f/FANN.md new file mode 100644 index 000000000..e17e0b7cf --- /dev/null +++ b/docs/version-specific/supported-software/f/FANN.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# FANN + +Fast Artificial Neural Network Library is a free open source neural network library, which implements multilayer artificial neural networks in C with support for both fully connected and sparsely connected networks. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.0`` | ``GCCcore/6.4.0`` +``2.2.0`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FASTA.md b/docs/version-specific/supported-software/f/FASTA.md new file mode 100644 index 000000000..a2406f68a --- /dev/null +++ b/docs/version-specific/supported-software/f/FASTA.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# FASTA + +The FASTA programs find regions of local or global (new) similarity between protein or DNA sequences, either by searching Protein or DNA databases, or by identifying local duplications within a sequence. + +*homepage*: + +version | toolchain +--------|---------- +``36.3.5e`` | ``foss/2016b`` +``36.3.8i`` | ``GCC/11.2.0`` +``36.3.8i`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FASTX-Toolkit.md b/docs/version-specific/supported-software/f/FASTX-Toolkit.md new file mode 100644 index 000000000..a70eb9156 --- /dev/null +++ b/docs/version-specific/supported-software/f/FASTX-Toolkit.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# FASTX-Toolkit + +The FASTX-Toolkit is a collection of command line tools for Short-Reads FASTA/FASTQ files preprocessing. + +*homepage*: + +version | toolchain +--------|---------- +``0.0.14`` | ``GCC/10.3.0`` +``0.0.14`` | ``GCC/11.2.0`` +``0.0.14`` | ``GCC/11.3.0`` +``0.0.14`` | ``GCC/9.3.0`` +``0.0.14`` | ``GCCcore/7.3.0`` +``0.0.14`` | ``foss/2016a`` +``0.0.14`` | ``foss/2016b`` +``0.0.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FBPIC.md b/docs/version-specific/supported-software/f/FBPIC.md new file mode 100644 index 000000000..d452b07fd --- /dev/null +++ b/docs/version-specific/supported-software/f/FBPIC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FBPIC + +FBPIC (Fourier-Bessel Particle-In-Cell) is a Particle-In-Cell (PIC) code for relativistic plasma physics. It is especially well-suited for physical simulations of laser-wakefield acceleration and plasma-wakefield acceleration. + +*homepage*: + +version | toolchain +--------|---------- +``0.20.3`` | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FCC.md b/docs/version-specific/supported-software/f/FCC.md new file mode 100644 index 000000000..5f93dd5d7 --- /dev/null +++ b/docs/version-specific/supported-software/f/FCC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FCC + +Fujitsu Compiler based compiler toolchain. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``4.5.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FCM.md b/docs/version-specific/supported-software/f/FCM.md new file mode 100644 index 000000000..9891554eb --- /dev/null +++ b/docs/version-specific/supported-software/f/FCM.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FCM + +FCM is a set of tools for managing and building source code. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FDMNES.md b/docs/version-specific/supported-software/f/FDMNES.md new file mode 100644 index 000000000..f66996e44 --- /dev/null +++ b/docs/version-specific/supported-software/f/FDMNES.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FDMNES + +X-ray spectroscopies are techniques which probe the electronic and structural properties of the materials. Most often performed at synchrotron, they are extensively used to analyse all classes of materials. The advances on the experimental side need the complementary progress on the theoretical side to extract confidentely all the information the data can furnish. In this context, the purpose of our FDMNES project is to supply to the community a user friendly ab initio code to simulate X-ray absorption and emission spectroscopies as well as resonant x-ray scattering and x-ray Raman spectroscopies, among other techniques. FDMNES, for Finite Difference Method Near Edge Structure, uses the density functional theory (DFT). It is thus specially devoted to the simulation of the K edges of all the chemical elements and of the L23 edges of the heavy ones. For the other edges, it includes advances by the use of the time dependent DFT (TD-DFT). + +*homepage*: + +version | toolchain +--------|---------- +``2024-02-29`` | ``gomkl/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FDS.md b/docs/version-specific/supported-software/f/FDS.md new file mode 100644 index 000000000..27e5dab3b --- /dev/null +++ b/docs/version-specific/supported-software/f/FDS.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# FDS + +Fire Dynamics Simulator (FDS) is a large-eddy simulation (LES) code for low-speed flows, with an emphasis on smoke and heat transport from fires. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``6.0.1`` | ``-no-OFED`` | ``system`` +``6.5.2`` | | ``intel/2016b`` +``6.5.3`` | | ``intel/2017a`` +``6.6.0`` | | ``intel/2017b`` +``6.6.0`` | | ``intel/2018a`` +``6.7.0`` | | ``intel/2018a`` +``6.7.4`` | | ``intel/2020a`` +``6.7.5`` | | ``intel/2020a`` +``6.7.6`` | | ``intel/2020b`` +``6.7.7`` | | ``intel/2021b`` +``6.7.9`` | | ``intel/2022a`` +``6.8.0`` | | ``intel/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FDTD_Solutions.md b/docs/version-specific/supported-software/f/FDTD_Solutions.md new file mode 100644 index 000000000..daaa76a4b --- /dev/null +++ b/docs/version-specific/supported-software/f/FDTD_Solutions.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# FDTD_Solutions + +High performance FDTD-method Maxwell solver for the design, analysis and optimization of nanophotonic devices, processes and materials. + +*homepage*: + +version | toolchain +--------|---------- +``8.11.337`` | ``system`` +``8.16.982`` | ``system`` +``8.20.1731`` | ``system`` +``8.6.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FEniCS.md b/docs/version-specific/supported-software/f/FEniCS.md new file mode 100644 index 000000000..f5fe8440a --- /dev/null +++ b/docs/version-specific/supported-software/f/FEniCS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FEniCS + +FEniCS is a computing platform for solving partial differential equations (PDEs). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2019.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FFAVES.md b/docs/version-specific/supported-software/f/FFAVES.md new file mode 100644 index 000000000..51e25b26b --- /dev/null +++ b/docs/version-specific/supported-software/f/FFAVES.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FFAVES + +Functional Feature Amplification Via Entropy Sorting (FFAVES). Use FFAVES to amplify the signal of groups of co-regulating genes in an unsupervised, multivariate manner. By amplifying the signal of genes with correlated expression, while filtering out genes that are randomly expressed, we can identify a subset of genes more predictive of different cell types. The output of FFAVES can then be used in our second algorithm, entropy sort feature weighting (ESFW), to create a ranked list of genes that are most likely to pertain to distinct sub-populations of cells in an scRNA-seq dataset. + +*homepage*: + +version | toolchain +--------|---------- +``2022.11.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FFC.md b/docs/version-specific/supported-software/f/FFC.md new file mode 100644 index 000000000..60cf4e91d --- /dev/null +++ b/docs/version-specific/supported-software/f/FFC.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# FFC + +The FEniCS Form Compiler (FFC) is a compiler for finite element variational forms. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2018.1.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``2019.1.0.post0`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FFLAS-FFPACK.md b/docs/version-specific/supported-software/f/FFLAS-FFPACK.md new file mode 100644 index 000000000..c4f6afafc --- /dev/null +++ b/docs/version-specific/supported-software/f/FFLAS-FFPACK.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# FFLAS-FFPACK + +Finite Field Linear Algebra Subroutines / Package + +*homepage*: + +version | toolchain +--------|---------- +``2.2.0`` | ``foss/2016a`` +``2.5.0`` | ``gfbf/2022a`` +``2.5.0`` | ``gfbf/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FFTW.MPI.md b/docs/version-specific/supported-software/f/FFTW.MPI.md new file mode 100644 index 000000000..b4f754c75 --- /dev/null +++ b/docs/version-specific/supported-software/f/FFTW.MPI.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# FFTW.MPI + +FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) in one or more dimensions, of arbitrary input size, and of both real and complex data. + +*homepage*: + +version | toolchain +--------|---------- +``3.3.10`` | ``gompi/2022.05`` +``3.3.10`` | ``gompi/2022.10`` +``3.3.10`` | ``gompi/2022a`` +``3.3.10`` | ``gompi/2022b`` +``3.3.10`` | ``gompi/2023.09`` +``3.3.10`` | ``gompi/2023a`` +``3.3.10`` | ``gompi/2023b`` +``3.3.10`` | ``gompi/2024.05`` +``3.3.10`` | ``nvompi/2022.07`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FFTW.md b/docs/version-specific/supported-software/f/FFTW.md new file mode 100644 index 000000000..a2f787810 --- /dev/null +++ b/docs/version-specific/supported-software/f/FFTW.md @@ -0,0 +1,88 @@ +--- +search: + boost: 0.5 +--- +# FFTW + +This is a fork of FFTW3 for the Armv8-A 64-bit architecture (AArch64) with 512-bit Scalable Vector Extension (SVE) support. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.0`` | ``-fujitsu`` | ``FCC/4.5.0`` +``2.1.5`` | | ``intel/2016b`` +``2.1.5`` | | ``intel/2017a`` +``2.1.5`` | | ``intel/2018b`` +``3.3.10`` | | ``GCC/11.3.0`` +``3.3.10`` | | ``GCC/12.2.0`` +``3.3.10`` | | ``GCC/12.3.0`` +``3.3.10`` | | ``GCC/13.2.0`` +``3.3.10`` | | ``GCC/13.3.0`` +``3.3.10`` | | ``NVHPC/22.7-CUDA-11.7.0`` +``3.3.10`` | | ``gompi/2021b`` +``3.3.10`` | | ``iimpi/2021b`` +``3.3.10`` | | ``iimpi/2022a`` +``3.3.10`` | | ``iimpi/2022b`` +``3.3.4`` | | ``gmpich/2016a`` +``3.3.4`` | | ``gmvapich2/1.7.20`` +``3.3.4`` | | ``gmvapich2/2016a`` +``3.3.4`` | | ``gompi/2016.04`` +``3.3.4`` | | ``gompi/2016.06`` +``3.3.4`` | | ``gompi/2016.07`` +``3.3.4`` | | ``gompi/2016a`` +``3.3.4`` | | ``gompi/2016b`` +``3.3.4`` | | ``intel/2016a`` +``3.3.4`` | | ``intel/2016b`` +``3.3.5`` | | ``gompi/2016.07`` +``3.3.5`` | | ``gompi/2016.09`` +``3.3.5`` | | ``gompi/2016b`` +``3.3.5`` | | ``intel/2016b`` +``3.3.6`` | | ``gimpi/2017b`` +``3.3.6`` | | ``gimpic/2017b`` +``3.3.6`` | | ``gompi/2017a`` +``3.3.6`` | | ``gompi/2017b`` +``3.3.6`` | | ``gompic/2017b`` +``3.3.6`` | | ``intel/2016b`` +``3.3.6`` | | ``intel/2017a`` +``3.3.6`` | | ``intel/2017b`` +``3.3.6`` | | ``intelcuda/2017b`` +``3.3.7`` | ``-serial`` | ``GCC/6.4.0-2.28`` +``3.3.7`` | | ``gimkl/2017a`` +``3.3.7`` | | ``gimpi/2018a`` +``3.3.7`` | | ``gmpich/2017.08`` +``3.3.7`` | | ``gompi/2018a`` +``3.3.7`` | | ``gompic/2018a`` +``3.3.7`` | | ``intel/2017b`` +``3.3.7`` | | ``intel/2018.00`` +``3.3.7`` | | ``intel/2018.01`` +``3.3.7`` | | ``intel/2018a`` +``3.3.7`` | | ``iomkl/2018a`` +``3.3.8`` | ``-serial`` | ``GCC/9.3.0`` +``3.3.8`` | | ``gompi/2018.08`` +``3.3.8`` | | ``gompi/2018b`` +``3.3.8`` | | ``gompi/2019a`` +``3.3.8`` | | ``gompi/2019b`` +``3.3.8`` | ``-amd`` | ``gompi/2020a`` +``3.3.8`` | | ``gompi/2020a`` +``3.3.8`` | | ``gompi/2020b`` +``3.3.8`` | | ``gompic/2018b`` +``3.3.8`` | | ``gompic/2019a`` +``3.3.8`` | | ``gompic/2019b`` +``3.3.8`` | | ``gompic/2020a`` +``3.3.8`` | | ``gompic/2020b`` +``3.3.8`` | | ``iimpi/2020b`` +``3.3.8`` | | ``intel/2018b`` +``3.3.8`` | | ``intel/2019a`` +``3.3.8`` | | ``intel/2019b`` +``3.3.8`` | | ``intel/2020a`` +``3.3.8`` | | ``intel/2020b`` +``3.3.8`` | | ``iomkl/2018b`` +``3.3.8`` | | ``iomkl/2020b`` +``3.3.8`` | | ``iompi/2020b`` +``3.3.9`` | | ``gompi/2021a`` +``3.3.9`` | | ``intel/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FFmpeg.md b/docs/version-specific/supported-software/f/FFmpeg.md new file mode 100644 index 000000000..7d32bf76e --- /dev/null +++ b/docs/version-specific/supported-software/f/FFmpeg.md @@ -0,0 +1,51 @@ +--- +search: + boost: 0.5 +--- +# FFmpeg + +A complete, cross-platform solution to record, convert and stream audio and video. + +*homepage*: + +version | toolchain +--------|---------- +``0.10.16`` | ``gimkl/2.11.5`` +``0.10.16`` | ``intel/2016a`` +``2.8.6`` | ``intel/2016a`` +``2.8.7`` | ``foss/2016a`` +``2.8.7`` | ``intel/2016a`` +``3.0.2`` | ``foss/2016a`` +``3.0.2`` | ``intel/2016a`` +``3.1.3`` | ``foss/2016b`` +``3.1.3`` | ``intel/2016b`` +``3.2.4`` | ``gimkl/2017a`` +``3.3.1`` | ``foss/2016b`` +``3.3.4`` | ``intel/2017a`` +``3.4`` | ``GCCcore/6.4.0`` +``3.4.1`` | ``foss/2017b`` +``3.4.1`` | ``intel/2017b`` +``3.4.2`` | ``foss/2018a`` +``3.4.2`` | ``intel/2018a`` +``3.4.5`` | ``foss/2018b`` +``4.0`` | ``foss/2018a`` +``4.0`` | ``intel/2018a`` +``4.0.1`` | ``intel/2018a`` +``4.1`` | ``foss/2018b`` +``4.1`` | ``fosscuda/2018b`` +``4.1`` | ``intel/2018b`` +``4.1.3`` | ``GCCcore/8.2.0`` +``4.2.1`` | ``GCCcore/8.3.0`` +``4.2.2`` | ``GCCcore/9.3.0`` +``4.3.1`` | ``GCCcore/10.2.0`` +``4.3.2`` | ``GCCcore/10.3.0`` +``4.3.2`` | ``GCCcore/11.2.0`` +``4.4.2`` | ``GCCcore/11.3.0`` +``5.0.1`` | ``GCCcore/11.3.0`` +``5.1.2`` | ``GCCcore/12.2.0`` +``6.0`` | ``GCCcore/12.3.0`` +``6.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FGSL.md b/docs/version-specific/supported-software/f/FGSL.md new file mode 100644 index 000000000..d412ac175 --- /dev/null +++ b/docs/version-specific/supported-software/f/FGSL.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FGSL + +FGSL: A Fortran interface to the GNU Scientific Library + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FHI-aims.md b/docs/version-specific/supported-software/f/FHI-aims.md new file mode 100644 index 000000000..490038284 --- /dev/null +++ b/docs/version-specific/supported-software/f/FHI-aims.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# FHI-aims + +FHI-aims is an efficient, accurate all-electron, full-potential electronic structure code package for computational molecular and materials science (non-periodic and periodic systems). The code supports DFT (semilocal and hybrid) and many-body perturbation theory. FHI-aims is particularly efficient for molecular systems and nanostructures, while maintaining high numerical accuracy for all production tasks. Production calculations handle up to several thousand atoms and can efficiently use (ten) thousands of cores. + +*homepage*: + +version | toolchain +--------|---------- +``200112_2`` | ``intel/2019b`` +``221103`` | ``intel/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FIAT.md b/docs/version-specific/supported-software/f/FIAT.md new file mode 100644 index 000000000..3cd11c19a --- /dev/null +++ b/docs/version-specific/supported-software/f/FIAT.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# FIAT + +The FInite element Automatic Tabulator FIAT supports generation of arbitrary order instances of the Lagrange elements on lines, triangles, and tetrahedra. It is also capable of generating arbitrary order instances of Jacobi-type quadrature rules on the same element shapes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.6.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.6.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``2018.1.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``2019.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FIGARO.md b/docs/version-specific/supported-software/f/FIGARO.md new file mode 100644 index 000000000..b1dac5ba4 --- /dev/null +++ b/docs/version-specific/supported-software/f/FIGARO.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FIGARO + +FIGARO: An efficient and objective tool for optimizing microbiome rRNA gene trimming parameters. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.2`` | ``intel/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FIRESTARTER.md b/docs/version-specific/supported-software/f/FIRESTARTER.md new file mode 100644 index 000000000..dab1c4b05 --- /dev/null +++ b/docs/version-specific/supported-software/f/FIRESTARTER.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# FIRESTARTER + +FIRESTARTER: A Processor Stress Test Utility. FIRESTARTER maximizes the energy consumption of 64-Bit x86 processors by generating heavy load on the execution units as well as transferring data between the cores and multiple levels of the memory hierarchy. + +*homepage*: + +version | toolchain +--------|---------- +``2.0`` | ``gcccuda/2020a`` +``2.0`` | ``gcccuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FIX.md b/docs/version-specific/supported-software/f/FIX.md new file mode 100644 index 000000000..fa5e45373 --- /dev/null +++ b/docs/version-specific/supported-software/f/FIX.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FIX + +FIX attempts to auto-classify ICA components into "good" vs "bad" components, so that the bad components can be removed from the 4D FMRI data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.06.12`` | ``-Octave-Python-3.7.2`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FIt-SNE.md b/docs/version-specific/supported-software/f/FIt-SNE.md new file mode 100644 index 000000000..6a7fcaa90 --- /dev/null +++ b/docs/version-specific/supported-software/f/FIt-SNE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FIt-SNE + +t-distributed stochastic neighbor embedding (t-SNE) is widely used for visualizing single-cell RNA-sequencing (scRNA-seq) data, but it scales poorly to large datasets. We dramatically accelerate t-SNE, obviating the need for data downsampling, and hence allowing visualization of rare cell populations. Furthermore, we implement a heatmap-style visualization for scRNA-seq based on one-dimensional t-SNE for simultaneously visualizing the expression patterns of thousands of genes. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``gompi/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FLAC.md b/docs/version-specific/supported-software/f/FLAC.md new file mode 100644 index 000000000..00e397549 --- /dev/null +++ b/docs/version-specific/supported-software/f/FLAC.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# FLAC + +FLAC stands for Free Lossless Audio Codec, an audio format similar to MP3, but lossless, meaning that audio is compressed in FLAC without any loss in quality. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.3`` | ``GCCcore/10.2.0`` +``1.3.3`` | ``GCCcore/10.3.0`` +``1.3.3`` | ``GCCcore/11.2.0`` +``1.3.4`` | ``GCCcore/11.3.0`` +``1.4.2`` | ``GCCcore/12.2.0`` +``1.4.2`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FLAIR.md b/docs/version-specific/supported-software/f/FLAIR.md new file mode 100644 index 000000000..97826d511 --- /dev/null +++ b/docs/version-specific/supported-software/f/FLAIR.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# FLAIR + +FLAIR (Full-Length Alternative Isoform analysis of RNA) for the correction, isoform definition, and alternative splicing analysis of noisy reads. FLAIR has primarily been used for nanopore cDNA, native RNA, and PacBio sequencing reads. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.5.1-20200630`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FLANN.md b/docs/version-specific/supported-software/f/FLANN.md new file mode 100644 index 000000000..5008b5142 --- /dev/null +++ b/docs/version-specific/supported-software/f/FLANN.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# FLANN + +FLANN is a library for performing fast approximate nearest neighbor searches in high dimensional spaces. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.8.4`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.8.4`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.8.4`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.9.1`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FLASH.md b/docs/version-specific/supported-software/f/FLASH.md new file mode 100644 index 000000000..224477a1c --- /dev/null +++ b/docs/version-specific/supported-software/f/FLASH.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# FLASH + +FLASH (Fast Length Adjustment of SHort reads) is a very fast and accurate software tool to merge paired-end reads from next-generation sequencing experiments. FLASH is designed to merge pairs of reads when the original DNA fragments are shorter than twice the length of reads. The resulting longer reads can significantly improve genome assemblies. They can also improve transcriptome assembly when FLASH is used to merge RNA-seq data. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.11`` | ``GCC/8.3.0`` +``1.2.11`` | ``foss/2016a`` +``1.2.11`` | ``foss/2018a`` +``1.2.11`` | ``foss/2018b`` +``2.2.00`` | ``GCC/11.2.0`` +``2.2.00`` | ``GCCcore/12.2.0`` +``2.2.00`` | ``foss/2018b`` +``2.2.00`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FLEUR.md b/docs/version-specific/supported-software/f/FLEUR.md new file mode 100644 index 000000000..20bf606db --- /dev/null +++ b/docs/version-specific/supported-software/f/FLEUR.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FLEUR + +FLEUR is a feature-full, freely available FLAPW (full potential linearized augmented planewave) code, based on density-functional theory. + +*homepage*: + +version | toolchain +--------|---------- +``0.26e`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FLINT.md b/docs/version-specific/supported-software/f/FLINT.md new file mode 100644 index 000000000..e5417b4ab --- /dev/null +++ b/docs/version-specific/supported-software/f/FLINT.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# FLINT + +FLINT (Fast Library for Number Theory) is a C library in support of computations in number theory. Operations that can be performed include conversions, arithmetic, computing GCDs, factoring, solving linear systems, and evaluating special functions. In addition, FLINT provides various low-level routines for fast arithmetic. FLINT is extensively documented and tested. + +*homepage*: + +version | toolchain +--------|---------- +``2.5.2`` | ``GCC/7.3.0-2.30`` +``2.5.2`` | ``GCC/8.2.0-2.31.1`` +``2.5.2`` | ``GCC/8.3.0`` +``2.5.2`` | ``iccifort/2018.3.222-GCC-7.3.0-2.30`` +``2.7.1`` | ``GCC/10.3.0`` +``2.8.4`` | ``foss/2021b`` +``2.9.0`` | ``gfbf/2022a`` +``2.9.0`` | ``gfbf/2022b`` +``3.1.1`` | ``gfbf/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FLTK.md b/docs/version-specific/supported-software/f/FLTK.md new file mode 100644 index 000000000..b6a2a9fa1 --- /dev/null +++ b/docs/version-specific/supported-software/f/FLTK.md @@ -0,0 +1,41 @@ +--- +search: + boost: 0.5 +--- +# FLTK + +FLTK is a cross-platform C++ GUI toolkit for UNIX/Linux (X11), Microsoft Windows, and MacOS X. FLTK provides modern GUI functionality without the bloat and supports 3D graphics via OpenGL and its built-in GLUT emulation. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.3`` | ``foss/2016a`` +``1.3.3`` | ``foss/2016b`` +``1.3.3`` | ``intel/2016a`` +``1.3.3`` | ``intel/2016b`` +``1.3.4`` | ``foss/2017b`` +``1.3.4`` | ``foss/2018a`` +``1.3.4`` | ``foss/2018b`` +``1.3.4`` | ``fosscuda/2017b`` +``1.3.4`` | ``fosscuda/2018a`` +``1.3.4`` | ``fosscuda/2018b`` +``1.3.4`` | ``intel/2017a`` +``1.3.4`` | ``intel/2017b`` +``1.3.4`` | ``intel/2018a`` +``1.3.4`` | ``intel/2018b`` +``1.3.4`` | ``intelcuda/2017b`` +``1.3.5`` | ``GCC/8.2.0-2.31.1`` +``1.3.5`` | ``GCC/8.3.0`` +``1.3.5`` | ``GCCcore/10.2.0`` +``1.3.5`` | ``GCCcore/9.3.0`` +``1.3.6`` | ``GCCcore/10.3.0`` +``1.3.7`` | ``GCCcore/11.2.0`` +``1.3.8`` | ``GCCcore/11.3.0`` +``1.3.8`` | ``GCCcore/12.2.0`` +``1.3.8`` | ``GCCcore/12.3.0`` +``1.3.9`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FLUENT.md b/docs/version-specific/supported-software/f/FLUENT.md new file mode 100644 index 000000000..ffa288702 --- /dev/null +++ b/docs/version-specific/supported-software/f/FLUENT.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# FLUENT + +ANSYS FLUENT software contains the broad physical modeling capabilities needed to model flow, turbulence, heat transfer, and reactions for industrial applications ranging from air flow over an aircraft wing to combustion in a furnace, from bubble columns to oil platforms, from blood flow to semiconductor manufacturing, and from clean room design to wastewater treatment plants. + +*homepage*: + +version | toolchain +--------|---------- +``14.5`` | ``system`` +``15.0.7`` | ``system`` +``16.0`` | ``system`` +``17.1`` | ``system`` +``18.0`` | ``system`` +``18.1`` | ``system`` +``18.2`` | ``system`` +``2019R3`` | ``system`` +``2021R1`` | ``system`` +``2021R2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FMILibrary.md b/docs/version-specific/supported-software/f/FMILibrary.md new file mode 100644 index 000000000..7bc8c115d --- /dev/null +++ b/docs/version-specific/supported-software/f/FMILibrary.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FMILibrary + +FMI library is intended as a foundation for applications interfacing FMUs (Functional Mockup Units) that follow FMI Standard. This version of the library supports FMI 1.0 and FMI2.0. See http://www.fmi-standard.org/ + +*homepage*: + +version | toolchain +--------|---------- +``2.0.3`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FMM3D.md b/docs/version-specific/supported-software/f/FMM3D.md new file mode 100644 index 000000000..49d141b50 --- /dev/null +++ b/docs/version-specific/supported-software/f/FMM3D.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# FMM3D + +Flatiron Institute Fast Multipole Libraries: a set of libraries to compute N-body interactions governed by the Laplace and Helmholtz equations, to a specified precision, in three dimensions, on a multi-core shared-memory machine. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.4`` | ``foss/2023a`` +``20211018`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FMPy.md b/docs/version-specific/supported-software/f/FMPy.md new file mode 100644 index 000000000..1e58fa24e --- /dev/null +++ b/docs/version-specific/supported-software/f/FMPy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FMPy + +FMPy is a free Python library to simulate Functional Mock-up Units (FMUs). + +*homepage*: + +version | toolchain +--------|---------- +``0.3.2`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FMRIprep.md b/docs/version-specific/supported-software/f/FMRIprep.md new file mode 100644 index 000000000..6a8ecc31f --- /dev/null +++ b/docs/version-specific/supported-software/f/FMRIprep.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# FMRIprep + +FMRIprep is a functional magnetic resonance imaging (fMRI) data preprocessing pipeline that is designed to provide an easily accessible, state-of-the-art interface that is robust to variations in scan acquisition protocols and that requires minimal user input, while providing easily interpretable and comprehensive error and output reporting. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.8`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.4.1`` | ``-Python-3.6.6`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FMS.md b/docs/version-specific/supported-software/f/FMS.md new file mode 100644 index 000000000..ff4b95791 --- /dev/null +++ b/docs/version-specific/supported-software/f/FMS.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# FMS + +The Flexible Modeling System (FMS) is a software framework for supporting the efficient development, construction, execution, and scientific interpretation of atmospheric, oceanic, and climate system models. + +*homepage*: + +version | toolchain +--------|---------- +``2022.02`` | ``gompi/2022a`` +``2022.02`` | ``iimpi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FORD.md b/docs/version-specific/supported-software/f/FORD.md new file mode 100644 index 000000000..88a810712 --- /dev/null +++ b/docs/version-specific/supported-software/f/FORD.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# FORD + +FORD is an automatic documentation generator for modern Fortran programs + +*homepage*: + +version | toolchain +--------|---------- +``6.1.1`` | ``GCCcore/10.2.0`` +``6.1.15`` | ``GCCcore/11.3.0`` +``6.1.6`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FOX-Toolkit.md b/docs/version-specific/supported-software/f/FOX-Toolkit.md new file mode 100644 index 000000000..0318a8a90 --- /dev/null +++ b/docs/version-specific/supported-software/f/FOX-Toolkit.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# FOX-Toolkit + +FOX is a C++ based Toolkit for developing Graphical User Interfaces easily and effectively. It offers a wide, and growing, collection of Controls, and provides state of the art facilities such as drag and drop, selection, as well as OpenGL widgets for 3D graphical manipulation. FOX also implements icons, images, and user-convenience features such as status line help, and tooltips. + +*homepage*: + +version | toolchain +--------|---------- +``1.6.57`` | ``GCCcore/11.2.0`` +``1.6.57`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FPM.md b/docs/version-specific/supported-software/f/FPM.md new file mode 100644 index 000000000..b34408a29 --- /dev/null +++ b/docs/version-specific/supported-software/f/FPM.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# FPM + +Effing package management! Build packages for multiple platforms (deb, rpm, etc) with great ease and sanity. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.15.1`` | | ``GCCcore/12.2.0`` +``1.3.3`` | ``-Ruby-2.1.6`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FRANz.md b/docs/version-specific/supported-software/f/FRANz.md new file mode 100644 index 000000000..4917c7c08 --- /dev/null +++ b/docs/version-specific/supported-software/f/FRANz.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FRANz + +A fast and flexible parentage inference program for natural populations. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.0`` | ``foss/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FRUIT.md b/docs/version-specific/supported-software/f/FRUIT.md new file mode 100644 index 000000000..908b114eb --- /dev/null +++ b/docs/version-specific/supported-software/f/FRUIT.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# FRUIT + +FORTRAN Unit Test Framework (FRUIT) + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.4.3`` | ``-Ruby-2.5.1`` | ``foss/2018a`` +``3.4.3`` | ``-Ruby-2.5.1`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FRUIT_processor.md b/docs/version-specific/supported-software/f/FRUIT_processor.md new file mode 100644 index 000000000..05610339f --- /dev/null +++ b/docs/version-specific/supported-software/f/FRUIT_processor.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# FRUIT_processor + +FORTRAN Unit Test Framework (FRUIT) + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.4.3`` | ``-Ruby-2.5.1`` | ``foss/2018a`` +``3.4.3`` | ``-Ruby-2.5.1`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FSL.md b/docs/version-specific/supported-software/f/FSL.md new file mode 100644 index 000000000..e9d5d8c65 --- /dev/null +++ b/docs/version-specific/supported-software/f/FSL.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# FSL + +FSL is a comprehensive library of analysis tools for FMRI, MRI and DTI brain imaging data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.0.10`` | | ``foss/2017b`` +``5.0.10`` | | ``intel/2017a`` +``5.0.10`` | | ``intel/2017b`` +``5.0.11`` | ``-Python-3.6.6`` | ``foss/2018b`` +``5.0.11`` | | ``foss/2018b`` +``5.0.9`` | ``-centos6_64`` | ``system`` +``5.0.9`` | ``-Mesa-11.2.1`` | ``intel/2016a`` +``5.0.9`` | | ``intel/2016a`` +``6.0.1`` | ``-Python-2.7.15`` | ``foss/2019a`` +``6.0.1`` | ``-Python-3.7.2`` | ``foss/2019a`` +``6.0.2`` | ``-Python-2.7.15-CUDA-9.2.88`` | ``foss/2018b`` +``6.0.2`` | ``-Python-2.7.15`` | ``foss/2018b`` +``6.0.2`` | ``-Python-2.7.15`` | ``foss/2019a`` +``6.0.2`` | ``-Python-3.7.2`` | ``foss/2019a`` +``6.0.3`` | ``-Python-3.7.4`` | ``foss/2019b`` +``6.0.4`` | ``-Python-3.7.4`` | ``foss/2019b`` +``6.0.5.1`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FSLeyes.md b/docs/version-specific/supported-software/f/FSLeyes.md new file mode 100644 index 000000000..558123448 --- /dev/null +++ b/docs/version-specific/supported-software/f/FSLeyes.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FSLeyes + +FSLeyes is the FSL image viewer. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.15.0`` | ``-Python-2.7.13`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FSON.md b/docs/version-specific/supported-software/f/FSON.md new file mode 100644 index 000000000..e7c08ca53 --- /dev/null +++ b/docs/version-specific/supported-software/f/FSON.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FSON + +Fortran 95 JSON Parser + +*homepage*: + +version | toolchain +--------|---------- +``1.0.5`` | ``GCC/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FTGL.md b/docs/version-specific/supported-software/f/FTGL.md new file mode 100644 index 000000000..53057946c --- /dev/null +++ b/docs/version-specific/supported-software/f/FTGL.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# FTGL + +FTGL is a free open source library to enable developers to use arbitrary fonts in their OpenGL (www.opengl.org) applications. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.3-rc5`` | ``GCCcore/10.2.0`` +``2.1.3-rc5`` | ``GCCcore/8.2.0`` +``2.1.3-rc5`` | ``foss/2017b`` +``2.1.3-rc5`` | ``foss/2018a`` +``2.1.3-rc5`` | ``fosscuda/2018b`` +``2.1.3-rc5`` | ``intel/2017b`` +``2.4.0`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FUNWAVE-TVD.md b/docs/version-specific/supported-software/f/FUNWAVE-TVD.md new file mode 100644 index 000000000..92be7f3d3 --- /dev/null +++ b/docs/version-specific/supported-software/f/FUNWAVE-TVD.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# FUNWAVE-TVD + +FUNWAVE–TVD is the TVD version of the fully nonlinear Boussinesq wave model (FUNWAVE) initially developed by Kirby et al. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.1-20170525`` | ``-no-storm`` | ``intel/2017a`` +``3.1-20170525`` | | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FUSE.md b/docs/version-specific/supported-software/f/FUSE.md new file mode 100644 index 000000000..cf4f49905 --- /dev/null +++ b/docs/version-specific/supported-software/f/FUSE.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# FUSE + +The reference implementation of the Linux FUSE (Filesystem in Userspace) interface + +*homepage*: + +version | toolchain +--------|---------- +``3.14.1`` | ``GCCcore/11.3.0`` +``3.14.1`` | ``GCCcore/12.2.0`` +``3.2.6`` | ``intel/2018a`` +``3.4.1`` | ``foss/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FabIO.md b/docs/version-specific/supported-software/f/FabIO.md new file mode 100644 index 000000000..7617be2c2 --- /dev/null +++ b/docs/version-specific/supported-software/f/FabIO.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# FabIO + +FabIO is an I/O library for images produced by 2D X-ray detectors and written in Python. FabIO support images detectors from a dozen of companies (including Mar, Dectris, ADSC, Hamamatsu, Oxford, ...), for a total of 20 different file formats (like CBF, EDF, TIFF, ...) and offers an unified interface to their headers (as a python dictionary) and datasets (as a numpy ndarray of integers or floats). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.2`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.10.2`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``0.11.0`` | | ``foss/2020b`` +``0.11.0`` | | ``fosscuda/2020b`` +``0.14.0`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/Faber.md b/docs/version-specific/supported-software/f/Faber.md new file mode 100644 index 000000000..ed3c6b827 --- /dev/null +++ b/docs/version-specific/supported-software/f/Faber.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Faber + +Faber started as a clone of Boost.Build, to experiment with a new Python frontend. Meanwhile it has evolved into a new build system, which retains most of the features found in Boost.Build, but with (hopefully !) much simplified logic, in addition of course to using Python as scripting language, rather than Jam. The original bjam engine is still in use as scheduler, though at this point that is mostly an implementation detail. + +*homepage*: + +version | toolchain +--------|---------- +``0.3`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/Faiss.md b/docs/version-specific/supported-software/f/Faiss.md new file mode 100644 index 000000000..eea9aa2d5 --- /dev/null +++ b/docs/version-specific/supported-software/f/Faiss.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Faiss + +Faiss is a library for efficient similarity search and clustering of dense vectors. It contains algorithms that search in sets of vectors of any size, up to ones that possibly do not fit in RAM. It also contains supporting code for evaluation and parameter tuning. Faiss is written in C++ with complete wrappers for Python/numpy. Some of the most useful algorithms are implemented on the GPU. It is developed primarily at Meta's Fundamental AI Research group. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.7.4`` | ``-CUDA-12.1.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FastANI.md b/docs/version-specific/supported-software/f/FastANI.md new file mode 100644 index 000000000..c345e0b8e --- /dev/null +++ b/docs/version-specific/supported-software/f/FastANI.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# FastANI + +FastANI is developed for fast alignment-free computation of whole-genome Average Nucleotide Identity (ANI). ANI is defined as mean nucleotide identity of orthologous gene pairs shared between two microbial genomes. FastANI supports pairwise comparison of both complete and draft genome assemblies. + +*homepage*: + +version | toolchain +--------|---------- +``1.1`` | ``foss/2018b`` +``1.1`` | ``intel/2018b`` +``1.2`` | ``GCC/8.2.0-2.31.1`` +``1.2`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``1.3`` | ``iccifort/2019.5.281`` +``1.31`` | ``iccifort/2020.1.217`` +``1.33`` | ``GCC/10.2.0`` +``1.33`` | ``GCC/10.3.0`` +``1.33`` | ``GCC/11.2.0`` +``1.33`` | ``GCC/11.3.0`` +``1.33`` | ``iccifort/2020.4.304`` +``1.33`` | ``intel-compilers/2021.4.0`` +``1.34`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FastFold.md b/docs/version-specific/supported-software/f/FastFold.md new file mode 100644 index 000000000..d6ae03dc9 --- /dev/null +++ b/docs/version-specific/supported-software/f/FastFold.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FastFold + +Optimizing Protein Structure Prediction Model Training and Inference on GPU Clusters + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20220729`` | ``-CUDA-11.3.1`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FastME.md b/docs/version-specific/supported-software/f/FastME.md new file mode 100644 index 000000000..d1260a1cd --- /dev/null +++ b/docs/version-specific/supported-software/f/FastME.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# FastME + +FastME: a comprehensive, accurate and fast distance-based phylogeny inference program. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.5`` | ``foss/2016a`` +``2.1.6.1`` | ``GCC/10.2.0`` +``2.1.6.1`` | ``GCC/8.3.0`` +``2.1.6.1`` | ``iccifort/2019.5.281`` +``2.1.6.1`` | ``intel/2018a`` +``2.1.6.1`` | ``intel/2018b`` +``2.1.6.3`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FastQC.md b/docs/version-specific/supported-software/f/FastQC.md new file mode 100644 index 000000000..f3a2bcd4a --- /dev/null +++ b/docs/version-specific/supported-software/f/FastQC.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# FastQC + +FastQC is a quality control application for high throughput sequence data. It reads in sequence data in a variety of formats and can either provide an interactive application to review the results of several different QC checks, or create an HTML based report which can be integrated into a pipeline. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.1`` | ``-Java-1.7.0_80`` | ``system`` +``0.11.2`` | ``-Java-1.7.0_60`` | ``system`` +``0.11.3`` | ``-Java-1.7.0_80`` | ``system`` +``0.11.4`` | ``-Java-1.8.0_66`` | ``system`` +``0.11.4`` | ``-Java-1.8.0_74`` | ``system`` +``0.11.5`` | ``-Java-1.7.0_80`` | ``system`` +``0.11.5`` | ``-Java-1.8.0_144`` | ``system`` +``0.11.5`` | ``-Java-1.8.0_74`` | ``system`` +``0.11.7`` | ``-Java-1.8.0_162`` | ``system`` +``0.11.8`` | ``-Java-1.8`` | ``system`` +``0.11.8`` | ``-Java-11`` | ``system`` +``0.11.9`` | ``-Java-1.8`` | ``system`` +``0.11.9`` | ``-Java-11`` | ``system`` +``0.12.1`` | ``-Java-11`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FastQTL.md b/docs/version-specific/supported-software/f/FastQTL.md new file mode 100644 index 000000000..3506af94b --- /dev/null +++ b/docs/version-specific/supported-software/f/FastQTL.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# FastQTL + +FastQTL is a QTL mapper + +*homepage*: + +version | toolchain +--------|---------- +``2.184`` | ``GCC/11.2.0`` +``2.184`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FastQ_Screen.md b/docs/version-specific/supported-software/f/FastQ_Screen.md new file mode 100644 index 000000000..d11cc08f2 --- /dev/null +++ b/docs/version-specific/supported-software/f/FastQ_Screen.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# FastQ_Screen + +FastQ Screen allows you to screen a library of sequences in FastQ format against a set of sequence databases so you can see if the composition of the library matches with what you expect. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.11.3`` | ``-Perl-5.24.0`` | ``foss/2016b`` +``0.11.4`` | ``-Perl-5.24.0`` | ``foss/2016b`` +``0.12.0`` | ``-Perl-5.26.1`` | ``intel/2018a`` +``0.13.0`` | ``-Perl-5.28.0`` | ``foss/2018b`` +``0.14.0`` | | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FastRFS.md b/docs/version-specific/supported-software/f/FastRFS.md new file mode 100644 index 000000000..a270bc507 --- /dev/null +++ b/docs/version-specific/supported-software/f/FastRFS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FastRFS + +Fast Robinson Foulds Supertrees + +*homepage*: + +version | toolchain +--------|---------- +``1.0-20190613`` | ``gompi/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FastTree.md b/docs/version-specific/supported-software/f/FastTree.md new file mode 100644 index 000000000..d77c72bbe --- /dev/null +++ b/docs/version-specific/supported-software/f/FastTree.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# FastTree + +FastTree infers approximately-maximum-likelihood phylogenetic trees from alignments of nucleotide or protein sequences. FastTree can handle alignments with up to a million of sequences in a reasonable amount of time and memory. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.10`` | ``foss/2018b`` +``2.1.10`` | ``intel/2017b`` +``2.1.10`` | ``intel/2018a`` +``2.1.10`` | ``intel/2018b`` +``2.1.11`` | ``GCCcore/10.2.0`` +``2.1.11`` | ``GCCcore/10.3.0`` +``2.1.11`` | ``GCCcore/11.2.0`` +``2.1.11`` | ``GCCcore/11.3.0`` +``2.1.11`` | ``GCCcore/12.3.0`` +``2.1.11`` | ``GCCcore/8.2.0`` +``2.1.11`` | ``GCCcore/8.3.0`` +``2.1.11`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FastViromeExplorer.md b/docs/version-specific/supported-software/f/FastViromeExplorer.md new file mode 100644 index 000000000..b92df8290 --- /dev/null +++ b/docs/version-specific/supported-software/f/FastViromeExplorer.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FastViromeExplorer + +Identify the viruses/phages and their abundance in the viral metagenomics data. + +*homepage*: + +version | toolchain +--------|---------- +``20180422`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FastaIndex.md b/docs/version-specific/supported-software/f/FastaIndex.md new file mode 100644 index 000000000..6bd9f62f0 --- /dev/null +++ b/docs/version-specific/supported-software/f/FastaIndex.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FastaIndex + +FastA index (.fai) handler compatible with samtools faidx + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.11rc7`` | ``-Python-2.7.14`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/Fastaq.md b/docs/version-specific/supported-software/f/Fastaq.md new file mode 100644 index 000000000..743e93dca --- /dev/null +++ b/docs/version-specific/supported-software/f/Fastaq.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Fastaq + +Python3 scripts to manipulate FASTA and FASTQ files. + +*homepage*: + +version | toolchain +--------|---------- +``3.17.0`` | ``GCC/10.3.0`` +``3.17.0`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/Ferret.md b/docs/version-specific/supported-software/f/Ferret.md new file mode 100644 index 000000000..dd3ecdf97 --- /dev/null +++ b/docs/version-specific/supported-software/f/Ferret.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Ferret + +Ferret is an interactive computer visualization and analysis environment designed to meet the needs of oceanographers and meteorologists analyzing large and complex gridded data sets. + +*homepage*: + +version | toolchain +--------|---------- +``7.3`` | ``intel/2017b`` +``7.5.0`` | ``foss/2019b`` +``7.6.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FigureGen.md b/docs/version-specific/supported-software/f/FigureGen.md new file mode 100644 index 000000000..5a8f44b8c --- /dev/null +++ b/docs/version-specific/supported-software/f/FigureGen.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FigureGen + +FigureGen is a Fortran program that creates images for ADCIRC files. It reads mesh files (fort.14, etc.), nodal attributes files (fort.13, etc.) and output files (fort.63, fort.64, maxele.63, etc.). It plots contours, contour lines, and vectors. Using FigureGen, you can go directly from the ADCIRC input and output files to a presentation-quality figure, for one or multiple time snaps. + +*homepage*: + +version | toolchain +--------|---------- +``51-20190516`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/Fiji.md b/docs/version-specific/supported-software/f/Fiji.md new file mode 100644 index 000000000..4f8c9b482 --- /dev/null +++ b/docs/version-specific/supported-software/f/Fiji.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Fiji + +Fiji is an image processing package—a 'batteries-included' distribution of ImageJ, bundling a lot of plugins which facilitate scientific image analysis. This release is based on ImageJ-2.1.0 and Fiji-2.1.1 + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.9.0`` | ``-Java-1.8`` | ``system`` +``2.9.0`` | ``-Java-8`` | ``system`` +``20170530`` | | ``system`` +``20191119-2057`` | | ``system`` +``20201104-1356`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/Filtlong.md b/docs/version-specific/supported-software/f/Filtlong.md new file mode 100644 index 000000000..e428bacca --- /dev/null +++ b/docs/version-specific/supported-software/f/Filtlong.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Filtlong + +Filtlong is a tool for filtering long reads by quality. It can take a set of long reads and produce a smaller, better subset. It uses both read length (longer is better) and read identity (higher is better) when choosing which reads pass the filter + +*homepage*: + +version | toolchain +--------|---------- +``0.2.0`` | ``GCC/10.2.0`` +``0.2.0`` | ``foss/2016b`` +``0.2.1`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/Fiona.md b/docs/version-specific/supported-software/f/Fiona.md new file mode 100644 index 000000000..a2af9ff23 --- /dev/null +++ b/docs/version-specific/supported-software/f/Fiona.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# Fiona + +Fiona is designed to be simple and dependable. It focuses on reading and writing data in standard Python IO style and relies upon familiar Python types and protocols such as files, dictionaries, mappings, and iterators instead of classes specific to OGR. Fiona can read and write real-world data using multi-layered GIS formats and zipped virtual file systems and integrates readily with other Python GIS packages such as pyproj, Rtree, and Shapely. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.8.13`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.8.13`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``1.8.13`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.8.13.post1`` | ``-Python-3.7.2`` | ``foss/2019a`` +``1.8.16`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.8.20`` | | ``foss/2020b`` +``1.8.20`` | | ``foss/2021a`` +``1.8.20`` | | ``intel/2020b`` +``1.8.21`` | | ``foss/2021b`` +``1.8.21`` | | ``foss/2022a`` +``1.9.2`` | | ``foss/2022b`` +``1.9.5`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FireWorks.md b/docs/version-specific/supported-software/f/FireWorks.md new file mode 100644 index 000000000..822e622eb --- /dev/null +++ b/docs/version-specific/supported-software/f/FireWorks.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FireWorks + +FireWorks helps run calculation workflows, with a centralized workflow server controlling many worker nodes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4.2`` | ``-Python-2.7.13`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/Firefox.md b/docs/version-specific/supported-software/f/Firefox.md new file mode 100644 index 000000000..542ddc6f1 --- /dev/null +++ b/docs/version-specific/supported-software/f/Firefox.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Firefox + +Firefox is a free, open source Web browser for Windows, Linux and Mac OS X. It is based on the Mozilla code base and offers customization options and features such as its capability to block pop-up windows, tabbed browsing, privacy and security measures, smart searching, and RSS live bookmarks. + +*homepage*: + +version | toolchain +--------|---------- +``44.0.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/Flask.md b/docs/version-specific/supported-software/f/Flask.md new file mode 100644 index 000000000..c49b05b59 --- /dev/null +++ b/docs/version-specific/supported-software/f/Flask.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# Flask + +" Flask is a lightweight WSGI web application framework. It is designed to make getting started quick and easy, with the ability to scale up to complex applications. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.2`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.1.2`` | | ``GCCcore/10.2.0`` +``1.1.2`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``1.1.2`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``1.1.4`` | | ``GCCcore/10.3.0`` +``2.0.2`` | | ``GCCcore/11.2.0`` +``2.2.2`` | | ``GCCcore/11.3.0`` +``2.2.3`` | | ``GCCcore/12.2.0`` +``2.3.3`` | | ``GCCcore/12.3.0`` +``3.0.0`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/Flexbar.md b/docs/version-specific/supported-software/f/Flexbar.md new file mode 100644 index 000000000..db9833843 --- /dev/null +++ b/docs/version-specific/supported-software/f/Flexbar.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Flexbar + +The program Flexbar preprocesses high-throughput sequencing data efficiently + +*homepage*: + +version | toolchain +--------|---------- +``3.5.0`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FlexiBLAS.md b/docs/version-specific/supported-software/f/FlexiBLAS.md new file mode 100644 index 000000000..3be564f96 --- /dev/null +++ b/docs/version-specific/supported-software/f/FlexiBLAS.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# FlexiBLAS + +FlexiBLAS is a wrapper library that enables the exchange of the BLAS and LAPACK implementation used by a program without recompiling or relinking it. + +*homepage*: + +version | toolchain +--------|---------- +``3.0.4`` | ``GCC/10.3.0`` +``3.0.4`` | ``GCC/11.2.0`` +``3.1.3`` | ``GCC/11.2.0`` +``3.2.0`` | ``GCC/11.3.0`` +``3.2.0`` | ``NVHPC/22.7-CUDA-11.7.0`` +``3.2.1`` | ``GCC/12.2.0`` +``3.3.1`` | ``GCC/12.3.0`` +``3.3.1`` | ``GCC/13.2.0`` +``3.4.4`` | ``GCC/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FlexiDot.md b/docs/version-specific/supported-software/f/FlexiDot.md new file mode 100644 index 000000000..1fc3385cc --- /dev/null +++ b/docs/version-specific/supported-software/f/FlexiDot.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FlexiDot + +Highly customizable, ambiguity-aware dotplots for visual sequence analyses + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.06`` | ``-Python-2.7.15`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/Flink.md b/docs/version-specific/supported-software/f/Flink.md new file mode 100644 index 000000000..b32594c6b --- /dev/null +++ b/docs/version-specific/supported-software/f/Flink.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Flink + +Apache Flink is a framework and distributed processing engine for stateful computations over unbounded and bounded data streams. Flink has been designed to run in all common cluster environments, perform computations at in-memory speed and at any scale. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.11.2`` | ``-bin-scala_2.11`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/Flye.md b/docs/version-specific/supported-software/f/Flye.md new file mode 100644 index 000000000..a50961677 --- /dev/null +++ b/docs/version-specific/supported-software/f/Flye.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# Flye + +Flye is a de novo assembler for long and noisy reads, such as those produced by PacBio and Oxford Nanopore Technologies. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.4`` | ``-Python-2.7.15`` | ``intel/2018b`` +``2.6`` | ``-Python-3.7.2`` | ``foss/2019a`` +``2.6`` | ``-Python-3.7.4`` | ``intel/2019b`` +``2.8.1`` | ``-Python-3.8.2`` | ``intel/2020a`` +``2.8.2`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2.8.3`` | | ``GCC/10.2.0`` +``2.8.3`` | | ``iccifort/2020.4.304`` +``2.9`` | | ``GCC/10.3.0`` +``2.9`` | | ``intel-compilers/2021.2.0`` +``2.9.1`` | | ``GCC/11.2.0`` +``2.9.2`` | | ``GCC/11.3.0`` +``2.9.3`` | | ``GCC/10.3.0`` +``2.9.3`` | | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FoBiS.md b/docs/version-specific/supported-software/f/FoBiS.md new file mode 100644 index 000000000..85e82b669 --- /dev/null +++ b/docs/version-specific/supported-software/f/FoBiS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FoBiS + +A Fortran Building System for automatic building modern Fortran projects + +*homepage*: + +version | toolchain +--------|---------- +``3.0.5`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FoX.md b/docs/version-specific/supported-software/f/FoX.md new file mode 100644 index 000000000..2374ad37f --- /dev/null +++ b/docs/version-specific/supported-software/f/FoX.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# FoX + +FoX is an XML library written in Fortran 95. It allows software developers to read, write and modify XML documents from Fortran applications without the complications of dealing with multi-language development. + +*homepage*: + +version | toolchain +--------|---------- +``4.1.2`` | ``GCC/11.2.0`` +``4.1.2`` | ``GCC/9.3.0`` +``4.1.2`` | ``intel/2017b`` +``4.1.2`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FoldX.md b/docs/version-specific/supported-software/f/FoldX.md new file mode 100644 index 000000000..dc90f570d --- /dev/null +++ b/docs/version-specific/supported-software/f/FoldX.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# FoldX + +FoldX is used to provide a fast and quantitative estimation of the importance of the interactions contributing to the stability of proteins and protein complexes. + +*homepage*: + +version | toolchain +--------|---------- +``2.5.2`` | ``system`` +``3.0-beta5.1`` | ``system`` +``3.0-beta6.1`` | ``system`` +``3.0-beta6`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FragGeneScan.md b/docs/version-specific/supported-software/f/FragGeneScan.md new file mode 100644 index 000000000..ac07a25d1 --- /dev/null +++ b/docs/version-specific/supported-software/f/FragGeneScan.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# FragGeneScan + +FragGeneScan is an application for finding (fragmented) genes in short reads. + +*homepage*: + +version | toolchain +--------|---------- +``1.31`` | ``GCCcore/10.2.0`` +``1.31`` | ``GCCcore/10.3.0`` +``1.31`` | ``GCCcore/11.2.0`` +``1.31`` | ``GCCcore/11.3.0`` +``1.31`` | ``GCCcore/8.2.0`` +``1.31`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FragPipe.md b/docs/version-specific/supported-software/f/FragPipe.md new file mode 100644 index 000000000..5c125210f --- /dev/null +++ b/docs/version-specific/supported-software/f/FragPipe.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FragPipe + +FragPipe is a Java Graphical User Interface (GUI) for a suite of computational tools enabling comprehensive analysis of mass spectrometry-based proteomics data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20.0`` | ``-Java-11`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FreeBarcodes.md b/docs/version-specific/supported-software/f/FreeBarcodes.md new file mode 100644 index 000000000..46228214e --- /dev/null +++ b/docs/version-specific/supported-software/f/FreeBarcodes.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FreeBarcodes + +A package for the generation and decoding of FREE divergence error-correcting DNA barcodes + +*homepage*: + +version | toolchain +--------|---------- +``3.0.a5`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FreeFEM.md b/docs/version-specific/supported-software/f/FreeFEM.md new file mode 100644 index 000000000..7c04879c9 --- /dev/null +++ b/docs/version-specific/supported-software/f/FreeFEM.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FreeFEM + +FreeFEM offers a fast interpolation algorithm and a language for the manipulation of data on multiple meshes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.5`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FreeFem++.md b/docs/version-specific/supported-software/f/FreeFem++.md new file mode 100644 index 000000000..148bbfdb9 --- /dev/null +++ b/docs/version-specific/supported-software/f/FreeFem++.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# FreeFem++ + +FreeFem++ is a partial differential equation solver. It has its own language. freefem scripts can solve multiphysics non linear systems in 2D and 3D. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.58`` | ``-downloaded-deps`` | ``foss/2017b`` +``3.60`` | ``-downloaded-deps`` | ``intel/2018a`` +``3.61-1`` | ``-downloaded-deps`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FreeImage.md b/docs/version-specific/supported-software/f/FreeImage.md new file mode 100644 index 000000000..dd9280111 --- /dev/null +++ b/docs/version-specific/supported-software/f/FreeImage.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# FreeImage + +FreeImage is an Open Source library project for developers who would like to support popular graphics image formats like PNG, BMP, JPEG, TIFF and others as needed by today's multimedia applications. FreeImage is easy to use, fast, multithreading safe. + +*homepage*: + +version | toolchain +--------|---------- +``3.18.0`` | ``GCCcore/10.2.0`` +``3.18.0`` | ``GCCcore/10.3.0`` +``3.18.0`` | ``GCCcore/11.2.0`` +``3.18.0`` | ``GCCcore/11.3.0`` +``3.18.0`` | ``GCCcore/12.2.0`` +``3.18.0`` | ``GCCcore/12.3.0`` +``3.18.0`` | ``GCCcore/7.3.0`` +``3.18.0`` | ``GCCcore/8.3.0`` +``3.18.0`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FreeSASA.md b/docs/version-specific/supported-software/f/FreeSASA.md new file mode 100644 index 000000000..529d49037 --- /dev/null +++ b/docs/version-specific/supported-software/f/FreeSASA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FreeSASA + +FreeSASA is a command line tool, C-library and Python module for calculating solvent accessible surface areas (SASA). + +*homepage*: + +version | toolchain +--------|---------- +``2.0.3`` | ``GCC/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FreeSurfer.md b/docs/version-specific/supported-software/f/FreeSurfer.md new file mode 100644 index 000000000..cc5ff1cc3 --- /dev/null +++ b/docs/version-specific/supported-software/f/FreeSurfer.md @@ -0,0 +1,35 @@ +--- +search: + boost: 0.5 +--- +# FreeSurfer + +FreeSurfer is a set of tools for analysis and visualization of structural and functional brain imaging data. FreeSurfer contains a fully automatic structural imaging stream for processing cross sectional and longitudinal data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.3.0`` | ``-centos4_x86_64`` | ``system`` +``5.3.0`` | ``-centos6_x86_64`` | ``system`` +``6.0.0`` | ``-centos6_x86_64`` | ``system`` +``6.0.1`` | ``-centos6_x86_64`` | ``system`` +``7.1.1`` | ``-centos6_x86_64`` | ``system`` +``7.1.1`` | ``-centos7_x86_64`` | ``system`` +``7.1.1`` | ``-centos8_x86_64`` | ``system`` +``7.2.0`` | ``-centos7_x86_64`` | ``system`` +``7.2.0`` | ``-centos8_x86_64`` | ``system`` +``7.2.0`` | ``-ubuntu18_amd64`` | ``system`` +``7.3.2`` | ``-centos7_x86_64`` | ``system`` +``7.3.2`` | ``-centos8_x86_64`` | ``system`` +``7.4.0`` | ``-centos8_x86_64`` | ``system`` +``7.4.0`` | ``-ubuntu20_amd64`` | ``system`` +``7.4.0`` | ``-ubuntu22_amd64`` | ``system`` +``7.4.1`` | ``-centos7_x86_64`` | ``system`` +``7.4.1`` | ``-centos8_x86_64`` | ``system`` +``7.4.1`` | ``-ubuntu20_amd64`` | ``system`` +``7.4.1`` | ``-ubuntu22_amd64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FreeTDS.md b/docs/version-specific/supported-software/f/FreeTDS.md new file mode 100644 index 000000000..d5b1364ec --- /dev/null +++ b/docs/version-specific/supported-software/f/FreeTDS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FreeTDS + +FreeTDS is a set of libraries for Unix and Linux that allows your programs to natively talk to Microsoft SQL Server and Sybase databases. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.3`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FreeXL.md b/docs/version-specific/supported-software/f/FreeXL.md new file mode 100644 index 000000000..9a40777b8 --- /dev/null +++ b/docs/version-specific/supported-software/f/FreeXL.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# FreeXL + +FreeXL is an open source library to extract valid data from within an Excel (.xls) spreadsheet. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.2`` | ``foss/2016b`` +``1.0.2`` | ``intel/2016b`` +``1.0.3`` | ``GCCcore/6.4.0`` +``1.0.5`` | ``GCCcore/7.3.0`` +``1.0.5`` | ``GCCcore/8.2.0`` +``1.0.5`` | ``GCCcore/8.3.0`` +``1.0.6`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FriBidi.md b/docs/version-specific/supported-software/f/FriBidi.md new file mode 100644 index 000000000..c6ff68c92 --- /dev/null +++ b/docs/version-specific/supported-software/f/FriBidi.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# FriBidi + +FriBidi is a free implementation of the Unicode Bidirectional (BiDi) Algorithm. It also provides utility functions to aid in the development of interactive editors and widgets that implement BiDi functionality. The BiDi algorithm is a prerequisite for supporting right-to-left scripts such as Hebrew, Arabic, Syriac, and Thaana. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.1`` | ``foss/2018a`` +``1.0.1`` | ``intel/2018a`` +``1.0.10`` | ``GCCcore/10.2.0`` +``1.0.10`` | ``GCCcore/10.3.0`` +``1.0.10`` | ``GCCcore/11.2.0`` +``1.0.12`` | ``GCCcore/11.3.0`` +``1.0.12`` | ``GCCcore/12.2.0`` +``1.0.12`` | ``GCCcore/12.3.0`` +``1.0.13`` | ``GCCcore/13.2.0`` +``1.0.2`` | ``GCCcore/6.4.0`` +``1.0.5`` | ``GCCcore/7.3.0`` +``1.0.5`` | ``GCCcore/8.2.0`` +``1.0.5`` | ``GCCcore/8.3.0`` +``1.0.9`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FuSeq.md b/docs/version-specific/supported-software/f/FuSeq.md new file mode 100644 index 000000000..1598e7c76 --- /dev/null +++ b/docs/version-specific/supported-software/f/FuSeq.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FuSeq + +FuSeq is a novel method to discover fusion genes from paired-end RNA sequencing data. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.2`` | ``gompi/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/Fujitsu.md b/docs/version-specific/supported-software/f/Fujitsu.md new file mode 100644 index 000000000..c116b5bf0 --- /dev/null +++ b/docs/version-specific/supported-software/f/Fujitsu.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Fujitsu + +Toolchain using Fujitsu compilers and libraries. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``21.05`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FunGAP.md b/docs/version-specific/supported-software/f/FunGAP.md new file mode 100644 index 000000000..20b925d5b --- /dev/null +++ b/docs/version-specific/supported-software/f/FunGAP.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# FunGAP + +Fungal Genome Annotation Pipeline using evidence-based gene model evaluation. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/FusionCatcher.md b/docs/version-specific/supported-software/f/FusionCatcher.md new file mode 100644 index 000000000..28af17f02 --- /dev/null +++ b/docs/version-specific/supported-software/f/FusionCatcher.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# FusionCatcher + +FusionCatcher searches for novel/known somatic fusion genes, translocations, and chimeras in RNA-seq data (paired-end or single-end reads from Illumina NGS platforms like Solexa/HiSeq/NextSeq/MiSeq/MiniSeq) from diseased samples. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.20`` | ``-Python-2.7.16`` | ``foss/2019b`` +``1.30`` | ``-Python-2.7.16`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/f90cache.md b/docs/version-specific/supported-software/f/f90cache.md new file mode 100644 index 000000000..381ac457a --- /dev/null +++ b/docs/version-specific/supported-software/f/f90cache.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# f90cache + +f90cache is a compiler cache. It acts as a caching pre-processor to Fortran compilers, using the -E compiler switch and a hash to detect when a compilation can be satisfied from cache. This often results in a great speedup in common compilations. + +*homepage*: + +version | toolchain +--------|---------- +``0.96`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/f90nml.md b/docs/version-specific/supported-software/f/f90nml.md new file mode 100644 index 000000000..eb6741260 --- /dev/null +++ b/docs/version-specific/supported-software/f/f90nml.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# f90nml + +A Python module and command line tool for parsing Fortran namelist files + +*homepage*: + +version | toolchain +--------|---------- +``1.4.4`` | ``GCCcore/12.2.0`` +``1.4.4`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/f90wrap.md b/docs/version-specific/supported-software/f/f90wrap.md new file mode 100644 index 000000000..bd9fafb85 --- /dev/null +++ b/docs/version-specific/supported-software/f/f90wrap.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# f90wrap + +f90wrap is a tool to automatically generate Python extension modules which interface to Fortran code that makes use of derived types. It builds on the capabilities of the popular f2py utility by generating a simpler Fortran 90 interface to the original Fortran code which is then suitable for wrapping with f2py, together with a higher-level Pythonic wrapper that makes the existance of an additional layer transparent to the final user. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.11`` | ``foss/2022a`` +``0.2.13`` | ``foss/2023a`` +``0.2.8`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/faceswap.md b/docs/version-specific/supported-software/f/faceswap.md new file mode 100644 index 000000000..b1e8d60e0 --- /dev/null +++ b/docs/version-specific/supported-software/f/faceswap.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# faceswap + +Faceswap is a tool that utilizes deep learning to recognize and swap faces in pictures and videos. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20180212`` | ``-Python-3.6.3`` | ``foss/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fast5.md b/docs/version-specific/supported-software/f/fast5.md new file mode 100644 index 000000000..801c49247 --- /dev/null +++ b/docs/version-specific/supported-software/f/fast5.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# fast5 + +A lightweight C++ library for accessing Oxford Nanopore Technologies sequencing data. + +*homepage*: + +version | toolchain +--------|---------- +``0.6.5`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fastPHASE.md b/docs/version-specific/supported-software/f/fastPHASE.md new file mode 100644 index 000000000..8a554d4e6 --- /dev/null +++ b/docs/version-specific/supported-software/f/fastPHASE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# fastPHASE + +fastPHASE: software for haplotype reconstruction, and estimating missing genotypes from population data Documentation: http://scheet.org/code/fastphase_doc_1.4.pdf + +*homepage*: + +version | toolchain +--------|---------- +``1.4.8`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fastStructure.md b/docs/version-specific/supported-software/f/fastStructure.md new file mode 100644 index 000000000..9778959f4 --- /dev/null +++ b/docs/version-specific/supported-software/f/fastStructure.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# fastStructure + +fastStructure is an algorithm for inferring population structure from large SNP genotype data. It is based on a variational Bayesian framework for posterior inference and is written in Python2.x. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``1.0`` | ``-Python-2.7.13`` | ``foss/2017a`` +``1.0`` | ``-Python-2.7.15`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fasta-reader.md b/docs/version-specific/supported-software/f/fasta-reader.md new file mode 100644 index 000000000..92c6fcd60 --- /dev/null +++ b/docs/version-specific/supported-software/f/fasta-reader.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# fasta-reader + +FASTA file reader + +*homepage*: + +version | toolchain +--------|---------- +``3.0.2`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fastahack.md b/docs/version-specific/supported-software/f/fastahack.md new file mode 100644 index 000000000..c9d78413e --- /dev/null +++ b/docs/version-specific/supported-software/f/fastahack.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# fastahack + +Utilities for indexing and sequence extraction from FASTA files. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0`` | ``GCCcore/10.2.0`` +``1.0.0`` | ``GCCcore/10.3.0`` +``1.0.0`` | ``GCCcore/11.2.0`` +``1.0.0`` | ``GCCcore/11.3.0`` +``1.0.0`` | ``GCCcore/12.3.0`` +``1.0.0`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fastai.md b/docs/version-specific/supported-software/f/fastai.md new file mode 100644 index 000000000..263a77ee6 --- /dev/null +++ b/docs/version-specific/supported-software/f/fastai.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# fastai + +The fastai deep learning library. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.7.10`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``2.7.10`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fastjet-contrib.md b/docs/version-specific/supported-software/f/fastjet-contrib.md new file mode 100644 index 000000000..63d48a087 --- /dev/null +++ b/docs/version-specific/supported-software/f/fastjet-contrib.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# fastjet-contrib + +3rd party extensions of FastJet + +*homepage*: + +version | toolchain +--------|---------- +``1.049`` | ``gompi/2022a`` +``1.053`` | ``gompi/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fastjet.md b/docs/version-specific/supported-software/f/fastjet.md new file mode 100644 index 000000000..c3639e993 --- /dev/null +++ b/docs/version-specific/supported-software/f/fastjet.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# fastjet + +A software package for jet finding in pp and e+e- collisions + +*homepage*: + +version | toolchain +--------|---------- +``3.4.0`` | ``gompi/2022a`` +``3.4.2`` | ``gompi/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fastml.md b/docs/version-specific/supported-software/f/fastml.md new file mode 100644 index 000000000..cde62ea00 --- /dev/null +++ b/docs/version-specific/supported-software/f/fastml.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# fastml + +Maximum likelihood reconstruction of ancestral amino-acid sequences. A branch-and-bound algorithm for the inference of ancestral amino-acid sequences when the replacement rate varies among sites. + +*homepage*: + +version | toolchain +--------|---------- +``2.3`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fastp.md b/docs/version-specific/supported-software/f/fastp.md new file mode 100644 index 000000000..c1217d55e --- /dev/null +++ b/docs/version-specific/supported-software/f/fastp.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# fastp + +A tool designed to provide fast all-in-one preprocessing for FastQ files. This tool is developed in C++ with multithreading supported to afford high performance. + +*homepage*: + +version | toolchain +--------|---------- +``0.19.7`` | ``foss/2018b`` +``0.20.0`` | ``GCC/8.2.0-2.31.1`` +``0.20.0`` | ``GCC/8.3.0`` +``0.20.0`` | ``iccifort/2019.5.281`` +``0.20.1`` | ``iccifort/2020.1.217`` +``0.23.2`` | ``GCC/10.3.0`` +``0.23.2`` | ``GCC/11.2.0`` +``0.23.2`` | ``GCC/11.3.0`` +``0.23.4`` | ``GCC/12.2.0`` +``0.23.4`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fastparquet.md b/docs/version-specific/supported-software/f/fastparquet.md new file mode 100644 index 000000000..1e9a71055 --- /dev/null +++ b/docs/version-specific/supported-software/f/fastparquet.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# fastparquet + +fastparquet is a python implementation of the parquet format, aiming to integrate into python-based big data work-flows. It is used implicitly by the projects Dask, Pandas and intake-parquet. + +*homepage*: + +version | toolchain +--------|---------- +``0.7.2`` | ``foss/2021a`` +``0.8.0`` | ``foss/2021b`` +``2023.4.0`` | ``gfbf/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fastq-pair.md b/docs/version-specific/supported-software/f/fastq-pair.md new file mode 100644 index 000000000..660e9fab8 --- /dev/null +++ b/docs/version-specific/supported-software/f/fastq-pair.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# fastq-pair + +Match up paired end fastq files quickly and efficiently. + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fastq-tools.md b/docs/version-specific/supported-software/f/fastq-tools.md new file mode 100644 index 000000000..8c3ddccc0 --- /dev/null +++ b/docs/version-specific/supported-software/f/fastq-tools.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# fastq-tools + +This package provides a number of small and efficient programs to perform common tasks with high throughput sequencing data in the FASTQ format. All of the programs work with typical FASTQ files as well as gzipped FASTQ files. + +*homepage*: + +version | toolchain +--------|---------- +``0.8`` | ``foss/2016b`` +``0.8`` | ``foss/2018b`` +``0.8.3`` | ``GCC/10.3.0`` +``0.8.3`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fastqsplitter.md b/docs/version-specific/supported-software/f/fastqsplitter.md new file mode 100644 index 000000000..3ec87044b --- /dev/null +++ b/docs/version-specific/supported-software/f/fastqsplitter.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# fastqsplitter + +Splits fastq files evenly. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.0`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fastqz.md b/docs/version-specific/supported-software/f/fastqz.md new file mode 100644 index 000000000..25db813e5 --- /dev/null +++ b/docs/version-specific/supported-software/f/fastqz.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# fastqz + +fastqz is a compressor for FASTQ files. FASTQ is the output of DNA sequencing machines. It is one of the compressors described in the paper: Bonfield JK, Mahoney MV (2013) Compression of FASTQ and SAM Format Sequencing Data. (mirror) PLoS ONE 8(3): e59190. doi:10.1371/journal.pone.0059190 + +*homepage*: + +version | toolchain +--------|---------- +``1.5`` | ``GCC/4.8.2`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fatslim.md b/docs/version-specific/supported-software/f/fatslim.md new file mode 100644 index 000000000..c374d1a68 --- /dev/null +++ b/docs/version-specific/supported-software/f/fatslim.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# fatslim + +FATSLiM stands for “Fast Analysis Toolbox for Simulations of Lipid Membranes” and its goal is to provide an efficient, yet robust, tool to extract physical parameters from MD trajectories. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.1`` | ``-Python-3.6.4`` | ``foss/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fbm.md b/docs/version-specific/supported-software/f/fbm.md new file mode 100644 index 000000000..bc4a0407f --- /dev/null +++ b/docs/version-specific/supported-software/f/fbm.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# fbm + +Exact methods for simulating fractional Brownian motion and fractional Gaussian noise in Python + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.0`` | ``-Python-3.6.4`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fdict.md b/docs/version-specific/supported-software/f/fdict.md new file mode 100644 index 000000000..bb46c3ee5 --- /dev/null +++ b/docs/version-specific/supported-software/f/fdict.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# fdict + +A variable and dictionary in pure fortran for retaining any data-type and a fast hash-table dictionary. + +*homepage*: + +version | toolchain +--------|---------- +``0.8.0`` | ``GCC/10.2.0`` +``0.8.0`` | ``GCC/10.3.0`` +``0.8.0`` | ``GCC/11.2.0`` +``0.8.0`` | ``iccifort/2020.4.304`` +``0.8.0`` | ``intel-compilers/2021.2.0`` +``0.8.0`` | ``intel-compilers/2021.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fdstools.md b/docs/version-specific/supported-software/f/fdstools.md new file mode 100644 index 000000000..8ceb54502 --- /dev/null +++ b/docs/version-specific/supported-software/f/fdstools.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# fdstools + +Forensic DNA Sequencing Tools Tools for characterisation and filtering of PCR stutter artefacts and other systemic noise in Next Generation Sequencing data of forensic STR markers. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20160322`` | ``-Python-2.7.11`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/feh.md b/docs/version-specific/supported-software/f/feh.md new file mode 100644 index 000000000..0fb19f159 --- /dev/null +++ b/docs/version-specific/supported-software/f/feh.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# feh + +feh is an X11 image viewer aimed mostly at console users. Unlike most other viewers, it does not have a fancy GUI, but simply displays images. It is controlled via commandline arguments and configurable key/mouse actions. + +*homepage*: + +version | toolchain +--------|---------- +``2.26`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fermi-lite.md b/docs/version-specific/supported-software/f/fermi-lite.md new file mode 100644 index 000000000..53e9b6177 --- /dev/null +++ b/docs/version-specific/supported-software/f/fermi-lite.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# fermi-lite + +Standalone C library for assembling Illumina short reads in small regions. + +*homepage*: + +version | toolchain +--------|---------- +``20190320`` | ``GCCcore/10.2.0`` +``20190320`` | ``GCCcore/10.3.0`` +``20190320`` | ``GCCcore/11.2.0`` +``20190320`` | ``GCCcore/12.3.0`` +``20190320`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/festival.md b/docs/version-specific/supported-software/f/festival.md new file mode 100644 index 000000000..1a89be38a --- /dev/null +++ b/docs/version-specific/supported-software/f/festival.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# festival + +University of Edinburgh's Festival Speech Synthesis Systems is a free software multi-lingual speech synthesis workbench that runs on multiple-platforms offering black box text to speech, as well as an open architecture for research in speech synthesis. It designed as a component of large speech technology systems. + +*homepage*: <['http://festvox.org/festival/']> + +version | toolchain +--------|---------- +``2.5.0`` | ``GCCcore/12.3.0`` +``2.5.0`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fetchMG.md b/docs/version-specific/supported-software/f/fetchMG.md new file mode 100644 index 000000000..00a73b6e8 --- /dev/null +++ b/docs/version-specific/supported-software/f/fetchMG.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# fetchMG + +The program “fetchMG” was written to extract the 40 MGs from genomes and metagenomes in an easy and accurate manner. + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``GCCcore/8.3.0`` +``1.0`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/ffmpi.md b/docs/version-specific/supported-software/f/ffmpi.md new file mode 100644 index 000000000..e584c1fdd --- /dev/null +++ b/docs/version-specific/supported-software/f/ffmpi.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ffmpi + +Fujitsu Compiler based compiler toolchain, including Fujitsu MPI for MPI support. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``4.5.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/ffnet.md b/docs/version-specific/supported-software/f/ffnet.md new file mode 100644 index 000000000..2906fa56f --- /dev/null +++ b/docs/version-specific/supported-software/f/ffnet.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ffnet + +Feed-forward neural network solution for python + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8.3`` | ``-Python-2.7.11`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/ffnvcodec.md b/docs/version-specific/supported-software/f/ffnvcodec.md new file mode 100644 index 000000000..3acdd2b9b --- /dev/null +++ b/docs/version-specific/supported-software/f/ffnvcodec.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# ffnvcodec + +FFmpeg nvidia headers. Adds support for nvenc and nvdec. Requires Nvidia GPU and drivers to be present (picked up dynamically). + +*homepage*: + +version | toolchain +--------|---------- +``11.1.5.2`` | ``system`` +``12.0.16.0`` | ``system`` +``12.1.14.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fftlib.md b/docs/version-specific/supported-software/f/fftlib.md new file mode 100644 index 000000000..b2eb03068 --- /dev/null +++ b/docs/version-specific/supported-software/f/fftlib.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# fftlib + +A library that intercepts FFTW calls and adds features on top of it. In particular, it enables FFT plan reuse when there are multiple calls for the same geometry. + +*homepage*: + +version | toolchain +--------|---------- +``20170628`` | ``gompi/2020b`` +``20170628`` | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fgbio.md b/docs/version-specific/supported-software/f/fgbio.md new file mode 100644 index 000000000..d2c4c5fcc --- /dev/null +++ b/docs/version-specific/supported-software/f/fgbio.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# fgbio + +A set of tools to analyze genomic data with a focus on Next Generation Sequencing. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.0`` | | ``system`` +``2.2.1`` | ``-Java-8`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/file.md b/docs/version-specific/supported-software/f/file.md new file mode 100644 index 000000000..42a7b7139 --- /dev/null +++ b/docs/version-specific/supported-software/f/file.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# file + +The file command is 'a file type guesser', that is, a command-line tool that tells you in words what kind of data a file contains. + +*homepage*: + +version | toolchain +--------|---------- +``5.17`` | ``GCC/4.8.2`` +``5.25`` | ``intel/2016a`` +``5.28`` | ``foss/2016b`` +``5.30`` | ``intel/2017a`` +``5.33`` | ``GCCcore/6.4.0`` +``5.35`` | ``GCCcore/7.3.0`` +``5.38`` | ``GCCcore/8.3.0`` +``5.38`` | ``GCCcore/9.3.0`` +``5.39`` | ``GCCcore/10.2.0`` +``5.40`` | ``GCCcore/10.3.0`` +``5.41`` | ``GCCcore/11.2.0`` +``5.43`` | ``GCCcore/11.3.0`` +``5.43`` | ``GCCcore/12.2.0`` +``5.43`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/filevercmp.md b/docs/version-specific/supported-software/f/filevercmp.md new file mode 100644 index 000000000..6bb959431 --- /dev/null +++ b/docs/version-specific/supported-software/f/filevercmp.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# filevercmp + +filevercmp function as in sort --version-sort. + +*homepage*: + +version | toolchain +--------|---------- +``20141119`` | ``GCCcore/9.3.0`` +``20191210`` | ``GCCcore/10.2.0`` +``20191210`` | ``GCCcore/10.3.0`` +``20191210`` | ``GCCcore/11.2.0`` +``20191210`` | ``GCCcore/11.3.0`` +``20191210`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/find_circ.md b/docs/version-specific/supported-software/f/find_circ.md new file mode 100644 index 000000000..c7c52a663 --- /dev/null +++ b/docs/version-specific/supported-software/f/find_circ.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# find_circ + +circRNA detection from RNA-seq reads + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2-20170228`` | ``-Python-2.7.14`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/finder.md b/docs/version-specific/supported-software/f/finder.md new file mode 100644 index 000000000..9dd27f529 --- /dev/null +++ b/docs/version-specific/supported-software/f/finder.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# finder + +finder is a gene annotator pipeline which automates the process of downloading short reads, aligning them and using the assembled transcripts to generate gene annotations. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/findhap.md b/docs/version-specific/supported-software/f/findhap.md new file mode 100644 index 000000000..800305fc7 --- /dev/null +++ b/docs/version-specific/supported-software/f/findhap.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# findhap + +Find haplotypes and impute genotypes using multiple chip sets and sequence data + +*homepage*: + +version | toolchain +--------|---------- +``4`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/findutils.md b/docs/version-specific/supported-software/f/findutils.md new file mode 100644 index 000000000..accff7545 --- /dev/null +++ b/docs/version-specific/supported-software/f/findutils.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# findutils + +findutils: The GNU find, locate, updatedb, and xargs utilities + +*homepage*: + +version | toolchain +--------|---------- +``4.4.2`` | ``GCC/4.8.2`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fineRADstructure.md b/docs/version-specific/supported-software/f/fineRADstructure.md new file mode 100644 index 000000000..2644bd1d5 --- /dev/null +++ b/docs/version-specific/supported-software/f/fineRADstructure.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# fineRADstructure + +A package for population structure inference from RAD-seq data + +*homepage*: + +version | toolchain +--------|---------- +``20180709`` | ``intel/2018a`` +``20210514`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fineSTRUCTURE.md b/docs/version-specific/supported-software/f/fineSTRUCTURE.md new file mode 100644 index 000000000..28910a16a --- /dev/null +++ b/docs/version-specific/supported-software/f/fineSTRUCTURE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# fineSTRUCTURE + +fineSTRUCTURE is a fast and powerful algorithm for identifying population structure using dense sequencing data. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.3`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fio.md b/docs/version-specific/supported-software/f/fio.md new file mode 100644 index 000000000..2707e7907 --- /dev/null +++ b/docs/version-specific/supported-software/f/fio.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# fio + +Flexible I/O tester + +*homepage*: + +version | toolchain +--------|---------- +``3.30`` | ``GCCcore/10.3.0`` +``3.32`` | ``GCCcore/11.3.0`` +``3.34`` | ``GCCcore/12.2.0`` +``3.36`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fixesproto.md b/docs/version-specific/supported-software/f/fixesproto.md new file mode 100644 index 000000000..a1f52af03 --- /dev/null +++ b/docs/version-specific/supported-software/f/fixesproto.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# fixesproto + +X.org FixesProto protocol headers. + +*homepage*: + +version | toolchain +--------|---------- +``5.0`` | ``foss/2016a`` +``5.0`` | ``gimkl/2.11.5`` +``5.0`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/flair-NLP.md b/docs/version-specific/supported-software/f/flair-NLP.md new file mode 100644 index 000000000..635ced49b --- /dev/null +++ b/docs/version-specific/supported-software/f/flair-NLP.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# flair-NLP + +A very simple framework for state-of-the-art NLP + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.11.3`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``0.11.3`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/flatbuffers-python.md b/docs/version-specific/supported-software/f/flatbuffers-python.md new file mode 100644 index 000000000..55e6fe35c --- /dev/null +++ b/docs/version-specific/supported-software/f/flatbuffers-python.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# flatbuffers-python + +Python Flatbuffers runtime library. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.12`` | | ``GCCcore/10.2.0`` +``1.12`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``2.0`` | | ``GCCcore/10.3.0`` +``2.0`` | | ``GCCcore/11.2.0`` +``2.0`` | | ``GCCcore/11.3.0`` +``23.1.4`` | | ``GCCcore/12.2.0`` +``23.5.26`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/flatbuffers.md b/docs/version-specific/supported-software/f/flatbuffers.md new file mode 100644 index 000000000..1c5a02296 --- /dev/null +++ b/docs/version-specific/supported-software/f/flatbuffers.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# flatbuffers + +FlatBuffers: Memory Efficient Serialization Library + +*homepage*: + +version | toolchain +--------|---------- +``1.12.0`` | ``GCCcore/10.2.0`` +``1.12.0`` | ``GCCcore/8.3.0`` +``1.12.0`` | ``GCCcore/9.3.0`` +``2.0.0`` | ``GCCcore/10.3.0`` +``2.0.0`` | ``GCCcore/11.2.0`` +``2.0.0`` | ``GCCcore/11.3.0`` +``2.0.7`` | ``GCCcore/11.3.0`` +``23.1.4`` | ``GCCcore/12.2.0`` +``23.5.26`` | ``GCCcore/12.3.0`` +``23.5.26`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/flex.md b/docs/version-specific/supported-software/f/flex.md new file mode 100644 index 000000000..98e97819e --- /dev/null +++ b/docs/version-specific/supported-software/f/flex.md @@ -0,0 +1,90 @@ +--- +search: + boost: 0.5 +--- +# flex + +Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner, sometimes called a tokenizer, is a program which recognizes lexical patterns in text. + +*homepage*: + +version | toolchain +--------|---------- +``2.5.35`` | ``system`` +``2.5.38`` | ``GCC/4.8.2`` +``2.5.39`` | ``GCC/4.9.2-binutils-2.25`` +``2.5.39`` | ``GCC/4.9.2`` +``2.5.39`` | ``GCC/4.9.3-binutils-2.25`` +``2.5.39`` | ``GCC/4.9.3`` +``2.5.39`` | ``GCC/5.1.0-binutils-2.25`` +``2.5.39`` | ``GCCcore/4.9.2`` +``2.5.39`` | ``GCCcore/4.9.3`` +``2.5.39`` | ``GCCcore/6.3.0`` +``2.5.39`` | ``GCCcore/6.4.0`` +``2.5.39`` | ``GCCcore/7.3.0`` +``2.5.39`` | ``GCCcore/8.2.0`` +``2.5.39`` | ``GCCcore/8.3.0`` +``2.5.39`` | ``GNU/4.9.3-2.25`` +``2.5.39`` | ``foss/2016a`` +``2.5.39`` | ``gimkl/2.11.5`` +``2.5.39`` | ``intel/2016.02-GCC-4.9`` +``2.5.39`` | ``intel/2016a`` +``2.5.39`` | ``intel/2016b`` +``2.5.39`` | ``system`` +``2.6.0`` | ``GCC/4.9.2`` +``2.6.0`` | ``GCCcore/4.9.3`` +``2.6.0`` | ``GCCcore/4.9.4`` +``2.6.0`` | ``GCCcore/5.3.0`` +``2.6.0`` | ``GCCcore/5.4.0`` +``2.6.0`` | ``GCCcore/6.1.0`` +``2.6.0`` | ``GCCcore/6.2.0`` +``2.6.0`` | ``foss/2016a`` +``2.6.0`` | ``foss/2016b`` +``2.6.0`` | ``gimkl/2.11.5`` +``2.6.0`` | ``intel/2016a`` +``2.6.0`` | ``intel/2016b`` +``2.6.0`` | ``iomkl/2016.07`` +``2.6.0`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``2.6.0`` | ``system`` +``2.6.2`` | ``intel/2016b`` +``2.6.3`` | ``GCCcore/5.4.0`` +``2.6.3`` | ``GCCcore/6.3.0`` +``2.6.3`` | ``GCCcore/7.1.0`` +``2.6.3`` | ``gimkl/2017a`` +``2.6.3`` | ``system`` +``2.6.4`` | ``FCC/4.5.0`` +``2.6.4`` | ``GCCcore/10.1.0`` +``2.6.4`` | ``GCCcore/10.2.0`` +``2.6.4`` | ``GCCcore/10.3.0`` +``2.6.4`` | ``GCCcore/11.1.0`` +``2.6.4`` | ``GCCcore/11.2.0`` +``2.6.4`` | ``GCCcore/11.3.0`` +``2.6.4`` | ``GCCcore/11.4.0`` +``2.6.4`` | ``GCCcore/12.1.0`` +``2.6.4`` | ``GCCcore/12.2.0`` +``2.6.4`` | ``GCCcore/12.3.0`` +``2.6.4`` | ``GCCcore/13.1.0`` +``2.6.4`` | ``GCCcore/13.2.0`` +``2.6.4`` | ``GCCcore/13.3.0`` +``2.6.4`` | ``GCCcore/14.1.0`` +``2.6.4`` | ``GCCcore/5.5.0`` +``2.6.4`` | ``GCCcore/6.3.0`` +``2.6.4`` | ``GCCcore/6.4.0`` +``2.6.4`` | ``GCCcore/7.2.0`` +``2.6.4`` | ``GCCcore/7.3.0`` +``2.6.4`` | ``GCCcore/7.4.0`` +``2.6.4`` | ``GCCcore/8.1.0`` +``2.6.4`` | ``GCCcore/8.2.0`` +``2.6.4`` | ``GCCcore/8.3.0`` +``2.6.4`` | ``GCCcore/8.4.0`` +``2.6.4`` | ``GCCcore/9.1.0`` +``2.6.4`` | ``GCCcore/9.2.0`` +``2.6.4`` | ``GCCcore/9.3.0`` +``2.6.4`` | ``GCCcore/9.4.0`` +``2.6.4`` | ``GCCcore/9.5.0`` +``2.6.4`` | ``GCCcore/system`` +``2.6.4`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/flit.md b/docs/version-specific/supported-software/f/flit.md new file mode 100644 index 000000000..442e3276e --- /dev/null +++ b/docs/version-specific/supported-software/f/flit.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# flit + +A simple packaging tool for simple packages. + +*homepage*: + +version | toolchain +--------|---------- +``3.9.0`` | ``GCCcore/12.3.0`` +``3.9.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/flook.md b/docs/version-specific/supported-software/f/flook.md new file mode 100644 index 000000000..4de209085 --- /dev/null +++ b/docs/version-specific/supported-software/f/flook.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# flook + +The fortran-Lua-hook library. + +*homepage*: + +version | toolchain +--------|---------- +``0.8.1`` | ``GCC/10.2.0`` +``0.8.1`` | ``GCC/10.3.0`` +``0.8.1`` | ``GCC/11.2.0`` +``0.8.1`` | ``GCC/11.3.0`` +``0.8.1`` | ``iccifort/2020.4.304`` +``0.8.1`` | ``intel-compilers/2021.2.0`` +``0.8.1`` | ``intel-compilers/2021.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/flowFDA.md b/docs/version-specific/supported-software/f/flowFDA.md new file mode 100644 index 000000000..34b516455 --- /dev/null +++ b/docs/version-specific/supported-software/f/flowFDA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# flowFDA + +R package for analysing flow cytometry experiments with model based clustering, functional principal component analysis + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.99-20220602`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fmt.md b/docs/version-specific/supported-software/f/fmt.md new file mode 100644 index 000000000..05904c1fc --- /dev/null +++ b/docs/version-specific/supported-software/f/fmt.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# fmt + +fmt (formerly cppformat) is an open-source formatting library. + +*homepage*: + +version | toolchain +--------|---------- +``10.0.0`` | ``GCCcore/12.3.0`` +``10.1.0`` | ``GCCcore/12.3.0`` +``10.2.0`` | ``GCCcore/13.2.0`` +``3.0.1`` | ``foss/2016b`` +``3.0.1`` | ``intel/2016b`` +``3.0.2`` | ``GCCcore/6.4.0`` +``3.0.2`` | ``intel/2017a`` +``5.3.0`` | ``GCCcore/7.3.0`` +``5.3.0`` | ``GCCcore/8.2.0`` +``6.2.1`` | ``GCCcore/9.3.0`` +``7.0.3`` | ``GCCcore/9.3.0`` +``7.1.1`` | ``GCCcore/11.2.0`` +``8.1.1`` | ``GCCcore/11.2.0`` +``9.1.0`` | ``GCCcore/11.3.0`` +``9.1.0`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fontconfig.md b/docs/version-specific/supported-software/f/fontconfig.md new file mode 100644 index 000000000..b9a7f2ec8 --- /dev/null +++ b/docs/version-specific/supported-software/f/fontconfig.md @@ -0,0 +1,41 @@ +--- +search: + boost: 0.5 +--- +# fontconfig + +Fontconfig is a library designed to provide system-wide font configuration, customization and application access. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.11.94`` | | ``foss/2016a`` +``2.11.94`` | | ``intel/2016a`` +``2.11.95`` | | ``foss/2016a`` +``2.11.95`` | | ``intel/2016a`` +``2.12.1`` | | ``GCCcore/5.4.0`` +``2.12.1`` | ``-libpng-1.6.29`` | ``GCCcore/6.3.0`` +``2.12.1`` | | ``GCCcore/6.3.0`` +``2.12.1`` | | ``foss/2016b`` +``2.12.1`` | | ``gimkl/2017a`` +``2.12.1`` | | ``intel/2016b`` +``2.12.4`` | | ``GCCcore/6.4.0`` +``2.12.6`` | | ``GCCcore/6.4.0`` +``2.13.0`` | | ``GCCcore/6.4.0`` +``2.13.0`` | | ``GCCcore/7.3.0`` +``2.13.1`` | | ``GCCcore/8.2.0`` +``2.13.1`` | | ``GCCcore/8.3.0`` +``2.13.92`` | | ``GCCcore/10.2.0`` +``2.13.92`` | | ``GCCcore/9.3.0`` +``2.13.93`` | | ``GCCcore/10.3.0`` +``2.13.94`` | | ``GCCcore/11.2.0`` +``2.14.0`` | | ``GCCcore/11.3.0`` +``2.14.1`` | | ``GCCcore/12.2.0`` +``2.14.2`` | | ``GCCcore/12.3.0`` +``2.14.2`` | | ``GCCcore/13.2.0`` +``2.15.0`` | | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fontsproto.md b/docs/version-specific/supported-software/f/fontsproto.md new file mode 100644 index 000000000..8f174611c --- /dev/null +++ b/docs/version-specific/supported-software/f/fontsproto.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# fontsproto + +X11 font extension wire protocol + +*homepage*: + +version | toolchain +--------|---------- +``2.1.3`` | ``foss/2016a`` +``2.1.3`` | ``gimkl/2.11.5`` +``2.1.3`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/forbear.md b/docs/version-specific/supported-software/f/forbear.md new file mode 100644 index 000000000..84ee7a925 --- /dev/null +++ b/docs/version-specific/supported-software/f/forbear.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# forbear + +A Fortran Library for building and running fancy progress bar + +*homepage*: + +version | toolchain +--------|---------- +``1.2.0`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/foss.md b/docs/version-specific/supported-software/f/foss.md new file mode 100644 index 000000000..bb16faf3f --- /dev/null +++ b/docs/version-specific/supported-software/f/foss.md @@ -0,0 +1,41 @@ +--- +search: + boost: 0.5 +--- +# foss + +GNU Compiler Collection (GCC) based compiler toolchain, including OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. + +*homepage*: + +version | toolchain +--------|---------- +``2016.04`` | ``system`` +``2016.06`` | ``system`` +``2016.07`` | ``system`` +``2016.09`` | ``system`` +``2016a`` | ``system`` +``2016b`` | ``system`` +``2017a`` | ``system`` +``2017b`` | ``system`` +``2018.08`` | ``system`` +``2018a`` | ``system`` +``2018b`` | ``system`` +``2019a`` | ``system`` +``2019b`` | ``system`` +``2020a`` | ``system`` +``2020b`` | ``system`` +``2021a`` | ``system`` +``2021b`` | ``system`` +``2022.05`` | ``system`` +``2022.10`` | ``system`` +``2022a`` | ``system`` +``2022b`` | ``system`` +``2023.09`` | ``system`` +``2023a`` | ``system`` +``2023b`` | ``system`` +``2024.05`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fosscuda.md b/docs/version-specific/supported-software/f/fosscuda.md new file mode 100644 index 000000000..646d1c336 --- /dev/null +++ b/docs/version-specific/supported-software/f/fosscuda.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# fosscuda + +GCC based compiler toolchain __with CUDA support__, and including OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``2017b`` | ``system`` +``2018a`` | ``system`` +``2018b`` | ``system`` +``2019a`` | ``system`` +``2019b`` | ``system`` +``2020a`` | ``system`` +``2020b`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fplll.md b/docs/version-specific/supported-software/f/fplll.md new file mode 100644 index 000000000..7063d9079 --- /dev/null +++ b/docs/version-specific/supported-software/f/fplll.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# fplll + +fplll contains implementations of several lattice algorithms. The implementation relies on floating-point orthogonalization, and the 1982 paper from Lenstra, Lenstra Jr. and Lovasz (LLL) is central to the code, hence the name. + +*homepage*: + +version | toolchain +--------|---------- +``5.4.5`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fpocket.md b/docs/version-specific/supported-software/f/fpocket.md new file mode 100644 index 000000000..f396b9d19 --- /dev/null +++ b/docs/version-specific/supported-software/f/fpocket.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# fpocket + +The fpocket suite of programs is a very fast open source protein pocket detection algorithm based on Voronoi tessellation. The platform is suited for the scientific community willing to develop new scoring functions and extract pocket descriptors on a large scale level. + +*homepage*: + +version | toolchain +--------|---------- +``3.1.4.2`` | ``gompi/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fpylll.md b/docs/version-specific/supported-software/f/fpylll.md new file mode 100644 index 000000000..874b181e7 --- /dev/null +++ b/docs/version-specific/supported-software/f/fpylll.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# fpylll + +A Python wrapper for fplll. + +*homepage*: + +version | toolchain +--------|---------- +``0.5.9`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fqtrim.md b/docs/version-specific/supported-software/f/fqtrim.md new file mode 100644 index 000000000..66b87e0f7 --- /dev/null +++ b/docs/version-specific/supported-software/f/fqtrim.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# fqtrim + +fqtrim is a versatile stand-alone utility that can be used to trim adapters, poly-A tails, terminal unknown bases (Ns) and low quality 3' regions in reads from high-throughput next-generation sequencing machines. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.4`` | ``intel/2016b`` +``0.9.5`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fqzcomp.md b/docs/version-specific/supported-software/f/fqzcomp.md new file mode 100644 index 000000000..19068bd33 --- /dev/null +++ b/docs/version-specific/supported-software/f/fqzcomp.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# fqzcomp + +Fqzcomp is a basic fastq compressor, designed primarily for high performance. Despite that it is comparable to bzip2 for compression levels. + +*homepage*: + +version | toolchain +--------|---------- +``4.6`` | ``GCC/4.8.2`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/freebayes.md b/docs/version-specific/supported-software/f/freebayes.md new file mode 100644 index 000000000..457796c18 --- /dev/null +++ b/docs/version-specific/supported-software/f/freebayes.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# freebayes + +Bayesian haplotype-based genetic polymorphism discovery and genotyping. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.5`` | | ``GCC/10.2.0`` +``1.3.5`` | ``-Python-3.8.2`` | ``GCC/9.3.0`` +``1.3.6`` | ``-R-4.1.0`` | ``foss/2021a`` +``1.3.6`` | ``-R-4.1.2`` | ``foss/2021b`` +``1.3.7`` | ``-R-4.3.2`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/freeglut.md b/docs/version-specific/supported-software/f/freeglut.md new file mode 100644 index 000000000..9126af39b --- /dev/null +++ b/docs/version-specific/supported-software/f/freeglut.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# freeglut + +freeglut is a completely OpenSourced alternative to the OpenGL Utility Toolkit (GLUT) library. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.0`` | | ``GCCcore/8.2.0`` +``3.0.0`` | ``-Mesa-11.2.1`` | ``foss/2016a`` +``3.0.0`` | | ``foss/2016a`` +``3.0.0`` | | ``foss/2016b`` +``3.0.0`` | | ``foss/2017b`` +``3.0.0`` | | ``foss/2018a`` +``3.0.0`` | | ``foss/2018b`` +``3.0.0`` | ``-Mesa-11.2.1`` | ``intel/2016a`` +``3.0.0`` | | ``intel/2016a`` +``3.0.0`` | | ``intel/2016b`` +``3.0.0`` | | ``intel/2017a`` +``3.0.0`` | | ``intel/2017b`` +``3.0.0`` | | ``intel/2018a`` +``3.2.1`` | | ``GCCcore/10.2.0`` +``3.2.1`` | | ``GCCcore/10.3.0`` +``3.2.1`` | | ``GCCcore/11.2.0`` +``3.2.1`` | | ``GCCcore/8.3.0`` +``3.2.1`` | | ``GCCcore/9.3.0`` +``3.2.2`` | | ``GCCcore/11.3.0`` +``3.4.0`` | | ``GCCcore/12.2.0`` +``3.4.0`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/freetype-py.md b/docs/version-specific/supported-software/f/freetype-py.md new file mode 100644 index 000000000..f43adffe4 --- /dev/null +++ b/docs/version-specific/supported-software/f/freetype-py.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# freetype-py + +Python binding for the freetype library + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.0`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``2.4.0`` | | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/freetype.md b/docs/version-specific/supported-software/f/freetype.md new file mode 100644 index 000000000..fbb4799f3 --- /dev/null +++ b/docs/version-specific/supported-software/f/freetype.md @@ -0,0 +1,47 @@ +--- +search: + boost: 0.5 +--- +# freetype + +FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display servers, font conversion tools, text image generation tools, and many other products as well. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.10.1`` | | ``GCCcore/8.3.0`` +``2.10.1`` | | ``GCCcore/9.3.0`` +``2.10.3`` | | ``GCCcore/10.2.0`` +``2.10.4`` | | ``GCCcore/10.3.0`` +``2.11.0`` | | ``GCCcore/11.2.0`` +``2.12.1`` | | ``GCCcore/11.3.0`` +``2.12.1`` | | ``GCCcore/12.2.0`` +``2.13.0`` | | ``GCCcore/12.3.0`` +``2.13.2`` | | ``GCCcore/13.2.0`` +``2.13.2`` | | ``GCCcore/13.3.0`` +``2.6.2`` | | ``foss/2016a`` +``2.6.2`` | | ``gimkl/2.11.5`` +``2.6.2`` | | ``intel/2016a`` +``2.6.3`` | | ``foss/2016a`` +``2.6.3`` | | ``intel/2016a`` +``2.6.5`` | | ``GCCcore/4.9.3`` +``2.6.5`` | | ``GCCcore/5.4.0`` +``2.6.5`` | | ``foss/2016b`` +``2.6.5`` | | ``intel/2016b`` +``2.7`` | | ``foss/2016b`` +``2.7`` | | ``intel/2016b`` +``2.7.1`` | | ``GCCcore/5.4.0`` +``2.7.1`` | ``-libpng-1.6.29`` | ``GCCcore/6.3.0`` +``2.7.1`` | | ``GCCcore/6.3.0`` +``2.7.1`` | | ``gimkl/2017a`` +``2.7.1`` | | ``intel/2016b`` +``2.8`` | | ``GCCcore/6.4.0`` +``2.8.1`` | | ``GCCcore/6.4.0`` +``2.9`` | | ``GCCcore/6.4.0`` +``2.9.1`` | | ``GCCcore/7.3.0`` +``2.9.1`` | | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/freud-analysis.md b/docs/version-specific/supported-software/f/freud-analysis.md new file mode 100644 index 000000000..70d3dbaa8 --- /dev/null +++ b/docs/version-specific/supported-software/f/freud-analysis.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# freud-analysis + +The freud Python library provides a simple, flexible, powerful set of tools for analyzing trajectories obtained from molecular dynamics or Monte Carlo simulations. High performance, parallelized C++ is used to compute standard tools such as radial distribution functions, correlation functions, order parameters, and clusters, as well as original analysis methods including potentials of mean force and torque (PMFTs) and local environment matching. The freud library supports many input formats and outputs NumPy arrays, enabling integration with the scientific Python ecosystem for many typical materials science workflows. + +*homepage*: + +version | toolchain +--------|---------- +``2.6.2`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fsom.md b/docs/version-specific/supported-software/f/fsom.md new file mode 100644 index 000000000..dad950c0d --- /dev/null +++ b/docs/version-specific/supported-software/f/fsom.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# fsom + +A tiny C library for managing SOM (Self-Organizing Maps) neural networks. + +*homepage*: + +version | toolchain +--------|---------- +``20141119`` | ``GCCcore/10.2.0`` +``20141119`` | ``GCCcore/10.3.0`` +``20141119`` | ``GCCcore/11.2.0`` +``20141119`` | ``GCCcore/9.3.0`` +``20151117`` | ``GCCcore/11.3.0`` +``20151117`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/ftfy.md b/docs/version-specific/supported-software/f/ftfy.md new file mode 100644 index 000000000..a03384c50 --- /dev/null +++ b/docs/version-specific/supported-software/f/ftfy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ftfy + +ftfy (fixes text for you) fixes Unicode that’s broken in various ways. The goal of ftfy is to take in bad Unicode and output good Unicode, for use in your Unicode-aware code. This is different from taking in non-Unicode and outputting Unicode, which is not a goal of ftfy. It also isn’t designed to protect you from having to write Unicode-aware code. ftfy helps those who help themselves. + +*homepage*: + +version | toolchain +--------|---------- +``6.1.1`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fugue.md b/docs/version-specific/supported-software/f/fugue.md new file mode 100644 index 000000000..dfb46523b --- /dev/null +++ b/docs/version-specific/supported-software/f/fugue.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# fugue + +Fugue is a unified interface for distributed computing that lets users execute Python, Pandas, and SQL code on Spark, Dask, and Ray with minimal rewrites. Fugue is most commonly used for: Parallelizing or scaling existing Python and Pandas code by bringing it to Spark, Dask, or Ray with minimal rewrites. Using FugueSQL to define end-to-end workflows on top of Pandas, Spark, and Dask DataFrames. FugueSQL is an enhanced SQL interface that can invoke Python code. + +*homepage*: + +version | toolchain +--------|---------- +``0.8.7`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fullrmc.md b/docs/version-specific/supported-software/f/fullrmc.md new file mode 100644 index 000000000..37f0b4f52 --- /dev/null +++ b/docs/version-specific/supported-software/f/fullrmc.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# fullrmc + +Reverse Monte Carlo (RMC) is probably best known for its applications in condensed matter physics and solid state chemistry. fullrmc which stands for FUndamental Library Language for Reverse Monte Carlo is different than traditional RMC but a stochastic modelling method to solve an inverse problem whereby an atomic/molecular model is adjusted until its atoms position havei the greatest consistency with a set of experimental data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.2.0`` | ``-Python-2.7.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fumi_tools.md b/docs/version-specific/supported-software/f/fumi_tools.md new file mode 100644 index 000000000..9f5eae100 --- /dev/null +++ b/docs/version-specific/supported-software/f/fumi_tools.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# fumi_tools + +This tool is intended to deduplicate UMIs from single-end and paired-end sequencing data. Reads are considered identical when their UMIs have the same sequence, they have the same length and map at the same position. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.18.2`` | | ``GCC/10.3.0`` +``0.18.2`` | | ``GCC/11.2.0`` +``0.18.2`` | ``-Python-3.6.6`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/funannotate.md b/docs/version-specific/supported-software/f/funannotate.md new file mode 100644 index 000000000..6f4ea1ed8 --- /dev/null +++ b/docs/version-specific/supported-software/f/funannotate.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# funannotate + +funannotate is a pipeline for genome annotation (built specifically for fungi, but will also work with higher eukaryotes) + +*homepage*: + +version | toolchain +--------|---------- +``1.8.13`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/futhark.md b/docs/version-specific/supported-software/f/futhark.md new file mode 100644 index 000000000..4d28a57d2 --- /dev/null +++ b/docs/version-specific/supported-software/f/futhark.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# futhark + +Futhark is a small programming language designed to be compiled to efficient parallel code. It is a statically typed, data-parallel, and purely functional array language in the ML family, and comes with a heavily optimising ahead-of-time compiler that presently generates GPU code via CUDA and OpenCL, although the language itself is hardware-agnostic and can also run on multicore CPUs + +*homepage*: + +version | toolchain +--------|---------- +``0.19.5`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/futile.md b/docs/version-specific/supported-software/f/futile.md new file mode 100644 index 000000000..588a95e8b --- /dev/null +++ b/docs/version-specific/supported-software/f/futile.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# futile + +The FUTILE project (Fortran Utilities for the Treatment of Innermost Level of Executables) is a set of modules and wrapper that encapsulate the most common low-level operations of a Fortran code. + +*homepage*: + +version | toolchain +--------|---------- +``1.8.3`` | ``foss/2020b`` +``1.8.3`` | ``foss/2021a`` +``1.8.3`` | ``foss/2021b`` +``1.8.3`` | ``foss/2022a`` +``1.8.3`` | ``intel/2020b`` +``1.8.3`` | ``intel/2021a`` +``1.8.3`` | ``intel/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/future.md b/docs/version-specific/supported-software/f/future.md new file mode 100644 index 000000000..bb5bab247 --- /dev/null +++ b/docs/version-specific/supported-software/f/future.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# future + +python-future is the missing compatibility layer between Python 2 and Python 3. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.16.0`` | ``-Python-2.7.14`` | ``foss/2018a`` +``0.16.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``0.16.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.16.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.16.0`` | ``-Python-3.6.3`` | ``intel/2017b`` +``0.16.0`` | ``-Python-2.7.14`` | ``intel/2018a`` +``0.16.0`` | ``-Python-2.7.15`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/fxtract.md b/docs/version-specific/supported-software/f/fxtract.md new file mode 100644 index 000000000..cdb993757 --- /dev/null +++ b/docs/version-specific/supported-software/f/fxtract.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# fxtract + +Extract sequences from a fastx (fasta or fastq) file given a subsequence. + +*homepage*: + +version | toolchain +--------|---------- +``2.3`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/f/index.md b/docs/version-specific/supported-software/f/index.md new file mode 100644 index 000000000..33c7bcd9d --- /dev/null +++ b/docs/version-specific/supported-software/f/index.md @@ -0,0 +1,184 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (f) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - *f* - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [f90cache](f90cache.md) + * [f90nml](f90nml.md) + * [f90wrap](f90wrap.md) + * [Faber](Faber.md) + * [FabIO](FabIO.md) + * [FACE](FACE.md) + * [faceswap](faceswap.md) + * [Faiss](Faiss.md) + * [FALCON](FALCON.md) + * [FANN](FANN.md) + * [fast5](fast5.md) + * [FASTA](FASTA.md) + * [fasta-reader](fasta-reader.md) + * [fastahack](fastahack.md) + * [fastai](fastai.md) + * [FastaIndex](FastaIndex.md) + * [FastANI](FastANI.md) + * [Fastaq](Fastaq.md) + * [FastFold](FastFold.md) + * [fastjet](fastjet.md) + * [fastjet-contrib](fastjet-contrib.md) + * [FastME](FastME.md) + * [fastml](fastml.md) + * [fastp](fastp.md) + * [fastparquet](fastparquet.md) + * [fastPHASE](fastPHASE.md) + * [fastq-pair](fastq-pair.md) + * [fastq-tools](fastq-tools.md) + * [FastQ_Screen](FastQ_Screen.md) + * [FastQC](FastQC.md) + * [fastqsplitter](fastqsplitter.md) + * [FastQTL](FastQTL.md) + * [fastqz](fastqz.md) + * [FastRFS](FastRFS.md) + * [fastStructure](fastStructure.md) + * [FastTree](FastTree.md) + * [FastViromeExplorer](FastViromeExplorer.md) + * [FASTX-Toolkit](FASTX-Toolkit.md) + * [fatslim](fatslim.md) + * [fbm](fbm.md) + * [FBPIC](FBPIC.md) + * [FCC](FCC.md) + * [FCM](FCM.md) + * [fdict](fdict.md) + * [FDMNES](FDMNES.md) + * [FDS](FDS.md) + * [fdstools](fdstools.md) + * [FDTD_Solutions](FDTD_Solutions.md) + * [feh](feh.md) + * [FEniCS](FEniCS.md) + * [fermi-lite](fermi-lite.md) + * [Ferret](Ferret.md) + * [festival](festival.md) + * [fetchMG](fetchMG.md) + * [FFAVES](FFAVES.md) + * [FFC](FFC.md) + * [FFLAS-FFPACK](FFLAS-FFPACK.md) + * [FFmpeg](FFmpeg.md) + * [ffmpi](ffmpi.md) + * [ffnet](ffnet.md) + * [ffnvcodec](ffnvcodec.md) + * [fftlib](fftlib.md) + * [FFTW](FFTW.md) + * [FFTW.MPI](FFTW.MPI.md) + * [fgbio](fgbio.md) + * [FGSL](FGSL.md) + * [FHI-aims](FHI-aims.md) + * [FIAT](FIAT.md) + * [FIGARO](FIGARO.md) + * [FigureGen](FigureGen.md) + * [Fiji](Fiji.md) + * [file](file.md) + * [filevercmp](filevercmp.md) + * [Filtlong](Filtlong.md) + * [find_circ](find_circ.md) + * [finder](finder.md) + * [findhap](findhap.md) + * [findutils](findutils.md) + * [fineRADstructure](fineRADstructure.md) + * [fineSTRUCTURE](fineSTRUCTURE.md) + * [fio](fio.md) + * [Fiona](Fiona.md) + * [Firefox](Firefox.md) + * [FIRESTARTER](FIRESTARTER.md) + * [FireWorks](FireWorks.md) + * [FIt-SNE](FIt-SNE.md) + * [FIX](FIX.md) + * [fixesproto](fixesproto.md) + * [FLAC](FLAC.md) + * [FLAIR](FLAIR.md) + * [flair-NLP](flair-NLP.md) + * [FLANN](FLANN.md) + * [FLASH](FLASH.md) + * [Flask](Flask.md) + * [flatbuffers](flatbuffers.md) + * [flatbuffers-python](flatbuffers-python.md) + * [FLEUR](FLEUR.md) + * [flex](flex.md) + * [Flexbar](Flexbar.md) + * [FlexiBLAS](FlexiBLAS.md) + * [FlexiDot](FlexiDot.md) + * [Flink](Flink.md) + * [FLINT](FLINT.md) + * [flit](flit.md) + * [flook](flook.md) + * [flowFDA](flowFDA.md) + * [FLTK](FLTK.md) + * [FLUENT](FLUENT.md) + * [Flye](Flye.md) + * [FMILibrary](FMILibrary.md) + * [FMM3D](FMM3D.md) + * [FMPy](FMPy.md) + * [FMRIprep](FMRIprep.md) + * [FMS](FMS.md) + * [fmt](fmt.md) + * [FoBiS](FoBiS.md) + * [FoldX](FoldX.md) + * [fontconfig](fontconfig.md) + * [fontsproto](fontsproto.md) + * [forbear](forbear.md) + * [FORD](FORD.md) + * [foss](foss.md) + * [fosscuda](fosscuda.md) + * [FoX](FoX.md) + * [FOX-Toolkit](FOX-Toolkit.md) + * [fplll](fplll.md) + * [FPM](FPM.md) + * [fpocket](fpocket.md) + * [fpylll](fpylll.md) + * [fqtrim](fqtrim.md) + * [fqzcomp](fqzcomp.md) + * [FragGeneScan](FragGeneScan.md) + * [FragPipe](FragPipe.md) + * [FRANz](FRANz.md) + * [FreeBarcodes](FreeBarcodes.md) + * [freebayes](freebayes.md) + * [FreeFEM](FreeFEM.md) + * [FreeFem++](FreeFem++.md) + * [freeglut](freeglut.md) + * [FreeImage](FreeImage.md) + * [FreeSASA](FreeSASA.md) + * [FreeSurfer](FreeSurfer.md) + * [FreeTDS](FreeTDS.md) + * [freetype](freetype.md) + * [freetype-py](freetype-py.md) + * [FreeXL](FreeXL.md) + * [freud-analysis](freud-analysis.md) + * [FriBidi](FriBidi.md) + * [FRUIT](FRUIT.md) + * [FRUIT_processor](FRUIT_processor.md) + * [FSL](FSL.md) + * [FSLeyes](FSLeyes.md) + * [fsom](fsom.md) + * [FSON](FSON.md) + * [ftfy](ftfy.md) + * [FTGL](FTGL.md) + * [fugue](fugue.md) + * [Fujitsu](Fujitsu.md) + * [fullrmc](fullrmc.md) + * [fumi_tools](fumi_tools.md) + * [funannotate](funannotate.md) + * [FunGAP](FunGAP.md) + * [FUNWAVE-TVD](FUNWAVE-TVD.md) + * [FUSE](FUSE.md) + * [FuSeq](FuSeq.md) + * [FusionCatcher](FusionCatcher.md) + * [futhark](futhark.md) + * [futile](futile.md) + * [future](future.md) + * [fxtract](fxtract.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - *f* - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/G-PhoCS.md b/docs/version-specific/supported-software/g/G-PhoCS.md new file mode 100644 index 000000000..95c994a5e --- /dev/null +++ b/docs/version-specific/supported-software/g/G-PhoCS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# G-PhoCS + +G-PhoCS is a software package for inferring ancestral population sizes, population divergence times, and migration rates from individual genome sequences. G-PhoCS accepts as input a set of multiple sequence alignments from separate neutrally evolving loci along the genome. Parameter inference is done in a Bayesian manner, using a Markov Chain Monte Carlo (MCMC) to jointly sample model parameters and genealogies at the input loci. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.3`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GAMESS-US.md b/docs/version-specific/supported-software/g/GAMESS-US.md new file mode 100644 index 000000000..d82f4b3d3 --- /dev/null +++ b/docs/version-specific/supported-software/g/GAMESS-US.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# GAMESS-US + +The General Atomic and Molecular Electronic Structure System (GAMESS) is a general ab initio quantum chemistry package. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20141205-R1`` | | ``intel/2016a`` +``20170420-R1`` | ``-sockets`` | ``intel/2016b`` +``20170420-R1`` | | ``intel/2016b`` +``20180214-R1`` | ``-sockets`` | ``foss/2016b`` +``20180214-R1`` | | ``foss/2016b`` +``20220930-R2`` | | ``gompi/2022a`` +``20230930-R2`` | | ``gompi/2022a`` +``20230930-R2`` | | ``intel-compilers/2022.1.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GAPPadder.md b/docs/version-specific/supported-software/g/GAPPadder.md new file mode 100644 index 000000000..50cc3ef1a --- /dev/null +++ b/docs/version-specific/supported-software/g/GAPPadder.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GAPPadder + +GAPPadder is tool for closing gaps on draft genomes with short sequencing data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20170601`` | ``-Python-2.7.18`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GARLI.md b/docs/version-specific/supported-software/g/GARLI.md new file mode 100644 index 000000000..540a0a888 --- /dev/null +++ b/docs/version-specific/supported-software/g/GARLI.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GARLI + +GARLI, Genetic Algorithm for Rapid Likelihood Inference is a program for inferring phylogenetic trees. Using an approach similar to a classical genetic algorithm, it rapidly searches the space of evolutionary trees and model parameters to find the solution maximizing the likelihood score. It implements nucleotide, amino acid and codon-based models of sequence evolution, and runs on all platforms. + +*homepage*: + +version | toolchain +--------|---------- +``2.01`` | ``gompi/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GAT.md b/docs/version-specific/supported-software/g/GAT.md new file mode 100644 index 000000000..486d07706 --- /dev/null +++ b/docs/version-specific/supported-software/g/GAT.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GAT + +The Genomic Association Tester (GAT) is a tool for computing the significance of overlap between multiple sets of genomic intervals. GAT estimates significance based on simulation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.2`` | ``-Python-2.7.11`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GATB-Core.md b/docs/version-specific/supported-software/g/GATB-Core.md new file mode 100644 index 000000000..99f1953d9 --- /dev/null +++ b/docs/version-specific/supported-software/g/GATB-Core.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GATB-Core + +GATB-Core is a high-performance and low memory footprint C++ library that provides a set of highly efficient algorithms to analyse NGS data sets + +*homepage*: + +version | toolchain +--------|---------- +``1.4.2`` | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GATE.md b/docs/version-specific/supported-software/g/GATE.md new file mode 100644 index 000000000..5d066577a --- /dev/null +++ b/docs/version-specific/supported-software/g/GATE.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# GATE + +GATE is an advanced opensource software developed by the international OpenGATE collaboration and dedicated to the numerical simulations in medical imaging. It currently supports simulations of Emission Tomography (Positron Emission Tomography - PET and Single Photon Emission Computed Tomography - SPECT), and Computed Tomography + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``6.2`` | ``-Python-2.7.11`` | ``intel/2016a`` +``7.1`` | ``-Python-2.7.11`` | ``intel/2016a`` +``7.2`` | ``-Python-2.7.11`` | ``intel/2016a`` +``8.0`` | ``-Python-2.7.14`` | ``foss/2017b`` +``8.0`` | ``-Python-2.7.14-Geant4-10.04`` | ``intel/2017b`` +``8.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``8.1.p01`` | ``-Python-2.7.15`` | ``foss/2018b`` +``8.2`` | ``-Python-2.7.14`` | ``foss/2017b`` +``8.2`` | ``-Python-2.7.15`` | ``foss/2018b`` +``8.2`` | ``-Python-2.7.14`` | ``intel/2017b`` +``9.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``9.1`` | | ``foss/2021b`` +``9.2`` | | ``foss/2021b`` +``9.2`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GATK.md b/docs/version-specific/supported-software/g/GATK.md new file mode 100644 index 000000000..c64c57bdd --- /dev/null +++ b/docs/version-specific/supported-software/g/GATK.md @@ -0,0 +1,59 @@ +--- +search: + boost: 0.5 +--- +# GATK + +The GATK is a structured software library that makes writing efficient analysis tools using next-generation sequencing data very easy, and second it's a suite of tools for working with human medical resequencing projects such as 1000 Genomes and The Cancer Genome Atlas. These tools include things like a depth of coverage analyzers, a quality score recalibrator, a SNP/indel caller and a local realigner. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.5083`` | | ``system`` +``2.5-2`` | ``-Java-1.7.0_10`` | ``system`` +``2.6-5`` | ``-Java-1.7.0_10`` | ``system`` +``2.7-4`` | ``-Java-1.7.0_10`` | ``system`` +``2.7-4`` | | ``system`` +``2.8-1`` | ``-Java-1.7.0_10`` | ``system`` +``3.0-0`` | ``-Java-1.7.0_10`` | ``system`` +``3.3-0`` | ``-Java-1.7.0_21`` | ``system`` +``3.3-0`` | ``-Java-1.7.0_80`` | ``system`` +``3.3-0`` | ``-Java-1.8.0_66`` | ``system`` +``3.5`` | ``-Java-1.8.0_66`` | ``system`` +``3.5`` | ``-Java-1.8.0_74`` | ``system`` +``3.6`` | ``-Java-1.8.0_92`` | ``system`` +``3.7`` | ``-Java-1.8.0_112`` | ``system`` +``3.8-0`` | ``-Java-1.8.0_144`` | ``system`` +``4.0.1.2`` | ``-Java-1.8`` | ``system`` +``4.0.10.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``4.0.12.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``4.0.4.0`` | ``-Python-2.7.14`` | ``intel/2018a`` +``4.0.4.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``4.0.5.1`` | ``-Python-3.6.4`` | ``foss/2018a`` +``4.0.7.0`` | ``-Python-2.7.14`` | ``intel/2018a`` +``4.0.7.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``4.0.8.1`` | ``-Python-2.7.15`` | ``foss/2018b`` +``4.0.8.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``4.1.0.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``4.1.2.0`` | ``-Java-1.8`` | ``GCCcore/8.2.0`` +``4.1.3.0`` | ``-Java-1.8`` | ``GCCcore/8.3.0`` +``4.1.4.1`` | ``-Java-1.8`` | ``GCCcore/8.3.0`` +``4.1.4.1`` | ``-Java-11`` | ``GCCcore/8.3.0`` +``4.1.5.0`` | ``-Java-1.8`` | ``GCCcore/9.3.0`` +``4.1.5.0`` | ``-Java-11`` | ``GCCcore/9.3.0`` +``4.1.8.1`` | ``-Java-1.8`` | ``GCCcore/9.3.0`` +``4.2.0.0`` | ``-Java-1.8`` | ``GCCcore/10.2.0`` +``4.2.0.0`` | ``-Java-11`` | ``GCCcore/10.2.0`` +``4.2.3.0`` | ``-Java-11`` | ``GCCcore/11.2.0`` +``4.2.5.0`` | ``-Java-11`` | ``GCCcore/11.2.0`` +``4.2.6.1`` | ``-Java-11`` | ``GCCcore/10.3.0`` +``4.2.6.1`` | ``-Java-11`` | ``GCCcore/11.2.0`` +``4.3.0.0`` | ``-Java-11`` | ``GCCcore/11.3.0`` +``4.4.0.0`` | ``-Java-17`` | ``GCCcore/12.2.0`` +``4.4.0.0`` | ``-Java-17`` | ``GCCcore/12.3.0`` +``4.5.0.0`` | ``-Java-17`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GBprocesS.md b/docs/version-specific/supported-software/g/GBprocesS.md new file mode 100644 index 000000000..c89a6206a --- /dev/null +++ b/docs/version-specific/supported-software/g/GBprocesS.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# GBprocesS + +GBprocesS allows for the extraction of genomic inserts from NGS data for GBS experiments. Preprocessing is performed in different stages that are part of a linear pipeline where the steps are performed in order. GBprocesS provides a flexible way to adjust the functionality to your needs, as the operations required and the execution order vary depending on the GBS protocol used. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.3`` | ``-Python-3.8.2`` | ``intel/2020a`` +``4.0.0.post1`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GC3Pie.md b/docs/version-specific/supported-software/g/GC3Pie.md new file mode 100644 index 000000000..c8ea60aa8 --- /dev/null +++ b/docs/version-specific/supported-software/g/GC3Pie.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# GC3Pie + +GC3Pie is a Python package for running large job campaigns on diverse batch-oriented execution environments. + +*homepage*: + +version | toolchain +--------|---------- +``2.4.2`` | ``system`` +``2.5.0`` | ``system`` +``2.5.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GCC.md b/docs/version-specific/supported-software/g/GCC.md new file mode 100644 index 000000000..556bf1d68 --- /dev/null +++ b/docs/version-specific/supported-software/g/GCC.md @@ -0,0 +1,85 @@ +--- +search: + boost: 0.5 +--- +# GCC + +The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``10.1.0`` | | ``system`` +``10.2.0`` | | ``system`` +``10.3.0`` | | ``system`` +``11.1.0`` | | ``system`` +``11.2.0`` | | ``system`` +``11.3.0`` | | ``system`` +``11.4.0`` | | ``system`` +``12.1.0`` | | ``system`` +``12.2.0`` | | ``system`` +``12.3.0`` | | ``system`` +``13.1.0`` | | ``system`` +``13.2.0`` | | ``system`` +``13.3.0`` | | ``system`` +``14.1.0`` | | ``system`` +``4.8.1`` | ``-CLooG`` | ``system`` +``4.8.1`` | | ``system`` +``4.8.2`` | ``-CLooG-multilib`` | ``system`` +``4.8.2`` | ``-CLooG`` | ``system`` +``4.8.2`` | ``-multilib`` | ``system`` +``4.8.2`` | | ``system`` +``4.8.3`` | ``-CLooG-multilib`` | ``system`` +``4.8.3`` | | ``system`` +``4.8.4`` | ``-CLooG-multilib`` | ``system`` +``4.8.4`` | ``-CLooG`` | ``system`` +``4.8.4`` | | ``system`` +``4.8.5`` | | ``system`` +``4.9.0`` | ``-CLooG-multilib`` | ``system`` +``4.9.0`` | ``-CLooG`` | ``system`` +``4.9.0`` | | ``system`` +``4.9.1`` | ``-CLooG-multilib`` | ``system`` +``4.9.1`` | ``-CLooG`` | ``system`` +``4.9.1`` | | ``system`` +``4.9.2`` | ``-CLooG-multilib`` | ``system`` +``4.9.2`` | ``-CLooG`` | ``system`` +``4.9.2`` | ``-binutils-2.25`` | ``system`` +``4.9.2`` | | ``system`` +``4.9.3`` | ``-2.25`` | ``system`` +``4.9.3`` | ``-binutils-2.25`` | ``system`` +``4.9.3`` | | ``system`` +``4.9.4`` | ``-2.25`` | ``system`` +``5.1.0`` | ``-binutils-2.25`` | ``system`` +``5.1.0`` | | ``system`` +``5.2.0`` | | ``system`` +``5.3.0`` | ``-2.26`` | ``system`` +``5.3.0`` | | ``system`` +``5.4.0`` | ``-2.26`` | ``system`` +``5.5.0`` | ``-2.26`` | ``system`` +``6.1.0`` | ``-2.27`` | ``system`` +``6.2.0`` | ``-2.27`` | ``system`` +``6.3.0`` | ``-2.27`` | ``system`` +``6.3.0`` | ``-2.28`` | ``system`` +``6.4.0`` | ``-2.28`` | ``system`` +``7.1.0`` | ``-2.28`` | ``system`` +``7.2.0`` | ``-2.29`` | ``system`` +``7.3.0`` | ``-2.30`` | ``system`` +``7.4.0`` | ``-2.31.1`` | ``system`` +``8.1.0`` | ``-2.30`` | ``system`` +``8.2.0`` | ``-2.31.1`` | ``system`` +``8.3.0`` | ``-2.32`` | ``system`` +``8.3.0`` | | ``system`` +``8.4.0`` | | ``system`` +``9.1.0`` | ``-2.32`` | ``system`` +``9.2.0`` | ``-2.32`` | ``system`` +``9.2.0`` | | ``system`` +``9.3.0`` | | ``system`` +``9.4.0`` | | ``system`` +``9.5.0`` | | ``system`` +``system`` | ``-2.29`` | ``system`` +``system`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GCCcore.md b/docs/version-specific/supported-software/g/GCCcore.md new file mode 100644 index 000000000..162355f55 --- /dev/null +++ b/docs/version-specific/supported-software/g/GCCcore.md @@ -0,0 +1,55 @@ +--- +search: + boost: 0.5 +--- +# GCCcore + +The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...). + +*homepage*: + +version | toolchain +--------|---------- +``10.1.0`` | ``system`` +``10.2.0`` | ``system`` +``10.3.0`` | ``system`` +``11.1.0`` | ``system`` +``11.2.0`` | ``system`` +``11.3.0`` | ``system`` +``11.4.0`` | ``system`` +``12.1.0`` | ``system`` +``12.2.0`` | ``system`` +``12.3.0`` | ``system`` +``13.1.0`` | ``system`` +``13.2.0`` | ``system`` +``13.3.0`` | ``system`` +``14.1.0`` | ``system`` +``4.9.2`` | ``system`` +``4.9.3`` | ``system`` +``4.9.4`` | ``system`` +``5.3.0`` | ``system`` +``5.4.0`` | ``system`` +``5.5.0`` | ``system`` +``6.1.0`` | ``system`` +``6.2.0`` | ``system`` +``6.3.0`` | ``system`` +``6.4.0`` | ``system`` +``6.5.0`` | ``system`` +``7.1.0`` | ``system`` +``7.2.0`` | ``system`` +``7.3.0`` | ``system`` +``7.4.0`` | ``system`` +``8.1.0`` | ``system`` +``8.2.0`` | ``system`` +``8.3.0`` | ``system`` +``8.4.0`` | ``system`` +``9.1.0`` | ``system`` +``9.2.0`` | ``system`` +``9.3.0`` | ``system`` +``9.4.0`` | ``system`` +``9.5.0`` | ``system`` +``system`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GCTA.md b/docs/version-specific/supported-software/g/GCTA.md new file mode 100644 index 000000000..2b0b8ba0b --- /dev/null +++ b/docs/version-specific/supported-software/g/GCTA.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# GCTA + +GCTA (Genome-wide Complex Trait Analysis) is a software package, which was initially developed to estimate the proportion of phenotypic variance explained by all genome-wide SNPs for a complex trait but has been extensively extended for many other analyses of data from genome-wide association studies (GWASs). + +*homepage*: + +version | toolchain +--------|---------- +``1.94.0beta`` | ``foss/2021b`` +``1.94.0beta`` | ``gfbf/2022a`` +``1.94.1`` | ``gfbf/2022a`` +``1.94.1`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GConf.md b/docs/version-specific/supported-software/g/GConf.md new file mode 100644 index 000000000..db4217642 --- /dev/null +++ b/docs/version-specific/supported-software/g/GConf.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# GConf + +GConf is a system for storing application preferences. It is intended for user preferences; not configuration of something like Apache, or arbitrary data storage. + +*homepage*: + +version | toolchain +--------|---------- +``3.2.6`` | ``GCCcore/10.3.0`` +``3.2.6`` | ``GCCcore/11.2.0`` +``3.2.6`` | ``GCCcore/11.3.0`` +``3.2.6`` | ``GCCcore/8.2.0`` +``3.2.6`` | ``GCCcore/8.3.0`` +``3.2.6`` | ``foss/2016a`` +``3.2.6`` | ``foss/2018b`` +``3.2.6`` | ``intel/2016a`` +``3.2.6`` | ``intel/2016b`` +``3.2.6`` | ``intel/2017a`` +``3.2.6`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GD.md b/docs/version-specific/supported-software/g/GD.md new file mode 100644 index 000000000..136822030 --- /dev/null +++ b/docs/version-specific/supported-software/g/GD.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# GD + +GD.pm - Interface to Gd Graphics Library + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.66`` | ``-Perl-5.24.0`` | ``foss/2016b`` +``2.68`` | ``-Perl-5.26.1`` | ``GCCcore/6.4.0`` +``2.69`` | ``-Perl-5.28.0`` | ``GCCcore/7.3.0`` +``2.71`` | | ``GCCcore/9.3.0`` +``2.73`` | | ``GCCcore/10.3.0`` +``2.75`` | | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GDAL.md b/docs/version-specific/supported-software/g/GDAL.md new file mode 100644 index 000000000..4e0e75271 --- /dev/null +++ b/docs/version-specific/supported-software/g/GDAL.md @@ -0,0 +1,63 @@ +--- +search: + boost: 0.5 +--- +# GDAL + +GDAL is a translator library for raster geospatial data formats that is released under an X/MIT style Open Source license by the Open Source Geospatial Foundation. As a library, it presents a single abstract data model to the calling application for all supported formats. It also comes with a variety of useful commandline utilities for data translation and processing. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.2`` | | ``foss/2016a`` +``2.0.2`` | | ``intel/2016a`` +``2.1.0`` | | ``foss/2016a`` +``2.1.0`` | | ``foss/2016b`` +``2.1.0`` | | ``intel/2016b`` +``2.1.1`` | | ``foss/2016a`` +``2.1.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2.1.2`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2.1.3`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2.1.3`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2.1.3`` | ``-Python-2.7.13`` | ``intel/2017a`` +``2.1.3`` | ``-Python-3.6.1`` | ``intel/2017a`` +``2.2.0`` | ``-Python-2.7.13-HDF5-1.8.18`` | ``intel/2017a`` +``2.2.0`` | ``-Python-2.7.13-HDF5-HDF`` | ``intel/2017a`` +``2.2.0`` | ``-Python-3.6.1`` | ``intel/2017a`` +``2.2.2`` | ``-Python-2.7.14-HDF5-1.8.19`` | ``intel/2017b`` +``2.2.2`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.2.3`` | ``-Python-2.7.14`` | ``foss/2017b`` +``2.2.3`` | ``-Python-3.6.3`` | ``foss/2017b`` +``2.2.3`` | ``-Python-2.7.14`` | ``foss/2018a`` +``2.2.3`` | ``-Python-3.6.4`` | ``foss/2018a`` +``2.2.3`` | ``-Python-2.7.15`` | ``foss/2018b`` +``2.2.3`` | ``-Python-3.6.6`` | ``foss/2018b`` +``2.2.3`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.2.3`` | ``-Python-2.7.14`` | ``intel/2018a`` +``2.2.3`` | ``-Python-3.6.4`` | ``intel/2018a`` +``2.2.3`` | ``-Python-3.6.6`` | ``intel/2018b`` +``2.2.3`` | ``-Python-3.6.4`` | ``iomkl/2018a`` +``2.4.4`` | | ``foss/2021b`` +``2.4.4`` | | ``intel/2021b`` +``3.0.0`` | ``-Python-2.7.15`` | ``foss/2019a`` +``3.0.0`` | ``-Python-3.7.2`` | ``foss/2019a`` +``3.0.0`` | ``-Python-2.7.15`` | ``intel/2019a`` +``3.0.0`` | ``-Python-3.7.2`` | ``intel/2019a`` +``3.0.2`` | ``-Python-3.7.4`` | ``foss/2019b`` +``3.0.2`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``3.0.2`` | ``-Python-3.7.4`` | ``intel/2019b`` +``3.0.4`` | ``-Python-3.8.2`` | ``foss/2020a`` +``3.0.4`` | ``-Python-3.8.2`` | ``intel/2020a`` +``3.2.1`` | | ``foss/2020b`` +``3.2.1`` | | ``fosscuda/2020b`` +``3.2.1`` | | ``intel/2020b`` +``3.3.0`` | | ``foss/2021a`` +``3.3.2`` | | ``foss/2021b`` +``3.5.0`` | | ``foss/2022a`` +``3.6.2`` | | ``foss/2022b`` +``3.7.1`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GDB.md b/docs/version-specific/supported-software/g/GDB.md new file mode 100644 index 000000000..625a8e761 --- /dev/null +++ b/docs/version-specific/supported-software/g/GDB.md @@ -0,0 +1,39 @@ +--- +search: + boost: 0.5 +--- +# GDB + +The GNU Project Debugger + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``10.1`` | | ``GCCcore/10.2.0`` +``10.2`` | | ``GCCcore/10.3.0`` +``10.2`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``11.1`` | | ``GCCcore/11.2.0`` +``12.1`` | | ``GCCcore/11.3.0`` +``13.2`` | | ``GCCcore/12.2.0`` +``13.2`` | | ``GCCcore/12.3.0`` +``13.2`` | | ``GCCcore/13.2.0`` +``14.2`` | | ``GCCcore/13.3.0`` +``7.10.1`` | ``-Python-2.7.11`` | ``foss/2016a`` +``7.10.1`` | ``-Python-2.7.11`` | ``intel/2016a`` +``7.11`` | ``-Python-2.7.11`` | ``foss/2016a`` +``7.11`` | ``-Python-2.7.11`` | ``intel/2016a`` +``7.11.1`` | ``-Python-2.7.12`` | ``foss/2016b`` +``7.11.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``7.8.2`` | | ``GCC/4.9.2`` +``7.9`` | | ``GCC/4.9.2`` +``8.0.1`` | ``-Python-2.7.14`` | ``foss/2017b`` +``8.0.1`` | ``-Python-3.6.3`` | ``foss/2017b`` +``8.1`` | ``-Python-2.7.14`` | ``foss/2018a`` +``8.1.1`` | ``-Python-2.7.14`` | ``intel/2018a`` +``8.3`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` +``9.1`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GDCHART.md b/docs/version-specific/supported-software/g/GDCHART.md new file mode 100644 index 000000000..c4945d98e --- /dev/null +++ b/docs/version-specific/supported-software/g/GDCHART.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GDCHART + +Easy to use C API, high performance library to create charts and graphs in PNG, GIF and WBMP format. + +*homepage*: + +version | toolchain +--------|---------- +``0.11.5dev`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GDCM.md b/docs/version-specific/supported-software/g/GDCM.md new file mode 100644 index 000000000..eb92bbe8a --- /dev/null +++ b/docs/version-specific/supported-software/g/GDCM.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# GDCM + +Grassroots DICOM: Cross-platform DICOM implementation + +*homepage*: + +version | toolchain +--------|---------- +``2.8.8`` | ``GCCcore/6.4.0`` +``2.8.9`` | ``GCCcore/7.3.0`` +``3.0.20`` | ``GCCcore/11.3.0`` +``3.0.21`` | ``GCCcore/12.2.0`` +``3.0.4`` | ``GCCcore/8.2.0`` +``3.0.5`` | ``GCCcore/8.3.0`` +``3.0.8`` | ``GCCcore/10.2.0`` +``3.0.8`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GDGraph.md b/docs/version-specific/supported-software/g/GDGraph.md new file mode 100644 index 000000000..b1e61f021 --- /dev/null +++ b/docs/version-specific/supported-software/g/GDGraph.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# GDGraph + +GDGraph is a Perl package to generate charts + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.54`` | ``-Perl-5.28.0`` | ``foss/2018b`` +``1.54`` | ``-Perl-5.26.1`` | ``intel/2018a`` +``1.56`` | | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GDRCopy.md b/docs/version-specific/supported-software/g/GDRCopy.md new file mode 100644 index 000000000..840835ac4 --- /dev/null +++ b/docs/version-specific/supported-software/g/GDRCopy.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# GDRCopy + +A low-latency GPU memory copy library based on NVIDIA GPUDirect RDMA technology. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1`` | ``-CUDA-11.1.1`` | ``GCCcore/10.2.0`` +``2.1`` | ``-CUDA-11.2.1`` | ``GCCcore/10.2.0`` +``2.1`` | ``-CUDA-11.0.2`` | ``GCCcore/9.3.0`` +``2.2`` | | ``GCCcore/10.2.0`` +``2.2`` | | ``GCCcore/10.3.0`` +``2.3`` | | ``GCCcore/11.2.0`` +``2.3`` | | ``GCCcore/11.3.0`` +``2.3`` | | ``GCCcore/12.2.0`` +``2.3.1`` | | ``GCCcore/12.3.0`` +``2.4`` | | ``GCCcore/13.2.0`` +``2.4.1`` | | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GEGL.md b/docs/version-specific/supported-software/g/GEGL.md new file mode 100644 index 000000000..cf0ad09b2 --- /dev/null +++ b/docs/version-specific/supported-software/g/GEGL.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GEGL + +GEGL (Generic Graphics Library) is a data flow based image processing framework, providing floating point processing and non-destructive image processing capabilities to GNU Image Manipulation Program (GIMP) and other projects. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.30`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GEM-library.md b/docs/version-specific/supported-software/g/GEM-library.md new file mode 100644 index 000000000..6fafc3de9 --- /dev/null +++ b/docs/version-specific/supported-software/g/GEM-library.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GEM-library + +Next-generation sequencing platforms (Illumina/Solexa, ABI/SOLiD, etc.) call for powerful and very optimized tools to index/analyze huge genomes. The GEM library strives to be a true "next-generation" tool for handling any kind of sequence data, offering state-of-the-art algorithms and data structures specifically tailored to this demanding task. At the moment, efficient indexing and searching algorithms based on the Burrows-Wheeler transform (BWT) have been implemented. The library core is written in C for maximum speed, with concise interfaces to higher-level programming languages like OCaml and Python. Many high-performance standalone programs (mapper, splice mapper, etc.) are provided along with the library; in general, new algorithms and tools can be easily implemented on the top of it. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20130406-045632`` | ``_pre-release-3_Linux-x86_64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GEM.md b/docs/version-specific/supported-software/g/GEM.md new file mode 100644 index 000000000..ad95f6a19 --- /dev/null +++ b/docs/version-specific/supported-software/g/GEM.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# GEM + +GEM (Gene-Environment interaction analysis for Millions of samples) is a software program for large-scale gene-environment interaction testing in samples from unrelated individuals. It enables genome-wide association studies in up to millions of samples while allowing for multiple exposures, control for genotype-covariate interactions, and robust inference. + +*homepage*: + +version | toolchain +--------|---------- +``1.5.1`` | ``foss/2022a`` +``1.5.1`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GEMMA.md b/docs/version-specific/supported-software/g/GEMMA.md new file mode 100644 index 000000000..2fecdc64f --- /dev/null +++ b/docs/version-specific/supported-software/g/GEMMA.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# GEMMA + +Genome-wide Efficient Mixed Model Association + +*homepage*: + +version | toolchain +--------|---------- +``0.97`` | ``foss/2016b`` +``0.97`` | ``foss/2017a`` +``0.98.1`` | ``foss/2018b`` +``0.98.5`` | ``foss/2020a`` +``0.98.5`` | ``foss/2021b`` +``0.98.5`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GEOS.md b/docs/version-specific/supported-software/g/GEOS.md new file mode 100644 index 000000000..d3a96d63f --- /dev/null +++ b/docs/version-specific/supported-software/g/GEOS.md @@ -0,0 +1,53 @@ +--- +search: + boost: 0.5 +--- +# GEOS + +GEOS (Geometry Engine - Open Source) is a C++ port of the Java Topology Suite (JTS) + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.10.3`` | | ``GCC/11.3.0`` +``3.11.1`` | | ``GCC/12.2.0`` +``3.12.0`` | | ``GCC/12.3.0`` +``3.5.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``3.5.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``3.6.1`` | ``-Python-2.7.12`` | ``foss/2016b`` +``3.6.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``3.6.1`` | ``-Python-2.7.13`` | ``intel/2017a`` +``3.6.1`` | ``-Python-3.6.1`` | ``intel/2017a`` +``3.6.2`` | ``-Python-2.7.14`` | ``foss/2017b`` +``3.6.2`` | ``-Python-3.6.2`` | ``foss/2017b`` +``3.6.2`` | ``-Python-3.6.3`` | ``foss/2017b`` +``3.6.2`` | ``-Python-2.7.14`` | ``foss/2018a`` +``3.6.2`` | ``-Python-3.6.4`` | ``foss/2018a`` +``3.6.2`` | ``-Python-2.7.15`` | ``foss/2018b`` +``3.6.2`` | ``-Python-3.6.6`` | ``foss/2018b`` +``3.6.2`` | ``-Python-2.7.14`` | ``intel/2017b`` +``3.6.2`` | ``-Python-3.6.3`` | ``intel/2017b`` +``3.6.2`` | ``-Python-3.6.3`` | ``intel/2018.01`` +``3.6.2`` | ``-Python-2.7.14`` | ``intel/2018a`` +``3.6.2`` | ``-Python-3.6.4`` | ``intel/2018a`` +``3.6.2`` | ``-Python-3.6.6`` | ``intel/2018b`` +``3.6.2`` | ``-Python-3.6.4`` | ``iomkl/2018a`` +``3.7.2`` | ``-Python-2.7.15`` | ``foss/2019a`` +``3.7.2`` | ``-Python-3.7.2`` | ``foss/2019a`` +``3.7.2`` | ``-Python-2.7.15`` | ``intel/2019a`` +``3.7.2`` | ``-Python-3.7.2`` | ``intel/2019a`` +``3.8.0`` | ``-Python-3.7.4`` | ``GCC/8.3.0`` +``3.8.0`` | | ``GCC/8.3.0`` +``3.8.0`` | ``-Python-3.7.4`` | ``iccifort/2019.5.281`` +``3.8.1`` | ``-Python-3.8.2`` | ``GCC/9.3.0`` +``3.8.1`` | ``-Python-3.8.2`` | ``iccifort/2020.1.217`` +``3.9.1`` | | ``GCC/10.2.0`` +``3.9.1`` | | ``GCC/10.3.0`` +``3.9.1`` | | ``GCC/11.2.0`` +``3.9.1`` | | ``iccifort/2020.4.304`` +``3.9.1`` | | ``intel-compilers/2021.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GETORB.md b/docs/version-specific/supported-software/g/GETORB.md new file mode 100644 index 000000000..c161e8d41 --- /dev/null +++ b/docs/version-specific/supported-software/g/GETORB.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GETORB + +GETORB software package contains programs to handle the orbital data records (ODRs) + +*homepage*: + +version | toolchain +--------|---------- +``2.3.2`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GFF3-toolkit.md b/docs/version-specific/supported-software/g/GFF3-toolkit.md new file mode 100644 index 000000000..1cf6621a2 --- /dev/null +++ b/docs/version-specific/supported-software/g/GFF3-toolkit.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GFF3-toolkit + +Python programs for processing GFF3 files + +*homepage*: + +version | toolchain +--------|---------- +``2.1.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GFOLD.md b/docs/version-specific/supported-software/g/GFOLD.md new file mode 100644 index 000000000..1e8a336b7 --- /dev/null +++ b/docs/version-specific/supported-software/g/GFOLD.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GFOLD + +Generalized fold change for ranking differentially expressed genes from RNA-seq data + +*homepage*: + +version | toolchain +--------|---------- +``1.1.4`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GHC.md b/docs/version-specific/supported-software/g/GHC.md new file mode 100644 index 000000000..494468562 --- /dev/null +++ b/docs/version-specific/supported-software/g/GHC.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# GHC + +The Glorious/Glasgow Haskell Compiler + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``6.12.3`` | | ``system`` +``8.6.5`` | ``-x86_64`` | ``system`` +``9.2.2`` | ``-x86_64`` | ``system`` +``9.4.6`` | ``-x86_64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GI-DocGen.md b/docs/version-specific/supported-software/g/GI-DocGen.md new file mode 100644 index 000000000..17af978b2 --- /dev/null +++ b/docs/version-specific/supported-software/g/GI-DocGen.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GI-DocGen + +GI-DocGen is a document generator for GObject-based libraries. GObject is the base type system of the GNOME project. GI-Docgen reuses the introspection data generated by GObject-based libraries to generate the API reference of these libraries, as well as other ancillary documentation. + +*homepage*: + +version | toolchain +--------|---------- +``2023.3`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GIMIC.md b/docs/version-specific/supported-software/g/GIMIC.md new file mode 100644 index 000000000..f0037d480 --- /dev/null +++ b/docs/version-specific/supported-software/g/GIMIC.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# GIMIC + +The GIMIC program calculates magnetically induced currents in molecules. You need to provide this program with a density matrix in atomic-orbital (AO) basis and three (effective) magnetically perturbed AO density matrices in the proper format. Currently ACES2, Turbomole, G09, QChem, FERMION++, and LSDalton can produce these matrices. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.1`` | | ``foss/2022a`` +``2018.04.20`` | ``-Python-2.7.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GIMP.md b/docs/version-specific/supported-software/g/GIMP.md new file mode 100644 index 000000000..96472945c --- /dev/null +++ b/docs/version-specific/supported-software/g/GIMP.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GIMP + +GIMP is a cross-platform image editor available for GNU/Linux, OS X, Windows and more operating systems. + +*homepage*: + +version | toolchain +--------|---------- +``2.10.24`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GIMPS.md b/docs/version-specific/supported-software/g/GIMPS.md new file mode 100644 index 000000000..df3472bd3 --- /dev/null +++ b/docs/version-specific/supported-software/g/GIMPS.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# GIMPS + +GIMPS: Great Internet Mersenne Prime Search; it can be useful for limited stress testing of nodes, in user space + +*homepage*: + +version | toolchain +--------|---------- +``p95v279`` | ``GCC/4.8.2`` +``p95v279.linux64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GKeyll.md b/docs/version-specific/supported-software/g/GKeyll.md new file mode 100644 index 000000000..5b66e5446 --- /dev/null +++ b/docs/version-specific/supported-software/g/GKeyll.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GKeyll + +Gkeyll v2.0 (pronounced as in the book “The Strange Case of Dr. Jekyll and Mr. Hyde”) is a computational plasma physics code mostly written in C/C++ and LuaJIT. Gkeyll contains solvers for gyrokinetic equations, Vlasov-Maxwell equations, and multi-fluid equations. Gkeyll contains ab-initio and novel implementations of a number of algorithms, and perhaps is unique in using a JIT compiled typeless dynamic language for as its main implementation language. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20220803`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GKlib-METIS.md b/docs/version-specific/supported-software/g/GKlib-METIS.md new file mode 100644 index 000000000..c15eb6231 --- /dev/null +++ b/docs/version-specific/supported-software/g/GKlib-METIS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GKlib-METIS + +A library of various helper routines and frameworks used by many of the lab's software + +*homepage*: + +version | toolchain +--------|---------- +``5.1.1`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GL2PS.md b/docs/version-specific/supported-software/g/GL2PS.md new file mode 100644 index 000000000..7e4919832 --- /dev/null +++ b/docs/version-specific/supported-software/g/GL2PS.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# GL2PS + +GL2PS: an OpenGL to PostScript printing library + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.9`` | ``-Mesa-11.2.1`` | ``foss/2016a`` +``1.3.9`` | | ``foss/2016a`` +``1.3.9`` | | ``foss/2016b`` +``1.3.9`` | ``-Mesa-11.2.1`` | ``intel/2016a`` +``1.3.9`` | | ``intel/2016a`` +``1.3.9`` | | ``intel/2016b`` +``1.4.0`` | | ``GCCcore/8.3.0`` +``1.4.0`` | | ``foss/2017b`` +``1.4.0`` | | ``foss/2018a`` +``1.4.0`` | | ``foss/2018b`` +``1.4.0`` | | ``foss/2019a`` +``1.4.0`` | | ``intel/2017a`` +``1.4.0`` | | ``intel/2017b`` +``1.4.0`` | | ``intel/2018a`` +``1.4.2`` | | ``GCCcore/10.2.0`` +``1.4.2`` | | ``GCCcore/10.3.0`` +``1.4.2`` | | ``GCCcore/11.2.0`` +``1.4.2`` | | ``GCCcore/11.3.0`` +``1.4.2`` | | ``GCCcore/12.2.0`` +``1.4.2`` | | ``GCCcore/12.3.0`` +``1.4.2`` | | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GLFW.md b/docs/version-specific/supported-software/g/GLFW.md new file mode 100644 index 000000000..1ee9d6417 --- /dev/null +++ b/docs/version-specific/supported-software/g/GLFW.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# GLFW + +GLFW is an Open Source, multi-platform library for OpenGL, OpenGL ES and Vulkan development on the desktop + +*homepage*: + +version | toolchain +--------|---------- +``3.2.1`` | ``intel/2018a`` +``3.3.2`` | ``GCCcore/9.3.0`` +``3.3.3`` | ``GCCcore/10.2.0`` +``3.3.4`` | ``GCCcore/10.3.0`` +``3.3.4`` | ``GCCcore/11.2.0`` +``3.3.8`` | ``GCCcore/11.3.0`` +``3.4`` | ``GCCcore/12.2.0`` +``3.4`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GLI.md b/docs/version-specific/supported-software/g/GLI.md new file mode 100644 index 000000000..8de418c1a --- /dev/null +++ b/docs/version-specific/supported-software/g/GLI.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# GLI + +Graphics Language Interpreter + +*homepage*: + +version | toolchain +--------|---------- +``4.5.31`` | ``GCCcore/10.2.0`` +``4.5.31`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GLIMMER.md b/docs/version-specific/supported-software/g/GLIMMER.md new file mode 100644 index 000000000..7eb01c696 --- /dev/null +++ b/docs/version-specific/supported-software/g/GLIMMER.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# GLIMMER + +Glimmer is a system for finding genes in microbial DNA, especially the genomes of bacteria, archaea, and viruses. + +*homepage*: + +version | toolchain +--------|---------- +``3.02b`` | ``foss/2016b`` +``3.02b`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GLIMPSE.md b/docs/version-specific/supported-software/g/GLIMPSE.md new file mode 100644 index 000000000..90ece5205 --- /dev/null +++ b/docs/version-specific/supported-software/g/GLIMPSE.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# GLIMPSE + +GLIMPSE2 is a set of tools for phasing and imputation for low-coverage sequencing datasets + +*homepage*: + +version | toolchain +--------|---------- +``2.0.0`` | ``GCC/10.3.0`` +``2.0.0`` | ``GCC/11.3.0`` +``2.0.0`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GLM-AED.md b/docs/version-specific/supported-software/g/GLM-AED.md new file mode 100644 index 000000000..52bd04a65 --- /dev/null +++ b/docs/version-specific/supported-software/g/GLM-AED.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GLM-AED + +The General Lake Model (GLM) is a water balance and one-dimensional vertical stratification hydrodynamic model, which is dynamically coupled with the AED water quality modelling library. GLM-AED is suitable for simulating conditions in a wide range of natural and engineered lakes, including shallow (well-mixed) and deep (stratified) systems. The model has been successfully applied to systems from the scale of individual ponds and wetlands, to actively operated reservoirs, upto the scale of the Great Lakes. + +*homepage*: + +version | toolchain +--------|---------- +``3.3.0a5`` | ``gompi/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GLM.md b/docs/version-specific/supported-software/g/GLM.md new file mode 100644 index 000000000..3e1ca7c43 --- /dev/null +++ b/docs/version-specific/supported-software/g/GLM.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# GLM + +OpenGL Mathematics (GLM) is a header only C++ mathematics library for graphics software based on the OpenGL Shading Language (GLSL) specifications. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.7.6`` | ``intel/2016a`` +``0.9.8.3`` | ``GCCcore/5.4.0`` +``0.9.8.3`` | ``GCCcore/7.3.0`` +``0.9.9.0`` | ``GCCcore/6.4.0`` +``0.9.9.8`` | ``GCCcore/10.2.0`` +``0.9.9.8`` | ``GCCcore/10.3.0`` +``0.9.9.8`` | ``GCCcore/11.2.0`` +``0.9.9.8`` | ``GCCcore/11.3.0`` +``0.9.9.8`` | ``GCCcore/12.2.0`` +``0.9.9.8`` | ``GCCcore/12.3.0`` +``0.9.9.8`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GLPK.md b/docs/version-specific/supported-software/g/GLPK.md new file mode 100644 index 000000000..3c8346b6c --- /dev/null +++ b/docs/version-specific/supported-software/g/GLPK.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# GLPK + +The GLPK (GNU Linear Programming Kit) package is intended for solving large-scale linear programming (LP), mixed integer programming (MIP), and other related problems. It is a set of routines written in ANSI C and organized in the form of a callable library. + +*homepage*: + +version | toolchain +--------|---------- +``4.58`` | ``foss/2016a`` +``4.58`` | ``intel/2016a`` +``4.60`` | ``GCCcore/5.4.0`` +``4.60`` | ``intel/2016b`` +``4.61`` | ``intel/2017a`` +``4.65`` | ``GCCcore/10.2.0`` +``4.65`` | ``GCCcore/6.4.0`` +``4.65`` | ``GCCcore/7.3.0`` +``4.65`` | ``GCCcore/8.2.0`` +``4.65`` | ``GCCcore/8.3.0`` +``4.65`` | ``GCCcore/9.3.0`` +``5.0`` | ``GCCcore/10.3.0`` +``5.0`` | ``GCCcore/11.2.0`` +``5.0`` | ``GCCcore/11.3.0`` +``5.0`` | ``GCCcore/12.2.0`` +``5.0`` | ``GCCcore/12.3.0`` +``5.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GLib.md b/docs/version-specific/supported-software/g/GLib.md new file mode 100644 index 000000000..06361d03a --- /dev/null +++ b/docs/version-specific/supported-software/g/GLib.md @@ -0,0 +1,42 @@ +--- +search: + boost: 0.5 +--- +# GLib + +GLib is one of the base libraries of the GTK+ project + +*homepage*: + +version | toolchain +--------|---------- +``2.42.1`` | ``GCC/4.9.2`` +``2.44.0`` | ``GCC/4.9.2`` +``2.47.5`` | ``foss/2016a`` +``2.47.5`` | ``gimkl/2.11.5`` +``2.47.5`` | ``intel/2016a`` +``2.48.0`` | ``foss/2016a`` +``2.48.0`` | ``intel/2016a`` +``2.49.5`` | ``foss/2016b`` +``2.49.5`` | ``intel/2016b`` +``2.52.0`` | ``foss/2017a`` +``2.52.0`` | ``intel/2017a`` +``2.53.5`` | ``GCCcore/6.3.0`` +``2.53.5`` | ``GCCcore/6.4.0`` +``2.54.2`` | ``GCCcore/6.4.0`` +``2.54.3`` | ``GCCcore/6.4.0`` +``2.54.3`` | ``GCCcore/7.3.0`` +``2.60.1`` | ``GCCcore/8.2.0`` +``2.62.0`` | ``GCCcore/8.3.0`` +``2.64.1`` | ``GCCcore/9.3.0`` +``2.66.1`` | ``GCCcore/10.2.0`` +``2.68.2`` | ``GCCcore/10.3.0`` +``2.69.1`` | ``GCCcore/11.2.0`` +``2.72.1`` | ``GCCcore/11.3.0`` +``2.75.0`` | ``GCCcore/12.2.0`` +``2.77.1`` | ``GCCcore/12.3.0`` +``2.78.1`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GLibmm.md b/docs/version-specific/supported-software/g/GLibmm.md new file mode 100644 index 000000000..0d2ee25f9 --- /dev/null +++ b/docs/version-specific/supported-software/g/GLibmm.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# GLibmm + +C++ bindings for Glib + +*homepage*: + +version | toolchain +--------|---------- +``2.49.7`` | ``GCCcore/7.3.0`` +``2.49.7`` | ``GCCcore/8.2.0`` +``2.49.7`` | ``GCCcore/8.3.0`` +``2.66.4`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GMAP-GSNAP.md b/docs/version-specific/supported-software/g/GMAP-GSNAP.md new file mode 100644 index 000000000..bd5e3650c --- /dev/null +++ b/docs/version-specific/supported-software/g/GMAP-GSNAP.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# GMAP-GSNAP + +GMAP: A Genomic Mapping and Alignment Program for mRNA and EST Sequences GSNAP: Genomic Short-read Nucleotide Alignment Program + +*homepage*: + +version | toolchain +--------|---------- +``2016-05-01`` | ``foss/2016a`` +``2016-11-07`` | ``foss/2016b`` +``2018-05-11`` | ``intel/2018a`` +``2018-07-04`` | ``intel/2018a`` +``2019-03-15`` | ``foss/2018b`` +``2019-09-12`` | ``GCC/8.3.0`` +``2020-12-17`` | ``GCC/9.3.0`` +``2021-12-17`` | ``GCC/11.2.0`` +``2023-02-17`` | ``GCC/11.3.0`` +``2023-04-20`` | ``GCC/10.3.0`` +``2023-04-20`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GMP-ECM.md b/docs/version-specific/supported-software/g/GMP-ECM.md new file mode 100644 index 000000000..80447bf31 --- /dev/null +++ b/docs/version-specific/supported-software/g/GMP-ECM.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# GMP-ECM + +Yet another implementation of the Elliptic Curve Method. + +*homepage*: + +version | toolchain +--------|---------- +``7.0.5`` | ``GCCcore/11.3.0`` +``7.0.5`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GMP.md b/docs/version-specific/supported-software/g/GMP.md new file mode 100644 index 000000000..b02359126 --- /dev/null +++ b/docs/version-specific/supported-software/g/GMP.md @@ -0,0 +1,51 @@ +--- +search: + boost: 0.5 +--- +# GMP + +GMP is a free library for arbitrary precision arithmetic, operating on signed integers, rational numbers, and floating point numbers. + +*homepage*: + +version | toolchain +--------|---------- +``4.3.2`` | ``system`` +``5.1.3`` | ``GCC/4.8.2`` +``6.0.0`` | ``GCC/4.9.2`` +``6.0.0a`` | ``GCC/4.8.4`` +``6.0.0a`` | ``GCC/4.9.2`` +``6.0.0a`` | ``GNU/4.9.3-2.25`` +``6.1.0`` | ``GCC/4.9.3-2.25`` +``6.1.0`` | ``foss/2016a`` +``6.1.0`` | ``gimkl/2.11.5`` +``6.1.0`` | ``intel/2016.02-GCC-4.9`` +``6.1.0`` | ``intel/2016a`` +``6.1.0`` | ``iomkl/2016.07`` +``6.1.0`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``6.1.1`` | ``GCC/5.4.0-2.26`` +``6.1.1`` | ``GCCcore/5.4.0`` +``6.1.1`` | ``GCCcore/6.3.0`` +``6.1.1`` | ``foss/2016.04`` +``6.1.1`` | ``foss/2016a`` +``6.1.1`` | ``foss/2016b`` +``6.1.1`` | ``intel/2016b`` +``6.1.2`` | ``GCCcore/6.3.0`` +``6.1.2`` | ``GCCcore/6.4.0`` +``6.1.2`` | ``GCCcore/7.3.0`` +``6.1.2`` | ``GCCcore/8.2.0`` +``6.1.2`` | ``GCCcore/8.3.0`` +``6.1.2`` | ``foss/2016b`` +``6.2.0`` | ``GCCcore/10.2.0`` +``6.2.0`` | ``GCCcore/9.3.0`` +``6.2.1`` | ``GCCcore/10.3.0`` +``6.2.1`` | ``GCCcore/11.2.0`` +``6.2.1`` | ``GCCcore/11.3.0`` +``6.2.1`` | ``GCCcore/12.2.0`` +``6.2.1`` | ``GCCcore/12.3.0`` +``6.3.0`` | ``GCCcore/13.2.0`` +``6.3.0`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GMT.md b/docs/version-specific/supported-software/g/GMT.md new file mode 100644 index 000000000..61c25ee0b --- /dev/null +++ b/docs/version-specific/supported-software/g/GMT.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# GMT + +GMT is an open source collection of about 80 command-line tools for manipulating geographic and Cartesian data sets (including filtering, trend fitting, gridding, projecting, etc.) and producing PostScript illustrations ranging from simple x-y plots via contour maps to artificially illuminated surfaces and 3D perspective views; the GMT supplements add another 40 more specialized and discipline-specific tools. + +*homepage*: + +version | toolchain +--------|---------- +``4.5.17`` | ``foss/2018a`` +``5.4.1`` | ``intel/2017a`` +``5.4.3`` | ``foss/2018a`` +``5.4.3`` | ``intel/2017b`` +``5.4.5`` | ``foss/2019a`` +``6.2.0`` | ``foss/2019b`` +``6.2.0`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GNU.md b/docs/version-specific/supported-software/g/GNU.md new file mode 100644 index 000000000..46df0eb90 --- /dev/null +++ b/docs/version-specific/supported-software/g/GNU.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# GNU + +Compiler-only toolchain with GCC and binutils. + +*homepage*: + +version | toolchain +--------|---------- +``4.9.2-2.25`` | ``system`` +``4.9.3-2.25`` | ``system`` +``5.1.0-2.25`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GOATOOLS.md b/docs/version-specific/supported-software/g/GOATOOLS.md new file mode 100644 index 000000000..49539f594 --- /dev/null +++ b/docs/version-specific/supported-software/g/GOATOOLS.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# GOATOOLS + +A Python library for Gene Ontology analyses + +*homepage*: + +version | toolchain +--------|---------- +``1.1.6`` | ``foss/2020b`` +``1.3.1`` | ``foss/2021b`` +``1.3.1`` | ``foss/2022a`` +``1.4.5`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GOBNILP.md b/docs/version-specific/supported-software/g/GOBNILP.md new file mode 100644 index 000000000..0757e81e7 --- /dev/null +++ b/docs/version-specific/supported-software/g/GOBNILP.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GOBNILP + +GOBNILP (Globally Optimal Bayesian Network learning using Integer Linear Programming) is a C program which learns Bayesian networks from complete discrete data or from local scores. + +*homepage*: + +version | toolchain +--------|---------- +``1.6.3`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GObject-Introspection.md b/docs/version-specific/supported-software/g/GObject-Introspection.md new file mode 100644 index 000000000..6a35274ff --- /dev/null +++ b/docs/version-specific/supported-software/g/GObject-Introspection.md @@ -0,0 +1,43 @@ +--- +search: + boost: 0.5 +--- +# GObject-Introspection + +GObject introspection is a middleware layer between C libraries (using GObject) and language bindings. The C library can be scanned at compile time and generate a metadata file, in addition to the actual native C library. Then at runtime, language bindings can read this metadata and automatically provide bindings to call into the C library. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.47.1`` | | ``foss/2016a`` +``1.47.1`` | | ``intel/2016a`` +``1.48.0`` | | ``foss/2016a`` +``1.48.0`` | | ``intel/2016a`` +``1.49.1`` | | ``foss/2016b`` +``1.49.1`` | | ``intel/2016b`` +``1.52.0`` | | ``intel/2017a`` +``1.53.5`` | ``-Python-2.7.14`` | ``foss/2017b`` +``1.53.5`` | ``-Python-2.7.13`` | ``intel/2017a`` +``1.53.5`` | ``-Python-3.6.1`` | ``intel/2017a`` +``1.53.5`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.54.1`` | ``-Python-2.7.14`` | ``foss/2018a`` +``1.54.1`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.54.1`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``1.54.1`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``1.54.1`` | ``-Python-2.7.14`` | ``intel/2018a`` +``1.58.3`` | ``-Python-2.7.16`` | ``GCCcore/8.3.0`` +``1.60.1`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` +``1.63.1`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``1.64.0`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``1.66.1`` | | ``GCCcore/10.2.0`` +``1.68.0`` | | ``GCCcore/10.3.0`` +``1.68.0`` | | ``GCCcore/11.2.0`` +``1.72.0`` | | ``GCCcore/11.3.0`` +``1.74.0`` | | ``GCCcore/12.2.0`` +``1.76.1`` | | ``GCCcore/12.3.0`` +``1.78.1`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GP2C.md b/docs/version-specific/supported-software/g/GP2C.md new file mode 100644 index 000000000..fc9556809 --- /dev/null +++ b/docs/version-specific/supported-software/g/GP2C.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GP2C + +The gp2c compiler is a package for translating GP routines into the C programming language, so that they can be compiled and used with the PARI system or the GP calculator. + +*homepage*: + +version | toolchain +--------|---------- +``0.0.9pl5`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GPAW-setups.md b/docs/version-specific/supported-software/g/GPAW-setups.md new file mode 100644 index 000000000..f258811c4 --- /dev/null +++ b/docs/version-specific/supported-software/g/GPAW-setups.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# GPAW-setups + +PAW setup for the GPAW Density Functional Theory package. Users can install setups manually using 'gpaw install-data' or use setups from this package. The versions of GPAW and GPAW-setups can be intermixed. + +*homepage*: + +version | toolchain +--------|---------- +``0.8.7929`` | ``system`` +``0.9.11271`` | ``system`` +``0.9.20000`` | ``system`` +``0.9.9672`` | ``system`` +``24.1.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GPAW.md b/docs/version-specific/supported-software/g/GPAW.md new file mode 100644 index 000000000..e8464f1e0 --- /dev/null +++ b/docs/version-specific/supported-software/g/GPAW.md @@ -0,0 +1,44 @@ +--- +search: + boost: 0.5 +--- +# GPAW + +GPAW is a density-functional theory (DFT) Python code based on the projector-augmented wave (PAW) method and the atomic simulation environment (ASE). It uses real-space uniform grids and multigrid methods or atom-centered basis-functions. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.4.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``19.8.1`` | ``-ASE-3.18.0-Python-3.6.6`` | ``foss/2018b`` +``19.8.1`` | ``-Python-3.7.2`` | ``foss/2019a`` +``19.8.1`` | ``-ASE-3.18.0-Python-3.6.6`` | ``intel/2018b`` +``19.8.1`` | ``-Python-3.7.2`` | ``intel/2019a`` +``20.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``20.1.0`` | ``-Python-3.7.4`` | ``intel/2019b`` +``20.10.0`` | ``-ASE-3.20.1-Python-3.7.4`` | ``foss/2019b`` +``20.10.0`` | | ``foss/2020b`` +``20.10.0`` | ``-ASE-3.20.1-Python-3.7.4`` | ``intel/2019b`` +``20.10.0`` | | ``intel/2020b`` +``21.1.0`` | ``-ASE-3.21.1`` | ``foss/2020b`` +``21.1.0`` | ``-ASE-3.21.1`` | ``intel/2020b`` +``21.6.0`` | ``-ASE-3.22.0`` | ``foss/2020b`` +``21.6.0`` | | ``foss/2021a`` +``21.6.0`` | ``-ASE-3.22.0`` | ``intel/2020b`` +``22.8.0`` | | ``foss/2021b`` +``22.8.0`` | | ``foss/2022a`` +``22.8.0`` | | ``intel/2021b`` +``22.8.0`` | | ``intel/2022a`` +``23.9.1`` | | ``foss/2022a`` +``23.9.1`` | | ``foss/2023a`` +``23.9.1`` | | ``intel/2022a`` +``24.1.0`` | | ``foss/2022a`` +``24.1.0`` | | ``foss/2023a`` +``24.1.0`` | | ``intel/2022a`` +``24.1.0`` | | ``intel/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GPy.md b/docs/version-specific/supported-software/g/GPy.md new file mode 100644 index 000000000..80fdf9b75 --- /dev/null +++ b/docs/version-specific/supported-software/g/GPy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GPy + +GPy is a Gaussian Process (GP) framework written in Python + +*homepage*: + +version | toolchain +--------|---------- +``1.10.0`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GPyOpt.md b/docs/version-specific/supported-software/g/GPyOpt.md new file mode 100644 index 000000000..2d4c9cc9c --- /dev/null +++ b/docs/version-specific/supported-software/g/GPyOpt.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GPyOpt + +GPyOpt is a Python open-source library for Bayesian Optimization + +*homepage*: + +version | toolchain +--------|---------- +``1.2.6`` | ``intel/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GPyTorch.md b/docs/version-specific/supported-software/g/GPyTorch.md new file mode 100644 index 000000000..8adb31f0c --- /dev/null +++ b/docs/version-specific/supported-software/g/GPyTorch.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# GPyTorch + +GPyTorch is a Gaussian process library implemented using PyTorch. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.10`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``1.3.0`` | | ``foss/2020b`` +``1.9.1`` | ``-CUDA-11.3.1`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GRASP-suite.md b/docs/version-specific/supported-software/g/GRASP-suite.md new file mode 100644 index 000000000..67cba6d76 --- /dev/null +++ b/docs/version-specific/supported-software/g/GRASP-suite.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GRASP-suite + +GRASP-suite is a collection of tools and tutorials to perform and analyse ancestral sequence reconstruction. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2023-05-09`` | ``-Java-17`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GRASP.md b/docs/version-specific/supported-software/g/GRASP.md new file mode 100644 index 000000000..d51db9e9b --- /dev/null +++ b/docs/version-specific/supported-software/g/GRASP.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GRASP + +The General Relativistic Atomic Structure Package (GRASP) is a set of Fortran 90 programs for performing fully-relativistic electron structure calculations of atoms. + +*homepage*: + +version | toolchain +--------|---------- +``2018`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GRASS.md b/docs/version-specific/supported-software/g/GRASS.md new file mode 100644 index 000000000..7db9a18bb --- /dev/null +++ b/docs/version-specific/supported-software/g/GRASS.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# GRASS + +The Geographic Resources Analysis Support System - used for geospatial data management and analysis, image processing, graphics and maps production, spatial modeling, and visualization + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``7.6.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``7.8.3`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``8.2.0`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GRIDSS.md b/docs/version-specific/supported-software/g/GRIDSS.md new file mode 100644 index 000000000..3c33240bd --- /dev/null +++ b/docs/version-specific/supported-software/g/GRIDSS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GRIDSS + +GRIDSS is a module software suite containing tools useful for the detection of genomic rearrangements. GRIDSS includes a genome-wide break-end assembler, as well as a structural variation caller for Illumina sequencing data. GRIDSS calls variants based on alignment-guided positional de Bruijn graph genome-wide break-end assembly, split read, and read pair evidence. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.13.2`` | ``-Java-11`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GRIT.md b/docs/version-specific/supported-software/g/GRIT.md new file mode 100644 index 000000000..bfcac6444 --- /dev/null +++ b/docs/version-specific/supported-software/g/GRIT.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GRIT + +GRIT - A tool for the integrative analysis of RNA-seq type assays + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.5`` | ``-Python-2.7.12`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GRNBoost.md b/docs/version-specific/supported-software/g/GRNBoost.md new file mode 100644 index 000000000..7fff914df --- /dev/null +++ b/docs/version-specific/supported-software/g/GRNBoost.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GRNBoost + +XGBoost is an optimized distributed gradient boosting library designed to be highly efficient, flexible and portable. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20171009`` | ``-Java-1.8.0_152`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GROMACS.md b/docs/version-specific/supported-software/g/GROMACS.md new file mode 100644 index 000000000..77ab6c7c9 --- /dev/null +++ b/docs/version-specific/supported-software/g/GROMACS.md @@ -0,0 +1,84 @@ +--- +search: + boost: 0.5 +--- +# GROMACS + +GROMACS is a versatile package to perform molecular dynamics, i.e. simulate the Newtonian equations of motion for systems with hundreds to millions of particles. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2016`` | ``-hybrid`` | ``foss/2016b`` +``2016`` | ``-mt`` | ``foss/2016b`` +``2016.1`` | ``-PLUMED`` | ``foss/2017a`` +``2016.2`` | | ``foss/2017a`` +``2016.3`` | ``-GPU-enabled`` | ``foss/2016b`` +``2016.3`` | | ``foss/2017a`` +``2016.3`` | | ``intel/2017a`` +``2016.4`` | | ``foss/2017b`` +``2016.4`` | | ``fosscuda/2017b`` +``2016.4`` | | ``giolf/2017b`` +``2016.4`` | | ``intel/2017a`` +``2016.4`` | | ``intel/2017b`` +``2016.4`` | | ``intelcuda/2017b`` +``2016.5`` | | ``intel/2018a`` +``2018`` | | ``foss/2018a`` +``2018.1`` | ``-PLUMED`` | ``foss/2018b`` +``2018.2`` | | ``foss/2017b`` +``2018.2`` | | ``foss/2018b`` +``2018.2`` | | ``fosscuda/2017b`` +``2018.2`` | | ``fosscuda/2018b`` +``2018.2`` | | ``intel/2017b`` +``2018.2`` | | ``intelcuda/2017b`` +``2018.3`` | | ``foss/2018b`` +``2018.3`` | | ``fosscuda/2018b`` +``2018.4`` | ``-PLUMED-2.5.0`` | ``foss/2018b`` +``2018.4`` | ``-PLUMED-2.5.0`` | ``fosscuda/2018b`` +``2019`` | | ``foss/2018b`` +``2019`` | | ``fosscuda/2018b`` +``2019.2`` | | ``fosscuda/2019a`` +``2019.3`` | | ``foss/2019a`` +``2019.3`` | | ``foss/2019b`` +``2019.3`` | | ``fosscuda/2019a`` +``2019.3`` | | ``fosscuda/2019b`` +``2019.4`` | ``-PLUMED-2.5.4`` | ``foss/2019b`` +``2019.4`` | | ``foss/2019b`` +``2019.4`` | ``-PLUMED-2.5.4`` | ``fosscuda/2019b`` +``2019.4`` | | ``fosscuda/2019b`` +``2019.6`` | | ``fosscuda/2019b`` +``2020`` | | ``foss/2019b`` +``2020`` | | ``fosscuda/2019b`` +``2020.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2020.3`` | | ``fosscuda/2019b`` +``2020.4`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2020.5`` | ``-Python-3.8.2`` | ``fosscuda/2020a`` +``2021`` | | ``foss/2020b`` +``2021`` | | ``fosscuda/2020b`` +``2021.2`` | | ``fosscuda/2020b`` +``2021.3`` | ``-CUDA-11.3.1-PLUMED-2.7.2`` | ``foss/2021a`` +``2021.3`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``2021.3`` | ``-PLUMED-2.7.2`` | ``foss/2021a`` +``2021.3`` | | ``foss/2021a`` +``2021.5`` | ``-CUDA-11.4.1-PLUMED-2.8.0`` | ``foss/2021b`` +``2021.5`` | ``-CUDA-11.4.1`` | ``foss/2021b`` +``2021.5`` | ``-PLUMED-2.8.0`` | ``foss/2021b`` +``2021.5`` | | ``foss/2021b`` +``2023.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``2023.1`` | | ``foss/2022a`` +``2023.3`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``2023.3`` | | ``foss/2022a`` +``2023.3`` | ``-CUDA-12.1.1-PLUMED-2.9.0`` | ``foss/2023a`` +``2023.3`` | | ``foss/2023a`` +``2024.1`` | | ``foss/2023b`` +``5.1.2`` | ``-hybrid`` | ``foss/2016a`` +``5.1.2`` | ``-mt`` | ``foss/2016a`` +``5.1.2`` | ``-hybrid-dp`` | ``intel/2016a`` +``5.1.2`` | ``-hybrid`` | ``intel/2016a`` +``5.1.4`` | ``-hybrid`` | ``foss/2016b`` +``5.1.4`` | ``-mt`` | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GSD.md b/docs/version-specific/supported-software/g/GSD.md new file mode 100644 index 000000000..d5e2824f0 --- /dev/null +++ b/docs/version-specific/supported-software/g/GSD.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GSD + +The GSD file format is the native file format for HOOMD-blue. GSD files store trajectories of the HOOMD-blue system state in a binary file with efficient random access to frames. GSD allows all particle and topology properties to vary from one frame to the next. Use the GSD Python API to specify the initial condition for a HOOMD-blue simulation or analyze trajectory output with a script. Read a GSD trajectory with a visualization tool to explore the behavior of the simulation. + +*homepage*: + +version | toolchain +--------|---------- +``3.2.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GSEA.md b/docs/version-specific/supported-software/g/GSEA.md new file mode 100644 index 000000000..a887166ad --- /dev/null +++ b/docs/version-specific/supported-software/g/GSEA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GSEA + +Gene Set Enrichment Analysis (GSEA) is a computational method that determines whether an a priori defined set of genes shows statistically significant, concordant differences between two biological states (e.g. phenotypes). + +*homepage*: + +version | toolchain +--------|---------- +``4.0.3`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GSL.md b/docs/version-specific/supported-software/g/GSL.md new file mode 100644 index 000000000..647743f79 --- /dev/null +++ b/docs/version-specific/supported-software/g/GSL.md @@ -0,0 +1,50 @@ +--- +search: + boost: 0.5 +--- +# GSL + +The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers. The library provides a wide range of mathematical routines such as random number generators, special functions and least-squares fitting. + +*homepage*: + +version | toolchain +--------|---------- +``1.16`` | ``foss/2016a`` +``1.16`` | ``intel/2016a`` +``2.1`` | ``GCC/5.4.0-2.26`` +``2.1`` | ``foss/2016a`` +``2.1`` | ``foss/2016b`` +``2.1`` | ``iccifort/2016.3.210-GCC-5.4.0-2.26`` +``2.1`` | ``intel/2016a`` +``2.1`` | ``intel/2016b`` +``2.2.1`` | ``intel/2016a`` +``2.2.1`` | ``intel/2016b`` +``2.3`` | ``foss/2016b`` +``2.3`` | ``foss/2017a`` +``2.3`` | ``intel/2016b`` +``2.3`` | ``intel/2017a`` +``2.4`` | ``GCCcore/6.4.0`` +``2.5`` | ``GCC/7.3.0-2.30`` +``2.5`` | ``GCC/8.2.0-2.31.1`` +``2.5`` | ``iccifort/2018.3.222-GCC-7.3.0-2.30`` +``2.5`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``2.6`` | ``GCC/10.2.0`` +``2.6`` | ``GCC/8.3.0`` +``2.6`` | ``GCC/9.3.0`` +``2.6`` | ``iccifort/2019.5.281`` +``2.6`` | ``iccifort/2020.1.217`` +``2.6`` | ``iccifort/2020.4.304`` +``2.7`` | ``GCC/10.3.0`` +``2.7`` | ``GCC/11.2.0`` +``2.7`` | ``GCC/11.3.0`` +``2.7`` | ``GCC/12.2.0`` +``2.7`` | ``GCC/12.3.0`` +``2.7`` | ``GCC/13.2.0`` +``2.7`` | ``intel-compilers/2021.2.0`` +``2.7`` | ``intel-compilers/2021.4.0`` +``2.7`` | ``intel-compilers/2022.1.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GST-plugins-bad.md b/docs/version-specific/supported-software/g/GST-plugins-bad.md new file mode 100644 index 000000000..04e60fba3 --- /dev/null +++ b/docs/version-specific/supported-software/g/GST-plugins-bad.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# GST-plugins-bad + +GStreamer is a library for constructing graphs of media-handling components. The applications it supports range from simple Ogg/Vorbis playback, audio/video streaming to complex audio (mixing) and video (non-linear editing) processing. + +*homepage*: + +version | toolchain +--------|---------- +``1.20.2`` | ``GCC/11.3.0`` +``1.22.5`` | ``GCC/12.2.0`` +``1.22.5`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GST-plugins-base.md b/docs/version-specific/supported-software/g/GST-plugins-base.md new file mode 100644 index 000000000..3763b7988 --- /dev/null +++ b/docs/version-specific/supported-software/g/GST-plugins-base.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# GST-plugins-base + +GStreamer is a library for constructing graphs of media-handling components. The applications it supports range from simple Ogg/Vorbis playback, audio/video streaming to complex audio (mixing) and video (non-linear editing) processing. + +*homepage*: + +version | toolchain +--------|---------- +``0.10.36`` | ``foss/2016a`` +``0.10.36`` | ``foss/2017b`` +``0.10.36`` | ``foss/2018b`` +``0.10.36`` | ``intel/2016a`` +``0.10.36`` | ``intel/2016b`` +``0.10.36`` | ``intel/2017a`` +``0.10.36`` | ``intel/2017b`` +``1.16.0`` | ``GCC/8.2.0-2.31.1`` +``1.16.2`` | ``GCC/8.3.0`` +``1.18.4`` | ``GCC/10.2.0`` +``1.18.4`` | ``GCC/10.3.0`` +``1.18.5`` | ``GCC/11.2.0`` +``1.20.2`` | ``GCC/11.3.0`` +``1.22.1`` | ``GCC/12.2.0`` +``1.22.5`` | ``GCC/12.3.0`` +``1.6.4`` | ``foss/2016a`` +``1.8.3`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GStreamer.md b/docs/version-specific/supported-software/g/GStreamer.md new file mode 100644 index 000000000..b1abb8af1 --- /dev/null +++ b/docs/version-specific/supported-software/g/GStreamer.md @@ -0,0 +1,34 @@ +--- +search: + boost: 0.5 +--- +# GStreamer + +GStreamer is a library for constructing graphs of media-handling components. The applications it supports range from simple Ogg/Vorbis playback, audio/video streaming to complex audio (mixing) and video (non-linear editing) processing. + +*homepage*: + +version | toolchain +--------|---------- +``0.10.36`` | ``foss/2016a`` +``0.10.36`` | ``foss/2017b`` +``0.10.36`` | ``foss/2018b`` +``0.10.36`` | ``intel/2016a`` +``0.10.36`` | ``intel/2016b`` +``0.10.36`` | ``intel/2017a`` +``0.10.36`` | ``intel/2017b`` +``1.15.1`` | ``fosscuda/2018b`` +``1.16.0`` | ``GCC/8.2.0-2.31.1`` +``1.16.2`` | ``GCC/8.3.0`` +``1.18.4`` | ``GCC/10.2.0`` +``1.18.4`` | ``GCC/10.3.0`` +``1.18.5`` | ``GCC/11.2.0`` +``1.20.2`` | ``GCC/11.3.0`` +``1.22.1`` | ``GCC/12.2.0`` +``1.22.5`` | ``GCC/12.3.0`` +``1.6.4`` | ``foss/2016a`` +``1.8.3`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GTDB-Tk.md b/docs/version-specific/supported-software/g/GTDB-Tk.md new file mode 100644 index 000000000..7e1a9694e --- /dev/null +++ b/docs/version-specific/supported-software/g/GTDB-Tk.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# GTDB-Tk + +A toolkit for assigning objective taxonomic classifications to bacterial and archaeal genomes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.2`` | ``-Python-2.7.15`` | ``intel/2018b`` +``0.3.2`` | ``-Python-2.7.15`` | ``foss/2019a`` +``0.3.2`` | ``-Python-2.7.15`` | ``intel/2019a`` +``1.0.2`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.3.0`` | ``-Python-3.8.2`` | ``intel/2020a`` +``1.5.0`` | | ``intel/2020b`` +``1.7.0`` | | ``foss/2020b`` +``1.7.0`` | | ``foss/2021a`` +``1.7.0`` | | ``intel/2020b`` +``2.0.0`` | | ``foss/2021a`` +``2.0.0`` | | ``intel/2021b`` +``2.1.1`` | | ``foss/2021b`` +``2.3.2`` | | ``foss/2022a`` +``2.3.2`` | | ``foss/2023a`` +``2.4.0`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GTK+.md b/docs/version-specific/supported-software/g/GTK+.md new file mode 100644 index 000000000..d89c8e846 --- /dev/null +++ b/docs/version-specific/supported-software/g/GTK+.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# GTK+ + +The GTK+ 2 package contains libraries used for creating graphical user interfaces for applications. + +*homepage*: + +version | toolchain +--------|---------- +``2.24.28`` | ``intel/2016a`` +``2.24.30`` | ``foss/2016a`` +``2.24.30`` | ``intel/2016a`` +``2.24.31`` | ``foss/2016b`` +``2.24.31`` | ``intel/2016b`` +``2.24.31`` | ``intel/2017a`` +``2.24.32`` | ``foss/2017b`` +``2.24.32`` | ``foss/2018a`` +``2.24.32`` | ``foss/2018b`` +``2.24.32`` | ``intel/2017b`` +``2.24.32`` | ``intel/2018a`` +``2.24.33`` | ``GCCcore/10.3.0`` +``3.22.30`` | ``fosscuda/2018b`` +``3.24.13`` | ``GCCcore/8.3.0`` +``3.24.17`` | ``GCCcore/9.3.0`` +``3.24.23`` | ``GCCcore/10.2.0`` +``3.24.8`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GTK2.md b/docs/version-specific/supported-software/g/GTK2.md new file mode 100644 index 000000000..219eac80e --- /dev/null +++ b/docs/version-specific/supported-software/g/GTK2.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# GTK2 + +The GTK+ 2 package contains libraries used for creating graphical user interfaces for applications. + +*homepage*: + +version | toolchain +--------|---------- +``2.24.33`` | ``GCCcore/10.3.0`` +``2.24.33`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GTK3.md b/docs/version-specific/supported-software/g/GTK3.md new file mode 100644 index 000000000..3367e1b07 --- /dev/null +++ b/docs/version-specific/supported-software/g/GTK3.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# GTK3 + +GTK+ is the primary library used to construct user interfaces in GNOME. It provides all the user interface controls, or widgets, used in a common graphical application. Its object-oriented API allows you to construct user interfaces without dealing with the low-level details of drawing and device interaction. + +*homepage*: + +version | toolchain +--------|---------- +``3.24.29`` | ``GCCcore/10.3.0`` +``3.24.31`` | ``GCCcore/11.2.0`` +``3.24.33`` | ``GCCcore/11.3.0`` +``3.24.35`` | ``GCCcore/12.2.0`` +``3.24.37`` | ``GCCcore/12.3.0`` +``3.24.39`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GTK4.md b/docs/version-specific/supported-software/g/GTK4.md new file mode 100644 index 000000000..f31a2b23f --- /dev/null +++ b/docs/version-specific/supported-software/g/GTK4.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# GTK4 + +GTK+ is the primary library used to construct user interfaces in GNOME. It provides all the user interface controls, or widgets, used in a common graphical application. Its object-oriented API allows you to construct user interfaces without dealing with the low-level details of drawing and device interaction. + +*homepage*: + +version | toolchain +--------|---------- +``4.11.3`` | ``GCC/12.2.0`` +``4.13.1`` | ``GCC/12.3.0`` +``4.7.0`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GTOOL.md b/docs/version-specific/supported-software/g/GTOOL.md new file mode 100644 index 000000000..bc735e0a8 --- /dev/null +++ b/docs/version-specific/supported-software/g/GTOOL.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GTOOL + +GTOOL is a program for transforming sets of genotype data for use with the programs SNPTEST and IMPUTE. + +*homepage*: + +version | toolchain +--------|---------- +``0.7.5`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GTS.md b/docs/version-specific/supported-software/g/GTS.md new file mode 100644 index 000000000..bb7b99bc0 --- /dev/null +++ b/docs/version-specific/supported-software/g/GTS.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# GTS + +GTS stands for the GNU Triangulated Surface Library. It is an Open Source Free Software Library intended to provide a set of useful functions to deal with 3D surfaces meshed with interconnected triangles. + +*homepage*: + +version | toolchain +--------|---------- +``0.7.6`` | ``GCCcore/10.2.0`` +``0.7.6`` | ``GCCcore/10.3.0`` +``0.7.6`` | ``GCCcore/11.2.0`` +``0.7.6`` | ``GCCcore/11.3.0`` +``0.7.6`` | ``GCCcore/12.2.0`` +``0.7.6`` | ``GCCcore/12.3.0`` +``0.7.6`` | ``GCCcore/8.3.0`` +``0.7.6`` | ``GCCcore/9.3.0`` +``0.7.6`` | ``foss/2016a`` +``0.7.6`` | ``foss/2016b`` +``0.7.6`` | ``foss/2018b`` +``0.7.6`` | ``foss/2019b`` +``0.7.6`` | ``foss/2020a`` +``0.7.6`` | ``intel/2016a`` +``0.7.6`` | ``intel/2016b`` +``0.7.6`` | ``intel/2018a`` +``20121130`` | ``foss/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GUIDANCE.md b/docs/version-specific/supported-software/g/GUIDANCE.md new file mode 100644 index 000000000..0d97626f5 --- /dev/null +++ b/docs/version-specific/supported-software/g/GUIDANCE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GUIDANCE + +GUIDANCE is a software package for aligning biological sequences (DNA or amino acids) using either MAFFT, PRANK, or CLUSTALW, and calculating confidence scores for each column, sequence and residue in the alignment. + +*homepage*: + +version | toolchain +--------|---------- +``2.02`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GULP.md b/docs/version-specific/supported-software/g/GULP.md new file mode 100644 index 000000000..9f9f04222 --- /dev/null +++ b/docs/version-specific/supported-software/g/GULP.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# GULP + +GULP is a program for performing a variety of types of simulation on materials using boundary conditions of 0-D (molecules and clusters), 1-D (polymers), 2-D (surfaces, slabs and grain boundaries), or 3-D (periodic solids)Band Unfolding code for Plane-wave based calculations + +*homepage*: + +version | toolchain +--------|---------- +``5.1`` | ``intel/2019a`` +``6.1`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GUSHR.md b/docs/version-specific/supported-software/g/GUSHR.md new file mode 100644 index 000000000..a2c9c42c6 --- /dev/null +++ b/docs/version-specific/supported-software/g/GUSHR.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GUSHR + +Assembly-free construction of UTRs from short read RNA-Seq data on the basis of coding sequence annotation. + +*homepage*: + +version | toolchain +--------|---------- +``2020-09-28`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Gaia.md b/docs/version-specific/supported-software/g/Gaia.md new file mode 100644 index 000000000..a9ad04e82 --- /dev/null +++ b/docs/version-specific/supported-software/g/Gaia.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Gaia + +Gaia is a C++ library with python bindings which implements similarity measures and classifications on the results of audio analysis, and generates classification models that Essentia can use to compute high-level description of music. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.4.5`` | ``-Python-2.7.15`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GapCloser.md b/docs/version-specific/supported-software/g/GapCloser.md new file mode 100644 index 000000000..f677fbd7b --- /dev/null +++ b/docs/version-specific/supported-software/g/GapCloser.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# GapCloser + +GapCloser is designed to close the gaps emerging during the scaffolding process by SOAPdenovo or other assembler, using the abundant pair relationships of short reads. + +*homepage*: + +version | toolchain +--------|---------- +``1.12-r6`` | ``foss/2018a`` +``1.12-r6`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GapFiller.md b/docs/version-specific/supported-software/g/GapFiller.md new file mode 100644 index 000000000..237afc049 --- /dev/null +++ b/docs/version-specific/supported-software/g/GapFiller.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# GapFiller + +GapFiller is a seed-and-extend local assembler to fill the gap within paired reads. It can be used for both DNA and RNA and it has been tested on Illumina data. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.1`` | ``intel/2017a`` +``2.1.2`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Gaussian.md b/docs/version-specific/supported-software/g/Gaussian.md new file mode 100644 index 000000000..9646655e3 --- /dev/null +++ b/docs/version-specific/supported-software/g/Gaussian.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Gaussian + +Gaussian provides state-of-the-art capabilities for electronic structure modeling. Gaussian 09 is licensed for a wide variety of computer systems. All versions of Gaussian 09 contain every scientific/modeling feature, and none imposes any artificial limitations on calculations other than your computing resources and patience. This is the official gaussian AVX build. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``09.e.01`` | ``-AVX`` | ``system`` +``16.A.03`` | ``-AVX2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Gblocks.md b/docs/version-specific/supported-software/g/Gblocks.md new file mode 100644 index 000000000..fe35107e5 --- /dev/null +++ b/docs/version-specific/supported-software/g/Gblocks.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Gblocks + +Selection of conserved blocks from multiple alignments for their use in phylogenetic analysis + +*homepage*: + +version | toolchain +--------|---------- +``0.91b`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Gctf.md b/docs/version-specific/supported-software/g/Gctf.md new file mode 100644 index 000000000..db567c964 --- /dev/null +++ b/docs/version-specific/supported-software/g/Gctf.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Gctf + +Gctf: real-time CTF determination and correction, Kai Zhang, 2016 + +*homepage*: + +version | toolchain +--------|---------- +``1.06`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Gdk-Pixbuf.md b/docs/version-specific/supported-software/g/Gdk-Pixbuf.md new file mode 100644 index 000000000..51c1f094d --- /dev/null +++ b/docs/version-specific/supported-software/g/Gdk-Pixbuf.md @@ -0,0 +1,40 @@ +--- +search: + boost: 0.5 +--- +# Gdk-Pixbuf + +The Gdk Pixbuf is a toolkit for image loading and pixel buffer manipulation. It is used by GTK+ 2 and GTK+ 3 to load and manipulate images. In the past it was distributed as part of GTK+ 2 but it was split off into a separate package in preparation for the change to GTK+ 3. + +*homepage*: + +version | toolchain +--------|---------- +``2.32.3`` | ``intel/2016a`` +``2.35.1`` | ``foss/2016a`` +``2.35.1`` | ``intel/2016a`` +``2.36.0`` | ``foss/2016b`` +``2.36.0`` | ``intel/2016b`` +``2.36.10`` | ``intel/2017a`` +``2.36.11`` | ``foss/2017b`` +``2.36.11`` | ``foss/2018a`` +``2.36.11`` | ``fosscuda/2018b`` +``2.36.11`` | ``intel/2017b`` +``2.36.11`` | ``intel/2018a`` +``2.36.12`` | ``foss/2018b`` +``2.36.12`` | ``fosscuda/2018b`` +``2.36.8`` | ``intel/2017a`` +``2.38.1`` | ``GCCcore/8.2.0`` +``2.38.2`` | ``GCCcore/8.3.0`` +``2.40.0`` | ``GCCcore/10.2.0`` +``2.40.0`` | ``GCCcore/9.3.0`` +``2.42.10`` | ``GCCcore/12.2.0`` +``2.42.10`` | ``GCCcore/12.3.0`` +``2.42.10`` | ``GCCcore/13.2.0`` +``2.42.6`` | ``GCCcore/10.3.0`` +``2.42.6`` | ``GCCcore/11.2.0`` +``2.42.8`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Gdspy.md b/docs/version-specific/supported-software/g/Gdspy.md new file mode 100644 index 000000000..95461dae7 --- /dev/null +++ b/docs/version-specific/supported-software/g/Gdspy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Gdspy + +Gdspy is a Python module for creation and manipulation of GDSII stream files. + +*homepage*: + +version | toolchain +--------|---------- +``1.6.13`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Geant4-data.md b/docs/version-specific/supported-software/g/Geant4-data.md new file mode 100644 index 000000000..d93869827 --- /dev/null +++ b/docs/version-specific/supported-software/g/Geant4-data.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Geant4-data + +Datasets for Geant4. + +*homepage*: + +version | toolchain +--------|---------- +``11.1`` | ``system`` +``20201103`` | ``system`` +``20210510`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Geant4.md b/docs/version-specific/supported-software/g/Geant4.md new file mode 100644 index 000000000..b324369c0 --- /dev/null +++ b/docs/version-specific/supported-software/g/Geant4.md @@ -0,0 +1,36 @@ +--- +search: + boost: 0.5 +--- +# Geant4 + +Geant4 is a toolkit for the simulation of the passage of particles through matter. Its areas of application include high energy, nuclear and accelerator physics, as well as studies in medical and space science. + +*homepage*: + +version | toolchain +--------|---------- +``10.01.p03`` | ``intel/2016a`` +``10.02.p01`` | ``intel/2016a`` +``10.03.p03`` | ``foss/2017b`` +``10.03.p03`` | ``intel/2017b`` +``10.04`` | ``intel/2017b`` +``10.5`` | ``foss/2017b`` +``10.5`` | ``foss/2018b`` +``10.5`` | ``intel/2017b`` +``10.5`` | ``intel/2018b`` +``10.6`` | ``foss/2019b`` +``10.6.2`` | ``foss/2020a`` +``10.7.1`` | ``GCC/10.2.0`` +``10.7.1`` | ``GCC/11.2.0`` +``11.0.0`` | ``GCC/11.2.0`` +``11.0.1`` | ``GCC/11.2.0`` +``11.0.2`` | ``GCC/11.2.0`` +``11.0.2`` | ``GCC/11.3.0`` +``11.1.2`` | ``GCC/11.3.0`` +``9.5.p02`` | ``intel/2016a`` +``9.6.p04`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GenMap.md b/docs/version-specific/supported-software/g/GenMap.md new file mode 100644 index 000000000..b546a4f9d --- /dev/null +++ b/docs/version-specific/supported-software/g/GenMap.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GenMap + +GenMap - Fast and Exact Computation of Genome Mappability + +*homepage*: + +version | toolchain +--------|---------- +``1.3.0`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GeneMark-ET.md b/docs/version-specific/supported-software/g/GeneMark-ET.md new file mode 100644 index 000000000..05254a2b2 --- /dev/null +++ b/docs/version-specific/supported-software/g/GeneMark-ET.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# GeneMark-ET + +Eukaryotic gene prediction suite with automatic training + +*homepage*: + +version | toolchain +--------|---------- +``4.38`` | ``GCCcore/8.2.0`` +``4.57`` | ``GCCcore/8.3.0`` +``4.65`` | ``GCCcore/10.2.0`` +``4.71`` | ``GCCcore/11.2.0`` +``4.71`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GenerativeModels.md b/docs/version-specific/supported-software/g/GenerativeModels.md new file mode 100644 index 000000000..d925d92bd --- /dev/null +++ b/docs/version-specific/supported-software/g/GenerativeModels.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GenerativeModels + + + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GenomeComb.md b/docs/version-specific/supported-software/g/GenomeComb.md new file mode 100644 index 000000000..698914d91 --- /dev/null +++ b/docs/version-specific/supported-software/g/GenomeComb.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GenomeComb + +Genomecomb is a package designed to analyze, combine, annotate and query genome as well as transcriptome sequencing data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.106.0`` | ``-x86_64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GenomeMapper.md b/docs/version-specific/supported-software/g/GenomeMapper.md new file mode 100644 index 000000000..980922a0e --- /dev/null +++ b/docs/version-specific/supported-software/g/GenomeMapper.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GenomeMapper + +GenomeMapper is a short read mapping tool designed for accurate read alignments. It quickly aligns millions of reads either with ungapped or gapped alignments. This version is used to align against a single reference. If you are unsure which one is the appropriate GenomeMapper, you might want to use this one. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.4`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GenomeTester4.md b/docs/version-specific/supported-software/g/GenomeTester4.md new file mode 100644 index 000000000..50a10594e --- /dev/null +++ b/docs/version-specific/supported-software/g/GenomeTester4.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GenomeTester4 + +A toolkit for performing set operations - union, intersection and complement - on k-mer lists. + +*homepage*: + +version | toolchain +--------|---------- +``4.0`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GenomeThreader.md b/docs/version-specific/supported-software/g/GenomeThreader.md new file mode 100644 index 000000000..d4d064de0 --- /dev/null +++ b/docs/version-specific/supported-software/g/GenomeThreader.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# GenomeThreader + +GenomeThreader is a software tool to compute gene structure predictions. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.7.1`` | ``-Linux_x86_64-64bit`` | ``system`` +``1.7.3`` | ``-Linux_x86_64-64bit`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GenomeTools.md b/docs/version-specific/supported-software/g/GenomeTools.md new file mode 100644 index 000000000..7408b7944 --- /dev/null +++ b/docs/version-specific/supported-software/g/GenomeTools.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# GenomeTools + +A comprehensive software library for efficient processing of structured genome annotations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5.10`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.5.10`` | | ``foss/2018b`` +``1.6.1`` | | ``GCC/10.2.0`` +``1.6.1`` | ``-Python-2.7.16`` | ``GCC/8.3.0`` +``1.6.1`` | | ``GCC/8.3.0`` +``1.6.1`` | | ``GCC/9.3.0`` +``1.6.2`` | | ``GCC/10.3.0`` +``1.6.2`` | | ``GCC/11.3.0`` +``1.6.2`` | | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GenomeWorks.md b/docs/version-specific/supported-software/g/GenomeWorks.md new file mode 100644 index 000000000..8d840240a --- /dev/null +++ b/docs/version-specific/supported-software/g/GenomeWorks.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GenomeWorks + +SDK for GPU accelerated genome assembly and analysis + +*homepage*: + +version | toolchain +--------|---------- +``2021.02.2`` | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Genome_Profiler.md b/docs/version-specific/supported-software/g/Genome_Profiler.md new file mode 100644 index 000000000..3948b62e6 --- /dev/null +++ b/docs/version-specific/supported-software/g/Genome_Profiler.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Genome_Profiler + +Genome Profiler (GeP) is a program to perform whole-genome multilocus sequence typing (wgMLST) analysis for bacterial isolates + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1`` | ``-Perl-5.24.0`` | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GenotypeHarmonizer.md b/docs/version-specific/supported-software/g/GenotypeHarmonizer.md new file mode 100644 index 000000000..ca5615ee5 --- /dev/null +++ b/docs/version-specific/supported-software/g/GenotypeHarmonizer.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GenotypeHarmonizer + +The Genotype Harmonizer is an easy to use command-line tool that allows harmonization of genotype data stored using different file formats with different and potentially unknown strands. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4.14`` | ``-Java-1.7.0_80`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Gerris.md b/docs/version-specific/supported-software/g/Gerris.md new file mode 100644 index 000000000..e1896c14c --- /dev/null +++ b/docs/version-specific/supported-software/g/Gerris.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Gerris + +Gerris is a Free Software program for the solution of the partial differential equations describing fluid flow + +*homepage*: + +version | toolchain +--------|---------- +``20131206`` | ``foss/2017b`` +``20131206`` | ``gompi/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GetOrganelle.md b/docs/version-specific/supported-software/g/GetOrganelle.md new file mode 100644 index 000000000..e8668b477 --- /dev/null +++ b/docs/version-specific/supported-software/g/GetOrganelle.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# GetOrganelle + +This toolkit assemblies organelle genome from genomic skimming data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.7.2`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.7.4-pre2`` | | ``foss/2020b`` +``1.7.5.3`` | | ``foss/2021b`` +``1.7.6.1`` | | ``foss/2021b`` +``1.7.7.0`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GffCompare.md b/docs/version-specific/supported-software/g/GffCompare.md new file mode 100644 index 000000000..95c2a630f --- /dev/null +++ b/docs/version-specific/supported-software/g/GffCompare.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# GffCompare + +GffCompare provides classification and reference annotation mapping and matching statistics for RNA-Seq assemblies (transfrags) or other generic GFF/GTF files. + +*homepage*: + +version | toolchain +--------|---------- +``0.10.1`` | ``foss/2016b`` +``0.10.6`` | ``GCCcore/7.3.0`` +``0.11.6`` | ``GCCcore/8.3.0`` +``0.11.6`` | ``GCCcore/9.3.0`` +``0.12.2`` | ``GCC/10.3.0`` +``0.12.6`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Ghostscript.md b/docs/version-specific/supported-software/g/Ghostscript.md new file mode 100644 index 000000000..a57cc094f --- /dev/null +++ b/docs/version-specific/supported-software/g/Ghostscript.md @@ -0,0 +1,38 @@ +--- +search: + boost: 0.5 +--- +# Ghostscript + +Ghostscript is a versatile processor for PostScript data with the ability to render PostScript to different targets. It used to be part of the cups printing stack, but is no longer used for that. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``10.0.0`` | | ``GCCcore/12.2.0`` +``10.01.2`` | | ``GCCcore/12.3.0`` +``10.02.1`` | | ``GCCcore/13.2.0`` +``9.19`` | | ``intel/2016a`` +``9.19`` | | ``intel/2016b`` +``9.20`` | | ``foss/2016b`` +``9.20`` | | ``intel/2016b`` +``9.21`` | | ``intel/2017a`` +``9.22`` | ``-cairo-1.14.12`` | ``GCCcore/6.4.0`` +``9.22`` | | ``GCCcore/6.4.0`` +``9.22`` | | ``foss/2017b`` +``9.22`` | | ``intel/2017b`` +``9.23`` | ``-cairo-1.14.12`` | ``GCCcore/6.4.0`` +``9.23`` | | ``GCCcore/6.4.0`` +``9.23`` | | ``GCCcore/7.3.0`` +``9.27`` | | ``GCCcore/8.2.0`` +``9.50`` | | ``GCCcore/8.3.0`` +``9.52`` | | ``GCCcore/9.3.0`` +``9.53.3`` | | ``GCCcore/10.2.0`` +``9.54.0`` | | ``GCCcore/10.3.0`` +``9.54.0`` | | ``GCCcore/11.2.0`` +``9.56.1`` | | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Gibbs2.md b/docs/version-specific/supported-software/g/Gibbs2.md new file mode 100644 index 000000000..9d20df8eb --- /dev/null +++ b/docs/version-specific/supported-software/g/Gibbs2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Gibbs2 + +Gibbs2 is a program for the calculation of thermodynamic properties in periodic solids under arbitrary conditions of temperature and pressure. Gibbs2 uses the results of periodic solid-state quantum-mechanical calculations, specifically the energy-volume curve and possibly the harmonic phonon frequencies, to compute the thermodynamic properties of the solid within the framework of the quasiharmonic approximation. + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GimmeMotifs.md b/docs/version-specific/supported-software/g/GimmeMotifs.md new file mode 100644 index 000000000..5e2e0dff4 --- /dev/null +++ b/docs/version-specific/supported-software/g/GimmeMotifs.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GimmeMotifs + +Suite of motif tools, including a motif prediction pipeline for ChIP-seq experiments + +*homepage*: + +version | toolchain +--------|---------- +``0.17.2`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Giotto-Suite.md b/docs/version-specific/supported-software/g/Giotto-Suite.md new file mode 100644 index 000000000..e8b9e7f7d --- /dev/null +++ b/docs/version-specific/supported-software/g/Giotto-Suite.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Giotto-Suite + +Giotto Suite is focused on building a modular platform for analyzing spatial-omics technologies and strives to be interoperable with other popular spatial analysis tools and classes. Using established packages optimized for large(r) data, Giotto Suite adopts fast and memory efficient methods to create an interactive analysis. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.1`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GitPython.md b/docs/version-specific/supported-software/g/GitPython.md new file mode 100644 index 000000000..fcefc9d6c --- /dev/null +++ b/docs/version-specific/supported-software/g/GitPython.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# GitPython + +GitPython is a python library used to interact with Git repositories + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.11`` | ``-Python-3.6.6`` | ``foss/2018b`` +``2.1.11`` | ``-Python-3.6.6`` | ``intel/2018b`` +``2.1.15`` | | ``system`` +``3.0.3`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` +``3.1.0`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``3.1.14`` | | ``GCCcore/10.2.0`` +``3.1.18`` | | ``GCCcore/10.3.0`` +``3.1.24`` | | ``GCCcore/11.2.0`` +``3.1.27`` | | ``GCCcore/11.3.0`` +``3.1.31`` | | ``GCCcore/12.2.0`` +``3.1.40`` | | ``GCCcore/12.3.0`` +``3.1.42`` | | ``GCCcore/13.2.0`` +``3.1.9`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Givaro.md b/docs/version-specific/supported-software/g/Givaro.md new file mode 100644 index 000000000..151283232 --- /dev/null +++ b/docs/version-specific/supported-software/g/Givaro.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Givaro + +C++ library for arithmetic and algebraic computations + +*homepage*: + +version | toolchain +--------|---------- +``4.0.1`` | ``foss/2016a`` +``4.2.0`` | ``GCCcore/11.3.0`` +``4.2.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Giza.md b/docs/version-specific/supported-software/g/Giza.md new file mode 100644 index 000000000..c18ae24e9 --- /dev/null +++ b/docs/version-specific/supported-software/g/Giza.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Giza + +Giza is an open, lightweight scientific plotting library built on top of cairo that provides uniform output to multiple devices. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``foss/2018b`` +``1.4.1`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Glade.md b/docs/version-specific/supported-software/g/Glade.md new file mode 100644 index 000000000..6f6bd7c63 --- /dev/null +++ b/docs/version-specific/supported-software/g/Glade.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Glade + +Glade is a RAD tool to enable quick & easy development of user interfaces for the GTK+ toolkit and the GNOME desktop environment. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.8.5`` | ``-Python-2.7.11`` | ``intel/2016a`` +``3.8.5`` | ``-Python-2.7.14`` | ``intel/2017b`` +``3.8.6`` | ``-Python-2.7.15`` | ``foss/2018b`` +``3.8.6`` | ``-Python-2.7.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GlimmerHMM.md b/docs/version-specific/supported-software/g/GlimmerHMM.md new file mode 100644 index 000000000..6963ef3ca --- /dev/null +++ b/docs/version-specific/supported-software/g/GlimmerHMM.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# GlimmerHMM + +GlimmerHMM is a new gene finder based on a Generalized Hidden Markov Model. Although the gene finder conforms to the overall mathematical framework of a GHMM, additionally it incorporates splice site models adapted from the GeneSplicer program and a decision tree adapted from GlimmerM. It also utilizes Interpolated Markov Models for the coding and noncoding models. + +*homepage*: + +version | toolchain +--------|---------- +``3.0.4`` | ``foss/2016b`` +``3.0.4`` | ``foss/2018b`` +``3.0.4c`` | ``GCC/10.2.0`` +``3.0.4c`` | ``GCC/11.2.0`` +``3.0.4c`` | ``GCC/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GlobalArrays.md b/docs/version-specific/supported-software/g/GlobalArrays.md new file mode 100644 index 000000000..b47867e6c --- /dev/null +++ b/docs/version-specific/supported-software/g/GlobalArrays.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# GlobalArrays + +Global Arrays (GA) is a Partitioned Global Address Space (PGAS) programming model + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.7`` | | ``intel/2018b`` +``5.7`` | ``-peigs`` | ``intel/2019a`` +``5.7.2`` | ``-peigs`` | ``intel/2019b`` +``5.7.2`` | | ``intel/2019b`` +``5.8`` | | ``intel/2020a`` +``5.8`` | | ``intel/2021a`` +``5.8`` | | ``iomkl/2021a`` +``5.8.1`` | | ``intel/2022a`` +``5.8.2`` | | ``intel/2022a`` +``5.8.2`` | | ``intel/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Globus-CLI.md b/docs/version-specific/supported-software/g/Globus-CLI.md new file mode 100644 index 000000000..f55a91cd0 --- /dev/null +++ b/docs/version-specific/supported-software/g/Globus-CLI.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Globus-CLI + +A Command Line Wrapper over the Globus SDK for Python, which provides an interface to Globus services from the shell, and is suited to both interactive and simple scripting use cases. + +*homepage*: + +version | toolchain +--------|---------- +``1.11.0`` | ``GCCcore/8.3.0`` +``3.1.1`` | ``GCCcore/10.2.0`` +``3.2.0`` | ``GCCcore/10.3.0`` +``3.6.0`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GlobusConnectPersonal.md b/docs/version-specific/supported-software/g/GlobusConnectPersonal.md new file mode 100644 index 000000000..f192980c2 --- /dev/null +++ b/docs/version-specific/supported-software/g/GlobusConnectPersonal.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GlobusConnectPersonal + +Globus Connect Personal turns your laptop or other personal computer into a Globus endpoint with a just a few clicks. With Globus Connect Personal you can share and transfer files to/from a local machine—campus server, desktop computer or laptop—even if it's behind a firewall and you don't have administrator privileges. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.6`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Glucose.md b/docs/version-specific/supported-software/g/Glucose.md new file mode 100644 index 000000000..f41eb5e28 --- /dev/null +++ b/docs/version-specific/supported-software/g/Glucose.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Glucose + +Glucose is based on a new scoring scheme (well, not so new now, it was introduced in 2009) for the clause learning mechanism of so called Modern SAT solvers (it is based on our IJCAI'09 paper). It is designed to be parallel, since v4.0. + +*homepage*: + +version | toolchain +--------|---------- +``4.1`` | ``GCC/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GnuTLS.md b/docs/version-specific/supported-software/g/GnuTLS.md new file mode 100644 index 000000000..3114e8e7f --- /dev/null +++ b/docs/version-specific/supported-software/g/GnuTLS.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# GnuTLS + +GnuTLS is a secure communications library implementing the SSL, TLS and DTLS protocols and technologies around them. It provides a simple C language application programming interface (API) to access the secure communications protocols as well as APIs to parse and write X.509, PKCS #12, OpenPGP and other required structures. It is aimed to be portable and efficient with focus on security and interoperability. + +*homepage*: + +version | toolchain +--------|---------- +``3.3.21`` | ``intel/2016a`` +``3.4.11`` | ``foss/2016a`` +``3.4.7`` | ``GNU/4.9.3-2.25`` +``3.7.2`` | ``GCCcore/10.3.0`` +``3.7.3`` | ``GCCcore/11.2.0`` +``3.7.8`` | ``GCCcore/11.3.0`` +``3.7.8`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Go.md b/docs/version-specific/supported-software/g/Go.md new file mode 100644 index 000000000..30b1420e0 --- /dev/null +++ b/docs/version-specific/supported-software/g/Go.md @@ -0,0 +1,38 @@ +--- +search: + boost: 0.5 +--- +# Go + +Go is an open source programming language that makes it easy to build simple, reliable, and efficient software. + +*homepage*: + +version | toolchain +--------|---------- +``1.11.5`` | ``system`` +``1.12.1`` | ``GCCcore/7.3.0`` +``1.12`` | ``system`` +``1.13.1`` | ``system`` +``1.14.1`` | ``system`` +``1.14`` | ``system`` +``1.16.3`` | ``system`` +``1.16.5`` | ``system`` +``1.16.6`` | ``system`` +``1.17.3`` | ``system`` +``1.17.6`` | ``system`` +``1.18.1`` | ``system`` +``1.18.3`` | ``system`` +``1.2.1`` | ``GCC/4.8.2`` +``1.20.4`` | ``system`` +``1.21.1`` | ``system`` +``1.21.2`` | ``system`` +``1.21.6`` | ``system`` +``1.22.1`` | ``system`` +``1.4.2`` | ``GCC/4.8.4`` +``1.5`` | ``GCC/4.8.4`` +``1.8.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Godon.md b/docs/version-specific/supported-software/g/Godon.md new file mode 100644 index 000000000..c8f7ca9ed --- /dev/null +++ b/docs/version-specific/supported-software/g/Godon.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Godon + +Godon is codon models software written in Go. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20210913`` | ``-x86_64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GraPhlAn.md b/docs/version-specific/supported-software/g/GraPhlAn.md new file mode 100644 index 000000000..20d678306 --- /dev/null +++ b/docs/version-specific/supported-software/g/GraPhlAn.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GraPhlAn + +GraPhlAn is a software tool for producing high-quality circular representations of taxonomic and phylogenetic trees. It focuses on concise, integrative, informative, and publication-ready representations of phylogenetically- and taxonomically-driven investigation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.3`` | ``-Python-2.7.16`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Grace.md b/docs/version-specific/supported-software/g/Grace.md new file mode 100644 index 000000000..4dbaff9b1 --- /dev/null +++ b/docs/version-specific/supported-software/g/Grace.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# Grace + +Grace is a WYSIWYG 2D plotting tool for X Windows System and Motif. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.1.25`` | | ``foss/2016a`` +``5.1.25`` | ``-5build1`` | ``foss/2017b`` +``5.1.25`` | ``-5build1`` | ``foss/2018a`` +``5.1.25`` | ``-5build1`` | ``foss/2019a`` +``5.1.25`` | ``-5build1`` | ``foss/2019b`` +``5.1.25`` | | ``foss/2021a`` +``5.1.25`` | | ``foss/2021b`` +``5.1.25`` | | ``intel/2016a`` +``5.1.25`` | ``-5build1`` | ``intel/2017b`` +``5.1.25`` | ``-5build1`` | ``intel/2019a`` +``5.1.25`` | ``-5build1`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Gradle.md b/docs/version-specific/supported-software/g/Gradle.md new file mode 100644 index 000000000..fd491d005 --- /dev/null +++ b/docs/version-specific/supported-software/g/Gradle.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Gradle + +Complete Gradle install. From mobile apps to microservices, from small startups to big enterprises, Gradle helps teams build, automate and deliver better software, faster. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.5.1`` | | ``system`` +``6.1.1`` | | ``system`` +``6.9.1`` | | ``system`` +``8.6`` | ``-Java-17`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GraphDB.md b/docs/version-specific/supported-software/g/GraphDB.md new file mode 100644 index 000000000..5e82b6590 --- /dev/null +++ b/docs/version-specific/supported-software/g/GraphDB.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GraphDB + +GraphDB is an enterprise ready Semantic Graph Database, compliant with W3C Standards. Semantic graph databases (also called RDF triplestores) provide the core infrastructure for solutions where modelling agility, data integration, relationship exploration and cross-enterprise data publishing and consumption are important. + +*homepage*: + +version | toolchain +--------|---------- +``10.1.5`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GraphMap.md b/docs/version-specific/supported-software/g/GraphMap.md new file mode 100644 index 000000000..0967100a9 --- /dev/null +++ b/docs/version-specific/supported-software/g/GraphMap.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GraphMap + +A highly sensitive and accurate mapper for long, error-prone reads + +*homepage*: + +version | toolchain +--------|---------- +``0.5.2`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GraphMap2.md b/docs/version-specific/supported-software/g/GraphMap2.md new file mode 100644 index 000000000..181de0193 --- /dev/null +++ b/docs/version-specific/supported-software/g/GraphMap2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GraphMap2 + +A highly sensitive and accurate mapper for long, error-prone reads + +*homepage*: + +version | toolchain +--------|---------- +``0.6.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Graphene.md b/docs/version-specific/supported-software/g/Graphene.md new file mode 100644 index 000000000..c0906a044 --- /dev/null +++ b/docs/version-specific/supported-software/g/Graphene.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Graphene + +Graphene is a thin layer of types for graphic libraries + +*homepage*: + +version | toolchain +--------|---------- +``1.10.8`` | ``GCCcore/11.3.0`` +``1.10.8`` | ``GCCcore/12.2.0`` +``1.10.8`` | ``GCCcore/12.3.0`` +``1.10.8`` | ``GCCcore/13.2.0`` +``1.6.0`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GraphicsMagick.md b/docs/version-specific/supported-software/g/GraphicsMagick.md new file mode 100644 index 000000000..4f99a467d --- /dev/null +++ b/docs/version-specific/supported-software/g/GraphicsMagick.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# GraphicsMagick + +GraphicsMagick is the swiss army knife of image processing. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.23`` | ``foss/2016a`` +``1.3.23`` | ``intel/2016a`` +``1.3.25`` | ``intel/2016b`` +``1.3.25`` | ``intel/2017a`` +``1.3.28`` | ``foss/2018a`` +``1.3.31`` | ``foss/2018b`` +``1.3.34`` | ``foss/2019a`` +``1.3.34`` | ``foss/2019b`` +``1.3.36`` | ``GCCcore/11.2.0`` +``1.3.36`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Graphviz.md b/docs/version-specific/supported-software/g/Graphviz.md new file mode 100644 index 000000000..3715cb881 --- /dev/null +++ b/docs/version-specific/supported-software/g/Graphviz.md @@ -0,0 +1,32 @@ +--- +search: + boost: 0.5 +--- +# Graphviz + +Graphviz is open source graph visualization software. Graph visualization is a way of representing structural information as diagrams of abstract graphs and networks. It has important applications in networking, bioinformatics, software engineering, database and web design, machine learning, and in visual interfaces for other technical domains. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.38.0`` | | ``foss/2016b`` +``2.38.0`` | | ``intel/2016b`` +``2.40.1`` | ``-Python-2.7.15`` | ``foss/2018b`` +``2.40.1`` | | ``foss/2018b`` +``2.40.1`` | | ``intel/2018a`` +``2.42.2`` | ``-Java-11`` | ``GCCcore/8.3.0`` +``2.42.2`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.42.2`` | | ``foss/2019b`` +``2.44.1`` | ``-Java-11-Python-3.8.2`` | ``GCCcore/9.3.0`` +``2.44.1`` | ``-Java-11`` | ``GCCcore/9.3.0`` +``2.47.0`` | ``-Java-11`` | ``GCCcore/10.2.0`` +``2.47.2`` | | ``GCCcore/10.3.0`` +``2.50.0`` | | ``GCCcore/11.2.0`` +``5.0.0`` | | ``GCCcore/11.3.0`` +``8.1.0`` | | ``GCCcore/12.2.0`` +``8.1.0`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Greenlet.md b/docs/version-specific/supported-software/g/Greenlet.md new file mode 100644 index 000000000..5fecf5ea3 --- /dev/null +++ b/docs/version-specific/supported-software/g/Greenlet.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# Greenlet + +The greenlet package is a spin-off of Stackless, a version of CPython that supports micro-threads called "tasklets". Tasklets run pseudo-concurrently (typically in a single or a few OS-level threads) and are synchronized with data exchanges on "channels". A "greenlet", on the other hand, is a still more primitive notion of micro-thread with no implicit scheduling; coroutines, in other words. This is useful when you want to control exactly when your code runs. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.4.11`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.4.12`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.4.9`` | ``-Python-2.7.11`` | ``intel/2016a`` +``0.4.9`` | ``-Python-3.5.1`` | ``intel/2016a`` +``2.0.2`` | | ``GCCcore/11.3.0`` +``2.0.2`` | | ``GCCcore/12.2.0`` +``2.0.2`` | | ``GCCcore/12.3.0`` +``3.0.2`` | | ``GCCcore/12.3.0`` +``3.0.3`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Grep.md b/docs/version-specific/supported-software/g/Grep.md new file mode 100644 index 000000000..ef7dc8285 --- /dev/null +++ b/docs/version-specific/supported-software/g/Grep.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Grep + +The grep command searches one or more input files for lines containing a match to a specified pattern. By default, grep prints the matching lines. + +*homepage*: + +version | toolchain +--------|---------- +``2.21`` | ``GCC/4.9.2`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GroIMP.md b/docs/version-specific/supported-software/g/GroIMP.md new file mode 100644 index 000000000..68096d4b2 --- /dev/null +++ b/docs/version-specific/supported-software/g/GroIMP.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GroIMP + +GroIMP (Growth Grammar-related Interactive Modelling Platform) is a 3D-modelling platform. + +*homepage*: + +version | toolchain +--------|---------- +``1.5`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GromacsWrapper.md b/docs/version-specific/supported-software/g/GromacsWrapper.md new file mode 100644 index 000000000..675544d88 --- /dev/null +++ b/docs/version-specific/supported-software/g/GromacsWrapper.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# GromacsWrapper + +GromacsWrapper is a python package that wraps system calls to Gromacs tools into thin classes. This allows for fairly seamless integration of the gromacs tools into python scripts. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8.0`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Groovy.md b/docs/version-specific/supported-software/g/Groovy.md new file mode 100644 index 000000000..ce381aa92 --- /dev/null +++ b/docs/version-specific/supported-software/g/Groovy.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Groovy + +Groovy is a powerful, optionally typed and dynamic language, with static-typing and static compilation capabilities, for the Java platform aimed at improving developer productivity thanks to a concise, familiar and easy to learn syntax. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.5.9`` | ``-Java-11`` | ``system`` +``4.0.3`` | ``-Java-11`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/GtkSourceView.md b/docs/version-specific/supported-software/g/GtkSourceView.md new file mode 100644 index 000000000..0714096b1 --- /dev/null +++ b/docs/version-specific/supported-software/g/GtkSourceView.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# GtkSourceView + +GtkSourceView is a GNOME library that extends GtkTextView, the standard GTK+ widget for multiline text editing. GtkSourceView adds support for syntax highlighting, undo/redo, file loading and saving, search and replace, a completion system, printing, displaying line numbers, and other features typical of a source code editor. + +*homepage*: + +version | toolchain +--------|---------- +``3.24.11`` | ``GCCcore/10.2.0`` +``3.24.11`` | ``GCCcore/8.2.0`` +``4.4.0`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Guile.md b/docs/version-specific/supported-software/g/Guile.md new file mode 100644 index 000000000..0515398a6 --- /dev/null +++ b/docs/version-specific/supported-software/g/Guile.md @@ -0,0 +1,38 @@ +--- +search: + boost: 0.5 +--- +# Guile + +Guile is the GNU Ubiquitous Intelligent Language for Extensions, the official extension language for the GNU operating system. + +*homepage*: + +version | toolchain +--------|---------- +``1.8.8`` | ``GCCcore/5.4.0`` +``1.8.8`` | ``GCCcore/6.4.0`` +``1.8.8`` | ``GCCcore/7.3.0`` +``1.8.8`` | ``GCCcore/8.2.0`` +``1.8.8`` | ``GCCcore/8.3.0`` +``1.8.8`` | ``GCCcore/9.3.0`` +``1.8.8`` | ``GNU/4.9.3-2.25`` +``1.8.8`` | ``foss/2016a`` +``1.8.8`` | ``foss/2016b`` +``1.8.8`` | ``foss/2017a`` +``1.8.8`` | ``intel/2016a`` +``1.8.8`` | ``intel/2016b`` +``2.0.11`` | ``GCC/4.9.3-2.25`` +``2.0.11`` | ``foss/2016a`` +``2.2.2`` | ``GCCcore/6.4.0`` +``2.2.4`` | ``GCCcore/7.3.0`` +``2.2.4`` | ``GCCcore/9.3.0`` +``2.2.7`` | ``GCCcore/10.3.0`` +``3.0.7`` | ``GCCcore/11.2.0`` +``3.0.8`` | ``GCCcore/11.3.0`` +``3.0.9`` | ``GCCcore/10.2.0`` +``3.0.9`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/Gurobi.md b/docs/version-specific/supported-software/g/Gurobi.md new file mode 100644 index 000000000..90701614e --- /dev/null +++ b/docs/version-specific/supported-software/g/Gurobi.md @@ -0,0 +1,41 @@ +--- +search: + boost: 0.5 +--- +# Gurobi + +The Gurobi Optimizer is a state-of-the-art solver for mathematical programming. The solvers in the Gurobi Optimizer were designed from the ground up to exploit modern architectures and multi-core processors, using the most advanced implementations of the latest algorithms. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``10.0.1`` | | ``GCCcore/11.3.0`` +``10.0.1`` | | ``GCCcore/12.2.0`` +``11.0.0`` | | ``GCCcore/12.3.0`` +``6.5.1`` | | ``system`` +``6.5.2`` | | ``system`` +``7.0.1`` | | ``system`` +``7.5.2`` | ``-Python-3.6.4`` | ``intel/2018a`` +``7.5.2`` | | ``system`` +``8.1.1`` | | ``system`` +``9.0.0`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``9.0.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``9.0.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``9.0.0`` | | ``system`` +``9.0.1`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``9.0.1`` | | ``system`` +``9.0.3`` | | ``GCCcore/10.2.0`` +``9.0.3`` | | ``system`` +``9.1.0`` | | ``system`` +``9.1.1`` | | ``GCCcore/10.2.0`` +``9.1.2`` | | ``GCCcore/10.2.0`` +``9.1.2`` | | ``GCCcore/10.3.0`` +``9.1.2`` | | ``system`` +``9.5.0`` | | ``GCCcore/10.3.0`` +``9.5.0`` | | ``GCCcore/11.2.0`` +``9.5.2`` | | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/g2clib.md b/docs/version-specific/supported-software/g/g2clib.md new file mode 100644 index 000000000..ad8f065d6 --- /dev/null +++ b/docs/version-specific/supported-software/g/g2clib.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# g2clib + +Library contains GRIB2 encoder/decoder ('C' version). + +*homepage*: + +version | toolchain +--------|---------- +``1.6.0`` | ``GCCcore/8.3.0`` +``1.6.0`` | ``GCCcore/9.3.0`` +``1.6.0`` | ``foss/2018b`` +``1.6.0`` | ``intel/2017a`` +``1.6.0`` | ``intel/2017b`` +``1.6.0`` | ``intel/2018a`` +``1.6.0`` | ``intel/2018b`` +``1.6.3`` | ``GCCcore/10.2.0`` +``1.6.3`` | ``GCCcore/10.3.0`` +``1.6.3`` | ``GCCcore/11.2.0`` +``1.7.0`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/g2lib.md b/docs/version-specific/supported-software/g/g2lib.md new file mode 100644 index 000000000..164d02ec2 --- /dev/null +++ b/docs/version-specific/supported-software/g/g2lib.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# g2lib + +Library contains GRIB2 encoder/decoder and search/indexing routines. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.0`` | ``intel/2017a`` +``1.4.0`` | ``intel/2017b`` +``1.4.0`` | ``intel/2018a`` +``3.1.0`` | ``GCCcore/8.3.0`` +``3.1.0`` | ``GCCcore/9.3.0`` +``3.1.0`` | ``foss/2018b`` +``3.1.0`` | ``intel/2018b`` +``3.2.0`` | ``GCCcore/10.2.0`` +``3.2.0`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/g2log.md b/docs/version-specific/supported-software/g/g2log.md new file mode 100644 index 000000000..323f864c4 --- /dev/null +++ b/docs/version-specific/supported-software/g/g2log.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# g2log + +g2log, efficient asynchronous logger using C++11 + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``GCCcore/8.3.0`` +``1.0`` | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gRPC.md b/docs/version-specific/supported-software/g/gRPC.md new file mode 100644 index 000000000..86ab0b080 --- /dev/null +++ b/docs/version-specific/supported-software/g/gRPC.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# gRPC + +gRPC is a modern, open source, high-performance remote procedure call (RPC) framework that can run anywhere. gRPC enables client and server applications to communicate transparently, and simplifies the building of connected systems. + +*homepage*: + +version | toolchain +--------|---------- +``1.44.0`` | ``GCCcore/11.2.0`` +``1.57.0`` | ``GCCcore/12.3.0`` +``1.62.1`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gSOAP.md b/docs/version-specific/supported-software/g/gSOAP.md new file mode 100644 index 000000000..d0e65017f --- /dev/null +++ b/docs/version-specific/supported-software/g/gSOAP.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# gSOAP + +The gSOAP toolkit is a C and C++ software development toolkit for SOAP and REST XML Web services and generic C/C++ XML data bindings. The toolkit analyzes WSDLs and XML schemas (separately or as a combined set) and maps the XML schema types and the SOAP/REST XML messaging protocols to easy-to-use and efficient C and C++ code. It also supports exposing (legacy) C and C++ applications as XML Web services by auto-generating XML serialization code and WSDL specifications. Or you can simply use it to automatically convert XML to/from C and C++ data. The toolkit supports options to generate pure ANSI C or C++ with or without STL. + +*homepage*: + +version | toolchain +--------|---------- +``2.8.100`` | ``GCCcore/8.3.0`` +``2.8.48`` | ``GCCcore/6.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gap.md b/docs/version-specific/supported-software/g/gap.md new file mode 100644 index 000000000..18e1dc58f --- /dev/null +++ b/docs/version-specific/supported-software/g/gap.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# gap + +GAP is a system for computational discrete algebra, with particular emphasis on Computational Group Theory. + +*homepage*: + +version | toolchain +--------|---------- +``4.11.0`` | ``foss/2019a`` +``4.12.2`` | ``foss/2022a`` +``4.9.3`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gappa.md b/docs/version-specific/supported-software/g/gappa.md new file mode 100644 index 000000000..4df36e29d --- /dev/null +++ b/docs/version-specific/supported-software/g/gappa.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# gappa + +gappa is a collection of commands for working with phylogenetic data. Its main focus are evolutionary placements of short environmental sequences on a reference phylogenetic tree. Such data is typically produced by tools like EPA-ng, RAxML-EPA or pplacer and usually stored in jplace files. + +*homepage*: + +version | toolchain +--------|---------- +``0.7.1`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/garnett.md b/docs/version-specific/supported-software/g/garnett.md new file mode 100644 index 000000000..0da2c73bd --- /dev/null +++ b/docs/version-specific/supported-software/g/garnett.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# garnett + +Garnett is a software package that faciliates automated cell type classification from single-cell expression data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.20`` | ``-R-4.0.3`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gawk.md b/docs/version-specific/supported-software/g/gawk.md new file mode 100644 index 000000000..ac50b5e19 --- /dev/null +++ b/docs/version-specific/supported-software/g/gawk.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# gawk + +The awk utility interprets a special-purpose programming language that makes it possible to handle simple data-reformatting jobs with just a few lines of code. + +*homepage*: + +version | toolchain +--------|---------- +``5.1.0`` | ``GCC/10.2.0`` +``5.1.1`` | ``GCC/10.3.0`` +``5.1.1`` | ``GCC/11.2.0`` +``5.1.1`` | ``GCC/11.3.0`` +``5.3.0`` | ``GCC/12.2.0`` +``5.3.0`` | ``GCC/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gbasis.md b/docs/version-specific/supported-software/g/gbasis.md new file mode 100644 index 000000000..0723b5172 --- /dev/null +++ b/docs/version-specific/supported-software/g/gbasis.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# gbasis + +Python library for analytical evaluation and integration of Gaussian-type basis functions and related quantities. + +*homepage*: + +version | toolchain +--------|---------- +``20210904`` | ``intel/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gbs2ploidy.md b/docs/version-specific/supported-software/g/gbs2ploidy.md new file mode 100644 index 000000000..60abd5d51 --- /dev/null +++ b/docs/version-specific/supported-software/g/gbs2ploidy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# gbs2ploidy + +Inference of Ploidy from (Genotyping-by-Sequencing) GBS Data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0`` | ``-R-3.4.3`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gc.md b/docs/version-specific/supported-software/g/gc.md new file mode 100644 index 000000000..523a19180 --- /dev/null +++ b/docs/version-specific/supported-software/g/gc.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# gc + +The Boehm-Demers-Weiser conservative garbage collector can be used as a garbage collecting replacement for C malloc or C++ new. + +*homepage*: + +version | toolchain +--------|---------- +``7.4.4`` | ``GCC/4.9.3-2.25`` +``7.4.4`` | ``foss/2016a`` +``7.6.0`` | ``GCCcore/6.4.0`` +``7.6.10`` | ``GCCcore/8.2.0`` +``7.6.12`` | ``GCCcore/8.3.0`` +``7.6.12`` | ``GCCcore/9.3.0`` +``7.6.4`` | ``GCCcore/7.3.0`` +``8.0.4`` | ``GCCcore/10.3.0`` +``8.2.0`` | ``GCCcore/11.2.0`` +``8.2.2`` | ``GCCcore/10.2.0`` +``8.2.2`` | ``GCCcore/11.3.0`` +``8.2.4`` | ``GCCcore/12.3.0`` +``8.2.6`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gcccuda.md b/docs/version-specific/supported-software/g/gcccuda.md new file mode 100644 index 000000000..51ed14f37 --- /dev/null +++ b/docs/version-specific/supported-software/g/gcccuda.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# gcccuda + +GNU Compiler Collection (GCC) based compiler toolchain, along with CUDA toolkit. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``2016.08`` | ``system`` +``2017b`` | ``system`` +``2018a`` | ``system`` +``2018b`` | ``system`` +``2019a`` | ``system`` +``2019b`` | ``system`` +``2020a`` | ``system`` +``2020b`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gcloud.md b/docs/version-specific/supported-software/g/gcloud.md new file mode 100644 index 000000000..788b86203 --- /dev/null +++ b/docs/version-specific/supported-software/g/gcloud.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# gcloud + +Libraries and tools for interacting with Google Cloud products and services. + +*homepage*: + +version | toolchain +--------|---------- +``382.0.0`` | ``system`` +``472.0.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gcsfs.md b/docs/version-specific/supported-software/g/gcsfs.md new file mode 100644 index 000000000..ce8bf16f2 --- /dev/null +++ b/docs/version-specific/supported-software/g/gcsfs.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# gcsfs + +Pythonic file-system interface for Google Cloud Storage. + +*homepage*: + +version | toolchain +--------|---------- +``2023.12.2.post1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gdbgui.md b/docs/version-specific/supported-software/g/gdbgui.md new file mode 100644 index 000000000..cf76e3a8c --- /dev/null +++ b/docs/version-specific/supported-software/g/gdbgui.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# gdbgui + +Browser-based frontend to gdb (gnu debugger). Add breakpoints, view the stack, visualize data structures, and more in C, C++, Go, Rust, and Fortran. Run gdbgui from the terminal and a new tab will open in your browser. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.13.1.2`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gdbm.md b/docs/version-specific/supported-software/g/gdbm.md new file mode 100644 index 000000000..8635b2fce --- /dev/null +++ b/docs/version-specific/supported-software/g/gdbm.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# gdbm + +GNU dbm (or GDBM, for short) is a library of database functions that use extensible hashing and work similar to the standard UNIX dbm. These routines are provided to a programmer needing to create and manipulate a hashed database. + +*homepage*: + +version | toolchain +--------|---------- +``1.18.1`` | ``foss/2020a`` +``1.21`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gdc-client.md b/docs/version-specific/supported-software/g/gdc-client.md new file mode 100644 index 000000000..62b8e75c9 --- /dev/null +++ b/docs/version-specific/supported-software/g/gdc-client.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# gdc-client + +The gdc-client provides several convenience functions over the GDC API which provides general download/upload via HTTPS. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.3.0`` | ``-Python-2.7.14`` | ``foss/2018a`` +``1.3.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.3.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.6.0`` | | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gdist.md b/docs/version-specific/supported-software/g/gdist.md new file mode 100644 index 000000000..02d0ce963 --- /dev/null +++ b/docs/version-specific/supported-software/g/gdist.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# gdist + +The gdist module is a Cython interface to a C++ library (http://code.google.com/p/geodesic/) for computing geodesic distance which is the length of shortest line between two vertices on a triangulated mesh in three dimensions, such that the line lies on the surface. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.3`` | ``-Python-2.7.11`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gearshifft.md b/docs/version-specific/supported-software/g/gearshifft.md new file mode 100644 index 000000000..3a9cb53ec --- /dev/null +++ b/docs/version-specific/supported-software/g/gearshifft.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# gearshifft + +Benchmark Suite for Heterogenuous FFT Implementations + +*homepage*: + +version | toolchain +--------|---------- +``0.4.0`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gemelli.md b/docs/version-specific/supported-software/g/gemelli.md new file mode 100644 index 000000000..253a9ffa7 --- /dev/null +++ b/docs/version-specific/supported-software/g/gemelli.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# gemelli + +Gemelli is a tool box for running both Robust Aitchison PCA (RPCA) and Compositional Tensor Factorization (CTF) on sparse compositional omics datasets. + +*homepage*: + +version | toolchain +--------|---------- +``0.0.9`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gemmi.md b/docs/version-specific/supported-software/g/gemmi.md new file mode 100644 index 000000000..e4c5314d1 --- /dev/null +++ b/docs/version-specific/supported-software/g/gemmi.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# gemmi + +Gemmi is a library, accompanied by a set of programs, developed primarily for use in macromolecular crystallography (MX). For working with: macromolecular models (content of PDB, PDBx/mmCIF and mmJSON files), refinement restraints (CIF files), reflection data (MTZ and mmCIF formats), data on a 3D grid (electron density maps, masks, MRC/CCP4 format) crystallographic symmetry. Parts of this library can be useful in structural bioinformatics (for symmetry- aware analysis of protein models), and in other molecular-structure sciences that use CIF files (we have the fastest open-source CIF parser). + +*homepage*: + +version | toolchain +--------|---------- +``0.4.5`` | ``GCCcore/10.2.0`` +``0.6.5`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gencore_variant_detection.md b/docs/version-specific/supported-software/g/gencore_variant_detection.md new file mode 100644 index 000000000..f8f999a55 --- /dev/null +++ b/docs/version-specific/supported-software/g/gencore_variant_detection.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# gencore_variant_detection + +This is a bundled install of many software packages for doing variant detection analysis. + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gengetopt.md b/docs/version-specific/supported-software/g/gengetopt.md new file mode 100644 index 000000000..0f6b7cd76 --- /dev/null +++ b/docs/version-specific/supported-software/g/gengetopt.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# gengetopt + +Gengetopt is a tool to write command line option parsing code for C programs. + +*homepage*: + +version | toolchain +--------|---------- +``2.23`` | ``GCCcore/10.2.0`` +``2.23`` | ``GCCcore/10.3.0`` +``2.23`` | ``GCCcore/11.3.0`` +``2.23`` | ``GCCcore/13.2.0`` +``2.23`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/genomepy.md b/docs/version-specific/supported-software/g/genomepy.md new file mode 100644 index 000000000..0f4cec0ee --- /dev/null +++ b/docs/version-specific/supported-software/g/genomepy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# genomepy + +genomepy is designed to provide a simple and straightforward way to download and use genomic data + +*homepage*: + +version | toolchain +--------|---------- +``0.15.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/genozip.md b/docs/version-specific/supported-software/g/genozip.md new file mode 100644 index 000000000..a1b06a0b7 --- /dev/null +++ b/docs/version-specific/supported-software/g/genozip.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# genozip + +Genozip is a compressor for genomic files - it compresses FASTQ, SAM/BAM/CRAM, VCF, FASTA and others. + +*homepage*: + +version | toolchain +--------|---------- +``13.0.5`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gensim.md b/docs/version-specific/supported-software/g/gensim.md new file mode 100644 index 000000000..04fdd7818 --- /dev/null +++ b/docs/version-specific/supported-software/g/gensim.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# gensim + +Gensim is a Python library for topic modelling, document indexing and similarity retrieval with large corpora. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.13.2`` | ``-Python-2.7.11`` | ``foss/2016a`` +``3.8.3`` | | ``foss/2020b`` +``3.8.3`` | | ``intel/2020b`` +``4.2.0`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/geocube.md b/docs/version-specific/supported-software/g/geocube.md new file mode 100644 index 000000000..37233c57b --- /dev/null +++ b/docs/version-specific/supported-software/g/geocube.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# geocube + +Tool to convert geopandas vector data into rasterized xarray data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.0.14`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.4.3`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/geopandas.md b/docs/version-specific/supported-software/g/geopandas.md new file mode 100644 index 000000000..990522c8d --- /dev/null +++ b/docs/version-specific/supported-software/g/geopandas.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# geopandas + +GeoPandas is a project to add support for geographic data to pandas objects. It currently implements GeoSeries and GeoDataFrame types which are subclasses of pandas.Series and pandas.DataFrame respectively. GeoPandas objects can act on shapely geometry objects and perform geometric operations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.2`` | | ``foss/2021a`` +``0.11.0`` | | ``foss/2021b`` +``0.12.2`` | | ``foss/2022a`` +``0.12.2`` | | ``foss/2022b`` +``0.14.2`` | | ``foss/2023a`` +``0.7.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.7.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``0.8.0`` | ``-Python-3.7.2`` | ``foss/2019a`` +``0.8.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.8.1`` | ``-Python-3.7.4`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/geopy.md b/docs/version-specific/supported-software/g/geopy.md new file mode 100644 index 000000000..797c5e456 --- /dev/null +++ b/docs/version-specific/supported-software/g/geopy.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# geopy + +geopy is a Python 2 and 3 client for several popular geocoding web services. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.11.0`` | ``-Python-3.6.1`` | ``intel/2017a`` +``2.1.0`` | | ``GCCcore/10.2.0`` +``2.4.1`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/georges.md b/docs/version-specific/supported-software/g/georges.md new file mode 100644 index 000000000..a3fc2bb3a --- /dev/null +++ b/docs/version-specific/supported-software/g/georges.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# georges + +Georges the lemur opinionated particle accelerator modeling Python package. Also a thin wrapper over MAD-X/PTC, BDSim and G4Beamline. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2019.2`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2019.2`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/geosphere.md b/docs/version-specific/supported-software/g/geosphere.md new file mode 100644 index 000000000..453f90438 --- /dev/null +++ b/docs/version-specific/supported-software/g/geosphere.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# geosphere + +Spherical trigonometry for geographic applications. That is, compute distances and related measures for angular (longitude/latitude) locations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5-18`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gettext.md b/docs/version-specific/supported-software/g/gettext.md new file mode 100644 index 000000000..00e38514a --- /dev/null +++ b/docs/version-specific/supported-software/g/gettext.md @@ -0,0 +1,54 @@ +--- +search: + boost: 0.5 +--- +# gettext + +GNU 'gettext' is an important step for the GNU Translation Project, as it is an asset on which we may build many other steps. This package offers to programmers, translators, and even users, a well integrated set of tools and documentation + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.18.2`` | | ``system`` +``0.19.4`` | | ``GCC/4.9.2`` +``0.19.4`` | | ``system`` +``0.19.6`` | | ``GNU/4.9.3-2.25`` +``0.19.6`` | | ``foss/2016a`` +``0.19.6`` | | ``gimkl/2.11.5`` +``0.19.6`` | | ``intel/2016a`` +``0.19.6`` | | ``system`` +``0.19.7`` | | ``foss/2016a`` +``0.19.7`` | | ``intel/2016a`` +``0.19.7`` | | ``system`` +``0.19.8`` | | ``GCCcore/4.9.3`` +``0.19.8`` | | ``GCCcore/5.4.0`` +``0.19.8`` | | ``foss/2016.04`` +``0.19.8`` | | ``foss/2016b`` +``0.19.8`` | | ``intel/2016b`` +``0.19.8.1`` | | ``GCCcore/6.3.0`` +``0.19.8.1`` | ``-libxml2-2.9.7`` | ``GCCcore/6.4.0`` +``0.19.8.1`` | | ``GCCcore/6.4.0`` +``0.19.8.1`` | | ``GCCcore/7.3.0`` +``0.19.8.1`` | | ``GCCcore/8.2.0`` +``0.19.8.1`` | | ``system`` +``0.19.8`` | | ``system`` +``0.20.1`` | | ``GCCcore/8.3.0`` +``0.20.1`` | | ``GCCcore/9.3.0`` +``0.20.1`` | | ``system`` +``0.21`` | | ``GCCcore/10.2.0`` +``0.21`` | | ``GCCcore/10.3.0`` +``0.21`` | | ``GCCcore/11.2.0`` +``0.21`` | | ``GCCcore/11.3.0`` +``0.21.1`` | | ``GCCcore/12.2.0`` +``0.21.1`` | | ``GCCcore/12.3.0`` +``0.21.1`` | | ``system`` +``0.21`` | | ``system`` +``0.22`` | | ``GCCcore/13.2.0`` +``0.22.5`` | | ``GCCcore/13.3.0`` +``0.22.5`` | | ``system`` +``0.22`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gexiv2.md b/docs/version-specific/supported-software/g/gexiv2.md new file mode 100644 index 000000000..9295eac4c --- /dev/null +++ b/docs/version-specific/supported-software/g/gexiv2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# gexiv2 + +gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. + +*homepage*: + +version | toolchain +--------|---------- +``0.12.2`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gfbf.md b/docs/version-specific/supported-software/g/gfbf.md new file mode 100644 index 000000000..78f20d818 --- /dev/null +++ b/docs/version-specific/supported-software/g/gfbf.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# gfbf + +GNU Compiler Collection (GCC) based compiler toolchain, including FlexiBLAS (BLAS and LAPACK support) and (serial) FFTW. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``2022a`` | ``system`` +``2022b`` | ``system`` +``2023.09`` | ``system`` +``2023a`` | ``system`` +``2023b`` | ``system`` +``2024.05`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gffread.md b/docs/version-specific/supported-software/g/gffread.md new file mode 100644 index 000000000..d1b59a60c --- /dev/null +++ b/docs/version-specific/supported-software/g/gffread.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# gffread + +GFF/GTF parsing utility providing format conversions, region filtering, FASTA sequence extraction and more. + +*homepage*: + +version | toolchain +--------|---------- +``0.10.6`` | ``GCCcore/7.3.0`` +``0.11.6`` | ``GCCcore/8.3.0`` +``0.11.6`` | ``GCCcore/9.3.0`` +``0.12.7`` | ``GCCcore/10.3.0`` +``0.12.7`` | ``GCCcore/11.2.0`` +``0.12.7`` | ``GCCcore/12.2.0`` +``0.9.12`` | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gffutils.md b/docs/version-specific/supported-software/g/gffutils.md new file mode 100644 index 000000000..c68e98e0f --- /dev/null +++ b/docs/version-specific/supported-software/g/gffutils.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# gffutils + +Gffutils is a Python package for working with and manipulating the GFF and GTF format files typically used for genomic annotations. + +*homepage*: + +version | toolchain +--------|---------- +``0.12`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gflags.md b/docs/version-specific/supported-software/g/gflags.md new file mode 100644 index 000000000..79766c137 --- /dev/null +++ b/docs/version-specific/supported-software/g/gflags.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# gflags + +The gflags package contains a C++ library that implements commandline flags processing. It includes built-in support for standard types such as string and the ability to define flags in the source file in which they are used. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.2`` | ``foss/2016a`` +``2.2.1`` | ``GCCcore/6.4.0`` +``2.2.1`` | ``intel/2017a`` +``2.2.1`` | ``intel/2017b`` +``2.2.2`` | ``GCCcore/10.2.0`` +``2.2.2`` | ``GCCcore/10.3.0`` +``2.2.2`` | ``GCCcore/11.2.0`` +``2.2.2`` | ``GCCcore/11.3.0`` +``2.2.2`` | ``GCCcore/12.3.0`` +``2.2.2`` | ``GCCcore/8.2.0`` +``2.2.2`` | ``GCCcore/8.3.0`` +``2.2.2`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gh.md b/docs/version-specific/supported-software/g/gh.md new file mode 100644 index 000000000..25965960f --- /dev/null +++ b/docs/version-specific/supported-software/g/gh.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# gh + +gh is GitHub on the command line. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.1`` | ``system`` +``2.20.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/giac.md b/docs/version-specific/supported-software/g/giac.md new file mode 100644 index 000000000..fae85e794 --- /dev/null +++ b/docs/version-specific/supported-software/g/giac.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# giac + +Giac is a C++ library, it is the CAS computing kernel. It may be used inside other C++ programs, and also Python, Java and Javascript programs. + +*homepage*: + +version | toolchain +--------|---------- +``1.9.0-69`` | ``gfbf/2022a`` +``1.9.0-99`` | ``gfbf/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/giflib.md b/docs/version-specific/supported-software/g/giflib.md new file mode 100644 index 000000000..6a3cc0fac --- /dev/null +++ b/docs/version-specific/supported-software/g/giflib.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# giflib + +giflib is a library for reading and writing gif images. It is API and ABI compatible with libungif which was in wide use while the LZW compression algorithm was patented. + +*homepage*: + +version | toolchain +--------|---------- +``5.1.4`` | ``GCCcore/7.3.0`` +``5.1.4`` | ``GCCcore/8.2.0`` +``5.2.1`` | ``GCCcore/10.2.0`` +``5.2.1`` | ``GCCcore/10.3.0`` +``5.2.1`` | ``GCCcore/11.2.0`` +``5.2.1`` | ``GCCcore/11.3.0`` +``5.2.1`` | ``GCCcore/12.2.0`` +``5.2.1`` | ``GCCcore/12.3.0`` +``5.2.1`` | ``GCCcore/13.2.0`` +``5.2.1`` | ``GCCcore/8.3.0`` +``5.2.1`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gifsicle.md b/docs/version-specific/supported-software/g/gifsicle.md new file mode 100644 index 000000000..2c21cb3d9 --- /dev/null +++ b/docs/version-specific/supported-software/g/gifsicle.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# gifsicle + +Gifsicle is a command-line tool for creating, editing, and getting information about GIF images and animations. Making a GIF animation with gifsicle is easy. + +*homepage*: + +version | toolchain +--------|---------- +``1.92`` | ``GCCcore/8.2.0`` +``1.93`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gimkl.md b/docs/version-specific/supported-software/g/gimkl.md new file mode 100644 index 000000000..62475eea1 --- /dev/null +++ b/docs/version-specific/supported-software/g/gimkl.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# gimkl + +GNU Compiler Collection (GCC) based compiler toolchain, next to Intel MPI and Intel MKL (BLAS, (Sca)LAPACK, FFTW). + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``2.11.5`` | ``system`` +``2017a`` | ``system`` +``2018b`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gimpi.md b/docs/version-specific/supported-software/g/gimpi.md new file mode 100644 index 000000000..b23d32feb --- /dev/null +++ b/docs/version-specific/supported-software/g/gimpi.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# gimpi + +GNU Compiler Collection (GCC) based compiler toolchain, next to Intel MPI. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``2.11.5`` | ``system`` +``2017a`` | ``system`` +``2017b`` | ``system`` +``2018a`` | ``system`` +``2018b`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gimpic.md b/docs/version-specific/supported-software/g/gimpic.md new file mode 100644 index 000000000..4d8f5dcad --- /dev/null +++ b/docs/version-specific/supported-software/g/gimpic.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# gimpic + +GNU Compiler Collection (GCC) based compiler toolchain along with CUDA toolkit, including IntelMPI for MPI support with CUDA features enabled. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``2017b`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/giolf.md b/docs/version-specific/supported-software/g/giolf.md new file mode 100644 index 000000000..a4d4c1f35 --- /dev/null +++ b/docs/version-specific/supported-software/g/giolf.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# giolf + +GNU Compiler Collection (GCC) based compiler toolchain, including IntelMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``2017b`` | ``system`` +``2018a`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/giolfc.md b/docs/version-specific/supported-software/g/giolfc.md new file mode 100644 index 000000000..8107c117b --- /dev/null +++ b/docs/version-specific/supported-software/g/giolfc.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# giolfc + +GCC based compiler toolchain __with CUDA support__, and including IntelMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``2017b`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/git-annex.md b/docs/version-specific/supported-software/g/git-annex.md new file mode 100644 index 000000000..d5bf6f6f9 --- /dev/null +++ b/docs/version-specific/supported-software/g/git-annex.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# git-annex + +git-annex allows managing large files with git, without storing the file contents in git. It can sync, backup, and archive your data, offline and online. Checksums and encryption keep your data safe and secure. Bring the power and distributed nature of git to bear on your large files with git-annex. + +*homepage*: + +version | toolchain +--------|---------- +``10.20230802`` | ``GCCcore/12.2.0`` +``10.20230802`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/git-extras.md b/docs/version-specific/supported-software/g/git-extras.md new file mode 100644 index 000000000..23079340e --- /dev/null +++ b/docs/version-specific/supported-software/g/git-extras.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# git-extras + +Extra useful scripts for git + +*homepage*: + +version | toolchain +--------|---------- +``5.1.0`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/git-lfs.md b/docs/version-specific/supported-software/g/git-lfs.md new file mode 100644 index 000000000..1ce4b5a61 --- /dev/null +++ b/docs/version-specific/supported-software/g/git-lfs.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# git-lfs + +Git Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``system`` +``2.11.0`` | ``system`` +``2.7.1`` | ``system`` +``3.2.0`` | ``system`` +``3.4.0`` | ``system`` +``3.4.1`` | ``system`` +``3.5.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/git.md b/docs/version-specific/supported-software/g/git.md new file mode 100644 index 000000000..e2e5e1c79 --- /dev/null +++ b/docs/version-specific/supported-software/g/git.md @@ -0,0 +1,39 @@ +--- +search: + boost: 0.5 +--- +# git + +Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.8.5.6`` | | ``GCC/4.9.2`` +``2.12.2`` | | ``foss/2016b`` +``2.13.1`` | | ``foss/2016b`` +``2.14.1`` | | ``GCCcore/6.4.0`` +``2.16.1`` | | ``foss/2018a`` +``2.18.0`` | | ``GCCcore/7.3.0`` +``2.19.1`` | | ``GCCcore/7.3.0`` +``2.2.2`` | | ``GCC/4.9.2`` +``2.21.0`` | ``-nodocs`` | ``GCCcore/8.2.0`` +``2.21.0`` | | ``GCCcore/8.2.0`` +``2.23.0`` | ``-nodocs`` | ``GCCcore/8.3.0`` +``2.23.0`` | | ``GCCcore/8.3.0`` +``2.23.0`` | ``-nodocs`` | ``GCCcore/9.3.0`` +``2.28.0`` | ``-nodocs`` | ``GCCcore/10.2.0`` +``2.32.0`` | ``-nodocs`` | ``GCCcore/10.3.0`` +``2.33.1`` | ``-nodocs`` | ``GCCcore/11.2.0`` +``2.36.0`` | ``-nodocs`` | ``GCCcore/11.3.0`` +``2.38.1`` | ``-nodocs`` | ``GCCcore/12.2.0`` +``2.4.1`` | | ``GCC/4.9.2`` +``2.41.0`` | ``-nodocs`` | ``GCCcore/12.3.0`` +``2.42.0`` | | ``GCCcore/13.2.0`` +``2.45.1`` | | ``GCCcore/13.3.0`` +``2.8.0`` | | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gkmSVM.md b/docs/version-specific/supported-software/g/gkmSVM.md new file mode 100644 index 000000000..43e5ef73f --- /dev/null +++ b/docs/version-specific/supported-software/g/gkmSVM.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# gkmSVM + +Gapped-Kmer Support Vector Machine. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.82.0`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/glew.md b/docs/version-specific/supported-software/g/glew.md new file mode 100644 index 000000000..76d6a6c51 --- /dev/null +++ b/docs/version-specific/supported-software/g/glew.md @@ -0,0 +1,32 @@ +--- +search: + boost: 0.5 +--- +# glew + +The OpenGL Extension Wrangler Library (GLEW) is a cross-platform open-source C/C++ extension loading library. GLEW provides efficient run-time mechanisms for determining which OpenGL extensions are supported on the target platform. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.0`` | | ``GCCcore/10.2.0`` +``2.1.0`` | | ``GCCcore/10.3.0`` +``2.1.0`` | | ``GCCcore/8.2.0`` +``2.1.0`` | | ``GCCcore/8.3.0`` +``2.1.0`` | | ``GCCcore/9.3.0`` +``2.1.0`` | | ``foss/2018b`` +``2.2.0`` | ``-egl`` | ``GCCcore/10.2.0`` +``2.2.0`` | ``-glx`` | ``GCCcore/10.2.0`` +``2.2.0`` | ``-osmesa`` | ``GCCcore/10.2.0`` +``2.2.0`` | ``-egl`` | ``GCCcore/11.2.0`` +``2.2.0`` | ``-glx`` | ``GCCcore/11.2.0`` +``2.2.0`` | ``-osmesa`` | ``GCCcore/11.2.0`` +``2.2.0`` | ``-egl`` | ``GCCcore/11.3.0`` +``2.2.0`` | ``-osmesa`` | ``GCCcore/11.3.0`` +``2.2.0`` | ``-egl`` | ``GCCcore/12.3.0`` +``2.2.0`` | ``-osmesa`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/glib-networking.md b/docs/version-specific/supported-software/g/glib-networking.md new file mode 100644 index 000000000..8fa9d1269 --- /dev/null +++ b/docs/version-specific/supported-software/g/glib-networking.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# glib-networking + +Network extensions for GLib + +*homepage*: + +version | toolchain +--------|---------- +``2.68.1`` | ``GCCcore/10.3.0`` +``2.72.1`` | ``GCCcore/11.2.0`` +``2.72.1`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/glibc.md b/docs/version-specific/supported-software/g/glibc.md new file mode 100644 index 000000000..42ca16bb8 --- /dev/null +++ b/docs/version-specific/supported-software/g/glibc.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# glibc + +The GNU C Library project provides the core libraries for the GNU system and GNU/Linux systems, as well as many other systems that use Linux as the kernel. + +*homepage*: + +version | toolchain +--------|---------- +``2.17`` | ``GCCcore/6.4.0`` +``2.26`` | ``GCCcore/6.4.0`` +``2.30`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/glog.md b/docs/version-specific/supported-software/g/glog.md new file mode 100644 index 000000000..f21adc03d --- /dev/null +++ b/docs/version-specific/supported-software/g/glog.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# glog + +A C++ implementation of the Google logging module. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.4`` | ``foss/2016a`` +``0.3.5`` | ``GCCcore/6.4.0`` +``0.3.5`` | ``intel/2017a`` +``0.3.5`` | ``intel/2017b`` +``0.4.0`` | ``GCCcore/8.2.0`` +``0.4.0`` | ``GCCcore/8.3.0`` +``0.4.0`` | ``GCCcore/9.3.0`` +``0.5.0`` | ``GCCcore/10.2.0`` +``0.6.0`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/glproto.md b/docs/version-specific/supported-software/g/glproto.md new file mode 100644 index 000000000..6959ee726 --- /dev/null +++ b/docs/version-specific/supported-software/g/glproto.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# glproto + +X protocol and ancillary headers + +*homepage*: + +version | toolchain +--------|---------- +``1.4.17`` | ``foss/2016a`` +``1.4.17`` | ``gimkl/2.11.5`` +``1.4.17`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gmpich.md b/docs/version-specific/supported-software/g/gmpich.md new file mode 100644 index 000000000..4e9cad37e --- /dev/null +++ b/docs/version-specific/supported-software/g/gmpich.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# gmpich + +gcc and GFortran based compiler toolchain, including MPICH for MPI support. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``2016a`` | ``system`` +``2017.08`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gmpolf.md b/docs/version-specific/supported-software/g/gmpolf.md new file mode 100644 index 000000000..f9d33dca9 --- /dev/null +++ b/docs/version-specific/supported-software/g/gmpolf.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# gmpolf + +gcc and GFortran based compiler toolchain, MPICH for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``2016a`` | ``system`` +``2017.10`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gmpy2.md b/docs/version-specific/supported-software/g/gmpy2.md new file mode 100644 index 000000000..8f256352e --- /dev/null +++ b/docs/version-specific/supported-software/g/gmpy2.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# gmpy2 + +GMP/MPIR, MPFR, and MPC interface to Python 2.6+ and 3.x + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.8`` | ``-Python-2.7.14`` | ``foss/2017b`` +``2.0.8`` | ``-Python-3.6.3`` | ``foss/2017b`` +``2.0.8`` | ``-Python-2.7.13`` | ``intel/2017a`` +``2.0.8`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.0.8`` | ``-Python-3.6.3`` | ``intel/2017b`` +``2.1.0b1`` | ``-Python-2.7.14`` | ``foss/2017b`` +``2.1.0b1`` | ``-Python-3.6.3`` | ``foss/2017b`` +``2.1.0b1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.1.0b1`` | ``-Python-3.6.3`` | ``intel/2017b`` +``2.1.0b4`` | | ``GCC/8.3.0`` +``2.1.0b5`` | | ``GCC/10.2.0`` +``2.1.0b5`` | | ``GCC/10.3.0`` +``2.1.0b5`` | | ``GCC/9.3.0`` +``2.1.0b5`` | | ``iccifort/2020.4.304`` +``2.1.2`` | | ``GCC/11.2.0`` +``2.1.2`` | | ``GCC/11.3.0`` +``2.1.2`` | | ``intel-compilers/2021.4.0`` +``2.1.2`` | | ``intel-compilers/2022.1.0`` +``2.1.5`` | | ``GCC/12.2.0`` +``2.1.5`` | | ``GCC/12.3.0`` +``2.1.5`` | | ``GCC/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gmsh.md b/docs/version-specific/supported-software/g/gmsh.md new file mode 100644 index 000000000..21f8d1aba --- /dev/null +++ b/docs/version-specific/supported-software/g/gmsh.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# gmsh + +Gmsh is a 3D finite element grid generator with a build-in CAD engine and post-processor. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.6`` | ``-Python-2.7.14`` | ``foss/2017b`` +``3.0.6`` | ``-Python-3.6.6`` | ``foss/2018b`` +``4.11.1`` | | ``foss/2022a`` +``4.12.2`` | | ``foss/2023a`` +``4.2.2`` | ``-Python-3.6.6`` | ``foss/2018b`` +``4.5.6`` | ``-Python-3.7.4`` | ``foss/2019b`` +``4.5.6`` | ``-Python-2.7.16`` | ``intel/2019b`` +``4.7.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``4.7.1`` | ``-Python-3.8.2`` | ``intel/2020a`` +``4.8.4`` | ``-Python-3.6.4`` | ``foss/2018a`` +``4.9.0`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gmvapich2.md b/docs/version-specific/supported-software/g/gmvapich2.md new file mode 100644 index 000000000..73aa47493 --- /dev/null +++ b/docs/version-specific/supported-software/g/gmvapich2.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# gmvapich2 + +GNU Compiler Collection (GCC) based compiler toolchain, including MVAPICH2 for MPI support. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``1.7.20`` | ``system`` +``2016a`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gmvolf.md b/docs/version-specific/supported-software/g/gmvolf.md new file mode 100644 index 000000000..e2f960309 --- /dev/null +++ b/docs/version-specific/supported-software/g/gmvolf.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# gmvolf + +GNU Compiler Collection (GCC) based compiler toolchain, including MVAPICH2 for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``1.7.20`` | ``system`` +``2016a`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gnupg-bundle.md b/docs/version-specific/supported-software/g/gnupg-bundle.md new file mode 100644 index 000000000..c79179ef3 --- /dev/null +++ b/docs/version-specific/supported-software/g/gnupg-bundle.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# gnupg-bundle + +GnuPG — The Universal Crypto Engine + +*homepage*: + +version | toolchain +--------|---------- +``20240306`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gnuplot.md b/docs/version-specific/supported-software/g/gnuplot.md new file mode 100644 index 000000000..52508cab0 --- /dev/null +++ b/docs/version-specific/supported-software/g/gnuplot.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# gnuplot + +Portable interactive, function plotting utility + +*homepage*: + +version | toolchain +--------|---------- +``5.0.3`` | ``foss/2016a`` +``5.0.3`` | ``intel/2016a`` +``5.0.5`` | ``foss/2016b`` +``5.0.5`` | ``intel/2016b`` +``5.0.6`` | ``intel/2017a`` +``5.2.2`` | ``foss/2017b`` +``5.2.2`` | ``foss/2018a`` +``5.2.2`` | ``intel/2017b`` +``5.2.2`` | ``intel/2018a`` +``5.2.5`` | ``foss/2018b`` +``5.2.6`` | ``GCCcore/8.2.0`` +``5.2.6`` | ``foss/2018b`` +``5.2.6`` | ``fosscuda/2018b`` +``5.2.8`` | ``GCCcore/8.3.0`` +``5.2.8`` | ``GCCcore/9.3.0`` +``5.4.1`` | ``GCCcore/10.2.0`` +``5.4.2`` | ``GCCcore/10.3.0`` +``5.4.2`` | ``GCCcore/11.2.0`` +``5.4.4`` | ``GCCcore/11.3.0`` +``5.4.6`` | ``GCCcore/12.2.0`` +``5.4.8`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/goalign.md b/docs/version-specific/supported-software/g/goalign.md new file mode 100644 index 000000000..ee1a6ab78 --- /dev/null +++ b/docs/version-specific/supported-software/g/goalign.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# goalign + +Goalign is a set of command line tools to manipulate multiple alignments. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gobff.md b/docs/version-specific/supported-software/g/gobff.md new file mode 100644 index 000000000..23afd6f51 --- /dev/null +++ b/docs/version-specific/supported-software/g/gobff.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# gobff + +GCC and GFortran based compiler toolchain with OpenMPI, BLIS, libFLAME, ScaLAPACK and FFTW. + +*homepage*: <(none)> + +version | versionsuffix | toolchain +--------|---------------|---------- +``2020.06`` | ``-amd`` | ``system`` +``2020.11`` | | ``system`` +``2020b`` | | ``system`` +``2021a`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/goblf.md b/docs/version-specific/supported-software/g/goblf.md new file mode 100644 index 000000000..2d686f982 --- /dev/null +++ b/docs/version-specific/supported-software/g/goblf.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# goblf + +GNU Compiler Collection (GCC) based compiler toolchain, including OpenMPI for MPI support, BLIS (BLAS support), LAPACK, FFTW and ScaLAPACK. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``2018b`` | ``system`` +``2020b`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gofasta.md b/docs/version-specific/supported-software/g/gofasta.md new file mode 100644 index 000000000..ad59645e8 --- /dev/null +++ b/docs/version-specific/supported-software/g/gofasta.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# gofasta + +Some functions for dealing with alignments, developed to handle SARS-CoV-2 data as part of the COG-UK project. + +*homepage*: + +version | toolchain +--------|---------- +``0.0.5`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/golf.md b/docs/version-specific/supported-software/g/golf.md new file mode 100644 index 000000000..3af05d2e3 --- /dev/null +++ b/docs/version-specific/supported-software/g/golf.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# golf + +GNU Compiler Collection (GCC) based compiler toolchain, including OpenBLAS (BLAS and LAPACK support) and FFTW. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``2018a`` | ``system`` +``2020a`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gomkl.md b/docs/version-specific/supported-software/g/gomkl.md new file mode 100644 index 000000000..44ad3e36c --- /dev/null +++ b/docs/version-specific/supported-software/g/gomkl.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# gomkl + +GNU Compiler Collection (GCC) based compiler toolchain with OpenMPI and MKL + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``2018b`` | ``system`` +``2019a`` | ``system`` +``2020a`` | ``system`` +``2020b`` | ``system`` +``2021a`` | ``system`` +``2021b`` | ``system`` +``2022a`` | ``system`` +``2023a`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gompi.md b/docs/version-specific/supported-software/g/gompi.md new file mode 100644 index 000000000..61cac0fa2 --- /dev/null +++ b/docs/version-specific/supported-software/g/gompi.md @@ -0,0 +1,42 @@ +--- +search: + boost: 0.5 +--- +# gompi + +GNU Compiler Collection (GCC) based compiler toolchain, including OpenMPI for MPI support. + +*homepage*: <(none)> + +version | versionsuffix | toolchain +--------|---------------|---------- +``2016.04`` | | ``system`` +``2016.06`` | | ``system`` +``2016.07`` | | ``system`` +``2016.09`` | | ``system`` +``2016a`` | | ``system`` +``2016b`` | | ``system`` +``2017a`` | | ``system`` +``2017b`` | | ``system`` +``2018.08`` | | ``system`` +``2018a`` | | ``system`` +``2018b`` | | ``system`` +``2019a`` | | ``system`` +``2019b`` | | ``system`` +``2020a`` | | ``system`` +``2020b`` | | ``system`` +``2021a`` | | ``system`` +``2021b`` | | ``system`` +``2022.05`` | | ``system`` +``2022.10`` | | ``system`` +``2022a`` | | ``system`` +``2022b`` | | ``system`` +``2023.09`` | | ``system`` +``2023a`` | | ``system`` +``2023b`` | | ``system`` +``2024.05`` | | ``system`` +``system`` | ``-2.29`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gompic.md b/docs/version-specific/supported-software/g/gompic.md new file mode 100644 index 000000000..c76dda251 --- /dev/null +++ b/docs/version-specific/supported-software/g/gompic.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# gompic + +GNU Compiler Collection (GCC) based compiler toolchain along with CUDA toolkit, including OpenMPI for MPI support with CUDA features enabled. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``2017b`` | ``system`` +``2018a`` | ``system`` +``2018b`` | ``system`` +``2019a`` | ``system`` +``2019b`` | ``system`` +``2020a`` | ``system`` +``2020b`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/google-java-format.md b/docs/version-specific/supported-software/g/google-java-format.md new file mode 100644 index 000000000..4b10480a6 --- /dev/null +++ b/docs/version-specific/supported-software/g/google-java-format.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# google-java-format + +Reformats Java source code to comply with Google Java Style. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.7`` | ``-Java-1.8`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/googletest.md b/docs/version-specific/supported-software/g/googletest.md new file mode 100644 index 000000000..cbb798ebf --- /dev/null +++ b/docs/version-specific/supported-software/g/googletest.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# googletest + +Google's framework for writing C++ tests on a variety of platforms + +*homepage*: + +version | toolchain +--------|---------- +``1.10.0`` | ``GCCcore/10.2.0`` +``1.10.0`` | ``GCCcore/8.3.0`` +``1.10.0`` | ``GCCcore/9.3.0`` +``1.11.0`` | ``GCCcore/10.3.0`` +``1.11.0`` | ``GCCcore/11.2.0`` +``1.11.0`` | ``GCCcore/11.3.0`` +``1.12.1`` | ``GCCcore/12.2.0`` +``1.13.0`` | ``GCCcore/12.3.0`` +``1.14.0`` | ``GCCcore/13.2.0`` +``1.8.0`` | ``GCCcore/6.3.0`` +``1.8.0`` | ``GCCcore/6.4.0`` +``1.8.0`` | ``foss/2016b`` +``1.8.0`` | ``intel/2016b`` +``1.8.1`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gotree.md b/docs/version-specific/supported-software/g/gotree.md new file mode 100644 index 000000000..bd5fee62d --- /dev/null +++ b/docs/version-specific/supported-software/g/gotree.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# gotree + +GoTree is a set of command line tools to manipulate phylogenetic trees. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gperf.md b/docs/version-specific/supported-software/g/gperf.md new file mode 100644 index 000000000..000319ce2 --- /dev/null +++ b/docs/version-specific/supported-software/g/gperf.md @@ -0,0 +1,36 @@ +--- +search: + boost: 0.5 +--- +# gperf + +GNU gperf is a perfect hash function generator. For a given list of strings, it produces a hash function and hash table, in form of C or C++ code, for looking up a value depending on the input string. The hash function is perfect, which means that the hash table has no collisions, and the hash table lookup needs a single string comparison only. + +*homepage*: + +version | toolchain +--------|---------- +``3.0.4`` | ``GCCcore/4.9.3`` +``3.0.4`` | ``GCCcore/5.4.0`` +``3.0.4`` | ``foss/2016a`` +``3.0.4`` | ``gimkl/2.11.5`` +``3.0.4`` | ``intel/2016a`` +``3.0.4`` | ``intel/2016b`` +``3.0.4`` | ``intel/2017a`` +``3.1`` | ``GCCcore/10.2.0`` +``3.1`` | ``GCCcore/10.3.0`` +``3.1`` | ``GCCcore/11.2.0`` +``3.1`` | ``GCCcore/11.3.0`` +``3.1`` | ``GCCcore/12.2.0`` +``3.1`` | ``GCCcore/12.3.0`` +``3.1`` | ``GCCcore/13.2.0`` +``3.1`` | ``GCCcore/13.3.0`` +``3.1`` | ``GCCcore/6.4.0`` +``3.1`` | ``GCCcore/7.3.0`` +``3.1`` | ``GCCcore/8.2.0`` +``3.1`` | ``GCCcore/8.3.0`` +``3.1`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gperftools.md b/docs/version-specific/supported-software/g/gperftools.md new file mode 100644 index 000000000..a1bda8586 --- /dev/null +++ b/docs/version-specific/supported-software/g/gperftools.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# gperftools + +gperftools is a collection of a high-performance multi-threaded malloc() implementation, plus some pretty nifty performance analysis tools. Includes TCMalloc, heap-checker, heap-profiler and cpu-profiler. + +*homepage*: + +version | toolchain +--------|---------- +``2.10`` | ``GCCcore/11.3.0`` +``2.12`` | ``GCCcore/12.3.0`` +``2.13`` | ``GCCcore/13.2.0`` +``2.14`` | ``GCCcore/12.2.0`` +``2.5`` | ``foss/2016a`` +``2.5`` | ``intel/2016b`` +``2.6.3`` | ``GCCcore/6.4.0`` +``2.6.3`` | ``GCCcore/7.3.0`` +``2.7.90`` | ``GCCcore/8.3.0`` +``2.8`` | ``GCCcore/9.3.0`` +``2.9.1`` | ``GCCcore/10.2.0`` +``2.9.1`` | ``GCCcore/10.3.0`` +``2.9.1`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gpustat.md b/docs/version-specific/supported-software/g/gpustat.md new file mode 100644 index 000000000..89fe8e0e3 --- /dev/null +++ b/docs/version-specific/supported-software/g/gpustat.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# gpustat + +dstat-like utilization monitor for NVIDIA GPUs + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.5.0`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``0.6.0`` | | ``GCCcore/10.3.0`` +``0.6.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``0.6.0`` | | ``gcccuda/2020b`` +``1.0.0b1`` | | ``GCCcore/11.2.0`` +``1.1`` | | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gradunwarp.md b/docs/version-specific/supported-software/g/gradunwarp.md new file mode 100644 index 000000000..1e53a197e --- /dev/null +++ b/docs/version-specific/supported-software/g/gradunwarp.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# gradunwarp + +Gradient Unwarping. This is the Human Connectome Project fork of the no longer maintained original. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.0`` | ``-HCP-Python-2.7.15`` | ``foss/2019a`` +``1.2.0`` | ``-HCP-Python-2.7.15`` | ``foss/2019a`` +``1.2.0`` | ``-HCP-Python-3.7.2`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/graph-tool.md b/docs/version-specific/supported-software/g/graph-tool.md new file mode 100644 index 000000000..6604801d7 --- /dev/null +++ b/docs/version-specific/supported-software/g/graph-tool.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# graph-tool + +Graph-tool is an efficient Python module for manipulation and statistical analysis of graphs (a.k.a. networks). Contrary to most other python modules with similar functionality, the core data structures and algorithms are implemented in C++, making extensive use of template metaprogramming, based heavily on the Boost Graph Library. This confers it a level of performance that is comparable (both in memory usage and computation time) to that of a pure C/C++ library. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.26`` | ``-Python-3.6.3`` | ``foss/2017b`` +``2.27`` | ``-Python-3.6.6`` | ``foss/2018b`` +``2.55`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/graphite2.md b/docs/version-specific/supported-software/g/graphite2.md new file mode 100644 index 000000000..fc4bded4d --- /dev/null +++ b/docs/version-specific/supported-software/g/graphite2.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# graphite2 + +Graphite is a "smart font" system developed specifically to handle the complexities of lesser-known languages of the world. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.14`` | ``GCCcore/10.2.0`` +``1.3.14`` | ``GCCcore/10.3.0`` +``1.3.14`` | ``GCCcore/11.2.0`` +``1.3.14`` | ``GCCcore/11.3.0`` +``1.3.14`` | ``GCCcore/12.2.0`` +``1.3.14`` | ``GCCcore/12.3.0`` +``1.3.14`` | ``GCCcore/13.2.0`` +``1.3.14`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/graphviz-python.md b/docs/version-specific/supported-software/g/graphviz-python.md new file mode 100644 index 000000000..c06399ca9 --- /dev/null +++ b/docs/version-specific/supported-software/g/graphviz-python.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# graphviz-python + +Simple Python interface for Graphviz + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.20.1`` | | ``GCCcore/11.3.0`` +``0.20.1`` | | ``GCCcore/12.3.0`` +``0.5.1`` | ``-Python-2.7.12`` | ``foss/2016b`` +``0.5.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.5.1`` | ``-Python-3.5.2`` | ``intel/2016b`` +``0.8.2`` | ``-Python-3.6.4`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gretl.md b/docs/version-specific/supported-software/g/gretl.md new file mode 100644 index 000000000..c86c7f6ad --- /dev/null +++ b/docs/version-specific/supported-software/g/gretl.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# gretl + +A cross-platform software package for econometric analysis + +*homepage*: + +version | toolchain +--------|---------- +``2020a`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/grib_api.md b/docs/version-specific/supported-software/g/grib_api.md new file mode 100644 index 000000000..790085c70 --- /dev/null +++ b/docs/version-specific/supported-software/g/grib_api.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# grib_api + +The ECMWF GRIB API is an application program interface accessible from C, FORTRAN and Python programs developed for encoding and decoding WMO FM-92 GRIB edition 1 and edition 2 messages. A useful set of command line tools is also provided to give quick access to GRIB messages. + +*homepage*: + +version | toolchain +--------|---------- +``1.16.0`` | ``intel/2016a`` +``1.21.0`` | ``foss/2017a`` +``1.24.0`` | ``foss/2017b`` +``1.24.0`` | ``intel/2017a`` +``1.24.0`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/grid.md b/docs/version-specific/supported-software/g/grid.md new file mode 100644 index 000000000..d8debf3e7 --- /dev/null +++ b/docs/version-specific/supported-software/g/grid.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# grid + +Grid is a free and open-source Python library for numerical integration, interpolation and differentiation of interest for the quantum chemistry community. + +*homepage*: + +version | toolchain +--------|---------- +``20220610`` | ``intel/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/groff.md b/docs/version-specific/supported-software/g/groff.md new file mode 100644 index 000000000..8608c5666 --- /dev/null +++ b/docs/version-specific/supported-software/g/groff.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# groff + +Groff (GNU troff) is a typesetting system that reads plain text mixed with formatting commands and produces formatted output. + +*homepage*: + +version | toolchain +--------|---------- +``1.22.4`` | ``FCC/4.5.0`` +``1.22.4`` | ``GCCcore/10.2.0`` +``1.22.4`` | ``GCCcore/10.3.0`` +``1.22.4`` | ``GCCcore/11.2.0`` +``1.22.4`` | ``GCCcore/11.3.0`` +``1.22.4`` | ``GCCcore/12.1.0`` +``1.22.4`` | ``GCCcore/12.2.0`` +``1.22.4`` | ``GCCcore/12.3.0`` +``1.22.4`` | ``GCCcore/8.3.0`` +``1.22.4`` | ``GCCcore/9.3.0`` +``1.23.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/grpcio.md b/docs/version-specific/supported-software/g/grpcio.md new file mode 100644 index 000000000..8f8837a63 --- /dev/null +++ b/docs/version-specific/supported-software/g/grpcio.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# grpcio + +gRPC is a modern, open source, high-performance remote procedure call (RPC) framework that can run anywhere. gRPC enables client and server applications to communicate transparently, and simplifies the building of connected systems. + +*homepage*: + +version | toolchain +--------|---------- +``1.57.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gsettings-desktop-schemas.md b/docs/version-specific/supported-software/g/gsettings-desktop-schemas.md new file mode 100644 index 000000000..d57f16e1e --- /dev/null +++ b/docs/version-specific/supported-software/g/gsettings-desktop-schemas.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# gsettings-desktop-schemas + +gsettings-desktop-schemas contains a collection of GSettings schemas for settings shared by various components of a desktop. + +*homepage*: + +version | toolchain +--------|---------- +``3.34.0`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gspell.md b/docs/version-specific/supported-software/g/gspell.md new file mode 100644 index 000000000..59a89b5df --- /dev/null +++ b/docs/version-specific/supported-software/g/gspell.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# gspell + +gspell provides a flexible API to add spell-checking to a GTK application. + +*homepage*: + +version | toolchain +--------|---------- +``1.12.2`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gsport.md b/docs/version-specific/supported-software/g/gsport.md new file mode 100644 index 000000000..53375d7eb --- /dev/null +++ b/docs/version-specific/supported-software/g/gsport.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# gsport + +GSPORT command-line tool for accessing GenomeScan Customer Portal + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4.2`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gsutil.md b/docs/version-specific/supported-software/g/gsutil.md new file mode 100644 index 000000000..b3976799f --- /dev/null +++ b/docs/version-specific/supported-software/g/gsutil.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# gsutil + +gsutil is a Python application that lets you access Cloud Storage from the command line. + +*homepage*: + +version | toolchain +--------|---------- +``5.10`` | ``GCCcore/11.2.0`` +``5.29`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gsw.md b/docs/version-specific/supported-software/g/gsw.md new file mode 100644 index 000000000..711544508 --- /dev/null +++ b/docs/version-specific/supported-software/g/gsw.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# gsw + +This Python implementation of the Thermodynamic Equation of Seawater 2010 (TEOS-10) is based primarily on numpy ufunc wrappers of the GSW-C implementation. This library replaces the original python-gsw pure-python implementation.. The primary reasons for this change are that by building on the C implementation we reduce code duplication and we gain an immediate update to the 75-term equation. Additional benefits include a major increase in speed, a reduction in memory usage, and the inclusion of more functions. The penalty is that a C (or MSVC C++ for Windows) compiler is required to build the package from source. + +*homepage*: + +version | toolchain +--------|---------- +``3.6.16`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gubbins.md b/docs/version-specific/supported-software/g/gubbins.md new file mode 100644 index 000000000..7bb810ecb --- /dev/null +++ b/docs/version-specific/supported-software/g/gubbins.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# gubbins + +Gubbins (Genealogies Unbiased By recomBinations In Nucleotide Sequences) is an algorithm that iteratively identifies loci containing elevated densities of base substitutions while concurrently constructing a phylogeny based on the putative point mutations outside of these regions. Simulations demonstrate the algorithm generates highly accurate reconstructions under realistic models of short-term bacterial evolution, and can be run in only a few hours on alignments of hundreds of bacterial genome sequences. + +*homepage*: + +version | toolchain +--------|---------- +``2.4.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/guenomu.md b/docs/version-specific/supported-software/g/guenomu.md new file mode 100644 index 000000000..a85e9d78f --- /dev/null +++ b/docs/version-specific/supported-software/g/guenomu.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# guenomu + +guenomu is a software written in C that estimates the species tree for a given set of gene families. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2019.07.05`` | ``-mpi`` | ``iimpi/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/gzip.md b/docs/version-specific/supported-software/g/gzip.md new file mode 100644 index 000000000..45aff5349 --- /dev/null +++ b/docs/version-specific/supported-software/g/gzip.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# gzip + +gzip (GNU zip) is a popular data compression program as a replacement for compress + +*homepage*: + +version | toolchain +--------|---------- +``1.10`` | ``GCCcore/10.2.0`` +``1.10`` | ``GCCcore/10.3.0`` +``1.10`` | ``GCCcore/11.2.0`` +``1.10`` | ``GCCcore/8.2.0`` +``1.10`` | ``GCCcore/8.3.0`` +``1.10`` | ``GCCcore/9.3.0`` +``1.12`` | ``GCCcore/11.3.0`` +``1.12`` | ``GCCcore/12.2.0`` +``1.12`` | ``GCCcore/12.3.0`` +``1.13`` | ``GCCcore/13.2.0`` +``1.13`` | ``GCCcore/13.3.0`` +``1.8`` | ``GCCcore/5.4.0`` +``1.8`` | ``GCCcore/6.3.0`` +``1.8`` | ``GCCcore/6.4.0`` +``1.9`` | ``GCCcore/7.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/g/index.md b/docs/version-specific/supported-software/g/index.md new file mode 100644 index 000000000..fecca6604 --- /dev/null +++ b/docs/version-specific/supported-software/g/index.md @@ -0,0 +1,250 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (g) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - *g* - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [G-PhoCS](G-PhoCS.md) + * [g2clib](g2clib.md) + * [g2lib](g2lib.md) + * [g2log](g2log.md) + * [Gaia](Gaia.md) + * [GAMESS-US](GAMESS-US.md) + * [gap](gap.md) + * [GapCloser](GapCloser.md) + * [GapFiller](GapFiller.md) + * [gappa](gappa.md) + * [GAPPadder](GAPPadder.md) + * [GARLI](GARLI.md) + * [garnett](garnett.md) + * [GAT](GAT.md) + * [GATB-Core](GATB-Core.md) + * [GATE](GATE.md) + * [GATK](GATK.md) + * [Gaussian](Gaussian.md) + * [gawk](gawk.md) + * [gbasis](gbasis.md) + * [Gblocks](Gblocks.md) + * [GBprocesS](GBprocesS.md) + * [gbs2ploidy](gbs2ploidy.md) + * [gc](gc.md) + * [GC3Pie](GC3Pie.md) + * [GCC](GCC.md) + * [GCCcore](GCCcore.md) + * [gcccuda](gcccuda.md) + * [gcloud](gcloud.md) + * [GConf](GConf.md) + * [gcsfs](gcsfs.md) + * [GCTA](GCTA.md) + * [Gctf](Gctf.md) + * [GD](GD.md) + * [GDAL](GDAL.md) + * [GDB](GDB.md) + * [gdbgui](gdbgui.md) + * [gdbm](gdbm.md) + * [gdc-client](gdc-client.md) + * [GDCHART](GDCHART.md) + * [GDCM](GDCM.md) + * [GDGraph](GDGraph.md) + * [gdist](gdist.md) + * [Gdk-Pixbuf](Gdk-Pixbuf.md) + * [GDRCopy](GDRCopy.md) + * [Gdspy](Gdspy.md) + * [Geant4](Geant4.md) + * [Geant4-data](Geant4-data.md) + * [gearshifft](gearshifft.md) + * [GEGL](GEGL.md) + * [GEM](GEM.md) + * [GEM-library](GEM-library.md) + * [gemelli](gemelli.md) + * [GEMMA](GEMMA.md) + * [gemmi](gemmi.md) + * [gencore_variant_detection](gencore_variant_detection.md) + * [GeneMark-ET](GeneMark-ET.md) + * [GenerativeModels](GenerativeModels.md) + * [gengetopt](gengetopt.md) + * [GenMap](GenMap.md) + * [Genome_Profiler](Genome_Profiler.md) + * [GenomeComb](GenomeComb.md) + * [GenomeMapper](GenomeMapper.md) + * [genomepy](genomepy.md) + * [GenomeTester4](GenomeTester4.md) + * [GenomeThreader](GenomeThreader.md) + * [GenomeTools](GenomeTools.md) + * [GenomeWorks](GenomeWorks.md) + * [GenotypeHarmonizer](GenotypeHarmonizer.md) + * [genozip](genozip.md) + * [gensim](gensim.md) + * [geocube](geocube.md) + * [geopandas](geopandas.md) + * [geopy](geopy.md) + * [georges](georges.md) + * [GEOS](GEOS.md) + * [geosphere](geosphere.md) + * [Gerris](Gerris.md) + * [GETORB](GETORB.md) + * [GetOrganelle](GetOrganelle.md) + * [gettext](gettext.md) + * [gexiv2](gexiv2.md) + * [gfbf](gfbf.md) + * [GFF3-toolkit](GFF3-toolkit.md) + * [GffCompare](GffCompare.md) + * [gffread](gffread.md) + * [gffutils](gffutils.md) + * [gflags](gflags.md) + * [GFOLD](GFOLD.md) + * [gh](gh.md) + * [GHC](GHC.md) + * [Ghostscript](Ghostscript.md) + * [GI-DocGen](GI-DocGen.md) + * [giac](giac.md) + * [Gibbs2](Gibbs2.md) + * [giflib](giflib.md) + * [gifsicle](gifsicle.md) + * [GIMIC](GIMIC.md) + * [gimkl](gimkl.md) + * [GimmeMotifs](GimmeMotifs.md) + * [GIMP](GIMP.md) + * [gimpi](gimpi.md) + * [gimpic](gimpic.md) + * [GIMPS](GIMPS.md) + * [giolf](giolf.md) + * [giolfc](giolfc.md) + * [Giotto-Suite](Giotto-Suite.md) + * [git](git.md) + * [git-annex](git-annex.md) + * [git-extras](git-extras.md) + * [git-lfs](git-lfs.md) + * [GitPython](GitPython.md) + * [Givaro](Givaro.md) + * [Giza](Giza.md) + * [GKeyll](GKeyll.md) + * [GKlib-METIS](GKlib-METIS.md) + * [gkmSVM](gkmSVM.md) + * [GL2PS](GL2PS.md) + * [Glade](Glade.md) + * [glew](glew.md) + * [GLFW](GLFW.md) + * [GLI](GLI.md) + * [GLib](GLib.md) + * [glib-networking](glib-networking.md) + * [glibc](glibc.md) + * [GLibmm](GLibmm.md) + * [GLIMMER](GLIMMER.md) + * [GlimmerHMM](GlimmerHMM.md) + * [GLIMPSE](GLIMPSE.md) + * [GLM](GLM.md) + * [GLM-AED](GLM-AED.md) + * [GlobalArrays](GlobalArrays.md) + * [Globus-CLI](Globus-CLI.md) + * [GlobusConnectPersonal](GlobusConnectPersonal.md) + * [glog](glog.md) + * [GLPK](GLPK.md) + * [glproto](glproto.md) + * [Glucose](Glucose.md) + * [GMAP-GSNAP](GMAP-GSNAP.md) + * [GMP](GMP.md) + * [GMP-ECM](GMP-ECM.md) + * [gmpich](gmpich.md) + * [gmpolf](gmpolf.md) + * [gmpy2](gmpy2.md) + * [gmsh](gmsh.md) + * [GMT](GMT.md) + * [gmvapich2](gmvapich2.md) + * [gmvolf](gmvolf.md) + * [GNU](GNU.md) + * [gnupg-bundle](gnupg-bundle.md) + * [gnuplot](gnuplot.md) + * [GnuTLS](GnuTLS.md) + * [Go](Go.md) + * [goalign](goalign.md) + * [GOATOOLS](GOATOOLS.md) + * [gobff](gobff.md) + * [GObject-Introspection](GObject-Introspection.md) + * [goblf](goblf.md) + * [GOBNILP](GOBNILP.md) + * [Godon](Godon.md) + * [gofasta](gofasta.md) + * [golf](golf.md) + * [gomkl](gomkl.md) + * [gompi](gompi.md) + * [gompic](gompic.md) + * [google-java-format](google-java-format.md) + * [googletest](googletest.md) + * [gotree](gotree.md) + * [GP2C](GP2C.md) + * [GPAW](GPAW.md) + * [GPAW-setups](GPAW-setups.md) + * [gperf](gperf.md) + * [gperftools](gperftools.md) + * [gpustat](gpustat.md) + * [GPy](GPy.md) + * [GPyOpt](GPyOpt.md) + * [GPyTorch](GPyTorch.md) + * [Grace](Grace.md) + * [Gradle](Gradle.md) + * [gradunwarp](gradunwarp.md) + * [graph-tool](graph-tool.md) + * [GraphDB](GraphDB.md) + * [Graphene](Graphene.md) + * [GraphicsMagick](GraphicsMagick.md) + * [graphite2](graphite2.md) + * [GraPhlAn](GraPhlAn.md) + * [GraphMap](GraphMap.md) + * [GraphMap2](GraphMap2.md) + * [Graphviz](Graphviz.md) + * [graphviz-python](graphviz-python.md) + * [GRASP](GRASP.md) + * [GRASP-suite](GRASP-suite.md) + * [GRASS](GRASS.md) + * [Greenlet](Greenlet.md) + * [Grep](Grep.md) + * [gretl](gretl.md) + * [grib_api](grib_api.md) + * [grid](grid.md) + * [GRIDSS](GRIDSS.md) + * [GRIT](GRIT.md) + * [GRNBoost](GRNBoost.md) + * [groff](groff.md) + * [GroIMP](GroIMP.md) + * [GROMACS](GROMACS.md) + * [GromacsWrapper](GromacsWrapper.md) + * [Groovy](Groovy.md) + * [gRPC](gRPC.md) + * [grpcio](grpcio.md) + * [GSD](GSD.md) + * [GSEA](GSEA.md) + * [gsettings-desktop-schemas](gsettings-desktop-schemas.md) + * [GSL](GSL.md) + * [gSOAP](gSOAP.md) + * [gspell](gspell.md) + * [gsport](gsport.md) + * [GST-plugins-bad](GST-plugins-bad.md) + * [GST-plugins-base](GST-plugins-base.md) + * [GStreamer](GStreamer.md) + * [gsutil](gsutil.md) + * [gsw](gsw.md) + * [GTDB-Tk](GTDB-Tk.md) + * [GTK+](GTK+.md) + * [GTK2](GTK2.md) + * [GTK3](GTK3.md) + * [GTK4](GTK4.md) + * [GtkSourceView](GtkSourceView.md) + * [GTOOL](GTOOL.md) + * [GTS](GTS.md) + * [gubbins](gubbins.md) + * [guenomu](guenomu.md) + * [GUIDANCE](GUIDANCE.md) + * [Guile](Guile.md) + * [GULP](GULP.md) + * [Gurobi](Gurobi.md) + * [GUSHR](GUSHR.md) + * [gzip](gzip.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - *g* - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/H5hut.md b/docs/version-specific/supported-software/h/H5hut.md new file mode 100644 index 000000000..d96cd9ce6 --- /dev/null +++ b/docs/version-specific/supported-software/h/H5hut.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# H5hut + +HDF5 Utility Toolkit: High-Performance I/O Library for Particle-based Simulations + +*homepage*: + +version | toolchain +--------|---------- +``1.99.13`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HAL.md b/docs/version-specific/supported-software/h/HAL.md new file mode 100644 index 000000000..450c89ea7 --- /dev/null +++ b/docs/version-specific/supported-software/h/HAL.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# HAL + +HAL is a structure to efficiently store and index multiple genome alignments and ancestral reconstructions. HAL is a graph-based representation which provides several advantages over matrix/block-based formats such as MAF, such as improved scalability and the ability to perform queries with respect to an arbitrary reference or subtree. This package includes the HAL API and several analysis and conversion tools which are described below. HAL files are presently stored in either HDF5 or mmap format, but we note that the tools and most of the API are format-independent, so other databases could be implemented in the future. + +*homepage*: + +version | toolchain +--------|---------- +``2.1`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HAPGEN2.md b/docs/version-specific/supported-software/h/HAPGEN2.md new file mode 100644 index 000000000..680b51124 --- /dev/null +++ b/docs/version-specific/supported-software/h/HAPGEN2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# HAPGEN2 + +'HAPGEN2' simulates case control datasets at SNP markers. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HBase.md b/docs/version-specific/supported-software/h/HBase.md new file mode 100644 index 000000000..454f4fbc9 --- /dev/null +++ b/docs/version-specific/supported-software/h/HBase.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# HBase + +Apache HBase. is the Hadoop database, a distributed, scalable, big data store. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HD-BET.md b/docs/version-specific/supported-software/h/HD-BET.md new file mode 100644 index 000000000..895c2c993 --- /dev/null +++ b/docs/version-specific/supported-software/h/HD-BET.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# HD-BET + +Tool for brain extraction. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20220318`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``20220318`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HDBSCAN.md b/docs/version-specific/supported-software/h/HDBSCAN.md new file mode 100644 index 000000000..e8bd6a2a3 --- /dev/null +++ b/docs/version-specific/supported-software/h/HDBSCAN.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# HDBSCAN + +The hdbscan library is a suite of tools to use unsupervised learning to find clusters, or dense regions, of a dataset. The primary algorithm is HDBSCAN* as proposed by Campello, Moulavi, and Sander. The library provides a high performance implementation of this algorithm, along with tools for analysing the resulting clustering. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8.24`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.8.27`` | | ``foss/2021a`` +``0.8.29`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HDDM.md b/docs/version-specific/supported-software/h/HDDM.md new file mode 100644 index 000000000..8f456b81e --- /dev/null +++ b/docs/version-specific/supported-software/h/HDDM.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# HDDM + +HDDM is a Puthon toolbox for hierarchical Bayesian parameter estimation of the Drift Diffusion Model (via PyMC). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.6.1`` | ``-Python-3.6.6`` | ``intel/2018b`` +``0.7.5`` | ``-Python-2.7.16`` | ``intel/2019b`` +``0.7.5`` | ``-Python-3.7.4`` | ``intel/2019b`` +``0.9.9`` | | ``foss/2021b`` +``0.9.9`` | | ``intel/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HDF-EOS.md b/docs/version-specific/supported-software/h/HDF-EOS.md new file mode 100644 index 000000000..a8ae3217d --- /dev/null +++ b/docs/version-specific/supported-software/h/HDF-EOS.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# HDF-EOS + +HDF-EOS libraries are software libraries built on HDF libraries. It supports three data structures for remote sensing data: Grid, Point and Swath. + +*homepage*: + +version | toolchain +--------|---------- +``2.20`` | ``GCCcore/10.2.0`` +``2.20`` | ``GCCcore/7.3.0`` +``2.20`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HDF-EOS2.md b/docs/version-specific/supported-software/h/HDF-EOS2.md new file mode 100644 index 000000000..7ed70a356 --- /dev/null +++ b/docs/version-specific/supported-software/h/HDF-EOS2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# HDF-EOS2 + +HDF-EOS libraries are software libraries built on HDF libraries. It supports three data structures for remote sensing data: Grid, Point and Swath. + +*homepage*: + +version | toolchain +--------|---------- +``3.0`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HDF-EOS5.md b/docs/version-specific/supported-software/h/HDF-EOS5.md new file mode 100644 index 000000000..64a66d094 --- /dev/null +++ b/docs/version-specific/supported-software/h/HDF-EOS5.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# HDF-EOS5 + +HDF-EOS libraries are software libraries built on HDF libraries. It supports three data structures for remote sensing data: Grid, Point and Swath. + +*homepage*: + +version | toolchain +--------|---------- +``1.16`` | ``foss/2018b`` +``1.16`` | ``gompi/2019b`` +``1.16`` | ``gompi/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HDF.md b/docs/version-specific/supported-software/h/HDF.md new file mode 100644 index 000000000..ac28def39 --- /dev/null +++ b/docs/version-specific/supported-software/h/HDF.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# HDF + +HDF (also known as HDF4) is a library and multi-object file format for storing and managing data between machines. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.2.11`` | | ``intel/2016a`` +``4.2.12`` | | ``intel/2017a`` +``4.2.13`` | | ``GCCcore/6.4.0`` +``4.2.13`` | ``-no-netcdf`` | ``intel/2017a`` +``4.2.14`` | | ``GCCcore/6.4.0`` +``4.2.14`` | | ``GCCcore/7.3.0`` +``4.2.14`` | | ``GCCcore/8.2.0`` +``4.2.14`` | | ``GCCcore/8.3.0`` +``4.2.15`` | | ``GCCcore/10.2.0`` +``4.2.15`` | | ``GCCcore/10.3.0`` +``4.2.15`` | | ``GCCcore/11.2.0`` +``4.2.15`` | | ``GCCcore/11.3.0`` +``4.2.15`` | | ``GCCcore/12.2.0`` +``4.2.15`` | | ``GCCcore/9.3.0`` +``4.2.16-2`` | | ``GCCcore/12.3.0`` +``4.2.16-2`` | | ``GCCcore/13.2.0`` +``4.2.16`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HDF5.md b/docs/version-specific/supported-software/h/HDF5.md new file mode 100644 index 000000000..b8352d0ca --- /dev/null +++ b/docs/version-specific/supported-software/h/HDF5.md @@ -0,0 +1,115 @@ +--- +search: + boost: 0.5 +--- +# HDF5 + +HDF5 is a data model, library, and file format for storing and managing data. It supports an unlimited variety of datatypes, and is designed for flexible and efficient I/O and for high volume and complex data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.10.0-patch1`` | | ``foss/2016b`` +``1.10.0-patch1`` | | ``intel/2016b`` +``1.10.0-patch1`` | | ``intel/2017.01`` +``1.10.0-patch1`` | | ``intel/2017a`` +``1.10.1`` | | ``foss/2017a`` +``1.10.1`` | | ``foss/2017b`` +``1.10.1`` | | ``foss/2018a`` +``1.10.1`` | | ``fosscuda/2017b`` +``1.10.1`` | | ``intel/2017a`` +``1.10.1`` | | ``intel/2017b`` +``1.10.1`` | | ``intel/2018.00`` +``1.10.1`` | | ``intel/2018.01`` +``1.10.1`` | | ``intel/2018a`` +``1.10.1`` | | ``intelcuda/2017b`` +``1.10.1`` | | ``iomkl/2017b`` +``1.10.1`` | | ``iomkl/2018a`` +``1.10.2`` | | ``PGI/18.4-GCC-6.4.0-2.28`` +``1.10.2`` | | ``foss/2018b`` +``1.10.2`` | | ``fosscuda/2018b`` +``1.10.2`` | | ``intel/2018b`` +``1.10.2`` | | ``iomkl/2018b`` +``1.10.5`` | ``-serial`` | ``GCC/8.3.0`` +``1.10.5`` | | ``gompi/2019a`` +``1.10.5`` | | ``gompi/2019b`` +``1.10.5`` | | ``gompic/2019a`` +``1.10.5`` | | ``gompic/2019b`` +``1.10.5`` | | ``iimpi/2019a`` +``1.10.5`` | | ``iimpi/2019b`` +``1.10.5`` | | ``iimpic/2019a`` +``1.10.5`` | | ``iimpic/2019b`` +``1.10.5`` | | ``iompi/2019b`` +``1.10.6`` | | ``gompi/2020a`` +``1.10.6`` | | ``gompic/2020a`` +``1.10.6`` | | ``iimpi/2020a`` +``1.10.6`` | | ``iimpic/2020a`` +``1.10.6`` | | ``iompi/2020a`` +``1.10.7`` | | ``gompi/2020b`` +``1.10.7`` | | ``gompi/2021a`` +``1.10.7`` | | ``gompic/2020b`` +``1.10.7`` | | ``iimpi/2020b`` +``1.10.7`` | | ``iimpi/2021a`` +``1.10.7`` | | ``iimpic/2020b`` +``1.10.7`` | | ``iompi/2021a`` +``1.10.8`` | | ``gompi/2021b`` +``1.10.8`` | | ``gompi/2022a`` +``1.12.0`` | | ``gompi/2020a`` +``1.12.0`` | | ``iimpi/2020a`` +``1.12.1`` | | ``gompi/2021a`` +``1.12.1`` | | ``gompi/2021b`` +``1.12.1`` | | ``iimpi/2021b`` +``1.12.2`` | ``-serial`` | ``GCC/11.3.0`` +``1.12.2`` | ``-serial`` | ``NVHPC/22.7-CUDA-11.7.0`` +``1.12.2`` | | ``gompi/2022a`` +``1.12.2`` | | ``iimpi/2022a`` +``1.12.2`` | | ``nvompi/2022.07`` +``1.13.1`` | ``-serial`` | ``GCC/11.3.0`` +``1.13.1`` | | ``gompi/2022a`` +``1.13.1`` | | ``iimpi/2022a`` +``1.14.0`` | | ``gompi/2022b`` +``1.14.0`` | | ``gompi/2023a`` +``1.14.0`` | | ``iimpi/2022b`` +``1.14.0`` | | ``iimpi/2023a`` +``1.14.3`` | | ``gompi/2023b`` +``1.14.3`` | | ``iimpi/2023b`` +``1.8.10`` | ``-serial`` | ``GCC/4.8.1`` +``1.8.11`` | ``-serial`` | ``GCC/4.8.1`` +``1.8.12`` | | ``foss/2018b`` +``1.8.12`` | | ``intel/2016b`` +``1.8.13`` | | ``foss/2018b`` +``1.8.16`` | ``-serial`` | ``foss/2016a`` +``1.8.16`` | | ``foss/2016a`` +``1.8.16`` | ``-serial`` | ``gimkl/2.11.5`` +``1.8.16`` | | ``intel/2016.02-GCC-4.9`` +``1.8.16`` | ``-serial`` | ``intel/2016a`` +``1.8.16`` | | ``intel/2016a`` +``1.8.16`` | | ``iomkl/2016.07`` +``1.8.16`` | | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``1.8.17`` | ``-serial`` | ``GCC/5.4.0-2.26`` +``1.8.17`` | ``-serial`` | ``foss/2016a`` +``1.8.17`` | | ``foss/2016a`` +``1.8.17`` | | ``foss/2016b`` +``1.8.17`` | | ``intel/2016a`` +``1.8.17`` | ``-serial`` | ``intel/2016b`` +``1.8.17`` | | ``intel/2016b`` +``1.8.18`` | | ``foss/2016b`` +``1.8.18`` | | ``foss/2017a`` +``1.8.18`` | | ``gimkl/2017a`` +``1.8.18`` | | ``intel/2016b`` +``1.8.18`` | | ``intel/2017.01`` +``1.8.18`` | ``-serial`` | ``intel/2017a`` +``1.8.18`` | | ``intel/2017a`` +``1.8.19`` | | ``foss/2017a`` +``1.8.19`` | | ``foss/2017b`` +``1.8.19`` | | ``intel/2017a`` +``1.8.19`` | | ``intel/2017b`` +``1.8.20`` | | ``foss/2018a`` +``1.8.20`` | | ``gmpolf/2017.10`` +``1.8.20`` | | ``intel/2017b`` +``1.8.20`` | | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HDFView.md b/docs/version-specific/supported-software/h/HDFView.md new file mode 100644 index 000000000..8aa39ab3f --- /dev/null +++ b/docs/version-specific/supported-software/h/HDFView.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# HDFView + +HDFView is a visual tool for browsing and editing HDF4 and HDF5 files. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.14`` | ``-Java-1.8.0_152-centos6`` | ``system`` +``2.14`` | ``-Java-1.8.0_152-centos7`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HEALPix.md b/docs/version-specific/supported-software/h/HEALPix.md new file mode 100644 index 000000000..749a29795 --- /dev/null +++ b/docs/version-specific/supported-software/h/HEALPix.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# HEALPix + +Hierarchical Equal Area isoLatitude Pixelation of a sphere. + +*homepage*: + +version | toolchain +--------|---------- +``3.50`` | ``GCCcore/7.3.0`` +``3.50`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HF-Datasets.md b/docs/version-specific/supported-software/h/HF-Datasets.md new file mode 100644 index 000000000..a6a1d0f13 --- /dev/null +++ b/docs/version-specific/supported-software/h/HF-Datasets.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# HF-Datasets + +The largest hub of ready-to-use datasets for ML models with fast, easy-to-use and efficient data manipulation tools. + +*homepage*: + +version | toolchain +--------|---------- +``2.18.0`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HH-suite.md b/docs/version-specific/supported-software/h/HH-suite.md new file mode 100644 index 000000000..6f41450a5 --- /dev/null +++ b/docs/version-specific/supported-software/h/HH-suite.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# HH-suite + +The HH-suite is an open-source software package for sensitive protein sequence searching based on the pairwise alignment of hidden Markov models (HMMs). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0-beta.3`` | | ``intel/2018a`` +``3.2.0`` | | ``foss/2019b`` +``3.2.0`` | | ``fosscuda/2019b`` +``3.3.0`` | | ``foss/2020a`` +``3.3.0`` | | ``gompi/2020b`` +``3.3.0`` | | ``gompi/2021a`` +``3.3.0`` | | ``gompi/2021b`` +``3.3.0`` | | ``gompi/2022a`` +``3.3.0`` | | ``gompi/2023a`` +``3.3.0`` | ``-Python-3.7.4`` | ``gompic/2019b`` +``3.3.0`` | | ``gompic/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HIP.md b/docs/version-specific/supported-software/h/HIP.md new file mode 100644 index 000000000..2f3d273ce --- /dev/null +++ b/docs/version-specific/supported-software/h/HIP.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# HIP + +HIP is a C++ Runtime API and Kernel Language that allows developers to create portable applications for AMD and NVIDIA GPUs from single source code. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.5.0`` | ``-amd`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HIPS.md b/docs/version-specific/supported-software/h/HIPS.md new file mode 100644 index 000000000..a09bb499e --- /dev/null +++ b/docs/version-specific/supported-software/h/HIPS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# HIPS + +HIPS (Hierarchical Iterative Parallel Solver) is a scientific library that provides an efficient parallel iterative solver for very large sparse linear systems. + +*homepage*: + +version | toolchain +--------|---------- +``1.2b-rc5`` | ``foss/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HISAT2.md b/docs/version-specific/supported-software/h/HISAT2.md new file mode 100644 index 000000000..648c78243 --- /dev/null +++ b/docs/version-specific/supported-software/h/HISAT2.md @@ -0,0 +1,32 @@ +--- +search: + boost: 0.5 +--- +# HISAT2 + +HISAT2 is a fast and sensitive alignment program for mapping next-generation sequencing reads (both DNA and RNA) against the general human population (as well as against a single reference genome). + +*homepage*: + +version | toolchain +--------|---------- +``2.0.3-beta`` | ``intel/2016a`` +``2.0.4`` | ``foss/2016b`` +``2.0.5`` | ``intel/2017a`` +``2.1.0`` | ``foss/2017b`` +``2.1.0`` | ``foss/2018b`` +``2.1.0`` | ``intel/2017a`` +``2.1.0`` | ``intel/2017b`` +``2.1.0`` | ``intel/2018a`` +``2.2.0`` | ``foss/2018b`` +``2.2.1`` | ``foss/2019b`` +``2.2.1`` | ``foss/2020a`` +``2.2.1`` | ``gompi/2020b`` +``2.2.1`` | ``gompi/2021a`` +``2.2.1`` | ``gompi/2021b`` +``2.2.1`` | ``gompi/2022a`` +``2.2.1`` | ``gompi/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HLAminer.md b/docs/version-specific/supported-software/h/HLAminer.md new file mode 100644 index 000000000..ff1e5879c --- /dev/null +++ b/docs/version-specific/supported-software/h/HLAminer.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# HLAminer + +HLAminer is a software for HLA predictions from next-generation shotgun (NGS) sequence read data and supports direct read alignment and targeted de novo assembly of sequence reads. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4`` | ``-Perl-5.28.0`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HMMER.md b/docs/version-specific/supported-software/h/HMMER.md new file mode 100644 index 000000000..190454e8d --- /dev/null +++ b/docs/version-specific/supported-software/h/HMMER.md @@ -0,0 +1,42 @@ +--- +search: + boost: 0.5 +--- +# HMMER + +HMMER is used for searching sequence databases for homologs of protein sequences, and for making protein sequence alignments. It implements methods using probabilistic models called profile hidden Markov models (profile HMMs). Compared to BLAST, FASTA, and other sequence alignment and database search tools based on older scoring methodology, HMMER aims to be significantly more accurate and more able to detect remote homologs because of the strength of its underlying mathematical models. In the past, this strength came at significant computational expense, but in the new HMMER3 project, HMMER is now essentially as fast as BLAST. + +*homepage*: + +version | toolchain +--------|---------- +``3.1b2`` | ``GCC/6.4.0-2.28`` +``3.1b2`` | ``foss/2016a`` +``3.1b2`` | ``foss/2016b`` +``3.1b2`` | ``foss/2018a`` +``3.1b2`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` +``3.1b2`` | ``intel/2017a`` +``3.1b2`` | ``intel/2018a`` +``3.2.1`` | ``GCC/8.2.0-2.31.1`` +``3.2.1`` | ``foss/2018b`` +``3.2.1`` | ``gompi/2019b`` +``3.2.1`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``3.2.1`` | ``iimpi/2019b`` +``3.2.1`` | ``intel/2018b`` +``3.3.1`` | ``gompi/2020a`` +``3.3.1`` | ``iimpi/2020a`` +``3.3.2`` | ``gompi/2019b`` +``3.3.2`` | ``gompi/2020a`` +``3.3.2`` | ``gompi/2020b`` +``3.3.2`` | ``gompi/2021a`` +``3.3.2`` | ``gompi/2021b`` +``3.3.2`` | ``gompi/2022a`` +``3.3.2`` | ``gompi/2022b`` +``3.3.2`` | ``gompic/2020b`` +``3.3.2`` | ``iimpi/2020b`` +``3.3.2`` | ``iimpi/2021b`` +``3.4`` | ``gompi/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HMMER2.md b/docs/version-specific/supported-software/h/HMMER2.md new file mode 100644 index 000000000..a0780c236 --- /dev/null +++ b/docs/version-specific/supported-software/h/HMMER2.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# HMMER2 + +HMMER is used for searching sequence databases for sequence homologs, and for making sequence alignments. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.2`` | ``GCC/10.2.0`` +``2.3.2`` | ``GCC/10.3.0`` +``2.3.2`` | ``GCC/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HOME.md b/docs/version-specific/supported-software/h/HOME.md new file mode 100644 index 000000000..6fefd1c6e --- /dev/null +++ b/docs/version-specific/supported-software/h/HOME.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# HOME + +HOME (histogram of methylation) is a python package for differential methylation region (DMR) identification. The method uses histogram of methylation features and the linear Support Vector Machine (SVM) to identify DMRs from whole genome bisulfite sequencing (WGBS) data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.9`` | ``-Python-2.7.13`` | ``foss/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HOMER.md b/docs/version-specific/supported-software/h/HOMER.md new file mode 100644 index 000000000..c41293a03 --- /dev/null +++ b/docs/version-specific/supported-software/h/HOMER.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# HOMER + +HOMER (Hypergeometric Optimization of Motif EnRichment) is a suite of tools for Motif Discovery and next-gen sequencing analysis. It is a collection of command line programs for unix-style operating systems written in Perl and C++. HOMER was primarily written as a de novo motif discovery algorithm and is well suited for finding 8-20 bp motifs in large scale genomics data. HOMER contains many useful tools for analyzing ChIP-Seq, GRO-Seq, RNA-Seq, DNase-Seq, Hi-C and numerous other types of functional genomics sequencing data sets. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.11`` | ``-R-4.3.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HOOMD-blue.md b/docs/version-specific/supported-software/h/HOOMD-blue.md new file mode 100644 index 000000000..e29fb4c2e --- /dev/null +++ b/docs/version-specific/supported-software/h/HOOMD-blue.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# HOOMD-blue + +HOOMD-blue is a general-purpose particle simulation toolkit, implementing molecular dynamics and hard particle Monte Carlo optimized for fast execution on both GPUs and CPUs. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.0.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``4.0.1`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HPCC.md b/docs/version-specific/supported-software/h/HPCC.md new file mode 100644 index 000000000..30bb6fa88 --- /dev/null +++ b/docs/version-specific/supported-software/h/HPCC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# HPCC + +HPC Challenge is a benchmark suite that measures a range memory access patterns. The HPC Challenge benchmark consists of basically 7 tests: HPL, DGEMM, STREAM, PTRANS, RandomAccess, FFT, Communication bandwidth and latency + +*homepage*: + +version | toolchain +--------|---------- +``1.5.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HPCG.md b/docs/version-specific/supported-software/h/HPCG.md new file mode 100644 index 000000000..2e262aeb8 --- /dev/null +++ b/docs/version-specific/supported-software/h/HPCG.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# HPCG + +The HPCG Benchmark project is an effort to create a more relevant metric for ranking HPC systems than the High Performance LINPACK (HPL) benchmark, that is currently used by the TOP500 benchmark. + +*homepage*: + +version | toolchain +--------|---------- +``3.0`` | ``foss/2016b`` +``3.0`` | ``foss/2018b`` +``3.0`` | ``intel/2018b`` +``3.1`` | ``foss/2018b`` +``3.1`` | ``foss/2021a`` +``3.1`` | ``foss/2021b`` +``3.1`` | ``foss/2022a`` +``3.1`` | ``foss/2022b`` +``3.1`` | ``foss/2023a`` +``3.1`` | ``intel/2018b`` +``3.1`` | ``intel/2021a`` +``3.1`` | ``intel/2021b`` +``3.1`` | ``intel/2022a`` +``3.1`` | ``intel/2022b`` +``3.1`` | ``intel/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HPCX.md b/docs/version-specific/supported-software/h/HPCX.md new file mode 100644 index 000000000..589a59fdc --- /dev/null +++ b/docs/version-specific/supported-software/h/HPCX.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# HPCX + +The Mellanox HPC-X Toolkit is a comprehensive MPI and SHMEM/PGAS software suite for high performance computing environments + +*homepage*: + +version | toolchain +--------|---------- +``2.3.0`` | ``GCC/8.2.0-2.31.1`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HPDBSCAN.md b/docs/version-specific/supported-software/h/HPDBSCAN.md new file mode 100644 index 000000000..660531e88 --- /dev/null +++ b/docs/version-specific/supported-software/h/HPDBSCAN.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# HPDBSCAN + +Highly parallel density based spatial clustering for application with noise + +*homepage*: + +version | toolchain +--------|---------- +``20171110`` | ``foss/2017b`` +``20210826`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HPL.md b/docs/version-specific/supported-software/h/HPL.md new file mode 100644 index 000000000..68dd2c0a7 --- /dev/null +++ b/docs/version-specific/supported-software/h/HPL.md @@ -0,0 +1,136 @@ +--- +search: + boost: 0.5 +--- +# HPL + +HPL is a software package that solves a (random) dense linear system in double precision (64 bits) arithmetic on distributed-memory computers. It can thus be regarded as a portable as well as freely available implementation of the High Performance Computing Linpack Benchmark. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.15`` | ``-CUDA-11.7.0`` | ``intel/2022a`` +``2.1`` | | ``foss/2016.04`` +``2.1`` | | ``foss/2016.06`` +``2.1`` | | ``foss/2016a`` +``2.1`` | | ``foss/2016b`` +``2.1`` | | ``gimkl/2.11.5`` +``2.1`` | | ``gmpolf/2016a`` +``2.1`` | | ``gmvolf/1.7.20`` +``2.1`` | | ``gmvolf/2016a`` +``2.1`` | | ``intel/2016.00`` +``2.1`` | | ``intel/2016.01`` +``2.1`` | | ``intel/2016.02-GCC-4.9`` +``2.1`` | | ``intel/2016.02-GCC-5.3`` +``2.1`` | | ``intel/2016.03-GCC-4.9`` +``2.1`` | | ``intel/2016.03-GCC-5.3`` +``2.1`` | | ``intel/2016.03-GCC-5.4`` +``2.1`` | | ``intel/2016a`` +``2.1`` | | ``intel/2016b`` +``2.1`` | | ``iomkl/2016.07`` +``2.1`` | | ``pomkl/2016.03`` +``2.1`` | | ``pomkl/2016.04`` +``2.1`` | | ``pomkl/2016.09`` +``2.2`` | | ``foss/2016.07`` +``2.2`` | | ``foss/2016.09`` +``2.2`` | | ``foss/2017a`` +``2.2`` | | ``foss/2017b`` +``2.2`` | | ``foss/2018.08`` +``2.2`` | | ``foss/2018a`` +``2.2`` | | ``foss/2018b`` +``2.2`` | | ``fosscuda/2017b`` +``2.2`` | | ``fosscuda/2018a`` +``2.2`` | | ``fosscuda/2018b`` +``2.2`` | | ``gimkl/2018b`` +``2.2`` | | ``giolf/2017b`` +``2.2`` | | ``giolf/2018a`` +``2.2`` | | ``giolfc/2017b`` +``2.2`` | | ``gmpolf/2017.10`` +``2.2`` | | ``goblf/2018b`` +``2.2`` | | ``gomkl/2018b`` +``2.2`` | | ``intel/2017.00`` +``2.2`` | | ``intel/2017.01`` +``2.2`` | | ``intel/2017.02`` +``2.2`` | | ``intel/2017.09`` +``2.2`` | | ``intel/2017a`` +``2.2`` | | ``intel/2017b`` +``2.2`` | | ``intel/2018.00`` +``2.2`` | | ``intel/2018.01`` +``2.2`` | | ``intel/2018.02`` +``2.2`` | | ``intel/2018.04`` +``2.2`` | | ``intel/2018a`` +``2.2`` | | ``intel/2018b`` +``2.2`` | | ``intel/2019.00`` +``2.2`` | | ``intel/2019.01`` +``2.2`` | | ``intelcuda/2016.10`` +``2.2`` | | ``intelcuda/2017b`` +``2.2`` | | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``2.2`` | | ``iomkl/2016.09-GCC-5.4.0-2.26`` +``2.2`` | | ``iomkl/2017.01`` +``2.2`` | | ``iomkl/2017a`` +``2.2`` | | ``iomkl/2017b`` +``2.2`` | | ``iomkl/2018.02`` +``2.2`` | | ``iomkl/2018a`` +``2.2`` | | ``iomkl/2018b`` +``2.2`` | | ``pomkl/2016.09`` +``2.3`` | | ``CrayCCE/19.06`` +``2.3`` | | ``CrayGNU/19.06`` +``2.3`` | | ``CrayIntel/19.06`` +``2.3`` | | ``Fujitsu/21.05`` +``2.3`` | | ``foss/2019a`` +``2.3`` | | ``foss/2019b`` +``2.3`` | | ``foss/2020a`` +``2.3`` | | ``foss/2020b`` +``2.3`` | | ``foss/2021a`` +``2.3`` | | ``foss/2021b`` +``2.3`` | | ``foss/2022.05`` +``2.3`` | | ``foss/2022.10`` +``2.3`` | | ``foss/2022a`` +``2.3`` | | ``foss/2022b`` +``2.3`` | | ``foss/2023.09`` +``2.3`` | | ``foss/2023a`` +``2.3`` | | ``foss/2023b`` +``2.3`` | | ``foss/2024.05`` +``2.3`` | | ``fosscuda/2019b`` +``2.3`` | | ``fosscuda/2020a`` +``2.3`` | | ``gobff/2020.06-amd`` +``2.3`` | | ``gobff/2020.11`` +``2.3`` | | ``gobff/2020b`` +``2.3`` | | ``gobff/2021a`` +``2.3`` | | ``goblf/2020b`` +``2.3`` | | ``gomkl/2019a`` +``2.3`` | | ``gomkl/2020b`` +``2.3`` | | ``gomkl/2021a`` +``2.3`` | | ``gomkl/2022a`` +``2.3`` | | ``iibff/2020b`` +``2.3`` | | ``intel/2019.02`` +``2.3`` | | ``intel/2019.03`` +``2.3`` | | ``intel/2019a`` +``2.3`` | | ``intel/2019b`` +``2.3`` | | ``intel/2020.00`` +``2.3`` | | ``intel/2020.06-impi-18.5`` +``2.3`` | | ``intel/2020.12`` +``2.3`` | | ``intel/2020a`` +``2.3`` | | ``intel/2020b`` +``2.3`` | | ``intel/2021a`` +``2.3`` | | ``intel/2021b`` +``2.3`` | | ``intel/2022.00`` +``2.3`` | | ``intel/2022.09`` +``2.3`` | | ``intel/2022.11`` +``2.3`` | | ``intel/2022.12`` +``2.3`` | | ``intel/2022a`` +``2.3`` | | ``intel/2022b`` +``2.3`` | | ``intel/2023.03`` +``2.3`` | | ``intel/2023.07`` +``2.3`` | | ``intel/2023a`` +``2.3`` | | ``intel/2023b`` +``2.3`` | | ``intelcuda/2019b`` +``2.3`` | | ``intelcuda/2020a`` +``2.3`` | | ``iomkl/2019.01`` +``2.3`` | | ``iomkl/2021a`` +``2.3`` | | ``iomkl/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HTSeq.md b/docs/version-specific/supported-software/h/HTSeq.md new file mode 100644 index 000000000..3897da2e2 --- /dev/null +++ b/docs/version-specific/supported-software/h/HTSeq.md @@ -0,0 +1,35 @@ +--- +search: + boost: 0.5 +--- +# HTSeq + +A framework to process and analyze data from high-throughput sequencing (HTS) assays + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.0`` | ``-Python-2.7.14`` | ``foss/2018a`` +``0.11.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``0.11.0`` | ``-Python-2.7.15`` | ``intel/2018b`` +``0.11.2`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.11.2`` | ``-Python-3.7.2`` | ``foss/2019a`` +``0.11.2`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.11.3`` | | ``foss/2020b`` +``0.11.3`` | | ``foss/2021b`` +``0.6.1p1`` | ``-Python-2.7.11`` | ``foss/2016a`` +``0.6.1p1`` | ``-Python-2.7.12`` | ``foss/2016b`` +``0.6.1p1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.9.1`` | ``-Python-2.7.12`` | ``foss/2016b`` +``0.9.1`` | ``-Python-2.7.14`` | ``foss/2017b`` +``0.9.1`` | ``-Python-3.6.3`` | ``foss/2017b`` +``0.9.1`` | ``-Python-2.7.13`` | ``intel/2017a`` +``0.9.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.9.1`` | ``-Python-3.6.3`` | ``intel/2017b`` +``0.9.1`` | ``-Python-2.7.14`` | ``intel/2018a`` +``2.0.2`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HTSlib.md b/docs/version-specific/supported-software/h/HTSlib.md new file mode 100644 index 000000000..b1dbd8369 --- /dev/null +++ b/docs/version-specific/supported-software/h/HTSlib.md @@ -0,0 +1,54 @@ +--- +search: + boost: 0.5 +--- +# HTSlib + +A C library for reading/writing high-throughput sequencing data. This package includes the utilities bgzip and tabix + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.10.2`` | | ``GCC/8.3.0`` +``1.10.2`` | | ``GCC/9.3.0`` +``1.10.2`` | | ``iccifort/2019.5.281`` +``1.11`` | | ``GCC/10.2.0`` +``1.11`` | | ``iccifort/2020.4.304`` +``1.12`` | | ``GCC/10.2.0`` +``1.12`` | | ``GCC/10.3.0`` +``1.12`` | | ``GCC/9.3.0`` +``1.14`` | | ``GCC/11.2.0`` +``1.15.1`` | | ``GCC/11.3.0`` +``1.17`` | | ``GCC/12.2.0`` +``1.18`` | | ``GCC/12.3.0`` +``1.19.1`` | | ``GCC/13.2.0`` +``1.2.1`` | | ``foss/2016b`` +``1.3`` | | ``foss/2016a`` +``1.3`` | | ``intel/2016a`` +``1.3.1`` | | ``foss/2016a`` +``1.3.1`` | | ``foss/2016b`` +``1.3.1`` | | ``intel/2016b`` +``1.3.2`` | | ``intel/2016b`` +``1.4`` | | ``foss/2016b`` +``1.4`` | | ``intel/2016b`` +``1.4.1`` | | ``foss/2016a`` +``1.4.1`` | | ``intel/2017a`` +``1.6`` | | ``foss/2016b`` +``1.6`` | | ``foss/2017b`` +``1.6`` | | ``intel/2017b`` +``1.7`` | | ``intel/2018a`` +``1.8`` | | ``GCC/6.4.0-2.28`` +``1.8`` | | ``foss/2018a`` +``1.8`` | | ``intel/2018a`` +``1.9`` | | ``GCC/6.4.0-2.28`` +``1.9`` | | ``GCC/8.2.0-2.31.1`` +``1.9`` | | ``foss/2018b`` +``1.9`` | | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` +``1.9`` | | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``1.9`` | | ``intel/2018b`` +``20160107`` | ``-PacBio`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HTSplotter.md b/docs/version-specific/supported-software/h/HTSplotter.md new file mode 100644 index 000000000..399fe2d42 --- /dev/null +++ b/docs/version-specific/supported-software/h/HTSplotter.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# HTSplotter + +HTSplotter allows an end-to-end data processing and analysis of chemical and genetic in vitro perturbation screens. + +*homepage*: + +version | toolchain +--------|---------- +``0.15`` | ``foss/2022a`` +``2.11`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/Hadoop.md b/docs/version-specific/supported-software/h/Hadoop.md new file mode 100644 index 000000000..6bee59b63 --- /dev/null +++ b/docs/version-specific/supported-software/h/Hadoop.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# Hadoop + +Hadoop MapReduce by Cloudera + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.10.0`` | ``-native-Java-1.8`` | ``GCCcore/10.2.0`` +``2.10.0`` | ``-native`` | ``GCCcore/8.3.0`` +``2.4.0`` | ``-seagate-722af1-native`` | ``system`` +``2.5.0-cdh5.3.1`` | ``-native`` | ``system`` +``2.6.0-cdh5.12.0`` | ``-native`` | ``system`` +``2.6.0-cdh5.4.5`` | ``-native`` | ``system`` +``2.6.0-cdh5.7.0`` | ``-native`` | ``system`` +``2.6.0-cdh5.8.0`` | ``-native`` | ``system`` +``2.9.2`` | ``-native`` | ``GCCcore/7.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HarfBuzz.md b/docs/version-specific/supported-software/h/HarfBuzz.md new file mode 100644 index 000000000..5ab196eaa --- /dev/null +++ b/docs/version-specific/supported-software/h/HarfBuzz.md @@ -0,0 +1,41 @@ +--- +search: + boost: 0.5 +--- +# HarfBuzz + +HarfBuzz is an OpenType text shaping engine. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.3`` | ``foss/2016a`` +``1.1.3`` | ``intel/2016a`` +``1.2.7`` | ``foss/2016a`` +``1.2.7`` | ``intel/2016a`` +``1.3.1`` | ``foss/2016b`` +``1.3.1`` | ``intel/2016b`` +``1.3.1`` | ``intel/2017a`` +``1.5.1`` | ``intel/2017a`` +``1.7.1`` | ``foss/2017b`` +``1.7.1`` | ``intel/2017b`` +``1.7.5`` | ``foss/2018a`` +``1.7.5`` | ``intel/2018a`` +``1.9.0`` | ``fosscuda/2018b`` +``2.2.0`` | ``foss/2018b`` +``2.2.0`` | ``fosscuda/2018b`` +``2.4.0`` | ``GCCcore/8.2.0`` +``2.6.4`` | ``GCCcore/8.3.0`` +``2.6.4`` | ``GCCcore/9.3.0`` +``2.6.7`` | ``GCCcore/10.2.0`` +``2.8.1`` | ``GCCcore/10.3.0`` +``2.8.2`` | ``GCCcore/11.2.0`` +``4.2.1`` | ``GCCcore/11.3.0`` +``5.3.1`` | ``GCCcore/12.2.0`` +``5.3.1`` | ``GCCcore/12.3.0`` +``8.2.2`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/Harminv.md b/docs/version-specific/supported-software/h/Harminv.md new file mode 100644 index 000000000..4bffe27fa --- /dev/null +++ b/docs/version-specific/supported-software/h/Harminv.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# Harminv + +Harminv is a free program (and accompanying library) to solve the problem of harmonic inversion - given a discrete-time, finite-length signal that consists of a sum of finitely-many sinusoids (possibly exponentially decaying) in a given bandwidth, it determines the frequencies, decay constants, amplitudes, and phases of those sinusoids. + +*homepage*: + +version | toolchain +--------|---------- +``1.4`` | ``foss/2016a`` +``1.4.1`` | ``foss/2017b`` +``1.4.1`` | ``foss/2018a`` +``1.4.1`` | ``intel/2018a`` +``1.4.1`` | ``intel/2020a`` +``1.4.2`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HeFFTe.md b/docs/version-specific/supported-software/h/HeFFTe.md new file mode 100644 index 000000000..53472cf16 --- /dev/null +++ b/docs/version-specific/supported-software/h/HeFFTe.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# HeFFTe + +Highly Efficient FFT for Exascale (HeFFTe) library + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``foss/2020a`` +``2.4.0`` | ``foss/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/Health-GPS.md b/docs/version-specific/supported-software/h/Health-GPS.md new file mode 100644 index 000000000..bc26adb35 --- /dev/null +++ b/docs/version-specific/supported-software/h/Health-GPS.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Health-GPS + +Health-GPS microsimulation is part of the STOP project, and support researchers and policy makers in the analysis of the health and economic impacts of alternative measures to tackle chronic diseases and obesity in children. The model reproduces the characteristics of a population and simulates key individual event histories associated with key components of relevant behaviours, such as physical activity, and diseases such as diabetes or cancer. To run the test-jobs with HealthGPS.Tests the data-directory, found in your installation folder, must be in the current path. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.3.0`` | ``GCCcore/11.3.0`` +``1.2.2.0`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/Hello.md b/docs/version-specific/supported-software/h/Hello.md new file mode 100644 index 000000000..d249f38e3 --- /dev/null +++ b/docs/version-specific/supported-software/h/Hello.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Hello + +The GNU Hello program produces a familiar, friendly greeting. Yes, this is another implementation of the classic program that prints "Hello, world!" when you run it. However, unlike the minimal version often seen, GNU Hello processes its argument list to modify its behavior, supports greetings in many languages, and so on. + +*homepage*: + +version | toolchain +--------|---------- +``2.10`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HepMC.md b/docs/version-specific/supported-software/h/HepMC.md new file mode 100644 index 000000000..ae6454c51 --- /dev/null +++ b/docs/version-specific/supported-software/h/HepMC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# HepMC + +HepMC is a standard for storing Monte Carlo event data. + +*homepage*: + +version | toolchain +--------|---------- +``2.06.11`` | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HepMC3.md b/docs/version-specific/supported-software/h/HepMC3.md new file mode 100644 index 000000000..287ecd8bf --- /dev/null +++ b/docs/version-specific/supported-software/h/HepMC3.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# HepMC3 + +HepMC is a standard for storing Monte Carlo event data. + +*homepage*: + +version | toolchain +--------|---------- +``3.2.5`` | ``GCC/11.3.0`` +``3.2.6`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HiC-Pro.md b/docs/version-specific/supported-software/h/HiC-Pro.md new file mode 100644 index 000000000..4e18690be --- /dev/null +++ b/docs/version-specific/supported-software/h/HiC-Pro.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# HiC-Pro + +HiC-Pro was designed to process Hi-C data, from raw fastq files (paired-end Illumina data) to the normalized contact maps. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.9.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``3.1.0`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HiCExplorer.md b/docs/version-specific/supported-software/h/HiCExplorer.md new file mode 100644 index 000000000..541e826a5 --- /dev/null +++ b/docs/version-specific/supported-software/h/HiCExplorer.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# HiCExplorer + +HiCexplorer addresses the common tasks of Hi-C analysis from processing to visualization. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.1`` | ``-Python-3.6.4`` | ``foss/2018a`` +``3.7.2`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HiCMatrix.md b/docs/version-specific/supported-software/h/HiCMatrix.md new file mode 100644 index 000000000..492e0f9b3 --- /dev/null +++ b/docs/version-specific/supported-software/h/HiCMatrix.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# HiCMatrix + +This library implements the central class of HiCExplorer to manage Hi-C interaction matrices. + +*homepage*: + +version | toolchain +--------|---------- +``17`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HiGHS.md b/docs/version-specific/supported-software/h/HiGHS.md new file mode 100644 index 000000000..bccfbceee --- /dev/null +++ b/docs/version-specific/supported-software/h/HiGHS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# HiGHS + +Open source serial and parallel solvers for large-scale sparse linear programming (LP), mixed-integer programming (MIP), and quadratic programming (QP) models. + +*homepage*: + +version | toolchain +--------|---------- +``1.7.0`` | ``gfbf/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HighFive.md b/docs/version-specific/supported-software/h/HighFive.md new file mode 100644 index 000000000..74b942015 --- /dev/null +++ b/docs/version-specific/supported-software/h/HighFive.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# HighFive + +HighFive is a modern header-only C++11 friendly interface for libhdf5. + +*homepage*: + +version | toolchain +--------|---------- +``2.6.2`` | ``gompi/2021a`` +``2.6.2`` | ``gompi/2022a`` +``2.7.1`` | ``gompi/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/Highway.md b/docs/version-specific/supported-software/h/Highway.md new file mode 100644 index 000000000..32426bf3c --- /dev/null +++ b/docs/version-specific/supported-software/h/Highway.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# Highway + +Highway is a C++ library for SIMD (Single Instruction, Multiple Data), i.e. applying the same operation to 'lanes'. + +*homepage*: + +version | toolchain +--------|---------- +``0.12.2`` | ``GCCcore/10.2.0`` +``0.12.2`` | ``GCCcore/10.3.0`` +``1.0.3`` | ``GCCcore/11.3.0`` +``1.0.3`` | ``GCCcore/12.2.0`` +``1.0.4`` | ``GCCcore/11.3.0`` +``1.0.4`` | ``GCCcore/12.3.0`` +``1.0.7`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/Horovod.md b/docs/version-specific/supported-software/h/Horovod.md new file mode 100644 index 000000000..7946451b0 --- /dev/null +++ b/docs/version-specific/supported-software/h/Horovod.md @@ -0,0 +1,50 @@ +--- +search: + boost: 0.5 +--- +# Horovod + +Horovod is a distributed training framework for TensorFlow. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.18.1`` | ``-Python-3.7.2`` | ``foss/2019a`` +``0.18.2`` | ``-TensorFlow-1.15.0-Python-3.7.4`` | ``fosscuda/2019b`` +``0.18.2`` | ``-TensorFlow-1.15.2-Python-3.7.4`` | ``fosscuda/2019b`` +``0.18.2`` | ``-TensorFlow-2.0.0-Python-3.7.4`` | ``fosscuda/2019b`` +``0.19.1`` | ``-TensorFlow-2.1.0-Python-3.7.4`` | ``fosscuda/2019b`` +``0.19.5`` | ``-TensorFlow-2.2.0-Python-3.7.4`` | ``fosscuda/2019b`` +``0.20.3`` | ``-TensorFlow-2.3.1-Python-3.7.4`` | ``fosscuda/2019b`` +``0.21.1`` | ``-PyTorch-1.7.1-Python-3.7.4`` | ``fosscuda/2019b`` +``0.21.1`` | ``-TensorFlow-2.4.1-Python-3.7.4`` | ``fosscuda/2019b`` +``0.21.1`` | ``-TensorFlow-2.4.1`` | ``fosscuda/2020b`` +``0.21.3`` | ``-TensorFlow-2.3.1-Python-3.8.2`` | ``foss/2020a`` +``0.21.3`` | ``-TensorFlow-2.3.1-Python-3.8.2`` | ``fosscuda/2020a`` +``0.21.3`` | ``-PyTorch-1.7.1`` | ``fosscuda/2020b`` +``0.22.0`` | ``-PyTorch-1.8.1`` | ``fosscuda/2020b`` +``0.22.1`` | ``-CUDA-11.3.1-TensorFlow-2.5.3`` | ``foss/2021a`` +``0.22.1`` | ``-CUDA-11.3.1-TensorFlow-2.6.0`` | ``foss/2021a`` +``0.22.1`` | ``-TensorFlow-2.5.0-Python-3.7.4`` | ``fosscuda/2019b`` +``0.22.1`` | ``-TensorFlow-2.5.0`` | ``fosscuda/2020b`` +``0.23.0`` | ``-CUDA-11.3.1-PyTorch-1.10.0`` | ``foss/2021a`` +``0.23.0`` | ``-TensorFlow-2.5.0`` | ``fosscuda/2020b`` +``0.25.0`` | ``-CUDA-11.3.1-PyTorch-1.10.0`` | ``foss/2021a`` +``0.28.1`` | ``-CUDA-11.3.1-PyTorch-1.11.0`` | ``foss/2021a`` +``0.28.1`` | ``-CUDA-11.3.1-PyTorch-1.12.1`` | ``foss/2021a`` +``0.28.1`` | ``-CUDA-11.4.1-TensorFlow-2.7.1`` | ``foss/2021b`` +``0.28.1`` | ``-CUDA-11.4.1-TensorFlow-2.8.4`` | ``foss/2021b`` +``0.28.1`` | ``-CUDA-11.5.2-PyTorch-1.12.1`` | ``foss/2021b`` +``0.28.1`` | ``-CUDA-11.7.0-PyTorch-1.12.0`` | ``foss/2022a`` +``0.28.1`` | ``-CUDA-11.7.0-PyTorch-1.12.1`` | ``foss/2022a`` +``0.28.1`` | ``-CUDA-11.7.0-PyTorch-1.13.1`` | ``foss/2022a`` +``0.28.1`` | ``-CUDA-11.7.0-TensorFlow-2.11.0`` | ``foss/2022a`` +``0.28.1`` | ``-CUDA-11.7.0-TensorFlow-2.9.1`` | ``foss/2022a`` +``0.28.1`` | ``-PyTorch-1.12.0`` | ``foss/2022a`` +``0.28.1`` | ``-PyTorch-1.9.0`` | ``fosscuda/2020b`` +``0.9.10`` | ``-Python-3.6.3`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HyPhy.md b/docs/version-specific/supported-software/h/HyPhy.md new file mode 100644 index 000000000..091910085 --- /dev/null +++ b/docs/version-specific/supported-software/h/HyPhy.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# HyPhy + +HyPhy (Hypothesis Testing using Phylogenies) is an open-source software package for the analysis of genetic sequences (in particular the inference of natural selection) using techniques in phylogenetics, molecular evolution, and machine learning + +*homepage*: + +version | toolchain +--------|---------- +``2.3.13`` | ``foss/2016b`` +``2.5.1`` | ``gompi/2019a`` +``2.5.33`` | ``gompi/2021a`` +``2.5.60`` | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HyPo.md b/docs/version-specific/supported-software/h/HyPo.md new file mode 100644 index 000000000..425540d83 --- /dev/null +++ b/docs/version-specific/supported-software/h/HyPo.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# HyPo + +HyPo: Super Fast & Accurate Polisher for Long Read Genome Assemblies + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.3`` | ``-Python-3.7.4`` | ``GCC/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/Hybpiper.md b/docs/version-specific/supported-software/h/Hybpiper.md new file mode 100644 index 000000000..ddf3b42e5 --- /dev/null +++ b/docs/version-specific/supported-software/h/Hybpiper.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Hybpiper + +HybPiper was designed for targeted sequence capture, in which DNA sequencing libraries are enriched for gene regions of interest, especially for phylogenetics. HybPiper is a suite of Python scripts/modules that wrap and connect bioinformatics tools in order to extract target sequences from high-throughput DNA sequencing reads. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.6`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/Hydra.md b/docs/version-specific/supported-software/h/Hydra.md new file mode 100644 index 000000000..91703b182 --- /dev/null +++ b/docs/version-specific/supported-software/h/Hydra.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Hydra + +Hydra is an open-source Python framework that simplifies the development of research and other complex applications. The key feature is the ability to dynamically create a hierarchical configuration by composition and override it through config files and the command line. The name Hydra comes from its ability to run multiple similar jobs - much like a Hydra with multiple heads. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``GCCcore/10.3.0`` +``1.3.2`` | ``GCCcore/11.3.0`` +``1.3.2`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/HyperQueue.md b/docs/version-specific/supported-software/h/HyperQueue.md new file mode 100644 index 000000000..e88ea93a0 --- /dev/null +++ b/docs/version-specific/supported-software/h/HyperQueue.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# HyperQueue + +HyperQueue lets you build a computation plan consisting of a large amount of tasks and then execute it transparently over a system like SLURM/PBS. It dynamically groups jobs into SLURM/PBS jobs and distributes them to fully utilize allocated nodes. You thus do not have to manually aggregate your tasks into SLURM/PBS jobs. + +*homepage*: + +version | toolchain +--------|---------- +``0.13.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/Hyperopt.md b/docs/version-specific/supported-software/h/Hyperopt.md new file mode 100644 index 000000000..586f9450d --- /dev/null +++ b/docs/version-specific/supported-software/h/Hyperopt.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# Hyperopt + +hyperopt is a Python library for optimizing over awkward search spaces with real-valued, discrete, and conditional dimensions. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.1.1`` | ``-Python-3.6.6`` | ``intel/2018b`` +``0.2.4`` | ``-Python-3.7.4-Java-1.8`` | ``intel/2019b`` +``0.2.5`` | | ``fosscuda/2020b`` +``0.2.7`` | | ``foss/2021a`` +``0.2.7`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/Hypre.md b/docs/version-specific/supported-software/h/Hypre.md new file mode 100644 index 000000000..51c5c2ede --- /dev/null +++ b/docs/version-specific/supported-software/h/Hypre.md @@ -0,0 +1,35 @@ +--- +search: + boost: 0.5 +--- +# Hypre + +Hypre is a library for solving large, sparse linear systems of equations on massively parallel computers. The problems of interest arise in the simulation codes being developed at LLNL and elsewhere to study physical phenomena in the defense, environmental, energy, and biological sciences. + +*homepage*: + +version | toolchain +--------|---------- +``2.11.1`` | ``foss/2016a`` +``2.11.1`` | ``intel/2016a`` +``2.14.0`` | ``foss/2018a`` +``2.14.0`` | ``intel/2018a`` +``2.15.1`` | ``foss/2019a`` +``2.15.1`` | ``intel/2019a`` +``2.18.2`` | ``foss/2019b`` +``2.18.2`` | ``foss/2020a`` +``2.18.2`` | ``intel/2019b`` +``2.18.2`` | ``intel/2020a`` +``2.20.0`` | ``foss/2020b`` +``2.20.0`` | ``intel/2020b`` +``2.21.0`` | ``foss/2021a`` +``2.21.0`` | ``fosscuda/2020b`` +``2.21.0`` | ``intel/2021a`` +``2.24.0`` | ``intel/2021b`` +``2.25.0`` | ``foss/2022a`` +``2.27.0`` | ``foss/2022b`` +``2.29.0`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/h4toh5.md b/docs/version-specific/supported-software/h/h4toh5.md new file mode 100644 index 000000000..a8019614d --- /dev/null +++ b/docs/version-specific/supported-software/h/h4toh5.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# h4toh5 + +The h4toh5 software consists of the h4toh5 and h5toh4 command-line utilities, as well as a conversion library for converting between individual HDF4 and HDF5 objects. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.2`` | ``-linux-x86_64-static`` | ``system`` +``2.2.3`` | | ``foss/2018b`` +``2.2.3`` | | ``gompi/2019b`` +``2.2.3`` | | ``gompi/2020b`` +``2.2.5`` | | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/h5netcdf.md b/docs/version-specific/supported-software/h/h5netcdf.md new file mode 100644 index 000000000..ff95cc607 --- /dev/null +++ b/docs/version-specific/supported-software/h/h5netcdf.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# h5netcdf + +A Python interface for the netCDF4 file-format that reads and writes local or remote HDF5 files directly via h5py or h5pyd, without relying on the Unidata netCDF library. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``foss/2021b`` +``1.2.0`` | ``foss/2022a`` +``1.2.0`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/h5py.md b/docs/version-specific/supported-software/h/h5py.md new file mode 100644 index 000000000..77e427678 --- /dev/null +++ b/docs/version-specific/supported-software/h/h5py.md @@ -0,0 +1,88 @@ +--- +search: + boost: 0.5 +--- +# h5py + +HDF5 for Python (h5py) is a general-purpose Python interface to the Hierarchical Data Format library, version 5. HDF5 is a versatile, mature scientific software library designed for the fast, flexible storage of enormous amounts of data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.10.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.10.0`` | ``-serial-Python-3.7.4`` | ``foss/2019b`` +``2.10.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2.10.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``2.10.0`` | ``-Python-3.8.2`` | ``fosscuda/2020a`` +``2.10.0`` | ``-Python-3.7.4`` | ``intel/2019b`` +``2.10.0`` | ``-Python-2.7.18`` | ``intel/2020a`` +``2.10.0`` | ``-Python-3.8.2`` | ``intel/2020a`` +``2.10.0`` | ``-Python-3.7.4`` | ``intelcuda/2019b`` +``2.10.0`` | ``-Python-3.8.2`` | ``intelcuda/2020a`` +``2.5.0`` | ``-Python-2.7.11-HDF5-1.8.16-serial`` | ``foss/2016a`` +``2.5.0`` | ``-Python-2.7.11-HDF5-1.8.16`` | ``foss/2016a`` +``2.5.0`` | ``-Python-3.5.1-HDF5-1.8.16`` | ``foss/2016a`` +``2.5.0`` | ``-Python-2.7.11-HDF5-1.8.16-serial`` | ``intel/2016a`` +``2.5.0`` | ``-Python-2.7.11-HDF5-1.8.16`` | ``intel/2016a`` +``2.6.0`` | ``-Python-2.7.12-HDF5-1.10.0-patch1`` | ``foss/2016b`` +``2.6.0`` | ``-Python-2.7.12-HDF5-1.8.17`` | ``foss/2016b`` +``2.6.0`` | ``-Python-2.7.12-HDF5-1.8.18`` | ``foss/2016b`` +``2.6.0`` | ``-Python-3.5.2-HDF5-1.10.0-patch1`` | ``foss/2016b`` +``2.6.0`` | ``-Python-3.5.2-HDF5-1.8.18`` | ``foss/2016b`` +``2.6.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``2.6.0`` | ``-Python-2.7.12-HDF5-1.10.0-patch1`` | ``intel/2016b`` +``2.6.0`` | ``-Python-2.7.12-HDF5-1.8.17`` | ``intel/2016b`` +``2.6.0`` | ``-Python-2.7.12-HDF5-1.8.18`` | ``intel/2016b`` +``2.6.0`` | ``-Python-3.5.2-HDF5-1.10.0-patch1`` | ``intel/2016b`` +``2.6.0`` | ``-Python-3.5.2-HDF5-1.8.17`` | ``intel/2016b`` +``2.6.0`` | ``-Python-3.5.2-HDF5-1.8.18`` | ``intel/2016b`` +``2.7.0`` | ``-Python-2.7.13-HDF5-1.10.1`` | ``foss/2017a`` +``2.7.0`` | ``-Python-2.7.13-HDF5-1.8.19`` | ``foss/2017a`` +``2.7.0`` | ``-Python-3.6.1-HDF5-1.10.1`` | ``foss/2017a`` +``2.7.0`` | ``-Python-3.6.1-HDF5-1.8.19`` | ``foss/2017a`` +``2.7.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2.7.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``2.7.0`` | ``-Python-3.6.1-HDF5-1.10.0-patch1`` | ``intel/2017a`` +``2.7.0`` | ``-Python-3.6.1`` | ``intel/2017a`` +``2.7.1`` | ``-Python-2.7.14`` | ``foss/2017b`` +``2.7.1`` | ``-Python-3.6.3`` | ``foss/2017b`` +``2.7.1`` | ``-Python-2.7.14`` | ``foss/2018a`` +``2.7.1`` | ``-Python-3.6.4`` | ``foss/2018a`` +``2.7.1`` | ``-Python-2.7.14`` | ``fosscuda/2017b`` +``2.7.1`` | ``-Python-3.6.3`` | ``fosscuda/2017b`` +``2.7.1`` | ``-Python-2.7.13`` | ``intel/2017a`` +``2.7.1`` | ``-Python-3.6.1`` | ``intel/2017a`` +``2.7.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.7.1`` | ``-Python-3.6.3`` | ``intel/2017b`` +``2.7.1`` | ``-Python-2.7.14-serial`` | ``intel/2018a`` +``2.7.1`` | ``-Python-2.7.14`` | ``intel/2018a`` +``2.7.1`` | ``-Python-3.6.4`` | ``intel/2018a`` +``2.8.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``2.8.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``2.8.0`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``2.8.0`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``2.8.0`` | ``-Python-2.7.15-serial`` | ``intel/2018b`` +``2.8.0`` | ``-Python-2.7.15`` | ``intel/2018b`` +``2.8.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``2.9.0`` | | ``foss/2019a`` +``2.9.0`` | | ``fosscuda/2019a`` +``2.9.0`` | | ``intel/2019a`` +``2.9.0`` | | ``intelcuda/2019a`` +``3.1.0`` | | ``foss/2020b`` +``3.1.0`` | | ``fosscuda/2020b`` +``3.1.0`` | | ``intel/2020b`` +``3.1.0`` | | ``intelcuda/2020b`` +``3.11.0`` | | ``foss/2023b`` +``3.2.1`` | | ``foss/2021a`` +``3.2.1`` | | ``gomkl/2021a`` +``3.6.0`` | | ``foss/2021b`` +``3.6.0`` | | ``intel/2021b`` +``3.7.0`` | | ``foss/2022a`` +``3.7.0`` | | ``intel/2022a`` +``3.8.0`` | | ``foss/2022b`` +``3.9.0`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hampel.md b/docs/version-specific/supported-software/h/hampel.md new file mode 100644 index 000000000..9fbbf11de --- /dev/null +++ b/docs/version-specific/supported-software/h/hampel.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# hampel + +The Hampel filter is generally used to detect anomalies in data with a timeseries structure. It basically consists of a sliding window of a parameterizable size. For each window, each observation will be compared with the Median Absolute Deviation (MAD). The observation will be considered an outlier in the case in which it exceeds the MAD by n times (the parameter n is also parameterizable). + +*homepage*: + +version | toolchain +--------|---------- +``0.0.5`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hanythingondemand.md b/docs/version-specific/supported-software/h/hanythingondemand.md new file mode 100644 index 000000000..ac1b0c96b --- /dev/null +++ b/docs/version-specific/supported-software/h/hanythingondemand.md @@ -0,0 +1,35 @@ +--- +search: + boost: 0.5 +--- +# hanythingondemand + +HanythingOnDemand (HOD) is a system for provisioning virtual Hadoop clusters over a large physical cluster. It uses the Torque resource manager to do node allocation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.0`` | ``-cli`` | ``system`` +``3.0.1`` | ``-cli`` | ``system`` +``3.0.2`` | ``-cli`` | ``system`` +``3.0.3`` | ``-cli`` | ``system`` +``3.0.4`` | ``-cli`` | ``system`` +``3.1.0`` | ``-cli`` | ``system`` +``3.1.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``3.1.1`` | ``-cli`` | ``system`` +``3.1.1`` | ``-Python-2.7.11`` | ``intel/2016a`` +``3.1.2`` | ``-cli`` | ``system`` +``3.1.2`` | ``-Python-2.7.11`` | ``intel/2016a`` +``3.1.3`` | ``-cli`` | ``system`` +``3.1.3`` | ``-Python-2.7.12`` | ``intel/2016b`` +``3.1.4`` | ``-cli`` | ``system`` +``3.1.4`` | ``-Python-2.7.12`` | ``intel/2016b`` +``3.2.0`` | ``-cli`` | ``system`` +``3.2.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``3.2.2`` | ``-cli`` | ``system`` +``3.2.2`` | ``-Python-2.7.12`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/harmony.md b/docs/version-specific/supported-software/h/harmony.md new file mode 100644 index 000000000..3f7050d6d --- /dev/null +++ b/docs/version-specific/supported-software/h/harmony.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# harmony + +Harmony is a general-purpose R package with an efficient algorithm for integrating multiple data sets. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.0-20210528`` | ``-R-4.0.3`` | ``foss/2020b`` +``1.0.0-20200224`` | ``-R-4.0.0`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hatch-jupyter-builder.md b/docs/version-specific/supported-software/h/hatch-jupyter-builder.md new file mode 100644 index 000000000..14cd4f581 --- /dev/null +++ b/docs/version-specific/supported-software/h/hatch-jupyter-builder.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# hatch-jupyter-builder + +Hatch Jupyter Builder is a plugin for the hatchling Python build backend. It is primarily targeted for package authors who are providing JavaScript as part of their Python packages. Typical use cases are Jupyter Lab Extensions and Jupyter Widgets. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.1`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hatchling.md b/docs/version-specific/supported-software/h/hatchling.md new file mode 100644 index 000000000..dd5bdfce5 --- /dev/null +++ b/docs/version-specific/supported-software/h/hatchling.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# hatchling + +Extensible, standards compliant build backend used by Hatch, a modern, extensible Python project manager. + +*homepage*: + +version | toolchain +--------|---------- +``1.18.0`` | ``GCCcore/12.3.0`` +``1.18.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hdWGCNA.md b/docs/version-specific/supported-software/h/hdWGCNA.md new file mode 100644 index 000000000..bfee63908 --- /dev/null +++ b/docs/version-specific/supported-software/h/hdWGCNA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# hdWGCNA + +hdWGCNA is an R package for performing weighted gene co-expression network analysis (WGCNA) in high dimensional transcriptomics data such as single-cell RNA-seq or spatial transcriptomics. hdWGCNA is highly modular and can construct context-specific co-expression networks across cellular and spatial hierarchies. hdWGNCA identifies modules of highly co-expressed genes and provides context for these modules via statistical testing and biological knowledge sources. hdWGCNA uses datasets formatted as Seurat objects. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.00`` | ``-R-4.3.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hdf5storage.md b/docs/version-specific/supported-software/h/hdf5storage.md new file mode 100644 index 000000000..e4750f4c9 --- /dev/null +++ b/docs/version-specific/supported-software/h/hdf5storage.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# hdf5storage + +This Python package provides high level utilities to read/write a variety of Python types to/from HDF5 (Heirarchal Data Format) formatted files. This package also provides support for MATLAB MAT v7.3 formatted files, which are just HDF5 files with a different extension and some extra meta-data. All of this is done without pickling data. Pickling is bad for security because it allows arbitrary code to be executed in the interpreter. One wants to be able to read possibly HDF5 and MAT files from untrusted sources, so pickling is avoided in this package. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.15`` | ``foss/2019a`` +``0.1.15`` | ``fosscuda/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/heaptrack.md b/docs/version-specific/supported-software/h/heaptrack.md new file mode 100644 index 000000000..191e97c52 --- /dev/null +++ b/docs/version-specific/supported-software/h/heaptrack.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# heaptrack + +A heap memory profiler for Linux. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hector.md b/docs/version-specific/supported-software/h/hector.md new file mode 100644 index 000000000..98a9569e9 --- /dev/null +++ b/docs/version-specific/supported-software/h/hector.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# hector + +This is the repository for Hector, an open source, object-oriented, simple global climate carbon-cycle model. It runs essentially instantaneously while still representing the most critical global scale earth system processes, and is one of a class of models heavily used for for emulating complex climate models and uncertainty analyses. + +*homepage*: + +version | toolchain +--------|---------- +``2.5.0`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/help2man.md b/docs/version-specific/supported-software/h/help2man.md new file mode 100644 index 000000000..a25608b23 --- /dev/null +++ b/docs/version-specific/supported-software/h/help2man.md @@ -0,0 +1,52 @@ +--- +search: + boost: 0.5 +--- +# help2man + +help2man produces simple manual pages from the '--help' and '--version' output of other commands. + +*homepage*: + +version | toolchain +--------|---------- +``1.47.10`` | ``GCCcore/9.1.0`` +``1.47.10`` | ``GCCcore/9.2.0`` +``1.47.12`` | ``GCCcore/9.3.0`` +``1.47.15`` | ``GCCcore/10.1.0`` +``1.47.16`` | ``GCCcore/10.2.0`` +``1.47.4`` | ``GCCcore/5.4.0`` +``1.47.4`` | ``GCCcore/6.3.0`` +``1.47.4`` | ``GCCcore/6.4.0`` +``1.47.4`` | ``GCCcore/7.1.0`` +``1.47.4`` | ``GCCcore/7.2.0`` +``1.47.4`` | ``GCCcore/7.3.0`` +``1.47.4`` | ``GCCcore/system`` +``1.47.4`` | ``gimkl/2017a`` +``1.47.4`` | ``intel/2016b`` +``1.47.4`` | ``system`` +``1.47.5`` | ``GCCcore/5.5.0`` +``1.47.6`` | ``GCCcore/8.1.0`` +``1.47.7`` | ``GCCcore/8.2.0`` +``1.47.8`` | ``GCCcore/7.4.0`` +``1.47.8`` | ``GCCcore/8.3.0`` +``1.47.8`` | ``GCCcore/8.4.0`` +``1.48.3`` | ``FCC/4.5.0`` +``1.48.3`` | ``GCCcore/10.3.0`` +``1.48.3`` | ``GCCcore/11.1.0`` +``1.48.3`` | ``GCCcore/11.2.0`` +``1.48.3`` | ``GCCcore/9.4.0`` +``1.49.2`` | ``GCCcore/11.3.0`` +``1.49.2`` | ``GCCcore/12.1.0`` +``1.49.2`` | ``GCCcore/12.2.0`` +``1.49.2`` | ``GCCcore/9.5.0`` +``1.49.3`` | ``GCCcore/11.4.0`` +``1.49.3`` | ``GCCcore/12.3.0`` +``1.49.3`` | ``GCCcore/13.1.0`` +``1.49.3`` | ``GCCcore/13.2.0`` +``1.49.3`` | ``GCCcore/13.3.0`` +``1.49.3`` | ``GCCcore/14.1.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hevea.md b/docs/version-specific/supported-software/h/hevea.md new file mode 100644 index 000000000..00abf41bf --- /dev/null +++ b/docs/version-specific/supported-software/h/hevea.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# hevea + +A quite complete and fast LATEX to HTML translator + +*homepage*: + +version | toolchain +--------|---------- +``2.36`` | ``GCC/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hic-straw.md b/docs/version-specific/supported-software/h/hic-straw.md new file mode 100644 index 000000000..d111391e8 --- /dev/null +++ b/docs/version-specific/supported-software/h/hic-straw.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# hic-straw + +Straw is a library which allows rapid streaming of contact data from .hic files. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hierfstat.md b/docs/version-specific/supported-software/h/hierfstat.md new file mode 100644 index 000000000..dde0a0674 --- /dev/null +++ b/docs/version-specific/supported-software/h/hierfstat.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# hierfstat + +Estimates hierarchical F-statistics from haploid or diploid genetic data with any numbers of levels in the hierarchy. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.5-7`` | ``-R-4.0.0-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hifiasm.md b/docs/version-specific/supported-software/h/hifiasm.md new file mode 100644 index 000000000..4773809fb --- /dev/null +++ b/docs/version-specific/supported-software/h/hifiasm.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# hifiasm + +Hifiasm: a haplotype-resolved assembler for accurate Hifi reads. + +*homepage*: + +version | toolchain +--------|---------- +``0.15.2`` | ``GCCcore/10.3.0`` +``0.15.2`` | ``GCCcore/9.3.0`` +``0.16.1`` | ``GCCcore/10.3.0`` +``0.19.5`` | ``GCCcore/11.2.0`` +``0.19.7`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hipSYCL.md b/docs/version-specific/supported-software/h/hipSYCL.md new file mode 100644 index 000000000..a5ce32dc9 --- /dev/null +++ b/docs/version-specific/supported-software/h/hipSYCL.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# hipSYCL + +hipSYCL is a modern SYCL implementation targeting CPUs and GPUs, with a focus on leveraging existing toolchains such as CUDA or HIP + +*homepage*: + +version | toolchain +--------|---------- +``0.9.1`` | ``GCC/10.2.0`` +``0.9.1`` | ``gcccuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hipify-clang.md b/docs/version-specific/supported-software/h/hipify-clang.md new file mode 100644 index 000000000..9f7791fe3 --- /dev/null +++ b/docs/version-specific/supported-software/h/hipify-clang.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# hipify-clang + +Hipify-clang is a clang-based tool for translating CUDA sources into HIP sources. It translates CUDA source into an abstract syntax tree, which is traversed by transformation matchers. After applying all the matchers, the output HIP source is produced. + +*homepage*: + +version | toolchain +--------|---------- +``4.2.0`` | ``gcccuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hiredis.md b/docs/version-specific/supported-software/h/hiredis.md new file mode 100644 index 000000000..addc111e4 --- /dev/null +++ b/docs/version-specific/supported-software/h/hiredis.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# hiredis + +Hiredis is a minimalistic C client library for the Redis database. It is minimalistic because it just adds minimal support for the protocol, but at the same time it uses a high level printf-alike API in order to make it much higher level than otherwise suggested by its minimal code base and the lack of explicit bindings for every Redis command. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.2`` | ``GCCcore/11.2.0`` +``1.0.2`` | ``GCCcore/11.3.0`` +``1.2.0`` | ``GCCcore/12.2.0`` +``1.2.0`` | ``GCCcore/12.3.0`` +``1.2.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/histolab.md b/docs/version-specific/supported-software/h/histolab.md new file mode 100644 index 000000000..d085733df --- /dev/null +++ b/docs/version-specific/supported-software/h/histolab.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# histolab + +Library for Digital Pathology Image Processing + +*homepage*: + +version | toolchain +--------|---------- +``0.4.1`` | ``foss/2021a`` +``0.4.1`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hivtrace.md b/docs/version-specific/supported-software/h/hivtrace.md new file mode 100644 index 000000000..8ae264ef7 --- /dev/null +++ b/docs/version-specific/supported-software/h/hivtrace.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# hivtrace + +HIV-TRACE is an application that identifies potential transmission clusters within a supplied FASTA file with an option to find potential links against the Los Alamos HIV Sequence Database. + +*homepage*: + +version | toolchain +--------|---------- +``0.6.2`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hl7apy.md b/docs/version-specific/supported-software/h/hl7apy.md new file mode 100644 index 000000000..0af17e213 --- /dev/null +++ b/docs/version-specific/supported-software/h/hl7apy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# hl7apy + +Python library to parse, create and handle HL7 v2 messages. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.3`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hmmcopy_utils.md b/docs/version-specific/supported-software/h/hmmcopy_utils.md new file mode 100644 index 000000000..9e5fda2d0 --- /dev/null +++ b/docs/version-specific/supported-software/h/hmmcopy_utils.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# hmmcopy_utils + +Tools for extracting read counts and gc and mappability statistics in preparation for running HMMCopy. + +*homepage*: + +version | toolchain +--------|---------- +``20210728`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hmmlearn.md b/docs/version-specific/supported-software/h/hmmlearn.md new file mode 100644 index 000000000..94a8a032c --- /dev/null +++ b/docs/version-specific/supported-software/h/hmmlearn.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# hmmlearn + +hmmlearn is a set of algorithms for unsupervised learning and inference of Hidden Markov Models + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.2.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``0.3.0`` | | ``foss/2022b`` +``0.3.0`` | | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/horton.md b/docs/version-specific/supported-software/h/horton.md new file mode 100644 index 000000000..7c68ba115 --- /dev/null +++ b/docs/version-specific/supported-software/h/horton.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# horton + +HORTON is a Helpful Open-source Research TOol for N-fermion systems, written primarily in the Python programming language. (HORTON is named after the helpful pachyderm, not the Canadian caffeine supply store.) The ultimate goal of HORTON is to provide a platform for testing new ideas on the quantum many-body problem at a reasonable computational cost. Although HORTON is primarily designed to be a quantum-chemistry program, it can perform computations involving model Hamiltonians, and could be extended for computations in nuclear physics. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.1`` | ``-Python-2.7.15`` | ``foss/2018b`` +``2.1.1`` | ``-Python-2.7.15`` | ``intel/2018b`` +``2.1.1`` | ``-Python-2.7.18`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/how_are_we_stranded_here.md b/docs/version-specific/supported-software/h/how_are_we_stranded_here.md new file mode 100644 index 000000000..16920c66b --- /dev/null +++ b/docs/version-specific/supported-software/h/how_are_we_stranded_here.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# how_are_we_stranded_here + +Python package for testing strandedness of RNA-Seq fastq files + +*homepage*: + +version | toolchain +--------|---------- +``1.0.1`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/htop.md b/docs/version-specific/supported-software/h/htop.md new file mode 100644 index 000000000..094719a3f --- /dev/null +++ b/docs/version-specific/supported-software/h/htop.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# htop + +An interactive process viewer for Unix + +*homepage*: + +version | toolchain +--------|---------- +``2.0.0`` | ``system`` +``2.0.1`` | ``system`` +``3.2.1`` | ``system`` +``3.2.2`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hub.md b/docs/version-specific/supported-software/h/hub.md new file mode 100644 index 000000000..90f4f6ee0 --- /dev/null +++ b/docs/version-specific/supported-software/h/hub.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# hub + +hub is a command-line wrapper for git that makes you better at GitHub. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.2`` | ``-linux-amd64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/humann.md b/docs/version-specific/supported-software/h/humann.md new file mode 100644 index 000000000..2e919245f --- /dev/null +++ b/docs/version-specific/supported-software/h/humann.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# humann + +HUMAnN v3 is a pipeline for efficiently and accurately determining the coverage and abundance of microbial pathways in a community from metagenomic data. Sequencing a metagenome typically produces millions of short DNA/RNA reads. This process, referred to as functional profiling, aims to describe the metabolic potential of a microbial community and its members. More generally, functional profiling answers the question: What are the microbes in my community-of-interest doing (or capable of doing)? + +*homepage*: + +version | toolchain +--------|---------- +``3.6`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hunspell.md b/docs/version-specific/supported-software/h/hunspell.md new file mode 100644 index 000000000..24af79747 --- /dev/null +++ b/docs/version-specific/supported-software/h/hunspell.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# hunspell + +Hunspell is a spell checker and morphological analyzer library and program designed for languages with rich morphology and complex word compounding or character encoding. + +*homepage*: + +version | toolchain +--------|---------- +``1.6.1`` | ``intel/2017a`` +``1.7.0`` | ``GCCcore/8.2.0`` +``1.7.1`` | ``GCCcore/11.2.0`` +``1.7.1`` | ``GCCcore/11.3.0`` +``1.7.2`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hwloc.md b/docs/version-specific/supported-software/h/hwloc.md new file mode 100644 index 000000000..f6b01bfed --- /dev/null +++ b/docs/version-specific/supported-software/h/hwloc.md @@ -0,0 +1,64 @@ +--- +search: + boost: 0.5 +--- +# hwloc + +The Portable Hardware Locality (hwloc) software package provides a portable abstraction (across OS, versions, architectures, ...) of the hierarchical topology of modern architectures, including NUMA memory nodes, sockets, shared caches, cores and simultaneous multithreading. It also gathers various system attributes such as cache and memory information as well as the locality of I/O devices such as network interfaces, InfiniBand HCAs or GPUs. It primarily aims at helping applications with gathering information about modern computing hardware so as to exploit it accordingly and efficiently. + +*homepage*: + +version | toolchain +--------|---------- +``1.10.0`` | ``GCC/4.9.2`` +``1.10.1`` | ``GCC/4.8.4`` +``1.10.1`` | ``GNU/4.9.2-2.25`` +``1.11.0`` | ``GNU/4.9.3-2.25`` +``1.11.1`` | ``GCC/4.9.3`` +``1.11.10`` | ``GCCcore/7.3.0`` +``1.11.11`` | ``GCCcore/8.2.0`` +``1.11.12`` | ``GCCcore/8.3.0`` +``1.11.2`` | ``GCC/4.9.3-2.25`` +``1.11.2`` | ``GNU/4.9.3-2.25`` +``1.11.3`` | ``GCC/5.2.0`` +``1.11.3`` | ``GCC/5.3.0-2.26`` +``1.11.3`` | ``GCC/5.4.0-2.26`` +``1.11.3`` | ``GCC/6.1.0-2.27`` +``1.11.3`` | ``PGI/16.3-GCC-4.9.3-2.25`` +``1.11.3`` | ``PGI/16.4-GCC-5.3.0-2.26`` +``1.11.3`` | ``iccifort/2016.3.210-GCC-4.9.3-2.25`` +``1.11.3`` | ``iccifort/2016.3.210-GCC-5.4.0-2.26`` +``1.11.3`` | ``intel/2016a`` +``1.11.3`` | ``intel/2016b`` +``1.11.4`` | ``GCC/6.2.0-2.27`` +``1.11.4`` | ``PGI/16.7-GCC-5.4.0-2.26`` +``1.11.4`` | ``iccifort/2017.1.132-GCC-5.4.0-2.26`` +``1.11.5`` | ``GCC/5.4.0-2.26`` +``1.11.5`` | ``GCC/6.3.0-2.27`` +``1.11.5`` | ``iccifort/2017.1.132-GCC-6.3.0-2.27`` +``1.11.6`` | ``GCC/6.3.0-2.28`` +``1.11.7`` | ``GCCcore/5.4.0`` +``1.11.7`` | ``GCCcore/6.4.0`` +``1.11.8`` | ``GCCcore/6.4.0`` +``1.11.8`` | ``GCCcore/7.2.0`` +``1.11.8`` | ``intel/2017a`` +``1.7.2`` | ``GCC/4.8.2`` +``1.8.1`` | ``GCC/4.8.2`` +``1.8.1`` | ``GCC/4.8.3`` +``1.9`` | ``GCC/4.8.3`` +``2.0.2`` | ``GCCcore/8.2.0`` +``2.0.3`` | ``GCCcore/8.3.0`` +``2.1.0`` | ``GCCcore/9.2.0`` +``2.10.0`` | ``GCCcore/13.3.0`` +``2.2.0`` | ``GCCcore/10.2.0`` +``2.2.0`` | ``GCCcore/9.3.0`` +``2.4.1`` | ``GCCcore/10.3.0`` +``2.5.0`` | ``GCCcore/11.2.0`` +``2.7.1`` | ``GCCcore/11.3.0`` +``2.8.0`` | ``GCCcore/12.2.0`` +``2.9.1`` | ``GCCcore/12.3.0`` +``2.9.2`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hyperspy.md b/docs/version-specific/supported-software/h/hyperspy.md new file mode 100644 index 000000000..e7f8345da --- /dev/null +++ b/docs/version-specific/supported-software/h/hyperspy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# hyperspy + +HyperSpy is an open source Python library which provides tools to facilitate the interactive data analysis of multi-dimensional datasets that can be described as multi-dimensional arrays of a given signal (e.g. a 2D array of spectra a.k.a spectrum image) + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.1`` | ``-Python-3.5.2`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/hypothesis.md b/docs/version-specific/supported-software/h/hypothesis.md new file mode 100644 index 000000000..9bcda71a8 --- /dev/null +++ b/docs/version-specific/supported-software/h/hypothesis.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# hypothesis + +Hypothesis is an advanced testing library for Python. It lets you write tests which are parametrized by a source of examples, and then generates simple and comprehensible examples that make your tests fail. This lets you find more bugs in your code with less work. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.23.4`` | | ``GCCcore/8.2.0`` +``4.39.3`` | ``-Python-3.6.4`` | ``intel/2018a`` +``4.44.2`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``4.5.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``4.5.0`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``4.53.1`` | | ``GCCcore/10.2.0`` +``4.57.1`` | ``-Python-2.7.18`` | ``GCCcore/11.2.0`` +``5.41.2`` | | ``GCCcore/10.2.0`` +``5.41.5`` | | ``GCCcore/10.2.0`` +``5.6.0`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``6.13.1`` | | ``GCCcore/10.3.0`` +``6.14.6`` | | ``GCCcore/11.2.0`` +``6.46.7`` | | ``GCCcore/11.3.0`` +``6.68.2`` | | ``GCCcore/12.2.0`` +``6.7.0`` | | ``GCCcore/10.2.0`` +``6.82.0`` | | ``GCCcore/12.3.0`` +``6.90.0`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/h/index.md b/docs/version-specific/supported-software/h/index.md new file mode 100644 index 000000000..a27c4c816 --- /dev/null +++ b/docs/version-specific/supported-software/h/index.md @@ -0,0 +1,103 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (h) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - *h* - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [h4toh5](h4toh5.md) + * [H5hut](H5hut.md) + * [h5netcdf](h5netcdf.md) + * [h5py](h5py.md) + * [Hadoop](Hadoop.md) + * [HAL](HAL.md) + * [hampel](hampel.md) + * [hanythingondemand](hanythingondemand.md) + * [HAPGEN2](HAPGEN2.md) + * [HarfBuzz](HarfBuzz.md) + * [Harminv](Harminv.md) + * [harmony](harmony.md) + * [hatch-jupyter-builder](hatch-jupyter-builder.md) + * [hatchling](hatchling.md) + * [HBase](HBase.md) + * [HD-BET](HD-BET.md) + * [HDBSCAN](HDBSCAN.md) + * [HDDM](HDDM.md) + * [HDF](HDF.md) + * [HDF-EOS](HDF-EOS.md) + * [HDF-EOS2](HDF-EOS2.md) + * [HDF-EOS5](HDF-EOS5.md) + * [HDF5](HDF5.md) + * [hdf5storage](hdf5storage.md) + * [HDFView](HDFView.md) + * [hdWGCNA](hdWGCNA.md) + * [HEALPix](HEALPix.md) + * [Health-GPS](Health-GPS.md) + * [heaptrack](heaptrack.md) + * [hector](hector.md) + * [HeFFTe](HeFFTe.md) + * [Hello](Hello.md) + * [help2man](help2man.md) + * [HepMC](HepMC.md) + * [HepMC3](HepMC3.md) + * [hevea](hevea.md) + * [HF-Datasets](HF-Datasets.md) + * [HH-suite](HH-suite.md) + * [HiC-Pro](HiC-Pro.md) + * [hic-straw](hic-straw.md) + * [HiCExplorer](HiCExplorer.md) + * [HiCMatrix](HiCMatrix.md) + * [hierfstat](hierfstat.md) + * [hifiasm](hifiasm.md) + * [HighFive](HighFive.md) + * [HiGHS](HiGHS.md) + * [Highway](Highway.md) + * [HIP](HIP.md) + * [hipify-clang](hipify-clang.md) + * [HIPS](HIPS.md) + * [hipSYCL](hipSYCL.md) + * [hiredis](hiredis.md) + * [HISAT2](HISAT2.md) + * [histolab](histolab.md) + * [hivtrace](hivtrace.md) + * [hl7apy](hl7apy.md) + * [HLAminer](HLAminer.md) + * [hmmcopy_utils](hmmcopy_utils.md) + * [HMMER](HMMER.md) + * [HMMER2](HMMER2.md) + * [hmmlearn](hmmlearn.md) + * [HOME](HOME.md) + * [HOMER](HOMER.md) + * [HOOMD-blue](HOOMD-blue.md) + * [Horovod](Horovod.md) + * [horton](horton.md) + * [how_are_we_stranded_here](how_are_we_stranded_here.md) + * [HPCC](HPCC.md) + * [HPCG](HPCG.md) + * [HPCX](HPCX.md) + * [HPDBSCAN](HPDBSCAN.md) + * [HPL](HPL.md) + * [htop](htop.md) + * [HTSeq](HTSeq.md) + * [HTSlib](HTSlib.md) + * [HTSplotter](HTSplotter.md) + * [hub](hub.md) + * [humann](humann.md) + * [hunspell](hunspell.md) + * [hwloc](hwloc.md) + * [Hybpiper](Hybpiper.md) + * [Hydra](Hydra.md) + * [Hyperopt](Hyperopt.md) + * [HyperQueue](HyperQueue.md) + * [hyperspy](hyperspy.md) + * [HyPhy](HyPhy.md) + * [HyPo](HyPo.md) + * [hypothesis](hypothesis.md) + * [Hypre](Hypre.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - *h* - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/I-TASSER.md b/docs/version-specific/supported-software/i/I-TASSER.md new file mode 100644 index 000000000..bd278bdea --- /dev/null +++ b/docs/version-specific/supported-software/i/I-TASSER.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# I-TASSER + +I-TASSER is a set of pre-compiled binaries and scripts for protein structure and function modelling and comparison. + +*homepage*: + +version | toolchain +--------|---------- +``4.0`` | ``system`` +``4.2`` | ``system`` +``5.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/ICA-AROMA.md b/docs/version-specific/supported-software/i/ICA-AROMA.md new file mode 100644 index 000000000..e97b69bc3 --- /dev/null +++ b/docs/version-specific/supported-software/i/ICA-AROMA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ICA-AROMA + +ICA-AROMA (i.e. 'ICA-based Automatic Removal Of Motion Artifacts') concerns a data-driven method to identify and remove motion-related independent components from fMRI data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.4.4-beta`` | ``-Python-3.6.6`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/ICON.md b/docs/version-specific/supported-software/i/ICON.md new file mode 100644 index 000000000..e2b1db515 --- /dev/null +++ b/docs/version-specific/supported-software/i/ICON.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ICON + +ICON is a flexible, scalable, high-performance modelling framework for weather, climate and environmental prediction that provides actionable information for society and advances our understanding of the Earth's climate system. + +*homepage*: + +version | toolchain +--------|---------- +``2024.01`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/ICU.md b/docs/version-specific/supported-software/i/ICU.md new file mode 100644 index 000000000..9636e2cbb --- /dev/null +++ b/docs/version-specific/supported-software/i/ICU.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# ICU + +ICU is a mature, widely used set of C/C++ and Java libraries providing Unicode and Globalization support for software applications. + +*homepage*: + +version | toolchain +--------|---------- +``61.1`` | ``GCCcore/6.4.0`` +``61.1`` | ``GCCcore/7.3.0`` +``64.2`` | ``GCCcore/8.2.0`` +``64.2`` | ``GCCcore/8.3.0`` +``65.1`` | ``GCCcore/8.3.0`` +``66.1`` | ``GCCcore/9.3.0`` +``67.1`` | ``GCCcore/10.2.0`` +``69.1`` | ``GCCcore/10.3.0`` +``69.1`` | ``GCCcore/11.2.0`` +``71.1`` | ``GCCcore/11.3.0`` +``72.1`` | ``GCCcore/12.2.0`` +``73.2`` | ``GCCcore/12.3.0`` +``74.1`` | ``GCCcore/13.2.0`` +``75.1`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IDBA-UD.md b/docs/version-specific/supported-software/i/IDBA-UD.md new file mode 100644 index 000000000..85eeb9c67 --- /dev/null +++ b/docs/version-specific/supported-software/i/IDBA-UD.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# IDBA-UD + +IDBA-UD is a iterative De Bruijn Graph De Novo Assembler for Short Reads Sequencing data with Highly Uneven Sequencing Depth. It is an extension of IDBA algorithm. IDBA-UD also iterates from small k to a large k. In each iteration, short and low-depth contigs are removed iteratively with cutoff threshold from low to high to reduce the errors in low-depth and high-depth regions. Paired-end reads are aligned to contigs and assembled locally to generate some missing k-mers in low-depth regions. With these technologies, IDBA-UD can iterate k value of de Bruijn graph to a very large value with less gaps and less branches to form long contigs in both low-depth and high-depth regions. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.3`` | ``GCC/10.2.0`` +``1.1.3`` | ``GCC/10.3.0`` +``1.1.3`` | ``GCC/11.2.0`` +``1.1.3`` | ``GCC/8.2.0-2.31.1`` +``1.1.3`` | ``GCC/8.3.0`` +``1.1.3`` | ``GCC/9.3.0`` +``1.1.3`` | ``foss/2018a`` +``1.1.3`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IDG.md b/docs/version-specific/supported-software/i/IDG.md new file mode 100644 index 000000000..d300463f1 --- /dev/null +++ b/docs/version-specific/supported-software/i/IDG.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# IDG + +Image Domain Gridding (IDG) is a fast method for convolutional resampling (gridding/degridding) of radio astronomical data (visibilities). Direction dependent effects (DDEs) or A-tems can be applied in the gridding process. The algorithm is described in "Image Domain Gridding: a fast method for convolutional resampling of visibilities", Van der Tol (2018). The implementation is described in "Radio-astronomical imaging on graphics processors", Veenboer (2020). Please cite these papers in publications using IDG. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.0`` | ``foss/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IGMPlot.md b/docs/version-specific/supported-software/i/IGMPlot.md new file mode 100644 index 000000000..6841da0d7 --- /dev/null +++ b/docs/version-specific/supported-software/i/IGMPlot.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# IGMPlot + +IGMPlot is a free open-source program developed to identify molecular interactions and prepare data to build 2D and 3D representations of them in the molecular environment. + +*homepage*: + +version | toolchain +--------|---------- +``2.4.2`` | ``GCC/8.3.0`` +``2.4.2`` | ``iccifort/2019.5.281`` +``2.6.9b`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IGV.md b/docs/version-specific/supported-software/i/IGV.md new file mode 100644 index 000000000..338237db6 --- /dev/null +++ b/docs/version-specific/supported-software/i/IGV.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# IGV + +This package contains command line utilities for preprocessing, computing feature count density (coverage), sorting, and indexing data files. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.12.3`` | ``-Java-11`` | ``system`` +``2.16.0`` | ``-Java-11`` | ``system`` +``2.3.68`` | ``-Java-1.7.0_80`` | ``system`` +``2.3.80`` | ``-Java-1.7.0_80`` | ``system`` +``2.5.0`` | ``-Java-11`` | ``system`` +``2.8.0`` | ``-Java-11`` | ``system`` +``2.9.4`` | ``-Java-11`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IGVTools.md b/docs/version-specific/supported-software/i/IGVTools.md new file mode 100644 index 000000000..7832ac05b --- /dev/null +++ b/docs/version-specific/supported-software/i/IGVTools.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# IGVTools + +This package contains command line utilities for preprocessing, computing feature count density (coverage), sorting, and indexing data files. See also http://www.broadinstitute.org/software/igv/igvtools_commandline. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.3.68`` | ``-Java-1.7.0_80`` | ``system`` +``2.3.72`` | ``-Java-1.7.0_80`` | ``system`` +``2.3.75`` | ``-Java-1.7.0_80`` | ``system`` +``2.4.18`` | ``-Java-1.8`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IJulia.md b/docs/version-specific/supported-software/i/IJulia.md new file mode 100644 index 000000000..7281853cf --- /dev/null +++ b/docs/version-specific/supported-software/i/IJulia.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# IJulia + +Julia kernel for Jupyter + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.23.3`` | ``-Julia-1.6.7`` | ``system`` +``1.24.0`` | ``-Julia-1.8.5`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/ILAMB.md b/docs/version-specific/supported-software/i/ILAMB.md new file mode 100644 index 000000000..07123c135 --- /dev/null +++ b/docs/version-specific/supported-software/i/ILAMB.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ILAMB + +The International Land Model Benchmarking (ILAMB) project is a model-data intercomparison and integration project designed to improve the performance of land models and, in parallel, improve the design of new measurement campaigns to reduce uncertainties associated with key land surface processes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.5`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IMB.md b/docs/version-specific/supported-software/i/IMB.md new file mode 100644 index 000000000..07a9f3726 --- /dev/null +++ b/docs/version-specific/supported-software/i/IMB.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# IMB + +The Intel MPI Benchmarks perform a set of MPI performance measurements for point-to-point and global communication operations for a range of message sizes + +*homepage*: + +version | toolchain +--------|---------- +``2018.1`` | ``intel/2017a`` +``2019.3`` | ``gompi/2019a`` +``2019.3`` | ``iimpi/2019a`` +``2021.3`` | ``gompi/2020b`` +``2021.3`` | ``gompi/2021b`` +``2021.3`` | ``gompi/2022a`` +``2021.3`` | ``gompi/2022b`` +``2021.3`` | ``iimpi/2022a`` +``2021.3`` | ``iimpi/2022b`` +``4.1`` | ``foss/2016a`` +``4.1`` | ``foss/2017a`` +``4.1`` | ``intel/2017.02`` +``4.1`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IML.md b/docs/version-specific/supported-software/i/IML.md new file mode 100644 index 000000000..6ccc02457 --- /dev/null +++ b/docs/version-specific/supported-software/i/IML.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# IML + +IML is a free library of C source code which implements algorithms for computing exact solutions to dense systems of linear equations over the integers. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.5`` | ``gfbf/2022a`` +``1.0.5`` | ``gfbf/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IMOD.md b/docs/version-specific/supported-software/i/IMOD.md new file mode 100644 index 000000000..9878655f9 --- /dev/null +++ b/docs/version-specific/supported-software/i/IMOD.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# IMOD + +IMOD is a set of image processing, modeling and display programs used for tomographic reconstruction and for 3D reconstruction of EM serial sections and optical sections. The package contains tools for assembling and aligning data within multiple types and sizes of image stacks, viewing 3-D data from any orientation, and modeling and display of the image files. IMOD was developed primarily by David Mastronarde, Rick Gaudette, Sue Held, Jim Kremer, Quanren Xiong, and John Heumann at the University of Colorado. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.11.5`` | | ``foss/2020b`` +``4.11.5`` | | ``fosscuda/2020b`` +``4.7.15`` | ``_RHEL6-64_CUDA6.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IMPUTE2.md b/docs/version-specific/supported-software/i/IMPUTE2.md new file mode 100644 index 000000000..4d83bdb74 --- /dev/null +++ b/docs/version-specific/supported-software/i/IMPUTE2.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# IMPUTE2 + +IMPUTE version 2 (also known as IMPUTE2) is a genotype imputation and haplotype phasing program based on ideas from Howie et al. 2009 + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.3.0`` | ``_x86_64_dynamic`` | ``system`` +``2.3.0`` | ``_x86_64_static`` | ``system`` +``2.3.2`` | ``_x86_64_dynamic`` | ``system`` +``2.3.2`` | ``_x86_64_static`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IMa2.md b/docs/version-specific/supported-software/i/IMa2.md new file mode 100644 index 000000000..7dca38f62 --- /dev/null +++ b/docs/version-specific/supported-software/i/IMa2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# IMa2 + +IMa2 is a progam for population genetic analysis that can handle two or more populations. + +*homepage*: + +version | toolchain +--------|---------- +``8.27.12`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IMa2p.md b/docs/version-specific/supported-software/i/IMa2p.md new file mode 100644 index 000000000..cd4c34e89 --- /dev/null +++ b/docs/version-specific/supported-software/i/IMa2p.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# IMa2p + +IMa2p is a parallel implementation of IMa2, using OpenMPI-C++ - a Bayesian MCMC based method for inferring population demography under the IM (Isolation with Migration) model. http://dx.doi.org/10.1111/1755-0998.12437 + +*homepage*: + +version | toolchain +--------|---------- +``20151123`` | ``foss/2016a`` +``20160804`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/INTEGRATE-Neo.md b/docs/version-specific/supported-software/i/INTEGRATE-Neo.md new file mode 100644 index 000000000..d0c8b153d --- /dev/null +++ b/docs/version-specific/supported-software/i/INTEGRATE-Neo.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# INTEGRATE-Neo + +INTEGRATE-Neo is a gene fusion neoantigen discovering tool using next-generation sequencing data. It is written in C++ and Python. + +*homepage*: <> + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.1`` | ``-Python-3.6.6`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/INTEGRATE.md b/docs/version-specific/supported-software/i/INTEGRATE.md new file mode 100644 index 000000000..7bab9c3b8 --- /dev/null +++ b/docs/version-specific/supported-software/i/INTEGRATE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# INTEGRATE + +INTEGRATE is a tool calling gene fusions with exact fusion junctions and genomic breakpoints by combining RNA-Seq and WGS data. It is highly sensitive and accurate by applying a fast split-read mapping algorithm based on Burrow-Wheeler transform. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.6`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IOR.md b/docs/version-specific/supported-software/i/IOR.md new file mode 100644 index 000000000..84438f954 --- /dev/null +++ b/docs/version-specific/supported-software/i/IOR.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# IOR + +The IOR software is used for benchmarking parallel file systems using POSIX, MPIIO, or HDF5 interfaces. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.1`` | ``-mpiio`` | ``foss/2016a`` +``3.2.1`` | | ``gompi/2019b`` +``3.3.0`` | | ``gompi/2020b`` +``3.3.0`` | | ``gompi/2021a`` +``3.3.0`` | | ``gompi/2022a`` +``4.0.0`` | | ``gompi/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IOzone.md b/docs/version-specific/supported-software/i/IOzone.md new file mode 100644 index 000000000..b428b97e2 --- /dev/null +++ b/docs/version-specific/supported-software/i/IOzone.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# IOzone + +IOzone is a filesystem benchmark tool. The benchmark generates and measures a variety of file operations. Iozone has been ported to many machines and runs under many operating systems. + +*homepage*: + +version | toolchain +--------|---------- +``3.434`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IPM.md b/docs/version-specific/supported-software/i/IPM.md new file mode 100644 index 000000000..407c1fa26 --- /dev/null +++ b/docs/version-specific/supported-software/i/IPM.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# IPM + +IPM is a portable profiling infrastructure for parallel codes. It provides a low-overhead profile of application performance and resource utilization in a parallel program. Communication, computation, and IO are the primary focus. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.6`` | ``gompi/2019b`` +``2.0.6`` | ``gompi/2020a`` +``2.0.6`` | ``iimpi/2019b`` +``2.0.6`` | ``iimpi/2020a`` +``2.0.6`` | ``iompi/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IPy.md b/docs/version-specific/supported-software/i/IPy.md new file mode 100644 index 000000000..26679c008 --- /dev/null +++ b/docs/version-specific/supported-software/i/IPy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# IPy + +Class and tools for handling of IPv4 and IPv6 addresses and networks + +*homepage*: + +version | toolchain +--------|---------- +``0.83`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IPython.md b/docs/version-specific/supported-software/i/IPython.md new file mode 100644 index 000000000..5fce971f2 --- /dev/null +++ b/docs/version-specific/supported-software/i/IPython.md @@ -0,0 +1,65 @@ +--- +search: + boost: 0.5 +--- +# IPython + +IPython provides a rich architecture for interactive computing with: Powerful interactive shells (terminal and Qt-based). A browser-based notebook with support for code, text, mathematical expressions, inline plots and other rich media. Support for interactive data visualization and use of GUI toolkits. Flexible, embeddable interpreters to load into your own projects. Easy to use, high performance tools for parallel computing. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.2.3`` | ``-Python-2.7.11`` | ``foss/2016a`` +``3.2.3`` | ``-Python-2.7.11`` | ``intel/2016a`` +``4.2.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``5.0.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``5.0.0`` | ``-Python-3.5.1`` | ``foss/2016a`` +``5.1.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``5.1.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``5.1.0`` | ``-Python-3.5.2`` | ``intel/2016b`` +``5.10.0`` | ``-Python-2.7.18`` | ``foss/2021b`` +``5.2.2`` | ``-Python-2.7.12`` | ``intel/2016b`` +``5.3.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``5.7.0`` | ``-Python-2.7.14`` | ``foss/2018a`` +``5.7.0`` | ``-Python-2.7.14`` | ``intel/2018a`` +``5.8.0`` | ``-Python-2.7.14`` | ``foss/2017b`` +``5.8.0`` | ``-Python-3.6.3`` | ``foss/2017b`` +``5.8.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``5.8.0`` | ``-Python-2.7.15`` | ``foss/2019a`` +``5.8.0`` | ``-Python-2.7.14`` | ``fosscuda/2017b`` +``5.8.0`` | ``-Python-3.6.3`` | ``fosscuda/2017b`` +``5.8.0`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``5.8.0`` | ``-Python-2.7.15`` | ``fosscuda/2019a`` +``5.8.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``5.8.0`` | ``-Python-3.6.3`` | ``intel/2017b`` +``5.8.0`` | ``-Python-2.7.15`` | ``intel/2018b`` +``5.8.0`` | ``-Python-2.7.14`` | ``intelcuda/2017b`` +``5.8.0`` | ``-Python-3.6.3`` | ``intelcuda/2017b`` +``6.2.1`` | ``-Python-3.6.4`` | ``foss/2017a`` +``6.3.1`` | ``-Python-3.6.4`` | ``intel/2018a`` +``6.4.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``7.13.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``7.13.0`` | ``-Python-3.8.2`` | ``intel/2020a`` +``7.15.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``7.15.0`` | ``-Python-3.8.2`` | ``intel/2020a`` +``7.18.1`` | | ``GCCcore/10.2.0`` +``7.2.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``7.2.0`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``7.2.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``7.25.0`` | | ``GCCcore/10.3.0`` +``7.26.0`` | | ``GCCcore/11.2.0`` +``7.7.0`` | ``-Python-3.7.2`` | ``foss/2019a`` +``7.7.0`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` +``7.7.0`` | ``-Python-3.7.2`` | ``intel/2019a`` +``7.9.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``7.9.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``7.9.0`` | ``-Python-3.7.4`` | ``intel/2019b`` +``8.14.0`` | | ``GCCcore/12.2.0`` +``8.14.0`` | | ``GCCcore/12.3.0`` +``8.17.2`` | | ``GCCcore/13.2.0`` +``8.5.0`` | | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IQ-TREE.md b/docs/version-specific/supported-software/i/IQ-TREE.md new file mode 100644 index 000000000..b6be6b17a --- /dev/null +++ b/docs/version-specific/supported-software/i/IQ-TREE.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# IQ-TREE + +Efficient phylogenomic software by maximum likelihood + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5.5`` | ``-omp-mpi`` | ``foss/2016a`` +``1.6.12`` | | ``foss/2018b`` +``1.6.12`` | | ``foss/2020a`` +``1.6.12`` | | ``intel/2019b`` +``1.6.6`` | | ``intel/2018a`` +``2.1.2`` | | ``foss/2020a`` +``2.1.2`` | | ``gompi/2020b`` +``2.1.3`` | | ``gompi/2021a`` +``2.2.1`` | | ``gompi/2021b`` +``2.2.2.3`` | | ``gompi/2022a`` +``2.2.2.6`` | | ``gompi/2022a`` +``2.2.2.6`` | | ``gompi/2022b`` +``2.2.2.7`` | | ``gompi/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IRkernel.md b/docs/version-specific/supported-software/i/IRkernel.md new file mode 100644 index 000000000..32e595cb6 --- /dev/null +++ b/docs/version-specific/supported-software/i/IRkernel.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# IRkernel + +The R kernel for the 'Jupyter' environment executes R code which the front-end (Jupyter Notebook or other front-ends) submits to the kernel via the network. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8.15`` | ``-R-3.4.3-Python-2.7.14`` | ``foss/2017b`` +``0.8.15`` | ``-R-3.4.3-Python-2.7.14`` | ``intel/2017b`` +``1.1`` | ``-R-3.6.2-Python-3.7.4`` | ``foss/2019b`` +``1.1`` | ``-R-3.6.3-Python-3.8.2`` | ``foss/2020a`` +``1.1`` | ``-R-3.6.2-Python-3.7.4`` | ``fosscuda/2019b`` +``1.2`` | ``-R-4.0.0-Python-3.8.2`` | ``foss/2020a`` +``1.2`` | ``-R-4.1.0`` | ``foss/2021a`` +``1.3`` | ``-R-4.2.0`` | ``foss/2021b`` +``1.3.2`` | ``-R-4.2.1`` | ``foss/2022a`` +``1.3.2`` | ``-R-4.3.2`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/ISA-L.md b/docs/version-specific/supported-software/i/ISA-L.md new file mode 100644 index 000000000..2feeaa5b1 --- /dev/null +++ b/docs/version-specific/supported-software/i/ISA-L.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# ISA-L + +Intelligent Storage Acceleration Library + +*homepage*: + +version | toolchain +--------|---------- +``2.30.0`` | ``GCCcore/10.2.0`` +``2.30.0`` | ``GCCcore/10.3.0`` +``2.30.0`` | ``GCCcore/11.2.0`` +``2.30.0`` | ``GCCcore/11.3.0`` +``2.30.0`` | ``GCCcore/12.2.0`` +``2.30.0`` | ``GCCcore/12.3.0`` +``2.31.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/ISL.md b/docs/version-specific/supported-software/i/ISL.md new file mode 100644 index 000000000..8f62a7642 --- /dev/null +++ b/docs/version-specific/supported-software/i/ISL.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# ISL + +isl is a library for manipulating sets and relations of integer points bounded by linear constraints. + +*homepage*: + +version | toolchain +--------|---------- +``0.14`` | ``GCC/4.9.2`` +``0.15`` | ``GCC/4.9.3-2.25`` +``0.15`` | ``GNU/4.9.3-2.25`` +``0.15`` | ``foss/2016a`` +``0.16`` | ``GCC/4.9.3-2.25`` +``0.17`` | ``foss/2016a`` +``0.23`` | ``GCCcore/10.2.0`` +``0.23`` | ``GCCcore/10.3.0`` +``0.23`` | ``GCCcore/9.3.0`` +``0.24`` | ``GCCcore/11.2.0`` +``0.24`` | ``GCCcore/11.3.0`` +``0.26`` | ``GCCcore/12.2.0`` +``0.26`` | ``GCCcore/12.3.0`` +``0.26`` | ``GCCcore/13.2.0`` +``0.26`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/ITK.md b/docs/version-specific/supported-software/i/ITK.md new file mode 100644 index 000000000..2dfbf7ada --- /dev/null +++ b/docs/version-specific/supported-software/i/ITK.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# ITK + +Insight Segmentation and Registration Toolkit (ITK) provides an extensive suite of software tools for registering and segmenting multidimensional imaging data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.12.2`` | ``-Python-2.7.12`` | ``foss/2016b`` +``4.13.0`` | ``-Python-2.7.14`` | ``foss/2018a`` +``4.13.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``4.13.1`` | ``-Python-2.7.14`` | ``foss/2018a`` +``4.13.1`` | ``-Python-3.6.4`` | ``foss/2018a`` +``4.13.1`` | ``-Python-2.7.15`` | ``foss/2018b`` +``4.13.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``4.13.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``5.0.1`` | ``-Python-3.7.2`` | ``foss/2019a`` +``5.0.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``5.0b01`` | ``-Python-3.6.6`` | ``foss/2018b`` +``5.1.2`` | ``-Python-3.8.2`` | ``foss/2020a`` +``5.1.2`` | | ``foss/2020a`` +``5.1.2`` | ``-Python-3.8.2`` | ``fosscuda/2020a`` +``5.1.2`` | | ``fosscuda/2020a`` +``5.2.1`` | | ``foss/2020b`` +``5.2.1`` | | ``foss/2021a`` +``5.2.1`` | | ``foss/2021b`` +``5.2.1`` | | ``foss/2022a`` +``5.2.1`` | | ``fosscuda/2020b`` +``5.3.0`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/ITSTool.md b/docs/version-specific/supported-software/i/ITSTool.md new file mode 100644 index 000000000..b0dc4fe16 --- /dev/null +++ b/docs/version-specific/supported-software/i/ITSTool.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# ITSTool + +ITS Tool allows you to translate your XML documents with PO files, using rules from the W3C Internationalization Tag Set (ITS) to determine what to translate and how to separate it into PO file messages. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.5`` | ``-Python-2.7.15`` | ``foss/2018b`` +``2.0.5`` | ``-Python-2.7.14`` | ``intel/2018a`` +``2.0.6`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` +``2.0.7`` | | ``GCCcore/11.3.0`` +``2.0.7`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/ITSx.md b/docs/version-specific/supported-software/i/ITSx.md new file mode 100644 index 000000000..b2e71be96 --- /dev/null +++ b/docs/version-specific/supported-software/i/ITSx.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# ITSx + +ITSx: Improved software detection and extraction of ITS1 and ITS2 from ribosomal ITS sequences of fungi and other eukaryotes for use in environmental sequencing. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.2`` | ``GCCcore/9.3.0`` +``1.1.3`` | ``GCCcore/10.3.0`` +``1.1.3`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IgBLAST.md b/docs/version-specific/supported-software/i/IgBLAST.md new file mode 100644 index 000000000..ed69fb2e9 --- /dev/null +++ b/docs/version-specific/supported-software/i/IgBLAST.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# IgBLAST + +IgBLAST faclilitates the analysis of immunoglobulin and T cell receptor variable domain sequences. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.15.0`` | ``-x64-linux`` | ``system`` +``1.18.0`` | ``-x64-linux`` | ``system`` +``1.21.0`` | ``-x64-linux`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/ImageJ.md b/docs/version-specific/supported-software/i/ImageJ.md new file mode 100644 index 000000000..c5b2b9a5d --- /dev/null +++ b/docs/version-specific/supported-software/i/ImageJ.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# ImageJ + +Image Processing and Analysis in Java + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.51a`` | | ``system`` +``1.51i`` | | ``system`` +``1.51k`` | | ``system`` +``1.52q`` | ``-Java-1.8`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/ImageMagick.md b/docs/version-specific/supported-software/i/ImageMagick.md new file mode 100644 index 000000000..5eb38a6d5 --- /dev/null +++ b/docs/version-specific/supported-software/i/ImageMagick.md @@ -0,0 +1,41 @@ +--- +search: + boost: 0.5 +--- +# ImageMagick + +ImageMagick is a software suite to create, edit, compose, or convert bitmap images + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``6.9.4-8`` | | ``intel/2016a`` +``7.0.1-6`` | | ``intel/2016a`` +``7.0.1-9`` | | ``intel/2016a`` +``7.0.10-1`` | | ``GCCcore/9.3.0`` +``7.0.10-35`` | | ``GCCcore/10.2.0`` +``7.0.11-14`` | | ``GCCcore/10.3.0`` +``7.0.2-9`` | | ``intel/2016a`` +``7.0.3-1`` | | ``intel/2016b`` +``7.0.5-10`` | | ``foss/2016b`` +``7.0.5-4`` | | ``intel/2017a`` +``7.0.7-14`` | | ``foss/2017b`` +``7.0.7-14`` | | ``intel/2017b`` +``7.0.7-15`` | | ``GCCcore/6.4.0`` +``7.0.7-26`` | | ``foss/2018a`` +``7.0.7-30`` | ``-Ghostscript-9.22-cairo-1.14.12`` | ``GCCcore/6.4.0`` +``7.0.7-30`` | | ``GCCcore/6.4.0`` +``7.0.7-39`` | ``-Ghostscript-9.23-cairo-1.14.12`` | ``GCCcore/6.4.0`` +``7.0.7-8`` | ``-JasPer-1.900.1`` | ``intel/2017a`` +``7.0.8-11`` | | ``GCCcore/7.3.0`` +``7.0.8-46`` | | ``GCCcore/8.2.0`` +``7.0.9-5`` | | ``GCCcore/8.3.0`` +``7.1.0-37`` | | ``GCCcore/11.3.0`` +``7.1.0-4`` | | ``GCCcore/11.2.0`` +``7.1.0-53`` | | ``GCCcore/12.2.0`` +``7.1.1-15`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/Imath.md b/docs/version-specific/supported-software/i/Imath.md new file mode 100644 index 000000000..9d84e9629 --- /dev/null +++ b/docs/version-specific/supported-software/i/Imath.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Imath + +Imath is a C++ and python library of 2D and 3D vector, matrix, and math operations for computer graphics + +*homepage*: + +version | toolchain +--------|---------- +``3.1.5`` | ``GCCcore/11.3.0`` +``3.1.6`` | ``GCCcore/12.2.0`` +``3.1.7`` | ``GCCcore/12.3.0`` +``3.1.9`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/Imlib2.md b/docs/version-specific/supported-software/i/Imlib2.md new file mode 100644 index 000000000..f6604dedb --- /dev/null +++ b/docs/version-specific/supported-software/i/Imlib2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Imlib2 + +This is the Imlib 2 library - a library that does image file loading and saving as well as rendering, manipulation, arbitrary polygon support, etc. It does ALL of these operations FAST. Imlib2 also tries to be highly intelligent about doing them, so writing naive programs can be done easily, without sacrificing speed. + +*homepage*: + +version | toolchain +--------|---------- +``1.5.1`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/InChI.md b/docs/version-specific/supported-software/i/InChI.md new file mode 100644 index 000000000..1a60d619b --- /dev/null +++ b/docs/version-specific/supported-software/i/InChI.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# InChI + +The IUPAC International Chemical Identifier (InChI TM) is a non-proprietary identifier for chemical substances that can be used in printed and electronic data sources thus enabling easier linking of diverse data compilations. + +*homepage*: + +version | toolchain +--------|---------- +``1.06`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/InParanoid.md b/docs/version-specific/supported-software/i/InParanoid.md new file mode 100644 index 000000000..2a5020906 --- /dev/null +++ b/docs/version-specific/supported-software/i/InParanoid.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# InParanoid + +InParanoid: ortholog groups with inparalogs. + +*homepage*: + +version | toolchain +--------|---------- +``5.0-20220607`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/Inelastica.md b/docs/version-specific/supported-software/i/Inelastica.md new file mode 100644 index 000000000..13bf81f94 --- /dev/null +++ b/docs/version-specific/supported-software/i/Inelastica.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Inelastica + +Python package for eigenchannels, vibrations and inelastic electron transport based on SIESTA/TranSIESTA DFT. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.5`` | ``-Python-2.7.15`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/Inferelator.md b/docs/version-specific/supported-software/i/Inferelator.md new file mode 100644 index 000000000..8a8af2551 --- /dev/null +++ b/docs/version-specific/supported-software/i/Inferelator.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Inferelator + +Inferelator 3.0 is a package for gene regulatory network inference that is based on regularized regression. + +*homepage*: + +version | toolchain +--------|---------- +``0.6.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/Infernal.md b/docs/version-specific/supported-software/i/Infernal.md new file mode 100644 index 000000000..c62cca0df --- /dev/null +++ b/docs/version-specific/supported-software/i/Infernal.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# Infernal + +Infernal ("INFERence of RNA ALignment") is for searching DNA sequence databases for RNA structure and sequence similarities. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.2`` | ``foss/2016b`` +``1.1.2`` | ``foss/2018b`` +``1.1.2`` | ``intel/2017a`` +``1.1.2`` | ``intel/2018b`` +``1.1.4`` | ``foss/2020b`` +``1.1.4`` | ``foss/2021a`` +``1.1.4`` | ``foss/2021b`` +``1.1.4`` | ``foss/2022a`` +``1.1.4`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/Infomap.md b/docs/version-specific/supported-software/i/Infomap.md new file mode 100644 index 000000000..7c1f5fe5c --- /dev/null +++ b/docs/version-specific/supported-software/i/Infomap.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Infomap + +Multi-level network clustering based on the Map equation. + +*homepage*: + +version | toolchain +--------|---------- +``20190308`` | ``GCC/8.2.0-2.31.1`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/Inspector.md b/docs/version-specific/supported-software/i/Inspector.md new file mode 100644 index 000000000..fb00f2aab --- /dev/null +++ b/docs/version-specific/supported-software/i/Inspector.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# Inspector + +Intel Inspector XE 2013 is an easy to use memory error checker and thread checker for serial and parallel applications + +*homepage*: + +version | toolchain +--------|---------- +``2013_update6`` | ``system`` +``2013_update7`` | ``system`` +``2016_update3`` | ``system`` +``2017_update1`` | ``system`` +``2017_update2`` | ``system`` +``2018_update1`` | ``system`` +``2018_update2`` | ``system`` +``2018_update3`` | ``system`` +``2019_update2`` | ``system`` +``2019_update5`` | ``system`` +``2021.4.0`` | ``system`` +``2022.0.0`` | ``system`` +``2022.1.0`` | ``system`` +``2023.2.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IntaRNA.md b/docs/version-specific/supported-software/i/IntaRNA.md new file mode 100644 index 000000000..2ff389f07 --- /dev/null +++ b/docs/version-specific/supported-software/i/IntaRNA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# IntaRNA + +Efficient RNA-RNA interaction prediction incorporating accessibility and seeding of interaction sites + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.3.1`` | ``-Python-2.7.15`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IntelClusterChecker.md b/docs/version-specific/supported-software/i/IntelClusterChecker.md new file mode 100644 index 000000000..4f33ccabc --- /dev/null +++ b/docs/version-specific/supported-software/i/IntelClusterChecker.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# IntelClusterChecker + +Verifies cluster components work together ― for - better uptime and productivity and lower total - cost of ownership (TCO) + +*homepage*: + +version | toolchain +--------|---------- +``2017.1.016`` | ``system`` +``2021.5.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IntelDAAL.md b/docs/version-specific/supported-software/i/IntelDAAL.md new file mode 100644 index 000000000..409589a06 --- /dev/null +++ b/docs/version-specific/supported-software/i/IntelDAAL.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# IntelDAAL + +Intel® Data Analytics Acceleration Library (Intel® DAAL) is the library of Intel® architecture optimized building blocks covering all stages of data analytics: data acquisition from a data source, preprocessing, transformation, data mining, modeling, validation, and decision making. + +*homepage*: + +version | toolchain +--------|---------- +``2019.4.007`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IntelPython.md b/docs/version-specific/supported-software/i/IntelPython.md new file mode 100644 index 000000000..1c533fe46 --- /dev/null +++ b/docs/version-specific/supported-software/i/IntelPython.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# IntelPython + +Intel® Distribution for Python. Powered by Anaconda. Accelerating Python* performance on modern architectures from Intel. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.7.15`` | ``-2019.2.066`` | ``system`` +``3.6.8`` | ``-2019.2.066`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/InterOp.md b/docs/version-specific/supported-software/i/InterOp.md new file mode 100644 index 000000000..dd8b5bc98 --- /dev/null +++ b/docs/version-specific/supported-software/i/InterOp.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# InterOp + +The Illumina InterOp libraries are a set of common routines used for reading InterOp metric files produced by Illumina sequencers including NextSeq 1k/2k and NovaSeqX. These libraries are backwards compatible and capable of supporting prior releases of the software, with one exception: GA systems have been excluded. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.4`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/InterProScan.md b/docs/version-specific/supported-software/i/InterProScan.md new file mode 100644 index 000000000..ca34cbaba --- /dev/null +++ b/docs/version-specific/supported-software/i/InterProScan.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# InterProScan + +InterProScan is a sequence analysis application (nucleotide and protein sequences) that combines different protein signature recognition methods into one resource. + +*homepage*: + +version | toolchain +--------|---------- +``5.26-65.0`` | ``intel/2017b`` +``5.27-66.0`` | ``intel/2017b`` +``5.28-67.0`` | ``intel/2018a`` +``5.52-86.0`` | ``GCCcore/10.3.0`` +``5.55-88.0`` | ``foss/2021a`` +``5.62-94.0`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/InterProScan_data.md b/docs/version-specific/supported-software/i/InterProScan_data.md new file mode 100644 index 000000000..fd040ae3e --- /dev/null +++ b/docs/version-specific/supported-software/i/InterProScan_data.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# InterProScan_data + +InterProScan is a sequence analysis application (nucleotide and protein sequences) that combines different protein signature recognition methods into one resource [data only]. + +*homepage*: + +version | toolchain +--------|---------- +``5.55-88.0`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IonQuant.md b/docs/version-specific/supported-software/i/IonQuant.md new file mode 100644 index 000000000..a669afc10 --- /dev/null +++ b/docs/version-specific/supported-software/i/IonQuant.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# IonQuant + +IonQuant is a fast and comprehensive tool for MS1 precursor intensity-based quantification for timsTOF PASEF DDA and non-timsTOF (e.g., Orbitrap) data. It enables label-free quantification with false discovery (FDR) controlled match-between-runs (MBR). It can also be used for quantification in labelling-based experiments such as those involving SILAC, dimethyl, or similar labelling strategies. IonQuant is available as part of FragPipe. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.10.12`` | ``-Java-11`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/Ipopt.md b/docs/version-specific/supported-software/i/Ipopt.md new file mode 100644 index 000000000..c95cfc247 --- /dev/null +++ b/docs/version-specific/supported-software/i/Ipopt.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Ipopt + +Ipopt (Interior Point OPTimizer, pronounced eye-pea-Opt) is a software package for large-scale nonlinear optimization. + +*homepage*: + +version | toolchain +--------|---------- +``3.12.13`` | ``intel/2019a`` +``3.12.9`` | ``foss/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/Iris.md b/docs/version-specific/supported-software/i/Iris.md new file mode 100644 index 000000000..de6e558c2 --- /dev/null +++ b/docs/version-specific/supported-software/i/Iris.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Iris + +A module for improving the insertion sequences of structural variant calls + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.5`` | ``-Java-15`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IronPython.md b/docs/version-specific/supported-software/i/IronPython.md new file mode 100644 index 000000000..4ef84207b --- /dev/null +++ b/docs/version-specific/supported-software/i/IronPython.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# IronPython + +IronPython is an open-source implementation of the Python programming language which is tightly integrated with the .NET Framework. IronPython can use the .NET Framework and Python libraries, and other .NET languages can use Python code just as easily. + +*homepage*: + +version | toolchain +--------|---------- +``2.7`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IsoNet.md b/docs/version-specific/supported-software/i/IsoNet.md new file mode 100644 index 000000000..0923c9374 --- /dev/null +++ b/docs/version-specific/supported-software/i/IsoNet.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# IsoNet + +IsoNet stands for for ISOtropic reconstructioN of Electron Tomography. It trains deep convolutional neural networks to reconstruct meaningful contents in the mis sing wedge for electron tomography, and to increase signal-to-noise ratio, using the information learned from the original tomogram. The software requires tomograms as input. Observing at about 30A resolution, the IsoNet generated tomograms are largely isotropic. + +*homepage*: + +version | toolchain +--------|---------- +``0.1_20210822_04_674f67f`` | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IsoQuant.md b/docs/version-specific/supported-software/i/IsoQuant.md new file mode 100644 index 000000000..1032eb156 --- /dev/null +++ b/docs/version-specific/supported-software/i/IsoQuant.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# IsoQuant + +IsoQuant is a tool for the genome-based analysis of long RNA reads, such as PacBio or Oxford Nanopores. IsoQuant allows to reconstruct and quantify transcript models with high precision and decent recall. If the reference annotation is given, IsoQuant also assigns reads to the annotated isoforms based on their intron and exon structure. IsoQuant further performs annotated gene, isoform, exon and intron quantification. If reads are grouped (e.g. according to cell type), counts are reported according to the provided grouping. + +*homepage*: + +version | toolchain +--------|---------- +``3.3.0`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IsoSeq.md b/docs/version-specific/supported-software/i/IsoSeq.md new file mode 100644 index 000000000..fc6708ca6 --- /dev/null +++ b/docs/version-specific/supported-software/i/IsoSeq.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# IsoSeq + +IsoSeq v3 contains the newest tools to identify transcripts in PacBio single-molecule sequencing data. Starting in SMRT Link v6.0.0, those tools power the IsoSeq GUI-based analysis application. A composable workflow of existing tools and algorithms, combined with a new clustering technique, allows to process the ever-increasing yield of PacBio machines with similar performance to IsoSeq versions 1 and 2. Starting with version 3.4, support for UMI and cell barcode based deduplication has been added. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.8.2`` | ``-linux-x86_64`` | ``system`` +``4.0.0`` | ``-linux-x86_64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/IsoformSwitchAnalyzeR.md b/docs/version-specific/supported-software/i/IsoformSwitchAnalyzeR.md new file mode 100644 index 000000000..bccd32661 --- /dev/null +++ b/docs/version-specific/supported-software/i/IsoformSwitchAnalyzeR.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# IsoformSwitchAnalyzeR + +Analysis of alternative splicing and isoform switches with predicted functional consequences (e.g. gain/loss of protein domains etc.) from quantification of all types of RNASeq by tools such as Kallisto, Salmon, StringTie, Cufflinks/Cuffdiff etc. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.18.0`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/i-PI.md b/docs/version-specific/supported-software/i/i-PI.md new file mode 100644 index 000000000..b126e1fde --- /dev/null +++ b/docs/version-specific/supported-software/i/i-PI.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# i-PI + +A Python wrapper for (ab initio) (path integrals) molecular dynamics + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0-20160213`` | ``-Python-2.7.11`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/i-cisTarget.md b/docs/version-specific/supported-software/i/i-cisTarget.md new file mode 100644 index 000000000..dfb562c7f --- /dev/null +++ b/docs/version-specific/supported-software/i/i-cisTarget.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# i-cisTarget + +An integrative genomics method for the prediction of regulatory features and cis-regulatory modules in Human, Mouse, and Fly + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20160602`` | ``-Python-2.7.11`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/i7z.md b/docs/version-specific/supported-software/i/i7z.md new file mode 100644 index 000000000..7cb03284d --- /dev/null +++ b/docs/version-specific/supported-software/i/i7z.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# i7z + +A better i7 (and now i3, i5) reporting tool for Linux + +*homepage*: + +version | toolchain +--------|---------- +``20131012`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/iCount.md b/docs/version-specific/supported-software/i/iCount.md new file mode 100644 index 000000000..02d379d63 --- /dev/null +++ b/docs/version-specific/supported-software/i/iCount.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# iCount + +iCount: protein-RNA interaction analysis is a Python module and associated command-line interface (CLI), which provides all the commands needed to process iCLIP data on protein-RNA interactions. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20180820`` | ``-Python-3.6.6`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/iVar.md b/docs/version-specific/supported-software/i/iVar.md new file mode 100644 index 000000000..847c55aa7 --- /dev/null +++ b/docs/version-specific/supported-software/i/iVar.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# iVar + +iVar is a computational package that contains functions broadly useful for viral amplicon-based sequencing. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.1`` | ``foss/2018b`` +``1.3.1`` | ``GCC/10.2.0`` +``1.3.1`` | ``GCC/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/icc.md b/docs/version-specific/supported-software/i/icc.md new file mode 100644 index 000000000..b1ff5965d --- /dev/null +++ b/docs/version-specific/supported-software/i/icc.md @@ -0,0 +1,42 @@ +--- +search: + boost: 0.5 +--- +# icc + +C and C++ compiler from Intel + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2016.0.109`` | ``-GCC-4.9.3-2.25`` | ``system`` +``2016.0.109`` | | ``system`` +``2016.1.150`` | ``-GCC-4.9.3-2.25`` | ``system`` +``2016.2.181`` | ``-GCC-4.9.3-2.25`` | ``system`` +``2016.2.181`` | ``-GCC-5.3.0-2.26`` | ``system`` +``2016.3.210`` | ``-GCC-4.9.3-2.25`` | ``system`` +``2016.3.210`` | ``-GCC-5.3.0-2.26`` | ``system`` +``2016.3.210`` | ``-GCC-5.4.0-2.26`` | ``system`` +``2017.0.098`` | ``-GCC-5.4.0-2.26`` | ``system`` +``2017.1.132`` | ``-GCC-5.4.0-2.26`` | ``system`` +``2017.1.132`` | ``-GCC-6.3.0-2.27`` | ``system`` +``2017.2.174`` | ``-GCC-6.3.0-2.27`` | ``system`` +``2017.4.196`` | ``-GCC-6.4.0-2.28`` | ``system`` +``2017.5.239`` | ``-GCC-6.4.0-2.28`` | ``system`` +``2017.6.256`` | ``-GCC-6.4.0-2.28`` | ``system`` +``2017.7.259`` | ``-GCC-6.4.0-2.28`` | ``system`` +``2018.0.128`` | ``-GCC-6.4.0-2.28`` | ``system`` +``2018.1.163`` | ``-GCC-6.4.0-2.28`` | ``system`` +``2018.2.199`` | ``-GCC-6.4.0-2.28`` | ``system`` +``2018.3.222`` | ``-GCC-7.3.0-2.30`` | ``system`` +``2018.5.274`` | ``-GCC-7.3.0-2.30`` | ``system`` +``2019.0.117`` | ``-GCC-8.2.0-2.31.1`` | ``system`` +``2019.1.144`` | ``-GCC-8.2.0-2.31.1`` | ``system`` +``2019.2.187`` | ``-GCC-8.2.0-2.31.1`` | ``system`` +``2019.3.199`` | ``-GCC-8.3.0-2.32`` | ``system`` +``system`` | ``-GCC-system-2.29`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/iccifort.md b/docs/version-specific/supported-software/i/iccifort.md new file mode 100644 index 000000000..98b7e5c69 --- /dev/null +++ b/docs/version-specific/supported-software/i/iccifort.md @@ -0,0 +1,46 @@ +--- +search: + boost: 0.5 +--- +# iccifort + +Intel Cluster Toolkit Compiler Edition provides Intel C,C++ and fortran compilers, Intel MPI and Intel MKL + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2016.0.109`` | ``-GCC-4.9.3-2.25`` | ``system`` +``2016.0.109`` | | ``system`` +``2016.1.150`` | ``-GCC-4.9.3-2.25`` | ``system`` +``2016.2.181`` | ``-GCC-4.9.3-2.25`` | ``system`` +``2016.2.181`` | ``-GCC-5.3.0-2.26`` | ``system`` +``2016.3.210`` | ``-GCC-4.9.3-2.25`` | ``system`` +``2016.3.210`` | ``-GCC-5.3.0-2.26`` | ``system`` +``2016.3.210`` | ``-GCC-5.4.0-2.26`` | ``system`` +``2017.0.098`` | ``-GCC-5.4.0-2.26`` | ``system`` +``2017.1.132`` | ``-GCC-5.4.0-2.26`` | ``system`` +``2017.1.132`` | ``-GCC-6.3.0-2.27`` | ``system`` +``2017.2.174`` | ``-GCC-6.3.0-2.27`` | ``system`` +``2017.4.196`` | ``-GCC-6.4.0-2.28`` | ``system`` +``2017.5.239`` | ``-GCC-6.4.0-2.28`` | ``system`` +``2018.0.128`` | ``-GCC-6.4.0-2.28`` | ``system`` +``2018.1.163`` | ``-GCC-6.4.0-2.28`` | ``system`` +``2018.2.199`` | ``-GCC-6.4.0-2.28`` | ``system`` +``2018.3.222`` | ``-GCC-7.3.0-2.30`` | ``system`` +``2018.5.274`` | ``-GCC-7.3.0-2.30`` | ``system`` +``2019.0.117`` | ``-GCC-8.2.0-2.31.1`` | ``system`` +``2019.1.144`` | ``-GCC-8.2.0-2.31.1`` | ``system`` +``2019.2.187`` | ``-GCC-8.2.0-2.31.1`` | ``system`` +``2019.3.199`` | ``-GCC-8.3.0-2.32`` | ``system`` +``2019.4.243`` | | ``system`` +``2019.5.281`` | | ``system`` +``2020.0.166`` | ``-GCC-9.2.0`` | ``system`` +``2020.0.166`` | | ``system`` +``2020.1.217`` | | ``system`` +``2020.4.304`` | | ``system`` +``system`` | ``-GCC-system-2.29`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/iccifortcuda.md b/docs/version-specific/supported-software/i/iccifortcuda.md new file mode 100644 index 000000000..c484ddf44 --- /dev/null +++ b/docs/version-specific/supported-software/i/iccifortcuda.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# iccifortcuda + +Intel Cluster Toolkit Compiler Edition provides Intel C/C++ and Fortran compilers, Intel MPI & Intel MKL, with CUDA toolkit + +*homepage*: <(none)> + +version | versionsuffix | toolchain +--------|---------------|---------- +``2016.10`` | | ``system`` +``2017.4.196`` | ``-GCC-6.4.0-2.28`` | ``system`` +``2019a`` | | ``system`` +``2019b`` | | ``system`` +``2020a`` | | ``system`` +``2020b`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/iced.md b/docs/version-specific/supported-software/i/iced.md new file mode 100644 index 000000000..b18655c98 --- /dev/null +++ b/docs/version-specific/supported-software/i/iced.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# iced + +Implements the ICE normalization of hic data. + +*homepage*: + +version | toolchain +--------|---------- +``0.5.10`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/ichorCNA.md b/docs/version-specific/supported-software/i/ichorCNA.md new file mode 100644 index 000000000..7e51c939f --- /dev/null +++ b/docs/version-specific/supported-software/i/ichorCNA.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ichorCNA + +ichorCNA is a tool for estimating the fraction of tumor in cell-free DNA from ultra-low-pass whole genome sequencing + +*homepage*: + +version | toolchain +--------|---------- +``0.2.0`` | ``foss/2019b`` +``0.3.2-20191219`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/icmake.md b/docs/version-specific/supported-software/i/icmake.md new file mode 100644 index 000000000..a044fc7e6 --- /dev/null +++ b/docs/version-specific/supported-software/i/icmake.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# icmake + +Icmake is a hybrid between a 'make' utility and a 'shell script' language. Originally, it was written to provide a useful tool for automatic program maintenance and system administrative tasks on old MS-DOS platforms. + +*homepage*: + +version | toolchain +--------|---------- +``7.23.02`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/idemux.md b/docs/version-specific/supported-software/i/idemux.md new file mode 100644 index 000000000..530362176 --- /dev/null +++ b/docs/version-specific/supported-software/i/idemux.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# idemux + +idemux - inline barcode demultiplexing Idemux is a command line tool designed to demultiplex paired-end FASTQ files from QuantSeq-Pool. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.6`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/ieeg-cli.md b/docs/version-specific/supported-software/i/ieeg-cli.md new file mode 100644 index 000000000..1ec33c275 --- /dev/null +++ b/docs/version-specific/supported-software/i/ieeg-cli.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ieeg-cli + +IEEG.ORG is a collaborative initiative funded by the National Institutes of Neurological Disorders and Stroke. This initiative seeks to advance research towards the understanding of epilepsy by providing a platform for sharing data, tools and expertise between researchers. + +*homepage*: + +version | toolchain +--------|---------- +``1.14.56`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/ifort.md b/docs/version-specific/supported-software/i/ifort.md new file mode 100644 index 000000000..bf54d8272 --- /dev/null +++ b/docs/version-specific/supported-software/i/ifort.md @@ -0,0 +1,42 @@ +--- +search: + boost: 0.5 +--- +# ifort + +Fortran compiler from Intel + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2016.0.109`` | ``-GCC-4.9.3-2.25`` | ``system`` +``2016.0.109`` | | ``system`` +``2016.1.150`` | ``-GCC-4.9.3-2.25`` | ``system`` +``2016.2.181`` | ``-GCC-4.9.3-2.25`` | ``system`` +``2016.2.181`` | ``-GCC-5.3.0-2.26`` | ``system`` +``2016.3.210`` | ``-GCC-4.9.3-2.25`` | ``system`` +``2016.3.210`` | ``-GCC-5.3.0-2.26`` | ``system`` +``2016.3.210`` | ``-GCC-5.4.0-2.26`` | ``system`` +``2017.0.098`` | ``-GCC-5.4.0-2.26`` | ``system`` +``2017.1.132`` | ``-GCC-5.4.0-2.26`` | ``system`` +``2017.1.132`` | ``-GCC-6.3.0-2.27`` | ``system`` +``2017.2.174`` | ``-GCC-6.3.0-2.27`` | ``system`` +``2017.4.196`` | ``-GCC-6.4.0-2.28`` | ``system`` +``2017.5.239`` | ``-GCC-6.4.0-2.28`` | ``system`` +``2017.6.256`` | ``-GCC-6.4.0-2.28`` | ``system`` +``2017.7.259`` | ``-GCC-6.4.0-2.28`` | ``system`` +``2018.0.128`` | ``-GCC-6.4.0-2.28`` | ``system`` +``2018.1.163`` | ``-GCC-6.4.0-2.28`` | ``system`` +``2018.2.199`` | ``-GCC-6.4.0-2.28`` | ``system`` +``2018.3.222`` | ``-GCC-7.3.0-2.30`` | ``system`` +``2018.5.274`` | ``-GCC-7.3.0-2.30`` | ``system`` +``2019.0.117`` | ``-GCC-8.2.0-2.31.1`` | ``system`` +``2019.1.144`` | ``-GCC-8.2.0-2.31.1`` | ``system`` +``2019.2.187`` | ``-GCC-8.2.0-2.31.1`` | ``system`` +``2019.3.199`` | ``-GCC-8.3.0-2.32`` | ``system`` +``system`` | ``-GCC-system-2.29`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/igraph.md b/docs/version-specific/supported-software/i/igraph.md new file mode 100644 index 000000000..00d665e4d --- /dev/null +++ b/docs/version-specific/supported-software/i/igraph.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# igraph + +igraph is a collection of network analysis tools with the emphasis on efficiency, portability and ease of use. igraph is open source and free. igraph can be programmed in R, Python and C/C++. + +*homepage*: + +version | toolchain +--------|---------- +``0.10.10`` | ``foss/2023a`` +``0.10.3`` | ``foss/2022a`` +``0.10.6`` | ``foss/2022b`` +``0.7.1`` | ``foss/2018b`` +``0.7.1`` | ``intel/2016b`` +``0.7.1`` | ``intel/2017b`` +``0.8.0`` | ``foss/2019b`` +``0.8.2`` | ``foss/2020a`` +``0.8.5`` | ``foss/2020b`` +``0.9.1`` | ``foss/2020b`` +``0.9.1`` | ``fosscuda/2020b`` +``0.9.4`` | ``foss/2021a`` +``0.9.5`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/igv-reports.md b/docs/version-specific/supported-software/i/igv-reports.md new file mode 100644 index 000000000..99ba60e9d --- /dev/null +++ b/docs/version-specific/supported-software/i/igv-reports.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# igv-reports + +Python application to generate self-contained igv.js pages that can be opened within a browser with "file" protocol. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.9.8`` | ``-Python-3.7.4`` | ``GCC/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/igvShiny.md b/docs/version-specific/supported-software/i/igvShiny.md new file mode 100644 index 000000000..4ab60c02c --- /dev/null +++ b/docs/version-specific/supported-software/i/igvShiny.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# igvShiny + +An htmlwidget version of igv, for RStudio and Shiny apps + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20240112`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/iibff.md b/docs/version-specific/supported-software/i/iibff.md new file mode 100644 index 000000000..0d432409b --- /dev/null +++ b/docs/version-specific/supported-software/i/iibff.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# iibff + +GCC and GFortran based compiler toolchain with OpenMPI, BLIS, libFLAME, ScaLAPACK and FFTW. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``2020b`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/iimkl.md b/docs/version-specific/supported-software/i/iimkl.md new file mode 100644 index 000000000..64a108a91 --- /dev/null +++ b/docs/version-specific/supported-software/i/iimkl.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# iimkl + +Intel C/C++ and Fortran compilers, alongside Intel Math Kernel Library (MKL). + +*homepage*: + +version | toolchain +--------|---------- +``2018a`` | ``system`` +``2022a`` | ``system`` +``2022b`` | ``system`` +``2023a`` | ``system`` +``2023b`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/iimpi.md b/docs/version-specific/supported-software/i/iimpi.md new file mode 100644 index 000000000..cbad95f47 --- /dev/null +++ b/docs/version-specific/supported-software/i/iimpi.md @@ -0,0 +1,63 @@ +--- +search: + boost: 0.5 +--- +# iimpi + +Intel C/C++ and Fortran compilers, alongside Intel MPI. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2016.00`` | ``-GCC-4.9.3-2.25`` | ``system`` +``2016.01`` | ``-GCC-4.9.3-2.25`` | ``system`` +``2016.02`` | ``-GCC-4.9.3-2.25`` | ``system`` +``2016.02`` | ``-GCC-5.3.0-2.26`` | ``system`` +``2016.03`` | ``-GCC-4.9.3-2.25`` | ``system`` +``2016.03`` | ``-GCC-5.3.0-2.26`` | ``system`` +``2016.03`` | ``-GCC-5.4.0-2.26`` | ``system`` +``2016b`` | | ``system`` +``2017.00`` | ``-GCC-5.4.0-2.26`` | ``system`` +``2017.01`` | ``-GCC-5.4.0-2.26`` | ``system`` +``2017.02`` | ``-GCC-6.3.0-2.27`` | ``system`` +``2017.09`` | | ``system`` +``2017a`` | | ``system`` +``2017b`` | | ``system`` +``2018.00`` | | ``system`` +``2018.01`` | | ``system`` +``2018.02`` | | ``system`` +``2018.04`` | | ``system`` +``2018a`` | | ``system`` +``2018b`` | | ``system`` +``2019.00`` | | ``system`` +``2019.01`` | | ``system`` +``2019.02`` | | ``system`` +``2019.03`` | | ``system`` +``2019a`` | | ``system`` +``2019b`` | | ``system`` +``2020.00`` | | ``system`` +``2020.06-impi-18.5`` | | ``system`` +``2020.12`` | | ``system`` +``2020a`` | | ``system`` +``2020b`` | | ``system`` +``2021a`` | | ``system`` +``2021b`` | | ``system`` +``2022.00`` | | ``system`` +``2022.05`` | | ``system`` +``2022.09`` | | ``system`` +``2022.11`` | | ``system`` +``2022.12`` | | ``system`` +``2022a`` | | ``system`` +``2022b`` | | ``system`` +``2023.03`` | | ``system`` +``2023.07`` | | ``system`` +``2023.11`` | | ``system`` +``2023a`` | | ``system`` +``2023b`` | | ``system`` +``8.1.5`` | ``-GCC-4.9.3-2.25`` | ``system`` +``system`` | ``-GCC-system-2.29`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/iimpic.md b/docs/version-specific/supported-software/i/iimpic.md new file mode 100644 index 000000000..199a7df75 --- /dev/null +++ b/docs/version-specific/supported-software/i/iimpic.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# iimpic + +Intel C/C++ and Fortran compilers, alongside Intel MPI. + +*homepage*: + +version | toolchain +--------|---------- +``2016.10`` | ``system`` +``2017b`` | ``system`` +``2019a`` | ``system`` +``2019b`` | ``system`` +``2020a`` | ``system`` +``2020b`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/imagecodecs.md b/docs/version-specific/supported-software/i/imagecodecs.md new file mode 100644 index 000000000..699b8d0a8 --- /dev/null +++ b/docs/version-specific/supported-software/i/imagecodecs.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# imagecodecs + +Imagecodecs is a Python library that provides block-oriented, in-memory buffer transformation, compression, and decompression functions for use in the tifffile, czifile, zarr, and other scientific image input/output modules. + +*homepage*: + +version | toolchain +--------|---------- +``2021.8.26`` | ``foss/2020b`` +``2022.9.26`` | ``foss/2021a`` +``2022.9.26`` | ``foss/2022a`` +``2024.1.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/imageio.md b/docs/version-specific/supported-software/i/imageio.md new file mode 100644 index 000000000..140cea17f --- /dev/null +++ b/docs/version-specific/supported-software/i/imageio.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# imageio + +Imageio is a Python library that provides an easy interface to read and write a wide range of image data, including animated images, video, volumetric data, and scientific formats. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.10.5`` | | ``foss/2021a`` +``2.13.5`` | | ``foss/2021b`` +``2.22.2`` | | ``foss/2022a`` +``2.3.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``2.31.1`` | | ``foss/2022b`` +``2.33.1`` | | ``gfbf/2023a`` +``2.5.0`` | | ``foss/2019a`` +``2.9.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.9.0`` | | ``foss/2020b`` +``2.9.0`` | | ``fosscuda/2020b`` +``2.9.0`` | ``-Python-3.7.4`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/imake.md b/docs/version-specific/supported-software/i/imake.md new file mode 100644 index 000000000..eadd07bd1 --- /dev/null +++ b/docs/version-specific/supported-software/i/imake.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# imake + +imake is a Makefile-generator that is intended to make it easier to develop software portably for multiple systems. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.7`` | ``intel/2016a`` +``1.0.8`` | ``GCCcore/10.2.0`` +``1.0.8`` | ``GCCcore/10.3.0`` +``1.0.8`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/imbalanced-learn.md b/docs/version-specific/supported-software/i/imbalanced-learn.md new file mode 100644 index 000000000..260953a7e --- /dev/null +++ b/docs/version-specific/supported-software/i/imbalanced-learn.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# imbalanced-learn + +imbalanced-learn is a Python package offering a number of re-sampling techniques commonly used in datasets showing strong between-class imbalance. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.1`` | | ``foss/2022a`` +``0.2.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.2.1`` | ``-Python-3.5.2`` | ``intel/2016b`` +``0.3.3`` | ``-Python-3.6.4`` | ``foss/2018a`` +``0.4.3`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.7.0`` | | ``foss/2020b`` +``0.9.0`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/imgaug.md b/docs/version-specific/supported-software/i/imgaug.md new file mode 100644 index 000000000..f7759303a --- /dev/null +++ b/docs/version-specific/supported-software/i/imgaug.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# imgaug + +This python library helps you with augmenting images for your machine learning projects. It converts a set of input images into a new, much larger set of slightly altered images. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.8`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.4.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.4.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``0.4.0`` | | ``foss/2021a`` +``0.4.0`` | ``-CUDA-11.4.1`` | ``foss/2021b`` +``0.4.0`` | | ``foss/2021b`` +``0.4.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.4.0`` | | ``foss/2022a`` +``0.4.1`` | ``-CUDA-12.1.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/imkl-FFTW.md b/docs/version-specific/supported-software/i/imkl-FFTW.md new file mode 100644 index 000000000..9bc465fbf --- /dev/null +++ b/docs/version-specific/supported-software/i/imkl-FFTW.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# imkl-FFTW + +FFTW interfaces using Intel oneAPI Math Kernel Library + +*homepage*: + +version | toolchain +--------|---------- +``2021.4.0`` | ``gompi/2021b`` +``2021.4.0`` | ``iimpi/2021b`` +``2022.0.1`` | ``iimpi/2022.00`` +``2022.1.0`` | ``iimpi/2022.05`` +``2022.1.0`` | ``iimpi/2022a`` +``2022.2.0`` | ``iimpi/2022.09`` +``2022.2.1`` | ``iimpi/2022.11`` +``2022.2.1`` | ``iimpi/2022b`` +``2023.0.0`` | ``iimpi/2022.12`` +``2023.1.0`` | ``iimpi/2023.03`` +``2023.1.0`` | ``iimpi/2023a`` +``2023.2.0`` | ``iimpi/2023.07`` +``2023.2.0`` | ``iimpi/2023b`` +``2024.0.0`` | ``iimpi/2023.11`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/imkl.md b/docs/version-specific/supported-software/i/imkl.md new file mode 100644 index 000000000..ea4deda7f --- /dev/null +++ b/docs/version-specific/supported-software/i/imkl.md @@ -0,0 +1,99 @@ +--- +search: + boost: 0.5 +--- +# imkl + +Intel Math Kernel Library is a library of highly optimized, extensively threaded math routines for science, engineering, and financial applications that require maximum performance. Core math functions include BLAS, LAPACK, ScaLAPACK, Sparse Solvers, Fast Fourier Transforms, Vector Math, and more. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``11.2.3.187`` | | ``gimpi/2.11.5`` +``11.3.0.109`` | | ``iimpi/2016.00-GCC-4.9.3-2.25`` +``11.3.1.150`` | | ``iimpi/2016.01-GCC-4.9.3-2.25`` +``11.3.1.150`` | | ``iimpi/8.1.5-GCC-4.9.3-2.25`` +``11.3.2.181`` | | ``iimpi/2016.02-GCC-4.9.3-2.25`` +``11.3.2.181`` | | ``iimpi/2016.02-GCC-5.3.0-2.26`` +``11.3.2.181`` | | ``pompi/2016.03`` +``11.3.3.210`` | | ``iimpi/2016.03-GCC-4.9.3-2.25`` +``11.3.3.210`` | | ``iimpi/2016.03-GCC-5.3.0-2.26`` +``11.3.3.210`` | | ``iimpi/2016.03-GCC-5.4.0-2.26`` +``11.3.3.210`` | | ``iimpi/2016b`` +``11.3.3.210`` | | ``iimpic/2016.10`` +``11.3.3.210`` | | ``iompi/2016.07`` +``11.3.3.210`` | | ``iompi/2016.09-GCC-4.9.3-2.25`` +``11.3.3.210`` | | ``iompi/2016.09-GCC-5.4.0-2.26`` +``11.3.3.210`` | | ``pompi/2016.04`` +``11.3.3.210`` | | ``pompi/2016.09`` +``2017.0.098`` | | ``iimpi/2017.00-GCC-5.4.0-2.26`` +``2017.1.132`` | | ``gimpi/2017a`` +``2017.1.132`` | | ``iimpi/2017.01-GCC-5.4.0-2.26`` +``2017.1.132`` | | ``iimpi/2017a`` +``2017.1.132`` | | ``iompi/2017.01`` +``2017.1.132`` | | ``iompi/2017a`` +``2017.2.174`` | | ``iimpi/2017.02-GCC-6.3.0-2.27`` +``2017.3.196`` | | ``gompi/2017b`` +``2017.3.196`` | | ``iimpi/2017b`` +``2017.3.196`` | | ``iimpic/2017b`` +``2017.3.196`` | | ``iompi/2017b`` +``2017.4.239`` | | ``iimpi/2017.09`` +``2018.0.128`` | | ``iimpi/2018.00`` +``2018.1.163`` | ``-serial`` | ``iccifort/2018.1.163-GCC-6.4.0-2.28`` +``2018.1.163`` | | ``iimpi/2018.01`` +``2018.1.163`` | | ``iimpi/2018a`` +``2018.1.163`` | | ``iompi/2018a`` +``2018.2.199`` | | ``iimpi/2018.02`` +``2018.2.199`` | | ``iompi/2018.02`` +``2018.3.222`` | | ``gimpi/2018b`` +``2018.3.222`` | | ``gompi/2018b`` +``2018.3.222`` | | ``iimpi/2018b`` +``2018.3.222`` | | ``iompi/2018b`` +``2018.4.274`` | | ``iimpi/2018.04`` +``2019.0.117`` | | ``iimpi/2019.00`` +``2019.1.144`` | | ``gompi/2019a`` +``2019.1.144`` | | ``iimpi/2019.01`` +``2019.1.144`` | | ``iimpi/2019a`` +``2019.1.144`` | | ``iimpic/2019a`` +``2019.1.144`` | | ``iompi/2019.01`` +``2019.2.187`` | | ``iimpi/2019.02`` +``2019.3.199`` | | ``iimpi/2019.03`` +``2019.5.281`` | | ``gompi/2019b`` +``2019.5.281`` | | ``gompic/2019b`` +``2019.5.281`` | | ``iimpi/2019b`` +``2019.5.281`` | | ``iimpic/2019b`` +``2019.5.281`` | | ``iompi/2019b`` +``2020.0.166`` | | ``iimpi/2020.00`` +``2020.1.217`` | | ``gompi/2020a`` +``2020.1.217`` | | ``iimpi/2020.06-impi-18.5`` +``2020.1.217`` | | ``iimpi/2020a`` +``2020.1.217`` | | ``iimpic/2020a`` +``2020.1.217`` | | ``iompi/2020a`` +``2020.4.304`` | | ``NVHPC/21.2`` +``2020.4.304`` | | ``gompi/2020b`` +``2020.4.304`` | | ``gompic/2020b`` +``2020.4.304`` | | ``iimpi/2020b`` +``2020.4.304`` | | ``iimpic/2020b`` +``2020.4.304`` | | ``iompi/2020b`` +``2021.1.1`` | | ``iimpi/2020.12`` +``2021.2.0`` | | ``gompi/2021a`` +``2021.2.0`` | | ``iimpi/2021a`` +``2021.2.0`` | | ``iompi/2021a`` +``2021.3.0`` | | ``gompi/2021a`` +``2021.4.0`` | | ``iompi/2021b`` +``2021.4.0`` | | ``system`` +``2022.0.1`` | | ``system`` +``2022.1.0`` | | ``gompi/2022a`` +``2022.1.0`` | | ``system`` +``2022.2.0`` | | ``system`` +``2022.2.1`` | | ``system`` +``2023.0.0`` | | ``system`` +``2023.1.0`` | | ``gompi/2023a`` +``2023.1.0`` | | ``system`` +``2023.2.0`` | | ``system`` +``2024.0.0`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/immunedeconv.md b/docs/version-specific/supported-software/i/immunedeconv.md new file mode 100644 index 000000000..1e9654adf --- /dev/null +++ b/docs/version-specific/supported-software/i/immunedeconv.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# immunedeconv + +immunedeconv is an R package for unified access to computational methods for estimating immune cell fractions from bulk RNA sequencing data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.2`` | ``-R-4.0.0`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/impi.md b/docs/version-specific/supported-software/i/impi.md new file mode 100644 index 000000000..caa9cb15b --- /dev/null +++ b/docs/version-specific/supported-software/i/impi.md @@ -0,0 +1,81 @@ +--- +search: + boost: 0.5 +--- +# impi + +The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for Linux OS implements the Message Passing Interface, version 3.1 (MPI-3) specification. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2017.0.098`` | | ``iccifort/2017.0.098-GCC-5.4.0-2.26`` +``2017.1.132`` | | ``GCC/5.4.0-2.26`` +``2017.1.132`` | | ``iccifort/2017.1.132-GCC-5.4.0-2.26`` +``2017.1.132`` | | ``iccifort/2017.1.132-GCC-6.3.0-2.27`` +``2017.2.174`` | | ``iccifort/2017.2.174-GCC-6.3.0-2.27`` +``2017.3.196`` | | ``GCC/6.4.0-2.28`` +``2017.3.196`` | | ``gcccuda/2017b`` +``2017.3.196`` | | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` +``2017.3.196`` | | ``iccifortcuda/2017.4.196-GCC-6.4.0-2.28`` +``2017.4.239`` | | ``iccifort/2017.5.239-GCC-6.4.0-2.28`` +``2018.0.128`` | | ``iccifort/2018.0.128-GCC-6.4.0-2.28`` +``2018.1.163`` | | ``GCC/6.4.0-2.28`` +``2018.1.163`` | | ``iccifort/2018.1.163-GCC-6.4.0-2.28`` +``2018.2.199`` | | ``iccifort/2018.2.199-GCC-6.4.0-2.28`` +``2018.3.222`` | | ``GCC/7.3.0-2.30`` +``2018.3.222`` | | ``iccifort/2018.3.222-GCC-7.3.0-2.30`` +``2018.4.274`` | | ``iccifort/2018.5.274-GCC-7.3.0-2.30`` +``2018.4.274`` | | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``2018.4.274`` | | ``iccifortcuda/2019a`` +``2018.5.288`` | | ``iccifort/2019.5.281`` +``2018.5.288`` | | ``iccifort/2020.1.217`` +``2018.5.288`` | | ``iccifortcuda/2019b`` +``2019.0.117`` | | ``iccifort/2019.0.117-GCC-8.2.0-2.31.1`` +``2019.1.144`` | | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``2019.12.320`` | | ``iccifort/2020.4.304`` +``2019.2.187`` | | ``iccifort/2019.2.187-GCC-8.2.0-2.31.1`` +``2019.3.199`` | | ``iccifort/2019.3.199-GCC-8.3.0-2.32`` +``2019.6.166`` | | ``iccifort/2020.0.166-GCC-9.2.0`` +``2019.7.217`` | | ``iccifort/2020.1.217`` +``2019.7.217`` | | ``iccifortcuda/2020a`` +``2019.9.304`` | | ``iccifort/2020.4.304`` +``2019.9.304`` | | ``iccifortcuda/2020b`` +``2021.1.1`` | | ``intel-compilers/2021.1.2`` +``2021.10.0`` | | ``intel-compilers/2023.2.1`` +``2021.11.0`` | | ``intel-compilers/2024.0.0`` +``2021.2.0`` | | ``intel-compilers/2021.2.0`` +``2021.3.0`` | | ``intel-compilers/2021.3.0`` +``2021.4.0`` | | ``intel-compilers/2021.4.0`` +``2021.5.0`` | | ``intel-compilers/2022.0.1`` +``2021.6.0`` | | ``intel-compilers/2022.1.0`` +``2021.7.0`` | | ``intel-compilers/2022.2.0`` +``2021.7.1`` | | ``intel-compilers/2022.2.1`` +``2021.8.0`` | | ``intel-compilers/2023.0.0`` +``2021.9.0`` | | ``intel-compilers/2023.1.0`` +``3.2.2.006`` | | ``system`` +``4.0.0.028`` | ``-32bit`` | ``system`` +``4.0.0.028`` | | ``system`` +``4.0.2.003`` | | ``system`` +``4.1.0.027`` | | ``system`` +``4.1.0.030`` | | ``system`` +``4.1.1.036`` | | ``system`` +``4.1.2.040`` | | ``system`` +``4.1.3.045`` | | ``system`` +``4.1.3.049`` | | ``GCC/4.8.3`` +``4.1.3.049`` | | ``system`` +``5.0.3.048`` | | ``GCC/4.9.3`` +``5.1.1.109`` | | ``iccifort/2016.0.109-GCC-4.9.3-2.25`` +``5.1.2.150`` | | ``iccifort/2016.1.150-GCC-4.9.3-2.25`` +``5.1.3.181`` | | ``iccifort/2016.2.181-GCC-4.9.3-2.25`` +``5.1.3.181`` | | ``iccifort/2016.2.181-GCC-5.3.0-2.26`` +``5.1.3.181`` | | ``iccifort/2016.3.210-GCC-4.9.3-2.25`` +``5.1.3.181`` | | ``iccifort/2016.3.210-GCC-5.3.0-2.26`` +``5.1.3.181`` | | ``iccifort/2016.3.210-GCC-5.4.0-2.26`` +``5.1.3.181`` | | ``iccifortcuda/2016.10`` +``system`` | | ``iccifort/system-GCC-system-2.29`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/imutils.md b/docs/version-specific/supported-software/i/imutils.md new file mode 100644 index 000000000..0f8afbef2 --- /dev/null +++ b/docs/version-specific/supported-software/i/imutils.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# imutils + +A series of convenience functions to make basic image processing operations such as translation, rotation, resizing, skeletonization, and displaying Matplotlib images easier with OpenCV and Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.5.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.5.4`` | | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/index.md b/docs/version-specific/supported-software/i/index.md new file mode 100644 index 000000000..81df5bdb0 --- /dev/null +++ b/docs/version-specific/supported-software/i/index.md @@ -0,0 +1,131 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (i) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - *i* - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [i-cisTarget](i-cisTarget.md) + * [i-PI](i-PI.md) + * [I-TASSER](I-TASSER.md) + * [i7z](i7z.md) + * [ICA-AROMA](ICA-AROMA.md) + * [icc](icc.md) + * [iccifort](iccifort.md) + * [iccifortcuda](iccifortcuda.md) + * [iced](iced.md) + * [ichorCNA](ichorCNA.md) + * [icmake](icmake.md) + * [ICON](ICON.md) + * [iCount](iCount.md) + * [ICU](ICU.md) + * [IDBA-UD](IDBA-UD.md) + * [idemux](idemux.md) + * [IDG](IDG.md) + * [ieeg-cli](ieeg-cli.md) + * [ifort](ifort.md) + * [IgBLAST](IgBLAST.md) + * [IGMPlot](IGMPlot.md) + * [igraph](igraph.md) + * [IGV](IGV.md) + * [igv-reports](igv-reports.md) + * [igvShiny](igvShiny.md) + * [IGVTools](IGVTools.md) + * [iibff](iibff.md) + * [iimkl](iimkl.md) + * [iimpi](iimpi.md) + * [iimpic](iimpic.md) + * [IJulia](IJulia.md) + * [ILAMB](ILAMB.md) + * [IMa2](IMa2.md) + * [IMa2p](IMa2p.md) + * [imagecodecs](imagecodecs.md) + * [imageio](imageio.md) + * [ImageJ](ImageJ.md) + * [ImageMagick](ImageMagick.md) + * [imake](imake.md) + * [Imath](Imath.md) + * [IMB](IMB.md) + * [imbalanced-learn](imbalanced-learn.md) + * [imgaug](imgaug.md) + * [imkl](imkl.md) + * [imkl-FFTW](imkl-FFTW.md) + * [IML](IML.md) + * [Imlib2](Imlib2.md) + * [immunedeconv](immunedeconv.md) + * [IMOD](IMOD.md) + * [impi](impi.md) + * [IMPUTE2](IMPUTE2.md) + * [imutils](imutils.md) + * [InChI](InChI.md) + * [indicators](indicators.md) + * [Inelastica](Inelastica.md) + * [inferCNV](inferCNV.md) + * [infercnvpy](infercnvpy.md) + * [Inferelator](Inferelator.md) + * [Infernal](Infernal.md) + * [inflection](inflection.md) + * [Infomap](Infomap.md) + * [inih](inih.md) + * [inline](inline.md) + * [InParanoid](InParanoid.md) + * [inputproto](inputproto.md) + * [Inspector](Inspector.md) + * [IntaRNA](IntaRNA.md) + * [INTEGRATE](INTEGRATE.md) + * [INTEGRATE-Neo](INTEGRATE-Neo.md) + * [intel](intel.md) + * [intel-compilers](intel-compilers.md) + * [IntelClusterChecker](IntelClusterChecker.md) + * [intelcuda](intelcuda.md) + * [IntelDAAL](IntelDAAL.md) + * [IntelPython](IntelPython.md) + * [InterOp](InterOp.md) + * [InterProScan](InterProScan.md) + * [InterProScan_data](InterProScan_data.md) + * [intervaltree](intervaltree.md) + * [intervaltree-python](intervaltree-python.md) + * [intltool](intltool.md) + * [io_lib](io_lib.md) + * [ioapi](ioapi.md) + * [iodata](iodata.md) + * [iomkl](iomkl.md) + * [iompi](iompi.md) + * [IonQuant](IonQuant.md) + * [IOR](IOR.md) + * [IOzone](IOzone.md) + * [iperf](iperf.md) + * [IPM](IPM.md) + * [Ipopt](Ipopt.md) + * [ipp](ipp.md) + * [IPy](IPy.md) + * [ipympl](ipympl.md) + * [ipyparallel](ipyparallel.md) + * [ipyrad](ipyrad.md) + * [IPython](IPython.md) + * [IQ-TREE](IQ-TREE.md) + * [Iris](Iris.md) + * [IRkernel](IRkernel.md) + * [irodsfs](irodsfs.md) + * [IronPython](IronPython.md) + * [ISA-L](ISA-L.md) + * [ISL](ISL.md) + * [isoCirc](isoCirc.md) + * [IsoformSwitchAnalyzeR](IsoformSwitchAnalyzeR.md) + * [IsoNet](IsoNet.md) + * [IsoQuant](IsoQuant.md) + * [IsoSeq](IsoSeq.md) + * [ispc](ispc.md) + * [itac](itac.md) + * [ITK](ITK.md) + * [itpp](itpp.md) + * [ITSTool](ITSTool.md) + * [ITSx](ITSx.md) + * [iVar](iVar.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - *i* - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/indicators.md b/docs/version-specific/supported-software/i/indicators.md new file mode 100644 index 000000000..c483610dc --- /dev/null +++ b/docs/version-specific/supported-software/i/indicators.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# indicators + +- Thread-safe progress bars and spinners - Header-only library. Grab a copy of include/indicators. - Single-header version in single_include/indicators. + +*homepage*: + +version | toolchain +--------|---------- +``2.2`` | ``GCCcore/11.2.0`` +``2.2`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/inferCNV.md b/docs/version-specific/supported-software/i/inferCNV.md new file mode 100644 index 000000000..1a07b1285 --- /dev/null +++ b/docs/version-specific/supported-software/i/inferCNV.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# inferCNV + +InferCNV is used to explore tumor single cell RNA-Seq data to identify evidence for somatic large-scale chromosomal copy number alterations, such as gains or deletions of entire chromosomes or large segments of chromosomes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.4`` | ``-Python-3.7.2-R-3.6.0`` | ``foss/2019a`` +``1.10.1`` | ``-R-4.1.2`` | ``foss/2021b`` +``1.12.0`` | ``-R-4.2.1`` | ``foss/2022a`` +``1.14.2`` | ``-R-4.2.2`` | ``foss/2022b`` +``1.2.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.3.3`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.3.3`` | | ``foss/2020b`` +``1.3.3`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/infercnvpy.md b/docs/version-specific/supported-software/i/infercnvpy.md new file mode 100644 index 000000000..db842f3ff --- /dev/null +++ b/docs/version-specific/supported-software/i/infercnvpy.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# infercnvpy + +Infer copy number variation (CNV) from scRNA-seq data. Plays nicely with Scanpy. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.0`` | ``foss/2021b`` +``0.4.2`` | ``foss/2022a`` +``0.4.3`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/inflection.md b/docs/version-specific/supported-software/i/inflection.md new file mode 100644 index 000000000..5fef0e817 --- /dev/null +++ b/docs/version-specific/supported-software/i/inflection.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# inflection + +inflection is a package that finds the inflection point of a planar curve which is given as a data frame of discrete (xi,yi) points + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.5`` | ``-R-4.3.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/inih.md b/docs/version-specific/supported-software/i/inih.md new file mode 100644 index 000000000..017fdd587 --- /dev/null +++ b/docs/version-specific/supported-software/i/inih.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# inih + +Direct Rendering Manager runtime library. + +*homepage*: + +version | toolchain +--------|---------- +``57`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/inline.md b/docs/version-specific/supported-software/i/inline.md new file mode 100644 index 000000000..6d458296d --- /dev/null +++ b/docs/version-specific/supported-software/i/inline.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# inline + +Functionality to dynamically define R functions and S4 methods with 'inlined' C, C++ or Fortran code supporting the .C and .Call calling conventions. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.19`` | ``-R-4.0.4`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/inputproto.md b/docs/version-specific/supported-software/i/inputproto.md new file mode 100644 index 000000000..bac79f017 --- /dev/null +++ b/docs/version-specific/supported-software/i/inputproto.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# inputproto + +X.org InputProto protocol headers. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.1`` | ``foss/2016a`` +``2.3.1`` | ``gimkl/2.11.5`` +``2.3.1`` | ``intel/2016a`` +``2.3.2`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/intel-compilers.md b/docs/version-specific/supported-software/i/intel-compilers.md new file mode 100644 index 000000000..2435eda7d --- /dev/null +++ b/docs/version-specific/supported-software/i/intel-compilers.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# intel-compilers + +Intel C, C++ & Fortran compilers (classic and oneAPI) + +*homepage*: + +version | toolchain +--------|---------- +``2021.1.2`` | ``system`` +``2021.2.0`` | ``system`` +``2021.3.0`` | ``system`` +``2021.4.0`` | ``system`` +``2022.0.1`` | ``system`` +``2022.0.2`` | ``system`` +``2022.1.0`` | ``system`` +``2022.2.0`` | ``system`` +``2022.2.1`` | ``system`` +``2023.0.0`` | ``system`` +``2023.1.0`` | ``system`` +``2023.2.1`` | ``system`` +``2024.0.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/intel.md b/docs/version-specific/supported-software/i/intel.md new file mode 100644 index 000000000..49dd42902 --- /dev/null +++ b/docs/version-specific/supported-software/i/intel.md @@ -0,0 +1,62 @@ +--- +search: + boost: 0.5 +--- +# intel + +Intel Cluster Toolkit Compiler Edition provides Intel C/C++ and Fortran compilers, Intel MPI & Intel MKL. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2016.00`` | | ``system`` +``2016.01`` | | ``system`` +``2016.02`` | ``-GCC-4.9`` | ``system`` +``2016.02`` | ``-GCC-5.3`` | ``system`` +``2016.03`` | ``-GCC-4.9`` | ``system`` +``2016.03`` | ``-GCC-5.3`` | ``system`` +``2016.03`` | ``-GCC-5.4`` | ``system`` +``2016a`` | | ``system`` +``2016b`` | | ``system`` +``2017.00`` | | ``system`` +``2017.01`` | | ``system`` +``2017.02`` | | ``system`` +``2017.09`` | | ``system`` +``2017a`` | | ``system`` +``2017b`` | | ``system`` +``2018.00`` | | ``system`` +``2018.01`` | | ``system`` +``2018.02`` | | ``system`` +``2018.04`` | | ``system`` +``2018a`` | | ``system`` +``2018b`` | | ``system`` +``2019.00`` | | ``system`` +``2019.01`` | | ``system`` +``2019.02`` | | ``system`` +``2019.03`` | | ``system`` +``2019a`` | | ``system`` +``2019b`` | | ``system`` +``2020.00`` | | ``system`` +``2020.06-impi-18.5`` | | ``system`` +``2020.12`` | | ``system`` +``2020a`` | | ``system`` +``2020b`` | | ``system`` +``2021a`` | | ``system`` +``2021b`` | | ``system`` +``2022.00`` | | ``system`` +``2022.05`` | | ``system`` +``2022.09`` | | ``system`` +``2022.11`` | | ``system`` +``2022.12`` | | ``system`` +``2022a`` | | ``system`` +``2022b`` | | ``system`` +``2023.03`` | | ``system`` +``2023.07`` | | ``system`` +``2023.11`` | | ``system`` +``2023a`` | | ``system`` +``2023b`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/intelcuda.md b/docs/version-specific/supported-software/i/intelcuda.md new file mode 100644 index 000000000..38e7f7edf --- /dev/null +++ b/docs/version-specific/supported-software/i/intelcuda.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# intelcuda + +Intel Cluster Toolkit Compiler Edition provides Intel C/C++ and Fortran compilers, Intel MPI & Intel MKL, with CUDA toolkit + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``2016.10`` | ``system`` +``2017b`` | ``system`` +``2019a`` | ``system`` +``2019b`` | ``system`` +``2020a`` | ``system`` +``2020b`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/intervaltree-python.md b/docs/version-specific/supported-software/i/intervaltree-python.md new file mode 100644 index 000000000..035699236 --- /dev/null +++ b/docs/version-specific/supported-software/i/intervaltree-python.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# intervaltree-python + +A mutable, self-balancing interval tree. Queries may be by point, by range overlap, or by range containment + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.2`` | ``-Python-3.6.6`` | ``foss/2018b`` +``3.1.0`` | | ``GCCcore/10.3.0`` +``3.1.0`` | | ``GCCcore/11.2.0`` +``3.1.0`` | | ``GCCcore/11.3.0`` +``3.1.0`` | | ``GCCcore/12.2.0`` +``3.1.0`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/intervaltree.md b/docs/version-specific/supported-software/i/intervaltree.md new file mode 100644 index 000000000..c5404b0e0 --- /dev/null +++ b/docs/version-specific/supported-software/i/intervaltree.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# intervaltree + +An interval tree can be used to efficiently find a set of numeric intervals overlapping or containing another interval. This library provides a basic implementation of an interval tree using C++ templates, allowing the insertion of arbitrary types into the tree. + +*homepage*: + +version | toolchain +--------|---------- +``0.1`` | ``GCCcore/10.2.0`` +``0.1`` | ``GCCcore/10.3.0`` +``0.1`` | ``GCCcore/11.2.0`` +``0.1`` | ``GCCcore/11.3.0`` +``0.1`` | ``GCCcore/12.3.0`` +``0.1`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/intltool.md b/docs/version-specific/supported-software/i/intltool.md new file mode 100644 index 000000000..f698eb8a0 --- /dev/null +++ b/docs/version-specific/supported-software/i/intltool.md @@ -0,0 +1,39 @@ +--- +search: + boost: 0.5 +--- +# intltool + +intltool is a set of tools to centralize translation of many different file formats using GNU gettext-compatible PO files. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.51.0`` | | ``GCCcore/10.2.0`` +``0.51.0`` | | ``GCCcore/10.3.0`` +``0.51.0`` | | ``GCCcore/11.2.0`` +``0.51.0`` | | ``GCCcore/11.3.0`` +``0.51.0`` | | ``GCCcore/12.2.0`` +``0.51.0`` | | ``GCCcore/12.3.0`` +``0.51.0`` | | ``GCCcore/13.2.0`` +``0.51.0`` | ``-Perl-5.24.0`` | ``GCCcore/4.9.3`` +``0.51.0`` | ``-Perl-5.24.0`` | ``GCCcore/5.4.0`` +``0.51.0`` | ``-Perl-5.24.1`` | ``GCCcore/6.3.0`` +``0.51.0`` | ``-Perl-5.26.0`` | ``GCCcore/6.4.0`` +``0.51.0`` | ``-Perl-5.26.1`` | ``GCCcore/6.4.0`` +``0.51.0`` | ``-Perl-5.28.0`` | ``GCCcore/7.3.0`` +``0.51.0`` | | ``GCCcore/8.2.0`` +``0.51.0`` | | ``GCCcore/8.3.0`` +``0.51.0`` | | ``GCCcore/9.3.0`` +``0.51.0`` | ``-Perl-5.22.1`` | ``foss/2016a`` +``0.51.0`` | ``-Perl-5.24.0`` | ``foss/2016b`` +``0.51.0`` | ``-Perl-5.24.0`` | ``gimkl/2017a`` +``0.51.0`` | ``-Perl-5.20.3`` | ``intel/2016a`` +``0.51.0`` | ``-Perl-5.22.1`` | ``intel/2016a`` +``0.51.0`` | ``-Perl-5.24.0`` | ``intel/2016b`` +``0.51.0`` | ``-Perl-5.24.1`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/io_lib.md b/docs/version-specific/supported-software/i/io_lib.md new file mode 100644 index 000000000..dbd9177a3 --- /dev/null +++ b/docs/version-specific/supported-software/i/io_lib.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# io_lib + +Io_lib is a library of file reading and writing code to provide a general purpose trace file (and Experiment File) reading interface. The programmer simply calls the (eg) read_reading to create a "Read" C structure with the data loaded into memory. It has been compiled and tested on a variety of unix systems, MacOS X and MS Windows. + +*homepage*: + +version | toolchain +--------|---------- +``1.14.8`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/ioapi.md b/docs/version-specific/supported-software/i/ioapi.md new file mode 100644 index 000000000..08ff9696f --- /dev/null +++ b/docs/version-specific/supported-software/i/ioapi.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ioapi + +The Models-3/EDSS Input/Output Applications Programming Interface (I/O API) provides the environmental model developer with an easy-to-learn, easy-to-use programming library for data storage and access, available from both Fortran and C. The same routines can be used for both file storage (using netCDF files) and model coupling (using PVM mailboxes). It is the standard data access library for both the NCSC/CMAS's EDSS project and EPA's Models-3, CMAQ, and SMOKE, as well as various other atmospheric and hydrological modeling systems. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.2-2020111`` | ``-nocpl`` | ``gompi/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/iodata.md b/docs/version-specific/supported-software/i/iodata.md new file mode 100644 index 000000000..302969877 --- /dev/null +++ b/docs/version-specific/supported-software/i/iodata.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# iodata + +Python library for reading, writing, and converting computational chemistry file formats and generating input files. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0a2`` | ``intel/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/iomkl.md b/docs/version-specific/supported-software/i/iomkl.md new file mode 100644 index 000000000..9c1a95da9 --- /dev/null +++ b/docs/version-specific/supported-software/i/iomkl.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# iomkl + +Intel Cluster Toolchain Compiler Edition provides Intel C/C++ and Fortran compilers, Intel MKL & OpenMPI. + +*homepage*: + +version | toolchain +--------|---------- +``2016.07`` | ``system`` +``2016.09-GCC-4.9.3-2.25`` | ``system`` +``2016.09-GCC-5.4.0-2.26`` | ``system`` +``2017.01`` | ``system`` +``2017a`` | ``system`` +``2017b`` | ``system`` +``2018.02`` | ``system`` +``2018a`` | ``system`` +``2018b`` | ``system`` +``2019.01`` | ``system`` +``2019b`` | ``system`` +``2020a`` | ``system`` +``2020b`` | ``system`` +``2021a`` | ``system`` +``2021b`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/iompi.md b/docs/version-specific/supported-software/i/iompi.md new file mode 100644 index 000000000..d2a22b165 --- /dev/null +++ b/docs/version-specific/supported-software/i/iompi.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# iompi + +Toolchain with Intel C, C++ and Fortran compilers, alongside OpenMPI. + +*homepage*: + +version | toolchain +--------|---------- +``2016.07`` | ``system`` +``2016.09-GCC-4.9.3-2.25`` | ``system`` +``2016.09-GCC-5.4.0-2.26`` | ``system`` +``2017.01`` | ``system`` +``2017a`` | ``system`` +``2017b`` | ``system`` +``2018.02`` | ``system`` +``2018a`` | ``system`` +``2018b`` | ``system`` +``2019.01`` | ``system`` +``2019b`` | ``system`` +``2020a`` | ``system`` +``2020b`` | ``system`` +``2021a`` | ``system`` +``2021b`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/iperf.md b/docs/version-specific/supported-software/i/iperf.md new file mode 100644 index 000000000..943f03549 --- /dev/null +++ b/docs/version-specific/supported-software/i/iperf.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# iperf + +Iperf 2: TCP and UDP bandwidth performance measurement tool + +*homepage*: + +version | toolchain +--------|---------- +``2.1.9`` | ``GCCcore/10.2.0`` +``3.15`` | ``system`` +``3.16`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/ipp.md b/docs/version-specific/supported-software/i/ipp.md new file mode 100644 index 000000000..f15a7bdf3 --- /dev/null +++ b/docs/version-specific/supported-software/i/ipp.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# ipp + +Intel Integrated Performance Primitives (Intel IPP) is an extensive library of multicore-ready, highly optimized software functions for multimedia, data processing, and communications applications. Intel IPP offers thousands of optimized functions covering frequently used fundamental algorithms. + +*homepage*: + +version | toolchain +--------|---------- +``2017.1.132`` | ``system`` +``7.0.5.233`` | ``system`` +``8.1.0.144`` | ``system`` +``9.0.1.150`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/ipympl.md b/docs/version-specific/supported-software/i/ipympl.md new file mode 100644 index 000000000..3fd8160dc --- /dev/null +++ b/docs/version-specific/supported-software/i/ipympl.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# ipympl + +Leveraging the Jupyter interactive widgets framework, ipympl enables the interactive features of matplotlib in the Jupyter notebook and in JupyterLab. Besides, the figure canvas element is a proper Jupyter interactive widget which can be positioned in interactive widget layouts. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.3`` | ``foss/2022a`` +``0.9.3`` | ``gfbf/2023a`` +``0.9.4`` | ``gfbf/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/ipyparallel.md b/docs/version-specific/supported-software/i/ipyparallel.md new file mode 100644 index 000000000..2d90e56dc --- /dev/null +++ b/docs/version-specific/supported-software/i/ipyparallel.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ipyparallel + +ipyparallel is a Python package and collection of CLI scripts for controlling clusters for Jupyter + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``6.2.2`` | ``-Python-3.6.4`` | ``foss/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/ipyrad.md b/docs/version-specific/supported-software/i/ipyrad.md new file mode 100644 index 000000000..9e5f6dad8 --- /dev/null +++ b/docs/version-specific/supported-software/i/ipyrad.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ipyrad + +ipyrad is an interactive toolkit for assembly and analysis of restriction-site associated genomic data sets (e.g., RAD, ddRAD, GBS) for population genetic and phylogenetic studies. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.6.15`` | ``-Python-2.7.13`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/irodsfs.md b/docs/version-specific/supported-software/i/irodsfs.md new file mode 100644 index 000000000..b300fb634 --- /dev/null +++ b/docs/version-specific/supported-software/i/irodsfs.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# irodsfs + +FUSE implementation of iRODS Client written in Golang. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8.11`` | ``-linux-amd64`` | ``system`` +``0.8.12`` | ``-linux-amd64`` | ``system`` +``0.8.9`` | ``-linux-amd64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/isoCirc.md b/docs/version-specific/supported-software/i/isoCirc.md new file mode 100644 index 000000000..c5ebb46aa --- /dev/null +++ b/docs/version-specific/supported-software/i/isoCirc.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# isoCirc + +isoCirc: computational pipeline to identify high-confidence BSJs and full-length circRNA isoforms from isoCirc long-read data + +*homepage*: + +version | toolchain +--------|---------- +``1.0.4`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/ispc.md b/docs/version-specific/supported-software/i/ispc.md new file mode 100644 index 000000000..6925be137 --- /dev/null +++ b/docs/version-specific/supported-software/i/ispc.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# ispc + +Intel SPMD Program Compilers; An open-source compiler for high-performance SIMD programming on the CPU. ispc is a compiler for a variant of the C programming language, with extensions for 'single program, multiple data' (SPMD) programming. Under the SPMD model, the programmer writes a program that generally appears to be a regular serial program, though the execution model is actually that a number of program instances execute in parallel on the hardware. + +*homepage*: + +version | toolchain +--------|---------- +``1.10.0`` | ``system`` +``1.12.0`` | ``system`` +``1.16.0`` | ``system`` +``1.6.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/itac.md b/docs/version-specific/supported-software/i/itac.md new file mode 100644 index 000000000..4ececa7c7 --- /dev/null +++ b/docs/version-specific/supported-software/i/itac.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# itac + +The Intel Trace Collector is a low-overhead tracing library that performs event-based tracing in applications. The Intel Trace Analyzer provides a convenient way to monitor application activities gathered by the Intel Trace Collector through graphical displays. + +*homepage*: + +version | toolchain +--------|---------- +``2017.1.024`` | ``system`` +``2018.1.017`` | ``system`` +``2018.3.022`` | ``system`` +``2019.2.026`` | ``system`` +``2019.4.036`` | ``system`` +``2021.10.0`` | ``system`` +``2021.2.0`` | ``system`` +``2021.5.0`` | ``system`` +``2021.6.0`` | ``system`` +``8.0.0.011`` | ``system`` +``8.1.4.045`` | ``system`` +``9.0.3.051`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/i/itpp.md b/docs/version-specific/supported-software/i/itpp.md new file mode 100644 index 000000000..94c73966d --- /dev/null +++ b/docs/version-specific/supported-software/i/itpp.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# itpp + +IT++ is a C++ library of mathematical, signal processing and communication classes and functions. Its main use is in simulation of communication systems and for performing research in the area of communications. + +*homepage*: + +version | toolchain +--------|---------- +``4.3.1`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/index.md b/docs/version-specific/supported-software/index.md new file mode 100644 index 000000000..2faa7d997 --- /dev/null +++ b/docs/version-specific/supported-software/index.md @@ -0,0 +1,3593 @@ +--- +search: + boost: 0.5 +--- +# List of supported software + +*(quick links: [0](./0/index.md) - [a](./a/index.md) - [b](./b/index.md) - [c](./c/index.md) - [d](./d/index.md) - [e](./e/index.md) - [f](./f/index.md) - [g](./g/index.md) - [h](./h/index.md) - [i](./i/index.md) - [j](./j/index.md) - [k](./k/index.md) - [l](./l/index.md) - [m](./m/index.md) - [n](./n/index.md) - [o](./o/index.md) - [p](./p/index.md) - [q](./q/index.md) - [r](./r/index.md) - [s](./s/index.md) - [t](./t/index.md) - [u](./u/index.md) - [v](./v/index.md) - [w](./w/index.md) - [x](./x/index.md) - [y](./y/index.md) - [z](./z/index.md))* + +EasyBuild supports 3552 different software packages (incl. toolchains, bundles): + + * [0](0/index.md) + * [3d-dna](0/3d-dna.md) + * [3to2](0/3to2.md) + * [4ti2](0/4ti2.md) + * [a](a/index.md) + * [ABAQUS](a/ABAQUS.md) + * [ABINIT](a/ABINIT.md) + * [ABRA2](a/ABRA2.md) + * [ABRicate](a/ABRicate.md) + * [Abseil](a/Abseil.md) + * [abTEM](a/abTEM.md) + * [ABySS](a/ABySS.md) + * [ack](a/ack.md) + * [ACTC](a/ACTC.md) + * [ada](a/ada.md) + * [AdapterRemoval](a/AdapterRemoval.md) + * [ADDA](a/ADDA.md) + * [ADF](a/ADF.md) + * [ADIOS](a/ADIOS.md) + * [adjustText](a/adjustText.md) + * [ADMIXTURE](a/ADMIXTURE.md) + * [ADOL-C](a/ADOL-C.md) + * [Advisor](a/Advisor.md) + * [AEDT](a/AEDT.md) + * [affinity](a/affinity.md) + * [AFNI](a/AFNI.md) + * [AGAT](a/AGAT.md) + * [AGeNT](a/AGeNT.md) + * [AGFusion](a/AGFusion.md) + * [AICSImageIO](a/AICSImageIO.md) + * [AIMAll](a/AIMAll.md) + * [aiohttp](a/aiohttp.md) + * [ALADIN](a/ALADIN.md) + * [ALAMODE](a/ALAMODE.md) + * [Albacore](a/Albacore.md) + * [Albumentations](a/Albumentations.md) + * [alevin-fry](a/alevin-fry.md) + * [ALFA](a/ALFA.md) + * [Alfred](a/Alfred.md) + * [ALL](a/ALL.md) + * [alleleCount](a/alleleCount.md) + * [alleleIntegrator](a/alleleIntegrator.md) + * [Allinea](a/Allinea.md) + * [ALLPATHS-LG](a/ALLPATHS-LG.md) + * [almosthere](a/almosthere.md) + * [Alpha](a/Alpha.md) + * [AlphaFold](a/AlphaFold.md) + * [AlphaPulldown](a/AlphaPulldown.md) + * [ALPS](a/ALPS.md) + * [alsa-lib](a/alsa-lib.md) + * [AMAPVox](a/AMAPVox.md) + * [Amara](a/Amara.md) + * [amask](a/amask.md) + * [Amber](a/Amber.md) + * [AmberMini](a/AmberMini.md) + * [AmberTools](a/AmberTools.md) + * [AMD-LibM](a/AMD-LibM.md) + * [AMD-RNG](a/AMD-RNG.md) + * [AMD-SecureRNG](a/AMD-SecureRNG.md) + * [AMD-uProf](a/AMD-uProf.md) + * [amdahl](a/amdahl.md) + * [AMGX](a/AMGX.md) + * [AMICA](a/AMICA.md) + * [AMOS](a/AMOS.md) + * [AMPHORA2](a/AMPHORA2.md) + * [AMPL-MP](a/AMPL-MP.md) + * [amplimap](a/amplimap.md) + * [AMPtk](a/AMPtk.md) + * [AMRFinderPlus](a/AMRFinderPlus.md) + * [AmrPlusPlus](a/AmrPlusPlus.md) + * [AMS](a/AMS.md) + * [Anaconda2](a/Anaconda2.md) + * [Anaconda3](a/Anaconda3.md) + * [anadama2](a/anadama2.md) + * [aNCI](a/aNCI.md) + * [andi](a/andi.md) + * [ANGEL](a/ANGEL.md) + * [angsd](a/angsd.md) + * [ANIcalculator](a/ANIcalculator.md) + * [anndata](a/anndata.md) + * [Annif](a/Annif.md) + * [Annocript](a/Annocript.md) + * [annovar](a/annovar.md) + * [ANSYS](a/ANSYS.md) + * [ANSYS_CFD](a/ANSYS_CFD.md) + * [ant](a/ant.md) + * [ANTIC](a/ANTIC.md) + * [antiSMASH](a/antiSMASH.md) + * [ANTLR](a/ANTLR.md) + * [ANTs](a/ANTs.md) + * [anvio](a/anvio.md) + * [any2fasta](a/any2fasta.md) + * [AOCC](a/AOCC.md) + * [AOFlagger](a/AOFlagger.md) + * [AOMP](a/AOMP.md) + * [APBS](a/APBS.md) + * [apex](a/apex.md) + * [APR](a/APR.md) + * [APR-util](a/APR-util.md) + * [AptaSUITE](a/AptaSUITE.md) + * [ARAGORN](a/ARAGORN.md) + * [Arb](a/Arb.md) + * [Arcade-Learning-Environment](a/Arcade-Learning-Environment.md) + * [arcasHLA](a/arcasHLA.md) + * [ARCH](a/ARCH.md) + * [Archive-Zip](a/Archive-Zip.md) + * [ArchR](a/ArchR.md) + * [archspec](a/archspec.md) + * [AreTomo2](a/AreTomo2.md) + * [ARGoS](a/ARGoS.md) + * [argtable](a/argtable.md) + * [aria2](a/aria2.md) + * [Arlequin](a/Arlequin.md) + * [Armadillo](a/Armadillo.md) + * [arosics](a/arosics.md) + * [ARPACK++](a/ARPACK++.md) + * [arpack-ng](a/arpack-ng.md) + * [ArrayFire](a/ArrayFire.md) + * [Arriba](a/Arriba.md) + * [Arrow](a/Arrow.md) + * [arrow-R](a/arrow-R.md) + * [ART](a/ART.md) + * [Artemis](a/Artemis.md) + * [artic-ncov2019](a/artic-ncov2019.md) + * [ARTS](a/ARTS.md) + * [ArviZ](a/ArviZ.md) + * [ARWEN](a/ARWEN.md) + * [ASAP](a/ASAP.md) + * [ASAP3](a/ASAP3.md) + * [ASCAT](a/ASCAT.md) + * [ASE](a/ASE.md) + * [ASF-SearchAPI](a/ASF-SearchAPI.md) + * [ASHS](a/ASHS.md) + * [Aspera-CLI](a/Aspera-CLI.md) + * [Aspera-Connect](a/Aspera-Connect.md) + * [assembly-stats](a/assembly-stats.md) + * [assimp](a/assimp.md) + * [Assimulo](a/Assimulo.md) + * [ASTRID](a/ASTRID.md) + * [astro-tulips](a/astro-tulips.md) + * [astropy](a/astropy.md) + * [at-spi2-atk](a/at-spi2-atk.md) + * [at-spi2-core](a/at-spi2-core.md) + * [ATAT](a/ATAT.md) + * [ATK](a/ATK.md) + * [ATLAS](a/ATLAS.md) + * [atomate](a/atomate.md) + * [AtomPAW](a/AtomPAW.md) + * [atools](a/atools.md) + * [atropos](a/atropos.md) + * [ATSAS](a/ATSAS.md) + * [attr](a/attr.md) + * [attrdict](a/attrdict.md) + * [attrdict3](a/attrdict3.md) + * [augur](a/augur.md) + * [AUGUSTUS](a/AUGUSTUS.md) + * [Austin](a/Austin.md) + * [AUTO-07p](a/AUTO-07p.md) + * [Autoconf](a/Autoconf.md) + * [Autoconf-archive](a/Autoconf-archive.md) + * [AutoDock](a/AutoDock.md) + * [AutoDock-GPU](a/AutoDock-GPU.md) + * [AutoDock-Vina](a/AutoDock-Vina.md) + * [AutoDockSuite](a/AutoDockSuite.md) + * [AutoGeneS](a/AutoGeneS.md) + * [AutoGrid](a/AutoGrid.md) + * [Automake](a/Automake.md) + * [AutoMap](a/AutoMap.md) + * [autopep8](a/autopep8.md) + * [Autotools](a/Autotools.md) + * [Avogadro2](a/Avogadro2.md) + * [avro-cpp](a/avro-cpp.md) + * [awscli](a/awscli.md) + * [Ax](a/Ax.md) + * [axel](a/axel.md) + * [b](b/index.md) + * [BA3-SNPS-autotune](b/BA3-SNPS-autotune.md) + * [BabelStream](b/BabelStream.md) + * [babl](b/babl.md) + * [Bader](b/Bader.md) + * [BAGEL](b/BAGEL.md) + * [BAli-Phy](b/BAli-Phy.md) + * [bam-readcount](b/bam-readcount.md) + * [Bambi](b/Bambi.md) + * [bamFilters](b/bamFilters.md) + * [BAMM](b/BAMM.md) + * [BAMSurgeon](b/BAMSurgeon.md) + * [bamtofastq](b/bamtofastq.md) + * [BamTools](b/BamTools.md) + * [BamUtil](b/BamUtil.md) + * [Bandage](b/Bandage.md) + * [barrnap](b/barrnap.md) + * [basemap](b/basemap.md) + * [bases2fastq](b/bases2fastq.md) + * [Bash](b/Bash.md) + * [bashplotlib](b/bashplotlib.md) + * [bat](b/bat.md) + * [batchgenerators](b/batchgenerators.md) + * [BatMeth2](b/BatMeth2.md) + * [BayesAss](b/BayesAss.md) + * [BayesAss3-SNPs](b/BayesAss3-SNPs.md) + * [BayeScan](b/BayeScan.md) + * [BayeScEnv](b/BayeScEnv.md) + * [BayesPrism](b/BayesPrism.md) + * [BayesTraits](b/BayesTraits.md) + * [Bazel](b/Bazel.md) + * [bbcp](b/bbcp.md) + * [bbFTP](b/bbFTP.md) + * [BBMap](b/BBMap.md) + * [bc](b/bc.md) + * [BCALM](b/BCALM.md) + * [bcbio-gff](b/bcbio-gff.md) + * [BCEL](b/BCEL.md) + * [BCFtools](b/BCFtools.md) + * [bcgTree](b/bcgTree.md) + * [bcl-convert](b/bcl-convert.md) + * [bcl2fastq2](b/bcl2fastq2.md) + * [bcolz](b/bcolz.md) + * [bcrypt](b/bcrypt.md) + * [BDBag](b/BDBag.md) + * [Beagle](b/Beagle.md) + * [beagle-lib](b/beagle-lib.md) + * [Beast](b/Beast.md) + * [BeautifulSoup](b/BeautifulSoup.md) + * [BEDOPS](b/BEDOPS.md) + * [BEDTools](b/BEDTools.md) + * [BEEF](b/BEEF.md) + * [behave](b/behave.md) + * [bench](b/bench.md) + * [BerkeleyGW](b/BerkeleyGW.md) + * [BFAST](b/BFAST.md) + * [BFC](b/BFC.md) + * [BGC-Bayesian-genomic-clines](b/BGC-Bayesian-genomic-clines.md) + * [BgeeCall](b/BgeeCall.md) + * [BgeeDB](b/BgeeDB.md) + * [bgen](b/bgen.md) + * [bgen-reader](b/bgen-reader.md) + * [BiasAdjustCXX](b/BiasAdjustCXX.md) + * [bibtexparser](b/bibtexparser.md) + * [BiG-SCAPE](b/BiG-SCAPE.md) + * [BigDFT](b/BigDFT.md) + * [BinSanity](b/BinSanity.md) + * [binutils](b/binutils.md) + * [Bio-DB-HTS](b/Bio-DB-HTS.md) + * [Bio-EUtilities](b/Bio-EUtilities.md) + * [Bio-FeatureIO](b/Bio-FeatureIO.md) + * [Bio-SamTools](b/Bio-SamTools.md) + * [Bio-SearchIO-hmmer](b/Bio-SearchIO-hmmer.md) + * [bioawk](b/bioawk.md) + * [biobakery-workflows](b/biobakery-workflows.md) + * [biobambam2](b/biobambam2.md) + * [biogeme](b/biogeme.md) + * [biom-format](b/biom-format.md) + * [biomart-perl](b/biomart-perl.md) + * [BioPerl](b/BioPerl.md) + * [BioPP](b/BioPP.md) + * [Biopython](b/Biopython.md) + * [BioServices](b/BioServices.md) + * [BirdNET](b/BirdNET.md) + * [biscuit](b/biscuit.md) + * [Bismark](b/Bismark.md) + * [Bison](b/Bison.md) + * [bitarray](b/bitarray.md) + * [bitshuffle](b/bitshuffle.md) + * [BLACS](b/BLACS.md) + * [BLASR](b/BLASR.md) + * [blasr_libcpp](b/blasr_libcpp.md) + * [BLAST](b/BLAST.md) + * [BLAST+](b/BLAST+.md) + * [BLAT](b/BLAT.md) + * [Blender](b/Blender.md) + * [BLIS](b/BLIS.md) + * [Blitz++](b/Blitz++.md) + * [BlobTools](b/BlobTools.md) + * [Block](b/Block.md) + * [Blosc](b/Blosc.md) + * [Blosc2](b/Blosc2.md) + * [BLT](b/BLT.md) + * [bmtagger](b/bmtagger.md) + * [BMTK](b/BMTK.md) + * [bnpy](b/bnpy.md) + * [BOINC](b/BOINC.md) + * [bokeh](b/bokeh.md) + * [BoltzTraP](b/BoltzTraP.md) + * [BoltzTraP2](b/BoltzTraP2.md) + * [Bonito](b/Bonito.md) + * [Bonmin](b/Bonmin.md) + * [Bonnie++](b/Bonnie++.md) + * [Boost](b/Boost.md) + * [Boost.MPI](b/Boost.MPI.md) + * [Boost.Python](b/Boost.Python.md) + * [Boost.Python-NumPy](b/Boost.Python-NumPy.md) + * [boost_histogram](b/boost_histogram.md) + * [BOPTEST](b/BOPTEST.md) + * [boto3](b/boto3.md) + * [Bottleneck](b/Bottleneck.md) + * [Bowtie](b/Bowtie.md) + * [Bowtie2](b/Bowtie2.md) + * [Bpipe](b/Bpipe.md) + * [bpp](b/bpp.md) + * [bpytop](b/bpytop.md) + * [Bracken](b/Bracken.md) + * [Braindecode](b/Braindecode.md) + * [BRAKER](b/BRAKER.md) + * [BreakDancer](b/BreakDancer.md) + * [breseq](b/breseq.md) + * [BRiAl](b/BRiAl.md) + * [Brotli](b/Brotli.md) + * [Brotli-python](b/Brotli-python.md) + * [Brunsli](b/Brunsli.md) + * [bsddb3](b/bsddb3.md) + * [BSMAPz](b/BSMAPz.md) + * [Bsoft](b/Bsoft.md) + * [BSseeker2](b/BSseeker2.md) + * [btllib](b/btllib.md) + * [BuDDy](b/BuDDy.md) + * [BUFRLIB](b/BUFRLIB.md) + * [build](b/build.md) + * [buildenv](b/buildenv.md) + * [buildingspy](b/buildingspy.md) + * [Bullet](b/Bullet.md) + * [BUSCO](b/BUSCO.md) + * [BUStools](b/BUStools.md) + * [BWA](b/BWA.md) + * [bwa-mem2](b/bwa-mem2.md) + * [bwa-meth](b/bwa-meth.md) + * [bwakit](b/bwakit.md) + * [bwidget](b/bwidget.md) + * [BWISE](b/BWISE.md) + * [bx-python](b/bx-python.md) + * [BXH_XCEDE_TOOLS](b/BXH_XCEDE_TOOLS.md) + * [byacc](b/byacc.md) + * [byobu](b/byobu.md) + * [bzip2](b/bzip2.md) + * [c](c/index.md) + * [c-ares](c/c-ares.md) + * [C3D](c/C3D.md) + * [cadaver](c/cadaver.md) + * [CaDiCaL](c/CaDiCaL.md) + * [CAFE5](c/CAFE5.md) + * [Caffe](c/Caffe.md) + * [cairo](c/cairo.md) + * [cairomm](c/cairomm.md) + * [Calcam](c/Calcam.md) + * [CalculiX-CrunchiX](c/CalculiX-CrunchiX.md) + * [Calendrical](c/Calendrical.md) + * [Calib](c/Calib.md) + * [CAMPARI](c/CAMPARI.md) + * [Cantera](c/Cantera.md) + * [canu](c/canu.md) + * [Canvas](c/Canvas.md) + * [CAP3](c/CAP3.md) + * [CapnProto](c/CapnProto.md) + * [captum](c/captum.md) + * [Cargo](c/Cargo.md) + * [Carma](c/Carma.md) + * [carputils](c/carputils.md) + * [Cartopy](c/Cartopy.md) + * [CASA](c/CASA.md) + * [casacore](c/casacore.md) + * [Casanovo](c/Casanovo.md) + * [CaSpER](c/CaSpER.md) + * [CASPR](c/CASPR.md) + * [Cassiopeia](c/Cassiopeia.md) + * [CASTEP](c/CASTEP.md) + * [castor](c/castor.md) + * [CastXML](c/CastXML.md) + * [CAT-BAT](c/CAT-BAT.md) + * [CatBoost](c/CatBoost.md) + * [Catch2](c/Catch2.md) + * [category_encoders](c/category_encoders.md) + * [CatLearn](c/CatLearn.md) + * [CatMAP](c/CatMAP.md) + * [causallift](c/causallift.md) + * [causalml](c/causalml.md) + * [CaVEMan](c/CaVEMan.md) + * [CAVIAR](c/CAVIAR.md) + * [Cbc](c/Cbc.md) + * [CBLAS](c/CBLAS.md) + * [ccache](c/ccache.md) + * [CCCL](c/CCCL.md) + * [CCfits](c/CCfits.md) + * [CCL](c/CCL.md) + * [cclib](c/cclib.md) + * [cctbx-base](c/cctbx-base.md) + * [cctools](c/cctools.md) + * [CD-HIT](c/CD-HIT.md) + * [CDAT](c/CDAT.md) + * [cdbfasta](c/cdbfasta.md) + * [CDBtools](c/CDBtools.md) + * [cddlib](c/cddlib.md) + * [CDFlib](c/CDFlib.md) + * [cDNA_Cupcake](c/cDNA_Cupcake.md) + * [CDO](c/CDO.md) + * [cdo-bindings](c/cdo-bindings.md) + * [cdsapi](c/cdsapi.md) + * [cell2location](c/cell2location.md) + * [CellBender](c/CellBender.md) + * [CellChat](c/CellChat.md) + * [CellMix](c/CellMix.md) + * [CellOracle](c/CellOracle.md) + * [Cellpose](c/Cellpose.md) + * [CellRanger](c/CellRanger.md) + * [CellRanger-ARC](c/CellRanger-ARC.md) + * [CellRanger-ATAC](c/CellRanger-ATAC.md) + * [CellRank](c/CellRank.md) + * [CellTypist](c/CellTypist.md) + * [CENSO](c/CENSO.md) + * [centerline](c/centerline.md) + * [Centrifuge](c/Centrifuge.md) + * [Cereal](c/Cereal.md) + * [CESM-deps](c/CESM-deps.md) + * [CFDEMcoupling](c/CFDEMcoupling.md) + * [cffi](c/cffi.md) + * [CFITSIO](c/CFITSIO.md) + * [cftime](c/cftime.md) + * [CGAL](c/CGAL.md) + * [cget](c/cget.md) + * [Cgl](c/Cgl.md) + * [CGmapTools](c/CGmapTools.md) + * [CGNS](c/CGNS.md) + * [CharLS](c/CharLS.md) + * [charm-gems](c/charm-gems.md) + * [CHASE](c/CHASE.md) + * [Check](c/Check.md) + * [CheckM](c/CheckM.md) + * [CheckM-Database](c/CheckM-Database.md) + * [CheckM2](c/CheckM2.md) + * [Cheetah](c/Cheetah.md) + * [Chemaxon-Marvin](c/Chemaxon-Marvin.md) + * [chemprop](c/chemprop.md) + * [CheMPS2](c/CheMPS2.md) + * [CHERAB](c/CHERAB.md) + * [chewBBACA](c/chewBBACA.md) + * [chi2comb](c/chi2comb.md) + * [Chimera](c/Chimera.md) + * [ChimPipe](c/ChimPipe.md) + * [ChIPseeker](c/ChIPseeker.md) + * [Chromaprint](c/Chromaprint.md) + * [chromVARmotifs](c/chromVARmotifs.md) + * [cicero](c/cicero.md) + * [CIF2Cell](c/CIF2Cell.md) + * [cimfomfa](c/cimfomfa.md) + * [CIRCexplorer](c/CIRCexplorer.md) + * [CIRCexplorer2](c/CIRCexplorer2.md) + * [Circlator](c/Circlator.md) + * [Circos](c/Circos.md) + * [Circuitscape](c/Circuitscape.md) + * [CIRI](c/CIRI.md) + * [CIRI-long](c/CIRI-long.md) + * [CIRIquant](c/CIRIquant.md) + * [cisTEM](c/cisTEM.md) + * [CITE-seq-Count](c/CITE-seq-Count.md) + * [Clair3](c/Clair3.md) + * [Clang](c/Clang.md) + * [Clang-AOMP](c/Clang-AOMP.md) + * [Clang-Python-bindings](c/Clang-Python-bindings.md) + * [CLAPACK](c/CLAPACK.md) + * [Clarabel.rs](c/Clarabel.rs.md) + * [CLEAR](c/CLEAR.md) + * [CLEASE](c/CLEASE.md) + * [CLHEP](c/CLHEP.md) + * [CliMetLab](c/CliMetLab.md) + * [CLIP](c/CLIP.md) + * [cliquer](c/cliquer.md) + * [CLISP](c/CLISP.md) + * [ClonalFrameML](c/ClonalFrameML.md) + * [CLooG](c/CLooG.md) + * [CloudCompare](c/CloudCompare.md) + * [Clp](c/Clp.md) + * [Clustal-Omega](c/Clustal-Omega.md) + * [ClustalW2](c/ClustalW2.md) + * [Cluster-Buster](c/Cluster-Buster.md) + * [ClusterShell](c/ClusterShell.md) + * [CMake](c/CMake.md) + * [CMAverse](c/CMAverse.md) + * [CmdStanR](c/CmdStanR.md) + * [cmocean](c/cmocean.md) + * [cmph](c/cmph.md) + * [CMSeq](c/CMSeq.md) + * [CNT-ILP](c/CNT-ILP.md) + * [CNVkit](c/CNVkit.md) + * [CNVnator](c/CNVnator.md) + * [Co-phylog](c/Co-phylog.md) + * [COBRApy](c/COBRApy.md) + * [CoCoALib](c/CoCoALib.md) + * [CodAn](c/CodAn.md) + * [code-cli](c/code-cli.md) + * [code-server](c/code-server.md) + * [CODEX2](c/CODEX2.md) + * [CodingQuarry](c/CodingQuarry.md) + * [Cogent](c/Cogent.md) + * [Coin](c/Coin.md) + * [CoinUtils](c/CoinUtils.md) + * [ColabFold](c/ColabFold.md) + * [colossalai](c/colossalai.md) + * [COMEBin](c/COMEBin.md) + * [Commet](c/Commet.md) + * [CompareM](c/CompareM.md) + * [Compass](c/Compass.md) + * [Compress-Raw-Zlib](c/Compress-Raw-Zlib.md) + * [COMSOL](c/COMSOL.md) + * [Con3F](c/Con3F.md) + * [conan](c/conan.md) + * [CONCOCT](c/CONCOCT.md) + * [Concorde](c/Concorde.md) + * [ConcurrentVersionsSystem](c/ConcurrentVersionsSystem.md) + * [configparser](c/configparser.md) + * [configurable-http-proxy](c/configurable-http-proxy.md) + * [CONN](c/CONN.md) + * [connected-components-3d](c/connected-components-3d.md) + * [ConnectomeWorkbench](c/ConnectomeWorkbench.md) + * [contextily](c/contextily.md) + * [Control-FREEC](c/Control-FREEC.md) + * [cooler](c/cooler.md) + * [CoordgenLibs](c/CoordgenLibs.md) + * [Coot](c/Coot.md) + * [CopyKAT](c/CopyKAT.md) + * [core-counter](c/core-counter.md) + * [Coreutils](c/Coreutils.md) + * [corner](c/corner.md) + * [CoSymLib](c/CoSymLib.md) + * [coverage](c/coverage.md) + * [cowsay](c/cowsay.md) + * [CP2K](c/CP2K.md) + * [CPB](c/CPB.md) + * [CPC2](c/CPC2.md) + * [cpio](c/cpio.md) + * [CPLEX](c/CPLEX.md) + * [CPMD](c/CPMD.md) + * [CPPE](c/CPPE.md) + * [CppHeaderParser](c/CppHeaderParser.md) + * [CppUnit](c/CppUnit.md) + * [cppy](c/cppy.md) + * [cppyy](c/cppyy.md) + * [cppzmq](c/cppzmq.md) + * [cpu_features](c/cpu_features.md) + * [cram](c/cram.md) + * [cramtools](c/cramtools.md) + * [CrayCCE](c/CrayCCE.md) + * [CrayGNU](c/CrayGNU.md) + * [CrayIntel](c/CrayIntel.md) + * [CrayPGI](c/CrayPGI.md) + * [crb-blast](c/crb-blast.md) + * [CREST](c/CREST.md) + * [CRF++](c/CRF++.md) + * [CRISPR-DAV](c/CRISPR-DAV.md) + * [CRISPResso2](c/CRISPResso2.md) + * [cromwell](c/cromwell.md) + * [crossguid](c/crossguid.md) + * [CrossMap](c/CrossMap.md) + * [CrossTalkZ](c/CrossTalkZ.md) + * [CRPropa](c/CRPropa.md) + * [Crumble](c/Crumble.md) + * [cryoCARE](c/cryoCARE.md) + * [cryoDRGN](c/cryoDRGN.md) + * [cryptography](c/cryptography.md) + * [CryptoMiniSat](c/CryptoMiniSat.md) + * [CrystFEL](c/CrystFEL.md) + * [CSB](c/CSB.md) + * [CSBDeep](c/CSBDeep.md) + * [CSBLAST](c/CSBLAST.md) + * [cscope](c/cscope.md) + * [csvkit](c/csvkit.md) + * [ctags](c/ctags.md) + * [ctffind](c/ctffind.md) + * [ctffind5](c/ctffind5.md) + * [CTPL](c/CTPL.md) + * [Cube](c/Cube.md) + * [CubeGUI](c/CubeGUI.md) + * [CubeLib](c/CubeLib.md) + * [CubeWriter](c/CubeWriter.md) + * [CuCLARK](c/CuCLARK.md) + * [CUDA](c/CUDA.md) + * [CUDA-Samples](c/CUDA-Samples.md) + * [CUDAcompat](c/CUDAcompat.md) + * [CUDAcore](c/CUDAcore.md) + * [CUDD](c/CUDD.md) + * [cuDNN](c/cuDNN.md) + * [Cufflinks](c/Cufflinks.md) + * [CUnit](c/CUnit.md) + * [CuPy](c/CuPy.md) + * [cURL](c/cURL.md) + * [currentNe](c/currentNe.md) + * [cuSPARSELt](c/cuSPARSELt.md) + * [custodian](c/custodian.md) + * [cutadapt](c/cutadapt.md) + * [cuTENSOR](c/cuTENSOR.md) + * [cuteSV](c/cuteSV.md) + * [CUTLASS](c/CUTLASS.md) + * [CVglasso](c/CVglasso.md) + * [CVX](c/CVX.md) + * [CVXOPT](c/CVXOPT.md) + * [CVXPY](c/CVXPY.md) + * [CWIPI](c/CWIPI.md) + * [cwltool](c/cwltool.md) + * [cxxopts](c/cxxopts.md) + * [cysignals](c/cysignals.md) + * [Cython](c/Cython.md) + * [cython-blis](c/cython-blis.md) + * [cytoolz](c/cytoolz.md) + * [Cytoscape](c/Cytoscape.md) + * [cytosim](c/cytosim.md) + * [cyvcf2](c/cyvcf2.md) + * [d](d/index.md) + * [dadi](d/dadi.md) + * [dagitty](d/dagitty.md) + * [Dakota](d/Dakota.md) + * [DALI](d/DALI.md) + * [DaliLite](d/DaliLite.md) + * [Dalton](d/Dalton.md) + * [damageproto](d/damageproto.md) + * [dammit](d/dammit.md) + * [DANPOS2](d/DANPOS2.md) + * [DAS_Tool](d/DAS_Tool.md) + * [dask](d/dask.md) + * [dask-labextension](d/dask-labextension.md) + * [datalad](d/datalad.md) + * [datamash](d/datamash.md) + * [davix](d/davix.md) + * [DB](d/DB.md) + * [DB_File](d/DB_File.md) + * [DBCSR](d/DBCSR.md) + * [DBD-mysql](d/DBD-mysql.md) + * [DBG2OLC](d/DBG2OLC.md) + * [DBus](d/DBus.md) + * [dbus-glib](d/dbus-glib.md) + * [dclone](d/dclone.md) + * [dcm2niix](d/dcm2niix.md) + * [DCMTK](d/DCMTK.md) + * [dd](d/dd.md) + * [deal.II](d/deal.II.md) + * [deap](d/deap.md) + * [decona](d/decona.md) + * [deconf](d/deconf.md) + * [DeconICA](d/DeconICA.md) + * [deepdiff](d/deepdiff.md) + * [deepfold](d/deepfold.md) + * [DeepLabCut](d/DeepLabCut.md) + * [DeepLoc](d/DeepLoc.md) + * [deepmedic](d/deepmedic.md) + * [DeepMod2](d/DeepMod2.md) + * [DeepSurv](d/DeepSurv.md) + * [deepTools](d/deepTools.md) + * [DEICODE](d/DEICODE.md) + * [Delft3D](d/Delft3D.md) + * [Delly](d/Delly.md) + * [DeltaLake](d/DeltaLake.md) + * [DeMixT](d/DeMixT.md) + * [Demystify](d/Demystify.md) + * [DendroPy](d/DendroPy.md) + * [denseweight](d/denseweight.md) + * [DensPart](d/DensPart.md) + * [Deprecated](d/Deprecated.md) + * [desktop-file-utils](d/desktop-file-utils.md) + * [destiny](d/destiny.md) + * [Detectron2](d/Detectron2.md) + * [DETONATE](d/DETONATE.md) + * [devbio-napari](d/devbio-napari.md) + * [Devito](d/Devito.md) + * [DFA](d/DFA.md) + * [DFT-D3](d/DFT-D3.md) + * [DFT-D4](d/DFT-D4.md) + * [DFTB+](d/DFTB+.md) + * [dftd3-lib](d/dftd3-lib.md) + * [dftd4](d/dftd4.md) + * [DGL](d/DGL.md) + * [DIA-NN](d/DIA-NN.md) + * [DIAL](d/DIAL.md) + * [dialog](d/dialog.md) + * [DIALOGUE](d/DIALOGUE.md) + * [DIAMOND](d/DIAMOND.md) + * [Dice](d/Dice.md) + * [DiCE-ML](d/DiCE-ML.md) + * [dicom2nifti](d/dicom2nifti.md) + * [DicomBrowser](d/DicomBrowser.md) + * [DiffBind](d/DiffBind.md) + * [Diffutils](d/Diffutils.md) + * [dijitso](d/dijitso.md) + * [dill](d/dill.md) + * [DIRAC](d/DIRAC.md) + * [distributed](d/distributed.md) + * [DistributedStream](d/DistributedStream.md) + * [DjVuLibre](d/DjVuLibre.md) + * [DL_POLY_4](d/DL_POLY_4.md) + * [DL_POLY_Classic](d/DL_POLY_Classic.md) + * [dlb](d/dlb.md) + * [dlib](d/dlib.md) + * [DLPack](d/DLPack.md) + * [dm-haiku](d/dm-haiku.md) + * [dm-reverb](d/dm-reverb.md) + * [dm-tree](d/dm-tree.md) + * [DMCfun](d/DMCfun.md) + * [DMLC-Core](d/DMLC-Core.md) + * [DMTCP](d/DMTCP.md) + * [DOLFIN](d/DOLFIN.md) + * [dominate](d/dominate.md) + * [dorado](d/dorado.md) + * [Doris](d/Doris.md) + * [DosageConvertor](d/DosageConvertor.md) + * [dotNET-Core](d/dotNET-Core.md) + * [dotNET-Core-Runtime](d/dotNET-Core-Runtime.md) + * [dotNET-SDK](d/dotNET-SDK.md) + * [double-conversion](d/double-conversion.md) + * [DoubletFinder](d/DoubletFinder.md) + * [Doxygen](d/Doxygen.md) + * [DP3](d/DP3.md) + * [DRAGMAP](d/DRAGMAP.md) + * [Drake](d/Drake.md) + * [dRep](d/dRep.md) + * [drmaa-python](d/drmaa-python.md) + * [DROP](d/DROP.md) + * [dropEst](d/dropEst.md) + * [DSA](d/DSA.md) + * [dSFMT](d/dSFMT.md) + * [DSRC](d/DSRC.md) + * [Dsuite](d/Dsuite.md) + * [dtcmp](d/dtcmp.md) + * [dtcwt](d/dtcwt.md) + * [DualSPHysics](d/DualSPHysics.md) + * [DUBStepR](d/DUBStepR.md) + * [dune-core](d/dune-core.md) + * [dune-fem](d/dune-fem.md) + * [duplex-tools](d/duplex-tools.md) + * [dx-toolkit](d/dx-toolkit.md) + * [dxpy](d/dxpy.md) + * [DyMat](d/DyMat.md) + * [dynesty](d/dynesty.md) + * [e](e/index.md) + * [E-ANTIC](e/E-ANTIC.md) + * [e3nn](e/e3nn.md) + * [ea-utils](e/ea-utils.md) + * [earthengine-api](e/earthengine-api.md) + * [easel](e/easel.md) + * [EasyBuild](e/EasyBuild.md) + * [EasyMocap](e/EasyMocap.md) + * [EasyQC](e/EasyQC.md) + * [ebGSEA](e/ebGSEA.md) + * [ecBuild](e/ecBuild.md) + * [ecCodes](e/ecCodes.md) + * [eccodes-python](e/eccodes-python.md) + * [ecFlow](e/ecFlow.md) + * [ECL](e/ECL.md) + * [eclib](e/eclib.md) + * [ED2](e/ED2.md) + * [EDirect](e/EDirect.md) + * [edlib](e/edlib.md) + * [EggLib](e/EggLib.md) + * [eggnog-mapper](e/eggnog-mapper.md) + * [EGTtools](e/EGTtools.md) + * [eht-imaging](e/eht-imaging.md) + * [Eigen](e/Eigen.md) + * [EigenExa](e/EigenExa.md) + * [EIGENSOFT](e/EIGENSOFT.md) + * [einops](e/einops.md) + * [elastix](e/elastix.md) + * [elbencho](e/elbencho.md) + * [ELFIO](e/ELFIO.md) + * [elfutils](e/elfutils.md) + * [Elk](e/Elk.md) + * [Elmer](e/Elmer.md) + * [ELPA](e/ELPA.md) + * [ELPH](e/ELPH.md) + * [elprep](e/elprep.md) + * [ELSI](e/ELSI.md) + * [ELSI-RCI](e/ELSI-RCI.md) + * [Emacs](e/Emacs.md) + * [EMAN2](e/EMAN2.md) + * [EMBOSS](e/EMBOSS.md) + * [Embree](e/Embree.md) + * [emcee](e/emcee.md) + * [EMU](e/EMU.md) + * [enaBrowserTool](e/enaBrowserTool.md) + * [enchant](e/enchant.md) + * [enchant-2](e/enchant-2.md) + * [EnergyPlus](e/EnergyPlus.md) + * [EnsEMBLCoreAPI](e/EnsEMBLCoreAPI.md) + * [ensmallen](e/ensmallen.md) + * [entrypoints](e/entrypoints.md) + * [epct](e/epct.md) + * [EPD](e/EPD.md) + * [EPIC](e/EPIC.md) + * [epiScanpy](e/epiScanpy.md) + * [EpiSCORE](e/EpiSCORE.md) + * [eQuilibrator](e/eQuilibrator.md) + * [EricScript](e/EricScript.md) + * [ESL-Bundle](e/ESL-Bundle.md) + * [ESM-2](e/ESM-2.md) + * [ESMF](e/ESMF.md) + * [ESMPy](e/ESMPy.md) + * [ESMValTool](e/ESMValTool.md) + * [eSpeak-NG](e/eSpeak-NG.md) + * [ESPResSo](e/ESPResSo.md) + * [Essentia](e/Essentia.md) + * [ETE](e/ETE.md) + * [ETSF_IO](e/ETSF_IO.md) + * [eudev](e/eudev.md) + * [EUKulele](e/EUKulele.md) + * [EVcouplings](e/EVcouplings.md) + * [Evcxr-REPL](e/Evcxr-REPL.md) + * [EveryBeam](e/EveryBeam.md) + * [EvidentialGene](e/EvidentialGene.md) + * [evince](e/evince.md) + * [evmix](e/evmix.md) + * [ExaBayes](e/ExaBayes.md) + * [ExaML](e/ExaML.md) + * [Excel-Writer-XLSX](e/Excel-Writer-XLSX.md) + * [ExifTool](e/ExifTool.md) + * [exiv2](e/exiv2.md) + * [Exonerate](e/Exonerate.md) + * [expat](e/expat.md) + * [expect](e/expect.md) + * [expecttest](e/expecttest.md) + * [eXpress](e/eXpress.md) + * [ExpressBetaDiversity](e/ExpressBetaDiversity.md) + * [Extrae](e/Extrae.md) + * [ExtremeLy](e/ExtremeLy.md) + * [EZC3D](e/EZC3D.md) + * [f](f/index.md) + * [f90cache](f/f90cache.md) + * [f90nml](f/f90nml.md) + * [f90wrap](f/f90wrap.md) + * [Faber](f/Faber.md) + * [FabIO](f/FabIO.md) + * [FACE](f/FACE.md) + * [faceswap](f/faceswap.md) + * [Faiss](f/Faiss.md) + * [FALCON](f/FALCON.md) + * [FANN](f/FANN.md) + * [fast5](f/fast5.md) + * [FASTA](f/FASTA.md) + * [fasta-reader](f/fasta-reader.md) + * [fastahack](f/fastahack.md) + * [fastai](f/fastai.md) + * [FastaIndex](f/FastaIndex.md) + * [FastANI](f/FastANI.md) + * [Fastaq](f/Fastaq.md) + * [FastFold](f/FastFold.md) + * [fastjet](f/fastjet.md) + * [fastjet-contrib](f/fastjet-contrib.md) + * [FastME](f/FastME.md) + * [fastml](f/fastml.md) + * [fastp](f/fastp.md) + * [fastparquet](f/fastparquet.md) + * [fastPHASE](f/fastPHASE.md) + * [fastq-pair](f/fastq-pair.md) + * [fastq-tools](f/fastq-tools.md) + * [FastQ_Screen](f/FastQ_Screen.md) + * [FastQC](f/FastQC.md) + * [fastqsplitter](f/fastqsplitter.md) + * [FastQTL](f/FastQTL.md) + * [fastqz](f/fastqz.md) + * [FastRFS](f/FastRFS.md) + * [fastStructure](f/fastStructure.md) + * [FastTree](f/FastTree.md) + * [FastViromeExplorer](f/FastViromeExplorer.md) + * [FASTX-Toolkit](f/FASTX-Toolkit.md) + * [fatslim](f/fatslim.md) + * [fbm](f/fbm.md) + * [FBPIC](f/FBPIC.md) + * [FCC](f/FCC.md) + * [FCM](f/FCM.md) + * [fdict](f/fdict.md) + * [FDMNES](f/FDMNES.md) + * [FDS](f/FDS.md) + * [fdstools](f/fdstools.md) + * [FDTD_Solutions](f/FDTD_Solutions.md) + * [feh](f/feh.md) + * [FEniCS](f/FEniCS.md) + * [fermi-lite](f/fermi-lite.md) + * [Ferret](f/Ferret.md) + * [festival](f/festival.md) + * [fetchMG](f/fetchMG.md) + * [FFAVES](f/FFAVES.md) + * [FFC](f/FFC.md) + * [FFLAS-FFPACK](f/FFLAS-FFPACK.md) + * [FFmpeg](f/FFmpeg.md) + * [ffmpi](f/ffmpi.md) + * [ffnet](f/ffnet.md) + * [ffnvcodec](f/ffnvcodec.md) + * [fftlib](f/fftlib.md) + * [FFTW](f/FFTW.md) + * [FFTW.MPI](f/FFTW.MPI.md) + * [fgbio](f/fgbio.md) + * [FGSL](f/FGSL.md) + * [FHI-aims](f/FHI-aims.md) + * [FIAT](f/FIAT.md) + * [FIGARO](f/FIGARO.md) + * [FigureGen](f/FigureGen.md) + * [Fiji](f/Fiji.md) + * [file](f/file.md) + * [filevercmp](f/filevercmp.md) + * [Filtlong](f/Filtlong.md) + * [find_circ](f/find_circ.md) + * [finder](f/finder.md) + * [findhap](f/findhap.md) + * [findutils](f/findutils.md) + * [fineRADstructure](f/fineRADstructure.md) + * [fineSTRUCTURE](f/fineSTRUCTURE.md) + * [fio](f/fio.md) + * [Fiona](f/Fiona.md) + * [Firefox](f/Firefox.md) + * [FIRESTARTER](f/FIRESTARTER.md) + * [FireWorks](f/FireWorks.md) + * [FIt-SNE](f/FIt-SNE.md) + * [FIX](f/FIX.md) + * [fixesproto](f/fixesproto.md) + * [FLAC](f/FLAC.md) + * [FLAIR](f/FLAIR.md) + * [flair-NLP](f/flair-NLP.md) + * [FLANN](f/FLANN.md) + * [FLASH](f/FLASH.md) + * [Flask](f/Flask.md) + * [flatbuffers](f/flatbuffers.md) + * [flatbuffers-python](f/flatbuffers-python.md) + * [FLEUR](f/FLEUR.md) + * [flex](f/flex.md) + * [Flexbar](f/Flexbar.md) + * [FlexiBLAS](f/FlexiBLAS.md) + * [FlexiDot](f/FlexiDot.md) + * [Flink](f/Flink.md) + * [FLINT](f/FLINT.md) + * [flit](f/flit.md) + * [flook](f/flook.md) + * [flowFDA](f/flowFDA.md) + * [FLTK](f/FLTK.md) + * [FLUENT](f/FLUENT.md) + * [Flye](f/Flye.md) + * [FMILibrary](f/FMILibrary.md) + * [FMM3D](f/FMM3D.md) + * [FMPy](f/FMPy.md) + * [FMRIprep](f/FMRIprep.md) + * [FMS](f/FMS.md) + * [fmt](f/fmt.md) + * [FoBiS](f/FoBiS.md) + * [FoldX](f/FoldX.md) + * [fontconfig](f/fontconfig.md) + * [fontsproto](f/fontsproto.md) + * [forbear](f/forbear.md) + * [FORD](f/FORD.md) + * [foss](f/foss.md) + * [fosscuda](f/fosscuda.md) + * [FoX](f/FoX.md) + * [FOX-Toolkit](f/FOX-Toolkit.md) + * [fplll](f/fplll.md) + * [FPM](f/FPM.md) + * [fpocket](f/fpocket.md) + * [fpylll](f/fpylll.md) + * [fqtrim](f/fqtrim.md) + * [fqzcomp](f/fqzcomp.md) + * [FragGeneScan](f/FragGeneScan.md) + * [FragPipe](f/FragPipe.md) + * [FRANz](f/FRANz.md) + * [FreeBarcodes](f/FreeBarcodes.md) + * [freebayes](f/freebayes.md) + * [FreeFEM](f/FreeFEM.md) + * [FreeFem++](f/FreeFem++.md) + * [freeglut](f/freeglut.md) + * [FreeImage](f/FreeImage.md) + * [FreeSASA](f/FreeSASA.md) + * [FreeSurfer](f/FreeSurfer.md) + * [FreeTDS](f/FreeTDS.md) + * [freetype](f/freetype.md) + * [freetype-py](f/freetype-py.md) + * [FreeXL](f/FreeXL.md) + * [freud-analysis](f/freud-analysis.md) + * [FriBidi](f/FriBidi.md) + * [FRUIT](f/FRUIT.md) + * [FRUIT_processor](f/FRUIT_processor.md) + * [FSL](f/FSL.md) + * [FSLeyes](f/FSLeyes.md) + * [fsom](f/fsom.md) + * [FSON](f/FSON.md) + * [ftfy](f/ftfy.md) + * [FTGL](f/FTGL.md) + * [fugue](f/fugue.md) + * [Fujitsu](f/Fujitsu.md) + * [fullrmc](f/fullrmc.md) + * [fumi_tools](f/fumi_tools.md) + * [funannotate](f/funannotate.md) + * [FunGAP](f/FunGAP.md) + * [FUNWAVE-TVD](f/FUNWAVE-TVD.md) + * [FUSE](f/FUSE.md) + * [FuSeq](f/FuSeq.md) + * [FusionCatcher](f/FusionCatcher.md) + * [futhark](f/futhark.md) + * [futile](f/futile.md) + * [future](f/future.md) + * [fxtract](f/fxtract.md) + * [g](g/index.md) + * [G-PhoCS](g/G-PhoCS.md) + * [g2clib](g/g2clib.md) + * [g2lib](g/g2lib.md) + * [g2log](g/g2log.md) + * [Gaia](g/Gaia.md) + * [GAMESS-US](g/GAMESS-US.md) + * [gap](g/gap.md) + * [GapCloser](g/GapCloser.md) + * [GapFiller](g/GapFiller.md) + * [gappa](g/gappa.md) + * [GAPPadder](g/GAPPadder.md) + * [GARLI](g/GARLI.md) + * [garnett](g/garnett.md) + * [GAT](g/GAT.md) + * [GATB-Core](g/GATB-Core.md) + * [GATE](g/GATE.md) + * [GATK](g/GATK.md) + * [Gaussian](g/Gaussian.md) + * [gawk](g/gawk.md) + * [gbasis](g/gbasis.md) + * [Gblocks](g/Gblocks.md) + * [GBprocesS](g/GBprocesS.md) + * [gbs2ploidy](g/gbs2ploidy.md) + * [gc](g/gc.md) + * [GC3Pie](g/GC3Pie.md) + * [GCC](g/GCC.md) + * [GCCcore](g/GCCcore.md) + * [gcccuda](g/gcccuda.md) + * [gcloud](g/gcloud.md) + * [GConf](g/GConf.md) + * [gcsfs](g/gcsfs.md) + * [GCTA](g/GCTA.md) + * [Gctf](g/Gctf.md) + * [GD](g/GD.md) + * [GDAL](g/GDAL.md) + * [GDB](g/GDB.md) + * [gdbgui](g/gdbgui.md) + * [gdbm](g/gdbm.md) + * [gdc-client](g/gdc-client.md) + * [GDCHART](g/GDCHART.md) + * [GDCM](g/GDCM.md) + * [GDGraph](g/GDGraph.md) + * [gdist](g/gdist.md) + * [Gdk-Pixbuf](g/Gdk-Pixbuf.md) + * [GDRCopy](g/GDRCopy.md) + * [Gdspy](g/Gdspy.md) + * [Geant4](g/Geant4.md) + * [Geant4-data](g/Geant4-data.md) + * [gearshifft](g/gearshifft.md) + * [GEGL](g/GEGL.md) + * [GEM](g/GEM.md) + * [GEM-library](g/GEM-library.md) + * [gemelli](g/gemelli.md) + * [GEMMA](g/GEMMA.md) + * [gemmi](g/gemmi.md) + * [gencore_variant_detection](g/gencore_variant_detection.md) + * [GeneMark-ET](g/GeneMark-ET.md) + * [GenerativeModels](g/GenerativeModels.md) + * [gengetopt](g/gengetopt.md) + * [GenMap](g/GenMap.md) + * [Genome_Profiler](g/Genome_Profiler.md) + * [GenomeComb](g/GenomeComb.md) + * [GenomeMapper](g/GenomeMapper.md) + * [genomepy](g/genomepy.md) + * [GenomeTester4](g/GenomeTester4.md) + * [GenomeThreader](g/GenomeThreader.md) + * [GenomeTools](g/GenomeTools.md) + * [GenomeWorks](g/GenomeWorks.md) + * [GenotypeHarmonizer](g/GenotypeHarmonizer.md) + * [genozip](g/genozip.md) + * [gensim](g/gensim.md) + * [geocube](g/geocube.md) + * [geopandas](g/geopandas.md) + * [geopy](g/geopy.md) + * [georges](g/georges.md) + * [GEOS](g/GEOS.md) + * [geosphere](g/geosphere.md) + * [Gerris](g/Gerris.md) + * [GETORB](g/GETORB.md) + * [GetOrganelle](g/GetOrganelle.md) + * [gettext](g/gettext.md) + * [gexiv2](g/gexiv2.md) + * [gfbf](g/gfbf.md) + * [GFF3-toolkit](g/GFF3-toolkit.md) + * [GffCompare](g/GffCompare.md) + * [gffread](g/gffread.md) + * [gffutils](g/gffutils.md) + * [gflags](g/gflags.md) + * [GFOLD](g/GFOLD.md) + * [gh](g/gh.md) + * [GHC](g/GHC.md) + * [Ghostscript](g/Ghostscript.md) + * [GI-DocGen](g/GI-DocGen.md) + * [giac](g/giac.md) + * [Gibbs2](g/Gibbs2.md) + * [giflib](g/giflib.md) + * [gifsicle](g/gifsicle.md) + * [GIMIC](g/GIMIC.md) + * [gimkl](g/gimkl.md) + * [GimmeMotifs](g/GimmeMotifs.md) + * [GIMP](g/GIMP.md) + * [gimpi](g/gimpi.md) + * [gimpic](g/gimpic.md) + * [GIMPS](g/GIMPS.md) + * [giolf](g/giolf.md) + * [giolfc](g/giolfc.md) + * [Giotto-Suite](g/Giotto-Suite.md) + * [git](g/git.md) + * [git-annex](g/git-annex.md) + * [git-extras](g/git-extras.md) + * [git-lfs](g/git-lfs.md) + * [GitPython](g/GitPython.md) + * [Givaro](g/Givaro.md) + * [Giza](g/Giza.md) + * [GKeyll](g/GKeyll.md) + * [GKlib-METIS](g/GKlib-METIS.md) + * [gkmSVM](g/gkmSVM.md) + * [GL2PS](g/GL2PS.md) + * [Glade](g/Glade.md) + * [glew](g/glew.md) + * [GLFW](g/GLFW.md) + * [GLI](g/GLI.md) + * [GLib](g/GLib.md) + * [glib-networking](g/glib-networking.md) + * [glibc](g/glibc.md) + * [GLibmm](g/GLibmm.md) + * [GLIMMER](g/GLIMMER.md) + * [GlimmerHMM](g/GlimmerHMM.md) + * [GLIMPSE](g/GLIMPSE.md) + * [GLM](g/GLM.md) + * [GLM-AED](g/GLM-AED.md) + * [GlobalArrays](g/GlobalArrays.md) + * [Globus-CLI](g/Globus-CLI.md) + * [GlobusConnectPersonal](g/GlobusConnectPersonal.md) + * [glog](g/glog.md) + * [GLPK](g/GLPK.md) + * [glproto](g/glproto.md) + * [Glucose](g/Glucose.md) + * [GMAP-GSNAP](g/GMAP-GSNAP.md) + * [GMP](g/GMP.md) + * [GMP-ECM](g/GMP-ECM.md) + * [gmpich](g/gmpich.md) + * [gmpolf](g/gmpolf.md) + * [gmpy2](g/gmpy2.md) + * [gmsh](g/gmsh.md) + * [GMT](g/GMT.md) + * [gmvapich2](g/gmvapich2.md) + * [gmvolf](g/gmvolf.md) + * [GNU](g/GNU.md) + * [gnupg-bundle](g/gnupg-bundle.md) + * [gnuplot](g/gnuplot.md) + * [GnuTLS](g/GnuTLS.md) + * [Go](g/Go.md) + * [goalign](g/goalign.md) + * [GOATOOLS](g/GOATOOLS.md) + * [gobff](g/gobff.md) + * [GObject-Introspection](g/GObject-Introspection.md) + * [goblf](g/goblf.md) + * [GOBNILP](g/GOBNILP.md) + * [Godon](g/Godon.md) + * [gofasta](g/gofasta.md) + * [golf](g/golf.md) + * [gomkl](g/gomkl.md) + * [gompi](g/gompi.md) + * [gompic](g/gompic.md) + * [google-java-format](g/google-java-format.md) + * [googletest](g/googletest.md) + * [gotree](g/gotree.md) + * [GP2C](g/GP2C.md) + * [GPAW](g/GPAW.md) + * [GPAW-setups](g/GPAW-setups.md) + * [gperf](g/gperf.md) + * [gperftools](g/gperftools.md) + * [gpustat](g/gpustat.md) + * [GPy](g/GPy.md) + * [GPyOpt](g/GPyOpt.md) + * [GPyTorch](g/GPyTorch.md) + * [Grace](g/Grace.md) + * [Gradle](g/Gradle.md) + * [gradunwarp](g/gradunwarp.md) + * [graph-tool](g/graph-tool.md) + * [GraphDB](g/GraphDB.md) + * [Graphene](g/Graphene.md) + * [GraphicsMagick](g/GraphicsMagick.md) + * [graphite2](g/graphite2.md) + * [GraPhlAn](g/GraPhlAn.md) + * [GraphMap](g/GraphMap.md) + * [GraphMap2](g/GraphMap2.md) + * [Graphviz](g/Graphviz.md) + * [graphviz-python](g/graphviz-python.md) + * [GRASP](g/GRASP.md) + * [GRASP-suite](g/GRASP-suite.md) + * [GRASS](g/GRASS.md) + * [Greenlet](g/Greenlet.md) + * [Grep](g/Grep.md) + * [gretl](g/gretl.md) + * [grib_api](g/grib_api.md) + * [grid](g/grid.md) + * [GRIDSS](g/GRIDSS.md) + * [GRIT](g/GRIT.md) + * [GRNBoost](g/GRNBoost.md) + * [groff](g/groff.md) + * [GroIMP](g/GroIMP.md) + * [GROMACS](g/GROMACS.md) + * [GromacsWrapper](g/GromacsWrapper.md) + * [Groovy](g/Groovy.md) + * [gRPC](g/gRPC.md) + * [grpcio](g/grpcio.md) + * [GSD](g/GSD.md) + * [GSEA](g/GSEA.md) + * [gsettings-desktop-schemas](g/gsettings-desktop-schemas.md) + * [GSL](g/GSL.md) + * [gSOAP](g/gSOAP.md) + * [gspell](g/gspell.md) + * [gsport](g/gsport.md) + * [GST-plugins-bad](g/GST-plugins-bad.md) + * [GST-plugins-base](g/GST-plugins-base.md) + * [GStreamer](g/GStreamer.md) + * [gsutil](g/gsutil.md) + * [gsw](g/gsw.md) + * [GTDB-Tk](g/GTDB-Tk.md) + * [GTK+](g/GTK+.md) + * [GTK2](g/GTK2.md) + * [GTK3](g/GTK3.md) + * [GTK4](g/GTK4.md) + * [GtkSourceView](g/GtkSourceView.md) + * [GTOOL](g/GTOOL.md) + * [GTS](g/GTS.md) + * [gubbins](g/gubbins.md) + * [guenomu](g/guenomu.md) + * [GUIDANCE](g/GUIDANCE.md) + * [Guile](g/Guile.md) + * [GULP](g/GULP.md) + * [Gurobi](g/Gurobi.md) + * [GUSHR](g/GUSHR.md) + * [gzip](g/gzip.md) + * [h](h/index.md) + * [h4toh5](h/h4toh5.md) + * [H5hut](h/H5hut.md) + * [h5netcdf](h/h5netcdf.md) + * [h5py](h/h5py.md) + * [Hadoop](h/Hadoop.md) + * [HAL](h/HAL.md) + * [hampel](h/hampel.md) + * [hanythingondemand](h/hanythingondemand.md) + * [HAPGEN2](h/HAPGEN2.md) + * [HarfBuzz](h/HarfBuzz.md) + * [Harminv](h/Harminv.md) + * [harmony](h/harmony.md) + * [hatch-jupyter-builder](h/hatch-jupyter-builder.md) + * [hatchling](h/hatchling.md) + * [HBase](h/HBase.md) + * [HD-BET](h/HD-BET.md) + * [HDBSCAN](h/HDBSCAN.md) + * [HDDM](h/HDDM.md) + * [HDF](h/HDF.md) + * [HDF-EOS](h/HDF-EOS.md) + * [HDF-EOS2](h/HDF-EOS2.md) + * [HDF-EOS5](h/HDF-EOS5.md) + * [HDF5](h/HDF5.md) + * [hdf5storage](h/hdf5storage.md) + * [HDFView](h/HDFView.md) + * [hdWGCNA](h/hdWGCNA.md) + * [HEALPix](h/HEALPix.md) + * [Health-GPS](h/Health-GPS.md) + * [heaptrack](h/heaptrack.md) + * [hector](h/hector.md) + * [HeFFTe](h/HeFFTe.md) + * [Hello](h/Hello.md) + * [help2man](h/help2man.md) + * [HepMC](h/HepMC.md) + * [HepMC3](h/HepMC3.md) + * [hevea](h/hevea.md) + * [HF-Datasets](h/HF-Datasets.md) + * [HH-suite](h/HH-suite.md) + * [HiC-Pro](h/HiC-Pro.md) + * [hic-straw](h/hic-straw.md) + * [HiCExplorer](h/HiCExplorer.md) + * [HiCMatrix](h/HiCMatrix.md) + * [hierfstat](h/hierfstat.md) + * [hifiasm](h/hifiasm.md) + * [HighFive](h/HighFive.md) + * [HiGHS](h/HiGHS.md) + * [Highway](h/Highway.md) + * [HIP](h/HIP.md) + * [hipify-clang](h/hipify-clang.md) + * [HIPS](h/HIPS.md) + * [hipSYCL](h/hipSYCL.md) + * [hiredis](h/hiredis.md) + * [HISAT2](h/HISAT2.md) + * [histolab](h/histolab.md) + * [hivtrace](h/hivtrace.md) + * [hl7apy](h/hl7apy.md) + * [HLAminer](h/HLAminer.md) + * [hmmcopy_utils](h/hmmcopy_utils.md) + * [HMMER](h/HMMER.md) + * [HMMER2](h/HMMER2.md) + * [hmmlearn](h/hmmlearn.md) + * [HOME](h/HOME.md) + * [HOMER](h/HOMER.md) + * [HOOMD-blue](h/HOOMD-blue.md) + * [Horovod](h/Horovod.md) + * [horton](h/horton.md) + * [how_are_we_stranded_here](h/how_are_we_stranded_here.md) + * [HPCC](h/HPCC.md) + * [HPCG](h/HPCG.md) + * [HPCX](h/HPCX.md) + * [HPDBSCAN](h/HPDBSCAN.md) + * [HPL](h/HPL.md) + * [htop](h/htop.md) + * [HTSeq](h/HTSeq.md) + * [HTSlib](h/HTSlib.md) + * [HTSplotter](h/HTSplotter.md) + * [hub](h/hub.md) + * [humann](h/humann.md) + * [hunspell](h/hunspell.md) + * [hwloc](h/hwloc.md) + * [Hybpiper](h/Hybpiper.md) + * [Hydra](h/Hydra.md) + * [Hyperopt](h/Hyperopt.md) + * [HyperQueue](h/HyperQueue.md) + * [hyperspy](h/hyperspy.md) + * [HyPhy](h/HyPhy.md) + * [HyPo](h/HyPo.md) + * [hypothesis](h/hypothesis.md) + * [Hypre](h/Hypre.md) + * [i](i/index.md) + * [i-cisTarget](i/i-cisTarget.md) + * [i-PI](i/i-PI.md) + * [I-TASSER](i/I-TASSER.md) + * [i7z](i/i7z.md) + * [ICA-AROMA](i/ICA-AROMA.md) + * [icc](i/icc.md) + * [iccifort](i/iccifort.md) + * [iccifortcuda](i/iccifortcuda.md) + * [iced](i/iced.md) + * [ichorCNA](i/ichorCNA.md) + * [icmake](i/icmake.md) + * [ICON](i/ICON.md) + * [iCount](i/iCount.md) + * [ICU](i/ICU.md) + * [IDBA-UD](i/IDBA-UD.md) + * [idemux](i/idemux.md) + * [IDG](i/IDG.md) + * [ieeg-cli](i/ieeg-cli.md) + * [ifort](i/ifort.md) + * [IgBLAST](i/IgBLAST.md) + * [IGMPlot](i/IGMPlot.md) + * [igraph](i/igraph.md) + * [IGV](i/IGV.md) + * [igv-reports](i/igv-reports.md) + * [igvShiny](i/igvShiny.md) + * [IGVTools](i/IGVTools.md) + * [iibff](i/iibff.md) + * [iimkl](i/iimkl.md) + * [iimpi](i/iimpi.md) + * [iimpic](i/iimpic.md) + * [IJulia](i/IJulia.md) + * [ILAMB](i/ILAMB.md) + * [IMa2](i/IMa2.md) + * [IMa2p](i/IMa2p.md) + * [imagecodecs](i/imagecodecs.md) + * [imageio](i/imageio.md) + * [ImageJ](i/ImageJ.md) + * [ImageMagick](i/ImageMagick.md) + * [imake](i/imake.md) + * [Imath](i/Imath.md) + * [IMB](i/IMB.md) + * [imbalanced-learn](i/imbalanced-learn.md) + * [imgaug](i/imgaug.md) + * [imkl](i/imkl.md) + * [imkl-FFTW](i/imkl-FFTW.md) + * [IML](i/IML.md) + * [Imlib2](i/Imlib2.md) + * [immunedeconv](i/immunedeconv.md) + * [IMOD](i/IMOD.md) + * [impi](i/impi.md) + * [IMPUTE2](i/IMPUTE2.md) + * [imutils](i/imutils.md) + * [InChI](i/InChI.md) + * [indicators](i/indicators.md) + * [Inelastica](i/Inelastica.md) + * [inferCNV](i/inferCNV.md) + * [infercnvpy](i/infercnvpy.md) + * [Inferelator](i/Inferelator.md) + * [Infernal](i/Infernal.md) + * [inflection](i/inflection.md) + * [Infomap](i/Infomap.md) + * [inih](i/inih.md) + * [inline](i/inline.md) + * [InParanoid](i/InParanoid.md) + * [inputproto](i/inputproto.md) + * [Inspector](i/Inspector.md) + * [IntaRNA](i/IntaRNA.md) + * [INTEGRATE](i/INTEGRATE.md) + * [INTEGRATE-Neo](i/INTEGRATE-Neo.md) + * [intel](i/intel.md) + * [intel-compilers](i/intel-compilers.md) + * [IntelClusterChecker](i/IntelClusterChecker.md) + * [intelcuda](i/intelcuda.md) + * [IntelDAAL](i/IntelDAAL.md) + * [IntelPython](i/IntelPython.md) + * [InterOp](i/InterOp.md) + * [InterProScan](i/InterProScan.md) + * [InterProScan_data](i/InterProScan_data.md) + * [intervaltree](i/intervaltree.md) + * [intervaltree-python](i/intervaltree-python.md) + * [intltool](i/intltool.md) + * [io_lib](i/io_lib.md) + * [ioapi](i/ioapi.md) + * [iodata](i/iodata.md) + * [iomkl](i/iomkl.md) + * [iompi](i/iompi.md) + * [IonQuant](i/IonQuant.md) + * [IOR](i/IOR.md) + * [IOzone](i/IOzone.md) + * [iperf](i/iperf.md) + * [IPM](i/IPM.md) + * [Ipopt](i/Ipopt.md) + * [ipp](i/ipp.md) + * [IPy](i/IPy.md) + * [ipympl](i/ipympl.md) + * [ipyparallel](i/ipyparallel.md) + * [ipyrad](i/ipyrad.md) + * [IPython](i/IPython.md) + * [IQ-TREE](i/IQ-TREE.md) + * [Iris](i/Iris.md) + * [IRkernel](i/IRkernel.md) + * [irodsfs](i/irodsfs.md) + * [IronPython](i/IronPython.md) + * [ISA-L](i/ISA-L.md) + * [ISL](i/ISL.md) + * [isoCirc](i/isoCirc.md) + * [IsoformSwitchAnalyzeR](i/IsoformSwitchAnalyzeR.md) + * [IsoNet](i/IsoNet.md) + * [IsoQuant](i/IsoQuant.md) + * [IsoSeq](i/IsoSeq.md) + * [ispc](i/ispc.md) + * [itac](i/itac.md) + * [ITK](i/ITK.md) + * [itpp](i/itpp.md) + * [ITSTool](i/ITSTool.md) + * [ITSx](i/ITSx.md) + * [iVar](i/iVar.md) + * [j](j/index.md) + * [JAGS](j/JAGS.md) + * [Jansson](j/Jansson.md) + * [Jasmine](j/Jasmine.md) + * [JasPer](j/JasPer.md) + * [Java](j/Java.md) + * [JavaFX](j/JavaFX.md) + * [jax](j/jax.md) + * [JAXFrontCE](j/JAXFrontCE.md) + * [jbigkit](j/jbigkit.md) + * [Jblob](j/Jblob.md) + * [jedi](j/jedi.md) + * [jedi-language-server](j/jedi-language-server.md) + * [Jellyfish](j/Jellyfish.md) + * [jemalloc](j/jemalloc.md) + * [jhbuild](j/jhbuild.md) + * [JiTCODE](j/JiTCODE.md) + * [jiter](j/jiter.md) + * [jModelTest](j/jModelTest.md) + * [Jmol](j/Jmol.md) + * [Jorg](j/Jorg.md) + * [joypy](j/joypy.md) + * [jq](j/jq.md) + * [json-c](j/json-c.md) + * [json-fortran](j/json-fortran.md) + * [JSON-GLib](j/JSON-GLib.md) + * [JsonCpp](j/JsonCpp.md) + * [JUBE](j/JUBE.md) + * [Judy](j/Judy.md) + * [Julia](j/Julia.md) + * [JUnit](j/JUnit.md) + * [Jupyter-bundle](j/Jupyter-bundle.md) + * [jupyter-contrib-nbextensions](j/jupyter-contrib-nbextensions.md) + * [jupyter-matlab-proxy](j/jupyter-matlab-proxy.md) + * [jupyter-resource-usage](j/jupyter-resource-usage.md) + * [jupyter-rsession-proxy](j/jupyter-rsession-proxy.md) + * [jupyter-server](j/jupyter-server.md) + * [jupyter-server-proxy](j/jupyter-server-proxy.md) + * [JupyterHub](j/JupyterHub.md) + * [JupyterLab](j/JupyterLab.md) + * [jupyterlab-lmod](j/jupyterlab-lmod.md) + * [jupyterlmod](j/jupyterlmod.md) + * [JupyterNotebook](j/JupyterNotebook.md) + * [JWM](j/JWM.md) + * [jxrlib](j/jxrlib.md) + * [k](k/index.md) + * [KaHIP](k/KaHIP.md) + * [Kaiju](k/Kaiju.md) + * [Kaleido](k/Kaleido.md) + * [Kalign](k/Kalign.md) + * [kallisto](k/kallisto.md) + * [KAT](k/KAT.md) + * [kb-python](k/kb-python.md) + * [kbproto](k/kbproto.md) + * [kedro](k/kedro.md) + * [Kent_tools](k/Kent_tools.md) + * [Keras](k/Keras.md) + * [KerasTuner](k/KerasTuner.md) + * [khmer](k/khmer.md) + * [kim-api](k/kim-api.md) + * [kineto](k/kineto.md) + * [king](k/king.md) + * [KITE](k/KITE.md) + * [kma](k/kma.md) + * [KMC](k/KMC.md) + * [KMCP](k/KMCP.md) + * [KmerGenie](k/KmerGenie.md) + * [kneaddata](k/kneaddata.md) + * [KNIME](k/KNIME.md) + * [kpcalg](k/kpcalg.md) + * [Kraken](k/Kraken.md) + * [Kraken2](k/Kraken2.md) + * [KrakenUniq](k/KrakenUniq.md) + * [Kratos](k/Kratos.md) + * [krbalancing](k/krbalancing.md) + * [KronaTools](k/KronaTools.md) + * [kwant](k/kwant.md) + * [KWIML](k/KWIML.md) + * [kWIP](k/kWIP.md) + * [KyotoCabinet](k/KyotoCabinet.md) + * [l](l/index.md) + * [L_RNA_scaffolder](l/L_RNA_scaffolder.md) + * [Lab-Streaming-Layer](l/Lab-Streaming-Layer.md) + * [Lace](l/Lace.md) + * [LADR](l/LADR.md) + * [lagrangian-filtering](l/lagrangian-filtering.md) + * [LAME](l/LAME.md) + * [LAMMPS](l/LAMMPS.md) + * [lancet](l/lancet.md) + * [LangChain](l/LangChain.md) + * [langchain-anthropic](l/langchain-anthropic.md) + * [LAPACK](l/LAPACK.md) + * [LASSO-Python](l/LASSO-Python.md) + * [LAST](l/LAST.md) + * [LASTZ](l/LASTZ.md) + * [lavaan](l/lavaan.md) + * [LayoutParser](l/LayoutParser.md) + * [LBFGS++](l/LBFGS++.md) + * [lcalc](l/lcalc.md) + * [LCov](l/LCov.md) + * [LDC](l/LDC.md) + * [lDDT](l/lDDT.md) + * [LeadIT](l/LeadIT.md) + * [leafcutter](l/leafcutter.md) + * [leidenalg](l/leidenalg.md) + * [LEMON](l/LEMON.md) + * [Leptonica](l/Leptonica.md) + * [LERC](l/LERC.md) + * [less](l/less.md) + * [LevelDB](l/LevelDB.md) + * [Levenshtein](l/Levenshtein.md) + * [lftp](l/lftp.md) + * [LHAPDF](l/LHAPDF.md) + * [LIANA](l/LIANA.md) + * [libabigail](l/libabigail.md) + * [libaec](l/libaec.md) + * [libaed2](l/libaed2.md) + * [libaio](l/libaio.md) + * [libarchive](l/libarchive.md) + * [libav](l/libav.md) + * [libavif](l/libavif.md) + * [libbaseencode](l/libbaseencode.md) + * [libBigWig](l/libBigWig.md) + * [libbitmask](l/libbitmask.md) + * [libbraiding](l/libbraiding.md) + * [libcdms](l/libcdms.md) + * [libcerf](l/libcerf.md) + * [libcint](l/libcint.md) + * [libcircle](l/libcircle.md) + * [libcmaes](l/libcmaes.md) + * [libconfig](l/libconfig.md) + * [libcotp](l/libcotp.md) + * [libcpuset](l/libcpuset.md) + * [libcroco](l/libcroco.md) + * [libctl](l/libctl.md) + * [libdap](l/libdap.md) + * [libde265](l/libde265.md) + * [libdeflate](l/libdeflate.md) + * [libdivsufsort](l/libdivsufsort.md) + * [libdrm](l/libdrm.md) + * [libdrs](l/libdrs.md) + * [libdwarf](l/libdwarf.md) + * [libedit](l/libedit.md) + * [libelf](l/libelf.md) + * [libemf](l/libemf.md) + * [libepoxy](l/libepoxy.md) + * [libev](l/libev.md) + * [libevent](l/libevent.md) + * [libexif](l/libexif.md) + * [libfabric](l/libfabric.md) + * [libfdf](l/libfdf.md) + * [libffcall](l/libffcall.md) + * [libffi](l/libffi.md) + * [libFLAME](l/libFLAME.md) + * [libfontenc](l/libfontenc.md) + * [libfyaml](l/libfyaml.md) + * [libgcrypt](l/libgcrypt.md) + * [libgd](l/libgd.md) + * [libgdiplus](l/libgdiplus.md) + * [libGDSII](l/libGDSII.md) + * [libgeotiff](l/libgeotiff.md) + * [libgit2](l/libgit2.md) + * [libglade](l/libglade.md) + * [libGLU](l/libGLU.md) + * [libglvnd](l/libglvnd.md) + * [libgpg-error](l/libgpg-error.md) + * [libgpuarray](l/libgpuarray.md) + * [libGridXC](l/libGridXC.md) + * [libgtextutils](l/libgtextutils.md) + * [libgxps](l/libgxps.md) + * [libhandy](l/libhandy.md) + * [libharu](l/libharu.md) + * [libheif](l/libheif.md) + * [libhomfly](l/libhomfly.md) + * [libibmad](l/libibmad.md) + * [libibumad](l/libibumad.md) + * [libICE](l/libICE.md) + * [libiconv](l/libiconv.md) + * [libidn](l/libidn.md) + * [libidn2](l/libidn2.md) + * [Libint](l/Libint.md) + * [LiBis](l/LiBis.md) + * [libjpeg-turbo](l/libjpeg-turbo.md) + * [libjxl](l/libjxl.md) + * [libleidenalg](l/libleidenalg.md) + * [LibLZF](l/LibLZF.md) + * [libmad](l/libmad.md) + * [libmatheval](l/libmatheval.md) + * [libmaus2](l/libmaus2.md) + * [libmbd](l/libmbd.md) + * [libMemcached](l/libMemcached.md) + * [libmicrohttpd](l/libmicrohttpd.md) + * [libmo_unpack](l/libmo_unpack.md) + * [libmypaint](l/libmypaint.md) + * [libnsl](l/libnsl.md) + * [libobjcryst](l/libobjcryst.md) + * [libogg](l/libogg.md) + * [libopus](l/libopus.md) + * [libosmium](l/libosmium.md) + * [libpci](l/libpci.md) + * [libpciaccess](l/libpciaccess.md) + * [libplinkio](l/libplinkio.md) + * [libpng](l/libpng.md) + * [libpsl](l/libpsl.md) + * [libPSML](l/libPSML.md) + * [libpsortb](l/libpsortb.md) + * [libpspio](l/libpspio.md) + * [libpthread-stubs](l/libpthread-stubs.md) + * [libQGLViewer](l/libQGLViewer.md) + * [libreadline](l/libreadline.md) + * [libRmath](l/libRmath.md) + * [librosa](l/librosa.md) + * [librsb](l/librsb.md) + * [librsvg](l/librsvg.md) + * [librttopo](l/librttopo.md) + * [libsamplerate](l/libsamplerate.md) + * [libSBML](l/libSBML.md) + * [libsigc++](l/libsigc++.md) + * [libsigsegv](l/libsigsegv.md) + * [libSM](l/libSM.md) + * [libsndfile](l/libsndfile.md) + * [libsodium](l/libsodium.md) + * [LibSoup](l/LibSoup.md) + * [libspatialindex](l/libspatialindex.md) + * [libspatialite](l/libspatialite.md) + * [libspectre](l/libspectre.md) + * [libssh](l/libssh.md) + * [libStatGen](l/libStatGen.md) + * [libsupermesh](l/libsupermesh.md) + * [LIBSVM](l/LIBSVM.md) + * [LIBSVM-MATLAB](l/LIBSVM-MATLAB.md) + * [LIBSVM-Python](l/LIBSVM-Python.md) + * [libtar](l/libtar.md) + * [libtasn1](l/libtasn1.md) + * [libtecla](l/libtecla.md) + * [LibTIFF](l/LibTIFF.md) + * [libtirpc](l/libtirpc.md) + * [libtool](l/libtool.md) + * [libtree](l/libtree.md) + * [libunistring](l/libunistring.md) + * [libunwind](l/libunwind.md) + * [libutempter](l/libutempter.md) + * [LibUUID](l/LibUUID.md) + * [libuv](l/libuv.md) + * [libvdwxc](l/libvdwxc.md) + * [libvorbis](l/libvorbis.md) + * [libvori](l/libvori.md) + * [libWallModelledLES](l/libWallModelledLES.md) + * [libwebp](l/libwebp.md) + * [libwpe](l/libwpe.md) + * [libX11](l/libX11.md) + * [libXau](l/libXau.md) + * [libxc](l/libxc.md) + * [libxcb](l/libxcb.md) + * [libXcursor](l/libXcursor.md) + * [libXdamage](l/libXdamage.md) + * [libXdmcp](l/libXdmcp.md) + * [libXext](l/libXext.md) + * [libXfixes](l/libXfixes.md) + * [libXfont](l/libXfont.md) + * [libXft](l/libXft.md) + * [libXi](l/libXi.md) + * [libXinerama](l/libXinerama.md) + * [libxkbcommon](l/libxkbcommon.md) + * [libxml++](l/libxml++.md) + * [libxml2](l/libxml2.md) + * [libxml2-python](l/libxml2-python.md) + * [libXmu](l/libXmu.md) + * [libXp](l/libXp.md) + * [libXpm](l/libXpm.md) + * [libXrandr](l/libXrandr.md) + * [libXrender](l/libXrender.md) + * [libxslt](l/libxslt.md) + * [libxsmm](l/libxsmm.md) + * [libXt](l/libXt.md) + * [libXxf86vm](l/libXxf86vm.md) + * [libyaml](l/libyaml.md) + * [libzeep](l/libzeep.md) + * [libzip](l/libzip.md) + * [lie_learn](l/lie_learn.md) + * [lifelines](l/lifelines.md) + * [Lighter](l/Lighter.md) + * [Lightning](l/Lightning.md) + * [liknorm](l/liknorm.md) + * [likwid](l/likwid.md) + * [lil-aretomo](l/lil-aretomo.md) + * [limix](l/limix.md) + * [LinBox](l/LinBox.md) + * [line_profiler](l/line_profiler.md) + * [Lingeling](l/Lingeling.md) + * [LISFLOOD-FP](l/LISFLOOD-FP.md) + * [lit](l/lit.md) + * [LittleCMS](l/LittleCMS.md) + * [LLDB](l/LLDB.md) + * [LLVM](l/LLVM.md) + * [LMDB](l/LMDB.md) + * [LMfit](l/LMfit.md) + * [Lmod](l/Lmod.md) + * [lmoments3](l/lmoments3.md) + * [LncLOOM](l/LncLOOM.md) + * [LocARNA](l/LocARNA.md) + * [LoFreq](l/LoFreq.md) + * [Log-Log4perl](l/Log-Log4perl.md) + * [logaddexp](l/logaddexp.md) + * [LOHHLA](l/LOHHLA.md) + * [Loki](l/Loki.md) + * [longestrunsubsequence](l/longestrunsubsequence.md) + * [longread_umi](l/longread_umi.md) + * [Longshot](l/Longshot.md) + * [loompy](l/loompy.md) + * [loomR](l/loomR.md) + * [LoopTools](l/LoopTools.md) + * [LoRDEC](l/LoRDEC.md) + * [LPeg](l/LPeg.md) + * [LPJmL](l/LPJmL.md) + * [lpsolve](l/lpsolve.md) + * [lrslib](l/lrslib.md) + * [LS-PrePost](l/LS-PrePost.md) + * [LSD2](l/LSD2.md) + * [LSMS](l/LSMS.md) + * [LTR_retriever](l/LTR_retriever.md) + * [LtrDetector](l/LtrDetector.md) + * [Lua](l/Lua.md) + * [LuaJIT](l/LuaJIT.md) + * [LuaJIT2-OpenResty](l/LuaJIT2-OpenResty.md) + * [LuaRocks](l/LuaRocks.md) + * [Lucene-Geo-Gazetteer](l/Lucene-Geo-Gazetteer.md) + * [LUMPY](l/LUMPY.md) + * [LUSCUS](l/LUSCUS.md) + * [lwgrp](l/lwgrp.md) + * [lxml](l/lxml.md) + * [lynx](l/lynx.md) + * [lz4](l/lz4.md) + * [LZO](l/LZO.md) + * [m](m/index.md) + * [M1QN3](m/M1QN3.md) + * [M3GNet](m/M3GNet.md) + * [M4](m/M4.md) + * [m4ri](m/m4ri.md) + * [m4rie](m/m4rie.md) + * [MACH](m/MACH.md) + * [MACS2](m/MACS2.md) + * [MACS3](m/MACS3.md) + * [MACSE](m/MACSE.md) + * [maeparser](m/maeparser.md) + * [MAFFT](m/MAFFT.md) + * [MAGeCK](m/MAGeCK.md) + * [magick](m/magick.md) + * [Magics](m/Magics.md) + * [magma](m/magma.md) + * [MAGMA-gene-analysis](m/MAGMA-gene-analysis.md) + * [MagresPython](m/MagresPython.md) + * [mahotas](m/mahotas.md) + * [MAJIQ](m/MAJIQ.md) + * [make](m/make.md) + * [makedepend](m/makedepend.md) + * [makedepf90](m/makedepf90.md) + * [makefun](m/makefun.md) + * [makeinfo](m/makeinfo.md) + * [MAKER](m/MAKER.md) + * [Mako](m/Mako.md) + * [Mamba](m/Mamba.md) + * [mandrake](m/mandrake.md) + * [mannkendall](m/mannkendall.md) + * [manta](m/manta.md) + * [mapDamage](m/mapDamage.md) + * [Maple](m/Maple.md) + * [MapSplice](m/MapSplice.md) + * [Maq](m/Maq.md) + * [MariaDB](m/MariaDB.md) + * [MariaDB-connector-c](m/MariaDB-connector-c.md) + * [Markdown](m/Markdown.md) + * [MARS](m/MARS.md) + * [Mash](m/Mash.md) + * [Mashtree](m/Mashtree.md) + * [MaSuRCA](m/MaSuRCA.md) + * [Mathematica](m/Mathematica.md) + * [MathGL](m/MathGL.md) + * [MATIO](m/MATIO.md) + * [MATLAB](m/MATLAB.md) + * [MATLAB-Engine](m/MATLAB-Engine.md) + * [matlab-proxy](m/matlab-proxy.md) + * [matplotlib](m/matplotlib.md) + * [matplotlib-inline](m/matplotlib-inline.md) + * [MATSim](m/MATSim.md) + * [maturin](m/maturin.md) + * [Maude](m/Maude.md) + * [mauveAligner](m/mauveAligner.md) + * [Maven](m/Maven.md) + * [mawk](m/mawk.md) + * [MaxBin](m/MaxBin.md) + * [MaxQuant](m/MaxQuant.md) + * [mayavi](m/mayavi.md) + * [maze](m/maze.md) + * [MbedTLS](m/MbedTLS.md) + * [MBROLA](m/MBROLA.md) + * [mbuffer](m/mbuffer.md) + * [mc](m/mc.md) + * [MCL](m/MCL.md) + * [MCR](m/MCR.md) + * [mctc-lib](m/mctc-lib.md) + * [mcu](m/mcu.md) + * [MDAnalysis](m/MDAnalysis.md) + * [MDBM](m/MDBM.md) + * [MDI](m/MDI.md) + * [MDSplus](m/MDSplus.md) + * [MDSplus-Java](m/MDSplus-Java.md) + * [MDSplus-Python](m/MDSplus-Python.md) + * [mdtest](m/mdtest.md) + * [MDTraj](m/MDTraj.md) + * [mdust](m/mdust.md) + * [meboot](m/meboot.md) + * [medaka](m/medaka.md) + * [medImgProc](m/medImgProc.md) + * [MedPy](m/MedPy.md) + * [Meep](m/Meep.md) + * [MEGA](m/MEGA.md) + * [MEGACC](m/MEGACC.md) + * [MEGAHIT](m/MEGAHIT.md) + * [Megalodon](m/Megalodon.md) + * [MEGAN](m/MEGAN.md) + * [Meld](m/Meld.md) + * [MEM](m/MEM.md) + * [MEME](m/MEME.md) + * [memkind](m/memkind.md) + * [memory-profiler](m/memory-profiler.md) + * [MEMOTE](m/MEMOTE.md) + * [memtester](m/memtester.md) + * [meRanTK](m/meRanTK.md) + * [MERCKX](m/MERCKX.md) + * [Mercurial](m/Mercurial.md) + * [Mesa](m/Mesa.md) + * [Mesa-demos](m/Mesa-demos.md) + * [meshalyzer](m/meshalyzer.md) + * [meshio](m/meshio.md) + * [meshtool](m/meshtool.md) + * [Meson](m/Meson.md) + * [meson-python](m/meson-python.md) + * [Mesquite](m/Mesquite.md) + * [MESS](m/MESS.md) + * [MetaBAT](m/MetaBAT.md) + * [MetaboAnalystR](m/MetaboAnalystR.md) + * [MetaDecoder](m/MetaDecoder.md) + * [metaerg](m/metaerg.md) + * [MetaEuk](m/MetaEuk.md) + * [MetaGeneAnnotator](m/MetaGeneAnnotator.md) + * [Metagenome-Atlas](m/Metagenome-Atlas.md) + * [Metal](m/Metal.md) + * [MetalWalls](m/MetalWalls.md) + * [MetaMorpheus](m/MetaMorpheus.md) + * [MetaPhlAn](m/MetaPhlAn.md) + * [MetaPhlAn2](m/MetaPhlAn2.md) + * [metaWRAP](m/metaWRAP.md) + * [Metaxa2](m/Metaxa2.md) + * [methylartist](m/methylartist.md) + * [MethylDackel](m/MethylDackel.md) + * [methylpy](m/methylpy.md) + * [METIS](m/METIS.md) + * [mfqe](m/mfqe.md) + * [mgen](m/mgen.md) + * [mgltools](m/mgltools.md) + * [mhcflurry](m/mhcflurry.md) + * [mhcnuggets](m/mhcnuggets.md) + * [MICOM](m/MICOM.md) + * [MicrobeAnnotator](m/MicrobeAnnotator.md) + * [microctools](m/microctools.md) + * [MiGEC](m/MiGEC.md) + * [MIGRATE-N](m/MIGRATE-N.md) + * [Mikado](m/Mikado.md) + * [Miller](m/Miller.md) + * [mimalloc](m/mimalloc.md) + * [MINC](m/MINC.md) + * [MinCED](m/MinCED.md) + * [Mini-XML](m/Mini-XML.md) + * [miniasm](m/miniasm.md) + * [minibar](m/minibar.md) + * [MiniCARD](m/MiniCARD.md) + * [Miniconda2](m/Miniconda2.md) + * [Miniconda3](m/Miniconda3.md) + * [minieigen](m/minieigen.md) + * [Miniforge3](m/Miniforge3.md) + * [Minimac4](m/Minimac4.md) + * [minimap2](m/minimap2.md) + * [Minipolish](m/Minipolish.md) + * [MiniSat](m/MiniSat.md) + * [minizip](m/minizip.md) + * [MINPACK](m/MINPACK.md) + * [MinPath](m/MinPath.md) + * [MIRA](m/MIRA.md) + * [miRDeep2](m/miRDeep2.md) + * [Mish-Cuda](m/Mish-Cuda.md) + * [misha](m/misha.md) + * [MITgcmutils](m/MITgcmutils.md) + * [MITObim](m/MITObim.md) + * [MitoHiFi](m/MitoHiFi.md) + * [MitoZ](m/MitoZ.md) + * [MiXCR](m/MiXCR.md) + * [MixMHC2pred](m/MixMHC2pred.md) + * [mkl-dnn](m/mkl-dnn.md) + * [mkl-service](m/mkl-service.md) + * [mkl_fft](m/mkl_fft.md) + * [ml-collections](m/ml-collections.md) + * [ml_dtypes](m/ml_dtypes.md) + * [MLC](m/MLC.md) + * [MLflow](m/MLflow.md) + * [mlpack](m/mlpack.md) + * [MLxtend](m/MLxtend.md) + * [mm-common](m/mm-common.md) + * [Mmg](m/Mmg.md) + * [MMSEQ](m/MMSEQ.md) + * [MMseqs2](m/MMseqs2.md) + * [mmtf-cpp](m/mmtf-cpp.md) + * [MNE-Python](m/MNE-Python.md) + * [MOABB](m/MOABB.md) + * [MOABS](m/MOABS.md) + * [MOB-suite](m/MOB-suite.md) + * [ModelTest-NG](m/ModelTest-NG.md) + * [MODFLOW](m/MODFLOW.md) + * [modred](m/modred.md) + * [MOFA2](m/MOFA2.md) + * [Molcas](m/Molcas.md) + * [mold](m/mold.md) + * [Molden](m/Molden.md) + * [molecularGSM](m/molecularGSM.md) + * [Molekel](m/Molekel.md) + * [molmod](m/molmod.md) + * [Molpro](m/Molpro.md) + * [MONA](m/MONA.md) + * [MONAI](m/MONAI.md) + * [MONAI-Label](m/MONAI-Label.md) + * [mongolite](m/mongolite.md) + * [Mono](m/Mono.md) + * [Monocle3](m/Monocle3.md) + * [moonjit](m/moonjit.md) + * [MOOSE](m/MOOSE.md) + * [mordecai](m/mordecai.md) + * [MoreRONN](m/MoreRONN.md) + * [morphosamplers](m/morphosamplers.md) + * [mosdepth](m/mosdepth.md) + * [Mothur](m/Mothur.md) + * [motif](m/motif.md) + * [MotionCor2](m/MotionCor2.md) + * [MotionCor3](m/MotionCor3.md) + * [motionSegmentation](m/motionSegmentation.md) + * [MoviePy](m/MoviePy.md) + * [mpath](m/mpath.md) + * [MPB](m/MPB.md) + * [MPC](m/MPC.md) + * [MPFI](m/MPFI.md) + * [MPFR](m/MPFR.md) + * [mpi4py](m/mpi4py.md) + * [MPICH](m/MPICH.md) + * [MPICH2](m/MPICH2.md) + * [mpifileutils](m/mpifileutils.md) + * [mpiP](m/mpiP.md) + * [MPJ-Express](m/MPJ-Express.md) + * [mpmath](m/mpmath.md) + * [MrBayes](m/MrBayes.md) + * [mrcfile](m/mrcfile.md) + * [MRChem](m/MRChem.md) + * [MRCPP](m/MRCPP.md) + * [MRIcron](m/MRIcron.md) + * [MRPRESSO](m/MRPRESSO.md) + * [MRtrix](m/MRtrix.md) + * [MSFragger](m/MSFragger.md) + * [msgpack-c](m/msgpack-c.md) + * [MSM](m/MSM.md) + * [MSPC](m/MSPC.md) + * [msprime](m/msprime.md) + * [mstore](m/mstore.md) + * [MTL4](m/MTL4.md) + * [MuJoCo](m/MuJoCo.md) + * [mujoco-py](m/mujoco-py.md) + * [multicharge](m/multicharge.md) + * [multichoose](m/multichoose.md) + * [MultilevelEstimators](m/MultilevelEstimators.md) + * [MultiNest](m/MultiNest.md) + * [multiprocess](m/multiprocess.md) + * [MultiQC](m/MultiQC.md) + * [Multiwfn](m/Multiwfn.md) + * [muMerge](m/muMerge.md) + * [MUMmer](m/MUMmer.md) + * [mumott](m/mumott.md) + * [MUMPS](m/MUMPS.md) + * [muParser](m/muParser.md) + * [muparserx](m/muparserx.md) + * [MuPeXI](m/MuPeXI.md) + * [MUSCLE](m/MUSCLE.md) + * [MUSCLE3](m/MUSCLE3.md) + * [MuSiC](m/MuSiC.md) + * [MUST](m/MUST.md) + * [MuTect](m/MuTect.md) + * [mutil](m/mutil.md) + * [MVAPICH2](m/MVAPICH2.md) + * [MView](m/MView.md) + * [mxml](m/mxml.md) + * [mxmlplus](m/mxmlplus.md) + * [MXNet](m/MXNet.md) + * [MyCC](m/MyCC.md) + * [mygene](m/mygene.md) + * [MyMediaLite](m/MyMediaLite.md) + * [mympingpong](m/mympingpong.md) + * [Myokit](m/Myokit.md) + * [mypy](m/mypy.md) + * [MySQL](m/MySQL.md) + * [MySQL-python](m/MySQL-python.md) + * [mysqlclient](m/mysqlclient.md) + * [n](n/index.md) + * [n2v](n/n2v.md) + * [NAG](n/NAG.md) + * [NAGfor](n/NAGfor.md) + * [NAMD](n/NAMD.md) + * [namedlist](n/namedlist.md) + * [nano](n/nano.md) + * [NanoCaller](n/NanoCaller.md) + * [NanoComp](n/NanoComp.md) + * [nanocompore](n/nanocompore.md) + * [NanoFilt](n/NanoFilt.md) + * [nanoflann](n/nanoflann.md) + * [nanoget](n/nanoget.md) + * [NanoLyse](n/NanoLyse.md) + * [nanomath](n/nanomath.md) + * [nanomax-analysis-utils](n/nanomax-analysis-utils.md) + * [nanonet](n/nanonet.md) + * [NanoPlot](n/NanoPlot.md) + * [nanopolish](n/nanopolish.md) + * [NanopolishComp](n/NanopolishComp.md) + * [NanoStat](n/NanoStat.md) + * [napari](n/napari.md) + * [NASM](n/NASM.md) + * [nauty](n/nauty.md) + * [nbclassic](n/nbclassic.md) + * [NBO](n/NBO.md) + * [NCBI-Toolkit](n/NCBI-Toolkit.md) + * [ncbi-vdb](n/ncbi-vdb.md) + * [NCCL](n/NCCL.md) + * [NCCL-tests](n/NCCL-tests.md) + * [ncdf4](n/ncdf4.md) + * [ncdu](n/ncdu.md) + * [NCIPLOT](n/NCIPLOT.md) + * [NCL](n/NCL.md) + * [NCO](n/NCO.md) + * [ncolor](n/ncolor.md) + * [ncompress](n/ncompress.md) + * [ncurses](n/ncurses.md) + * [ncview](n/ncview.md) + * [nd2reader](n/nd2reader.md) + * [ne](n/ne.md) + * [NECI](n/NECI.md) + * [NEdit](n/NEdit.md) + * [Nek5000](n/Nek5000.md) + * [Nektar++](n/Nektar++.md) + * [neon](n/neon.md) + * [neptune-client](n/neptune-client.md) + * [Net-core](n/Net-core.md) + * [netCDF](n/netCDF.md) + * [netCDF-C++](n/netCDF-C++.md) + * [netCDF-C++4](n/netCDF-C++4.md) + * [netCDF-Fortran](n/netCDF-Fortran.md) + * [netcdf4-python](n/netcdf4-python.md) + * [netloc](n/netloc.md) + * [NetLogo](n/NetLogo.md) + * [netMHC](n/netMHC.md) + * [netMHCII](n/netMHCII.md) + * [netMHCIIpan](n/netMHCIIpan.md) + * [netMHCpan](n/netMHCpan.md) + * [NetPIPE](n/NetPIPE.md) + * [NetPyNE](n/NetPyNE.md) + * [nettle](n/nettle.md) + * [networkTools](n/networkTools.md) + * [networkx](n/networkx.md) + * [NeuroKit](n/NeuroKit.md) + * [NEURON](n/NEURON.md) + * [NewHybrids](n/NewHybrids.md) + * [Nextflow](n/Nextflow.md) + * [NextGenMap](n/NextGenMap.md) + * [NEXUS-CL](n/NEXUS-CL.md) + * [nf-core](n/nf-core.md) + * [nf-core-mag](n/nf-core-mag.md) + * [NFFT](n/NFFT.md) + * [nghttp2](n/nghttp2.md) + * [nghttp3](n/nghttp3.md) + * [NGLess](n/NGLess.md) + * [nglview](n/nglview.md) + * [NGS](n/NGS.md) + * [NGS-Python](n/NGS-Python.md) + * [NGSadmix](n/NGSadmix.md) + * [NGSpeciesID](n/NGSpeciesID.md) + * [ngspice](n/ngspice.md) + * [ngtcp2](n/ngtcp2.md) + * [NiBabel](n/NiBabel.md) + * [nichenetr](n/nichenetr.md) + * [NIfTI](n/NIfTI.md) + * [nifti2dicom](n/nifti2dicom.md) + * [Nilearn](n/Nilearn.md) + * [Nim](n/Nim.md) + * [NIMBLE](n/NIMBLE.md) + * [Ninja](n/Ninja.md) + * [Nipype](n/Nipype.md) + * [NLMpy](n/NLMpy.md) + * [nlohmann_json](n/nlohmann_json.md) + * [NLopt](n/NLopt.md) + * [NLTK](n/NLTK.md) + * [nnU-Net](n/nnU-Net.md) + * [Node-RED](n/Node-RED.md) + * [nodejs](n/nodejs.md) + * [noise](n/noise.md) + * [Normaliz](n/Normaliz.md) + * [nose-parameterized](n/nose-parameterized.md) + * [nose3](n/nose3.md) + * [novaSTA](n/novaSTA.md) + * [novoalign](n/novoalign.md) + * [NOVOPlasty](n/NOVOPlasty.md) + * [npstat](n/npstat.md) + * [NRGLjubljana](n/NRGLjubljana.md) + * [Nsight-Compute](n/Nsight-Compute.md) + * [Nsight-Systems](n/Nsight-Systems.md) + * [NSPR](n/NSPR.md) + * [NSS](n/NSS.md) + * [nsync](n/nsync.md) + * [ntCard](n/ntCard.md) + * [ntEdit](n/ntEdit.md) + * [ntHits](n/ntHits.md) + * [NTL](n/NTL.md) + * [NTPoly](n/NTPoly.md) + * [num2words](n/num2words.md) + * [numactl](n/numactl.md) + * [numba](n/numba.md) + * [numdiff](n/numdiff.md) + * [numexpr](n/numexpr.md) + * [numpy](n/numpy.md) + * [NVHPC](n/NVHPC.md) + * [nvitop](n/nvitop.md) + * [nvofbf](n/nvofbf.md) + * [nvompi](n/nvompi.md) + * [NVSHMEM](n/NVSHMEM.md) + * [nvtop](n/nvtop.md) + * [NWChem](n/NWChem.md) + * [NxTrim](n/NxTrim.md) + * [o](o/index.md) + * [Oases](o/Oases.md) + * [OBITools](o/OBITools.md) + * [OBITools3](o/OBITools3.md) + * [OCaml](o/OCaml.md) + * [ocamlbuild](o/ocamlbuild.md) + * [occt](o/occt.md) + * [oceanspy](o/oceanspy.md) + * [OCNet](o/OCNet.md) + * [Octave](o/Octave.md) + * [Octopus-vcf](o/Octopus-vcf.md) + * [OGDF](o/OGDF.md) + * [olaFlow](o/olaFlow.md) + * [olego](o/olego.md) + * [OMA](o/OMA.md) + * [OmegaFold](o/OmegaFold.md) + * [OMERO.insight](o/OMERO.insight.md) + * [OMERO.py](o/OMERO.py.md) + * [Omnipose](o/Omnipose.md) + * [onedrive](o/onedrive.md) + * [ONNX](o/ONNX.md) + * [ONNX-Runtime](o/ONNX-Runtime.md) + * [ont-fast5-api](o/ont-fast5-api.md) + * [ont-guppy](o/ont-guppy.md) + * [ont-remora](o/ont-remora.md) + * [OOMPA](o/OOMPA.md) + * [OPARI2](o/OPARI2.md) + * [Open-Data-Cube-Core](o/Open-Data-Cube-Core.md) + * [OpenAI-Gym](o/OpenAI-Gym.md) + * [OpenBabel](o/OpenBabel.md) + * [OpenBLAS](o/OpenBLAS.md) + * [openCARP](o/openCARP.md) + * [OpenCensus-python](o/OpenCensus-python.md) + * [OpenCoarrays](o/OpenCoarrays.md) + * [OpenColorIO](o/OpenColorIO.md) + * [OpenCV](o/OpenCV.md) + * [OpenEXR](o/OpenEXR.md) + * [OpenFace](o/OpenFace.md) + * [OpenFAST](o/OpenFAST.md) + * [OpenFOAM](o/OpenFOAM.md) + * [OpenFOAM-Extend](o/OpenFOAM-Extend.md) + * [OpenFold](o/OpenFold.md) + * [OpenForceField](o/OpenForceField.md) + * [OpenImageIO](o/OpenImageIO.md) + * [OpenJPEG](o/OpenJPEG.md) + * [OpenKIM-API](o/OpenKIM-API.md) + * [openkim-models](o/openkim-models.md) + * [OpenMEEG](o/OpenMEEG.md) + * [OpenMM](o/OpenMM.md) + * [OpenMM-PLUMED](o/OpenMM-PLUMED.md) + * [OpenMMTools](o/OpenMMTools.md) + * [OpenMolcas](o/OpenMolcas.md) + * [OpenMPI](o/OpenMPI.md) + * [OpenMS](o/OpenMS.md) + * [OpenNLP](o/OpenNLP.md) + * [OpenPGM](o/OpenPGM.md) + * [OpenPIV](o/OpenPIV.md) + * [openpyxl](o/openpyxl.md) + * [OpenRefine](o/OpenRefine.md) + * [OpenSceneGraph](o/OpenSceneGraph.md) + * [OpenSees](o/OpenSees.md) + * [OpenSlide](o/OpenSlide.md) + * [OpenSlide-Java](o/OpenSlide-Java.md) + * [openslide-python](o/openslide-python.md) + * [OpenSSL](o/OpenSSL.md) + * [OpenStackClient](o/OpenStackClient.md) + * [OPERA](o/OPERA.md) + * [OPERA-MS](o/OPERA-MS.md) + * [OptaDOS](o/OptaDOS.md) + * [Optax](o/Optax.md) + * [optiSLang](o/optiSLang.md) + * [OptiType](o/OptiType.md) + * [OptiX](o/OptiX.md) + * [Optuna](o/Optuna.md) + * [OR-Tools](o/OR-Tools.md) + * [ORCA](o/ORCA.md) + * [ORFfinder](o/ORFfinder.md) + * [OrfM](o/OrfM.md) + * [orthAgogue](o/orthAgogue.md) + * [OrthoFinder](o/OrthoFinder.md) + * [OrthoMCL](o/OrthoMCL.md) + * [Osi](o/Osi.md) + * [OSPRay](o/OSPRay.md) + * [OSU-Micro-Benchmarks](o/OSU-Micro-Benchmarks.md) + * [OTF2](o/OTF2.md) + * [OVITO](o/OVITO.md) + * [ownCloud](o/ownCloud.md) + * [oxDNA](o/oxDNA.md) + * [oxford_asl](o/oxford_asl.md) + * [p](p/index.md) + * [p11-kit](p/p11-kit.md) + * [p4-phylogenetics](p/p4-phylogenetics.md) + * [p4est](p/p4est.md) + * [p4vasp](p/p4vasp.md) + * [p7zip](p/p7zip.md) + * [packmol](p/packmol.md) + * [PAGAN2](p/PAGAN2.md) + * [pagmo](p/pagmo.md) + * [pairsnp](p/pairsnp.md) + * [PAL2NAL](p/PAL2NAL.md) + * [paladin](p/paladin.md) + * [PALEOMIX](p/PALEOMIX.md) + * [PAML](p/PAML.md) + * [panaroo](p/panaroo.md) + * [pandapower](p/pandapower.md) + * [pandas](p/pandas.md) + * [pandas-datareader](p/pandas-datareader.md) + * [PANDAseq](p/PANDAseq.md) + * [Pandoc](p/Pandoc.md) + * [Panedr](p/Panedr.md) + * [Pango](p/Pango.md) + * [pangolin](p/pangolin.md) + * [panito](p/panito.md) + * [PAPI](p/PAPI.md) + * [parallel](p/parallel.md) + * [parallel-fastq-dump](p/parallel-fastq-dump.md) + * [Parallel-Hashmap](p/Parallel-Hashmap.md) + * [ParallelIO](p/ParallelIO.md) + * [parameterized](p/parameterized.md) + * [paramiko](p/paramiko.md) + * [parasail](p/parasail.md) + * [Paraver](p/Paraver.md) + * [ParaView](p/ParaView.md) + * [Parcels](p/Parcels.md) + * [PARI-GP](p/PARI-GP.md) + * [ParmEd](p/ParmEd.md) + * [ParMETIS](p/ParMETIS.md) + * [ParMGridGen](p/ParMGridGen.md) + * [Parsl](p/Parsl.md) + * [PartitionFinder](p/PartitionFinder.md) + * [PASA](p/PASA.md) + * [pasta](p/pasta.md) + * [PaStiX](p/PaStiX.md) + * [pastml](p/pastml.md) + * [patch](p/patch.md) + * [patchelf](p/patchelf.md) + * [path.py](p/path.py.md) + * [PAUP](p/PAUP.md) + * [pauvre](p/pauvre.md) + * [pbbam](p/pbbam.md) + * [pbcopper](p/pbcopper.md) + * [pbdagcon](p/pbdagcon.md) + * [pbipa](p/pbipa.md) + * [pblat](p/pblat.md) + * [pbmm2](p/pbmm2.md) + * [pbs_python](p/pbs_python.md) + * [PBSuite](p/PBSuite.md) + * [PBZIP2](p/PBZIP2.md) + * [PCAngsd](p/PCAngsd.md) + * [PCC](p/PCC.md) + * [PCL](p/PCL.md) + * [PCMSolver](p/PCMSolver.md) + * [PCRaster](p/PCRaster.md) + * [PCRE](p/PCRE.md) + * [PCRE2](p/PCRE2.md) + * [pdf2docx](p/pdf2docx.md) + * [PDM](p/PDM.md) + * [pdsh](p/pdsh.md) + * [PDT](p/PDT.md) + * [peakdetect](p/peakdetect.md) + * [PEAR](p/PEAR.md) + * [PennCNV](p/PennCNV.md) + * [PEPT](p/PEPT.md) + * [Percolator](p/Percolator.md) + * [Perl](p/Perl.md) + * [perl-app-cpanminus](p/perl-app-cpanminus.md) + * [Perl-bundle-CPAN](p/Perl-bundle-CPAN.md) + * [Perl4-CoreLibs](p/Perl4-CoreLibs.md) + * [Perseus](p/Perseus.md) + * [PEST++](p/PEST++.md) + * [PETSc](p/PETSc.md) + * [petsc4py](p/petsc4py.md) + * [PfamScan](p/PfamScan.md) + * [PFFT](p/PFFT.md) + * [pfind](p/pfind.md) + * [pftoolsV3](p/pftoolsV3.md) + * [pFUnit](p/pFUnit.md) + * [PGDSpider](p/PGDSpider.md) + * [PGI](p/PGI.md) + * [PGPLOT](p/PGPLOT.md) + * [PHANOTATE](p/PHANOTATE.md) + * [Phantompeakqualtools](p/Phantompeakqualtools.md) + * [PHASE](p/PHASE.md) + * [PHAST](p/PHAST.md) + * [Phenoflow](p/Phenoflow.md) + * [PheWAS](p/PheWAS.md) + * [PheWeb](p/PheWeb.md) + * [Philosopher](p/Philosopher.md) + * [PhiPack](p/PhiPack.md) + * [PHLAT](p/PHLAT.md) + * [phonemizer](p/phonemizer.md) + * [phono3py](p/phono3py.md) + * [phonopy](p/phonopy.md) + * [photontorch](p/photontorch.md) + * [phototonic](p/phototonic.md) + * [PHYLIP](p/PHYLIP.md) + * [PhyloBayes-MPI](p/PhyloBayes-MPI.md) + * [phylokit](p/phylokit.md) + * [phylonaut](p/phylonaut.md) + * [PhyloPhlAn](p/PhyloPhlAn.md) + * [phyluce](p/phyluce.md) + * [PhyML](p/PhyML.md) + * [phyx](p/phyx.md) + * [picard](p/picard.md) + * [PICI-LIGGGHTS](p/PICI-LIGGGHTS.md) + * [PICRUSt2](p/PICRUSt2.md) + * [pigz](p/pigz.md) + * [PIL](p/PIL.md) + * [PileOMeth](p/PileOMeth.md) + * [Pillow](p/Pillow.md) + * [Pillow-SIMD](p/Pillow-SIMD.md) + * [Pilon](p/Pilon.md) + * [PIMS](p/PIMS.md) + * [Pindel](p/Pindel.md) + * [Pingouin](p/Pingouin.md) + * [Pint](p/Pint.md) + * [pip](p/pip.md) + * [PIPITS](p/PIPITS.md) + * [PIRATE](p/PIRATE.md) + * [pIRS](p/pIRS.md) + * [Pisces](p/Pisces.md) + * [piSvM](p/piSvM.md) + * [piSvM-JSC](p/piSvM-JSC.md) + * [pixman](p/pixman.md) + * [pizzly](p/pizzly.md) + * [pkg-config](p/pkg-config.md) + * [pkgconf](p/pkgconf.md) + * [pkgconfig](p/pkgconfig.md) + * [PLAMS](p/PLAMS.md) + * [planarity](p/planarity.md) + * [plantcv](p/plantcv.md) + * [plantri](p/plantri.md) + * [PlaScope](p/PlaScope.md) + * [PlasmaPy](p/PlasmaPy.md) + * [PLAST](p/PLAST.md) + * [Platanus](p/Platanus.md) + * [Platypus](p/Platypus.md) + * [Platypus-Opt](p/Platypus-Opt.md) + * [plc](p/plc.md) + * [PLINK](p/PLINK.md) + * [plinkliftover](p/plinkliftover.md) + * [plinkQC](p/plinkQC.md) + * [PLINKSEQ](p/PLINKSEQ.md) + * [plmc](p/plmc.md) + * [plot1cell](p/plot1cell.md) + * [Ploticus](p/Ploticus.md) + * [plotly](p/plotly.md) + * [plotly-orca](p/plotly-orca.md) + * [plotly.py](p/plotly.py.md) + * [plotutils](p/plotutils.md) + * [PLplot](p/PLplot.md) + * [PLUMED](p/PLUMED.md) + * [PLY](p/PLY.md) + * [PMIx](p/PMIx.md) + * [pmt](p/pmt.md) + * [pmx](p/pmx.md) + * [PnetCDF](p/PnetCDF.md) + * [pocl](p/pocl.md) + * [pod5-file-format](p/pod5-file-format.md) + * [poetry](p/poetry.md) + * [polars](p/polars.md) + * [polymake](p/polymake.md) + * [pomkl](p/pomkl.md) + * [pompi](p/pompi.md) + * [poppler](p/poppler.md) + * [poppunk](p/poppunk.md) + * [popscle](p/popscle.md) + * [popt](p/popt.md) + * [Porechop](p/Porechop.md) + * [porefoam](p/porefoam.md) + * [poretools](p/poretools.md) + * [PortAudio](p/PortAudio.md) + * [Portcullis](p/Portcullis.md) + * [PortMidi](p/PortMidi.md) + * [Postgres-XL](p/Postgres-XL.md) + * [PostgreSQL](p/PostgreSQL.md) + * [POT](p/POT.md) + * [POV-Ray](p/POV-Ray.md) + * [powerlaw](p/powerlaw.md) + * [pp-sketchlib](p/pp-sketchlib.md) + * [PPanGGOLiN](p/PPanGGOLiN.md) + * [PPfold](p/PPfold.md) + * [ppl](p/ppl.md) + * [pplacer](p/pplacer.md) + * [pplpy](p/pplpy.md) + * [PRANK](p/PRANK.md) + * [PRC](p/PRC.md) + * [preCICE](p/preCICE.md) + * [premailer](p/premailer.md) + * [PREQUAL](p/PREQUAL.md) + * [preseq](p/preseq.md) + * [presto](p/presto.md) + * [pretty-yaml](p/pretty-yaml.md) + * [primecount](p/primecount.md) + * [primecountpy](p/primecountpy.md) + * [Primer3](p/Primer3.md) + * [PRINSEQ](p/PRINSEQ.md) + * [printproto](p/printproto.md) + * [PRISMS-PF](p/PRISMS-PF.md) + * [ProbABEL](p/ProbABEL.md) + * [ProBiS](p/ProBiS.md) + * [prodigal](p/prodigal.md) + * [ProFit](p/ProFit.md) + * [PROJ](p/PROJ.md) + * [ProjectQ](p/ProjectQ.md) + * [prokka](p/prokka.md) + * [prompt-toolkit](p/prompt-toolkit.md) + * [proovread](p/proovread.md) + * [propy](p/propy.md) + * [ProteinMPNN](p/ProteinMPNN.md) + * [Proteinortho](p/Proteinortho.md) + * [ProtHint](p/ProtHint.md) + * [protobuf](p/protobuf.md) + * [protobuf-python](p/protobuf-python.md) + * [protozero](p/protozero.md) + * [PRRTE](p/PRRTE.md) + * [PRSice](p/PRSice.md) + * [PSASS](p/PSASS.md) + * [pscom](p/pscom.md) + * [PSI](p/PSI.md) + * [PSI4](p/PSI4.md) + * [PsiCLASS](p/PsiCLASS.md) + * [PSIPRED](p/PSIPRED.md) + * [PSM2](p/PSM2.md) + * [psmc](p/psmc.md) + * [psmpi](p/psmpi.md) + * [psmpi2](p/psmpi2.md) + * [PSolver](p/PSolver.md) + * [PSORTb](p/PSORTb.md) + * [psrecord](p/psrecord.md) + * [pstoedit](p/pstoedit.md) + * [psutil](p/psutil.md) + * [psycopg](p/psycopg.md) + * [psycopg2](p/psycopg2.md) + * [ptemcee](p/ptemcee.md) + * [PTESFinder](p/PTESFinder.md) + * [pubtcrs](p/pubtcrs.md) + * [pugixml](p/pugixml.md) + * [pullseq](p/pullseq.md) + * [PuLP](p/PuLP.md) + * [purge_dups](p/purge_dups.md) + * [pv](p/pv.md) + * [py](p/py.md) + * [py-aiger](p/py-aiger.md) + * [py-aiger-bdd](p/py-aiger-bdd.md) + * [py-c3d](p/py-c3d.md) + * [py-cpuinfo](p/py-cpuinfo.md) + * [py3Dmol](p/py3Dmol.md) + * [pyABC](p/pyABC.md) + * [PyAEDT](p/PyAEDT.md) + * [PyAMG](p/PyAMG.md) + * [PyAPS3](p/PyAPS3.md) + * [PyAV](p/PyAV.md) + * [pybedtools](p/pybedtools.md) + * [PyBerny](p/PyBerny.md) + * [pyBigWig](p/pyBigWig.md) + * [pybind11](p/pybind11.md) + * [pybind11-stubgen](p/pybind11-stubgen.md) + * [pybinding](p/pybinding.md) + * [PyBioLib](p/PyBioLib.md) + * [PyCairo](p/PyCairo.md) + * [PyCalib](p/PyCalib.md) + * [pyccel](p/pyccel.md) + * [PyCharm](p/PyCharm.md) + * [PyCheMPS2](p/PyCheMPS2.md) + * [Pychopper](p/Pychopper.md) + * [PyCifRW](p/PyCifRW.md) + * [PyClone](p/PyClone.md) + * [pycma](p/pycma.md) + * [pycocotools](p/pycocotools.md) + * [pycodestyle](p/pycodestyle.md) + * [PyCogent](p/PyCogent.md) + * [pycoQC](p/pycoQC.md) + * [pycubescd](p/pycubescd.md) + * [PyCUDA](p/PyCUDA.md) + * [PycURL](p/PycURL.md) + * [PyDamage](p/PyDamage.md) + * [pydantic](p/pydantic.md) + * [PyDatastream](p/PyDatastream.md) + * [pydicom](p/pydicom.md) + * [pydicom-seg](p/pydicom-seg.md) + * [pydlpoly](p/pydlpoly.md) + * [pydot](p/pydot.md) + * [pyEGA3](p/pyEGA3.md) + * [pyenchant](p/pyenchant.md) + * [PyEVTK](p/PyEVTK.md) + * [PyEXR](p/PyEXR.md) + * [pyFAI](p/pyFAI.md) + * [pyfaidx](p/pyfaidx.md) + * [pyfasta](p/pyfasta.md) + * [PyFFmpeg](p/PyFFmpeg.md) + * [pyFFTW](p/pyFFTW.md) + * [pyfits](p/pyfits.md) + * [PyFMI](p/PyFMI.md) + * [PyFoam](p/PyFoam.md) + * [PyFR](p/PyFR.md) + * [PyFrag](p/PyFrag.md) + * [pyGAM](p/pyGAM.md) + * [pygame](p/pygame.md) + * [pygccxml](p/pygccxml.md) + * [pyGenomeTracks](p/pyGenomeTracks.md) + * [PyGEOS](p/PyGEOS.md) + * [pyGIMLi](p/pyGIMLi.md) + * [Pygments](p/Pygments.md) + * [pygmo](p/pygmo.md) + * [PyGObject](p/PyGObject.md) + * [pygraphviz](p/pygraphviz.md) + * [pygrib](p/pygrib.md) + * [PyGTK](p/PyGTK.md) + * [PyGTS](p/PyGTS.md) + * [PyGWAS](p/PyGWAS.md) + * [pyhdf](p/pyhdf.md) + * [PyHMMER](p/PyHMMER.md) + * [PyImageJ](p/PyImageJ.md) + * [PyInstaller](p/PyInstaller.md) + * [pyiron](p/pyiron.md) + * [Pyke3](p/Pyke3.md) + * [pylift](p/pylift.md) + * [Pylint](p/Pylint.md) + * [pylipid](p/pylipid.md) + * [pyMannKendall](p/pyMannKendall.md) + * [pymatgen](p/pymatgen.md) + * [pymatgen-db](p/pymatgen-db.md) + * [pymbar](p/pymbar.md) + * [PyMC](p/PyMC.md) + * [PyMC3](p/PyMC3.md) + * [pymca](p/pymca.md) + * [pymemcache](p/pymemcache.md) + * [PyMOL](p/PyMOL.md) + * [PyNAST](p/PyNAST.md) + * [pyobjcryst](p/pyobjcryst.md) + * [PyOD](p/PyOD.md) + * [pyodbc](p/pyodbc.md) + * [Pyomo](p/Pyomo.md) + * [PyOpenCL](p/PyOpenCL.md) + * [PyOpenGL](p/PyOpenGL.md) + * [pyparsing](p/pyparsing.md) + * [pyperf](p/pyperf.md) + * [pyplusplus](p/pyplusplus.md) + * [pypmt](p/pypmt.md) + * [PYPOWER](p/PYPOWER.md) + * [pyproj](p/pyproj.md) + * [PyPSA](p/PyPSA.md) + * [PyPy](p/PyPy.md) + * [pyqstem](p/pyqstem.md) + * [PyQt](p/PyQt.md) + * [PyQt-builder](p/PyQt-builder.md) + * [PyQt5](p/PyQt5.md) + * [PyQtGraph](p/PyQtGraph.md) + * [pyradiomics](p/pyradiomics.md) + * [PyRe](p/PyRe.md) + * [PyRETIS](p/PyRETIS.md) + * [pyringe](p/pyringe.md) + * [pyro-api](p/pyro-api.md) + * [pyro-ppl](p/pyro-ppl.md) + * [Pyro4](p/Pyro4.md) + * [PyRosetta](p/PyRosetta.md) + * [Pysam](p/Pysam.md) + * [pysamstats](p/pysamstats.md) + * [PySAT](p/PySAT.md) + * [pyScaf](p/pyScaf.md) + * [pySCENIC](p/pySCENIC.md) + * [PySCF](p/PySCF.md) + * [pyseer](p/pyseer.md) + * [pysheds](p/pysheds.md) + * [pyshp](p/pyshp.md) + * [PySide2](p/PySide2.md) + * [PySINDy](p/PySINDy.md) + * [pyslim](p/pyslim.md) + * [pysndfx](p/pysndfx.md) + * [Pysolar](p/Pysolar.md) + * [pyspoa](p/pyspoa.md) + * [pysqlite](p/pysqlite.md) + * [PyStan](p/PyStan.md) + * [pysteps](p/pysteps.md) + * [pystran](p/pystran.md) + * [PyTables](p/PyTables.md) + * [PyTensor](p/PyTensor.md) + * [pytesseract](p/pytesseract.md) + * [pytest](p/pytest.md) + * [pytest-benchmark](p/pytest-benchmark.md) + * [pytest-cpp](p/pytest-cpp.md) + * [pytest-flakefinder](p/pytest-flakefinder.md) + * [pytest-rerunfailures](p/pytest-rerunfailures.md) + * [pytest-shard](p/pytest-shard.md) + * [pytest-workflow](p/pytest-workflow.md) + * [pytest-xdist](p/pytest-xdist.md) + * [pythermalcomfort](p/pythermalcomfort.md) + * [PYTHIA](p/PYTHIA.md) + * [Python](p/Python.md) + * [Python-bundle](p/Python-bundle.md) + * [Python-bundle-PyPI](p/Python-bundle-PyPI.md) + * [python-casacore](p/python-casacore.md) + * [python-docx](p/python-docx.md) + * [python-hl7](p/python-hl7.md) + * [python-igraph](p/python-igraph.md) + * [python-irodsclient](p/python-irodsclient.md) + * [python-isal](p/python-isal.md) + * [python-Levenshtein](p/python-Levenshtein.md) + * [python-libsbml](p/python-libsbml.md) + * [python-louvain](p/python-louvain.md) + * [python-mujoco](p/python-mujoco.md) + * [python-parasail](p/python-parasail.md) + * [python-telegram-bot](p/python-telegram-bot.md) + * [python-weka-wrapper3](p/python-weka-wrapper3.md) + * [python-xxhash](p/python-xxhash.md) + * [pythran](p/pythran.md) + * [PyTorch](p/PyTorch.md) + * [pytorch-3dunet](p/pytorch-3dunet.md) + * [PyTorch-bundle](p/PyTorch-bundle.md) + * [pytorch-CycleGAN-pix2pix](p/pytorch-CycleGAN-pix2pix.md) + * [PyTorch-Geometric](p/PyTorch-Geometric.md) + * [PyTorch-Ignite](p/PyTorch-Ignite.md) + * [PyTorch-Image-Models](p/PyTorch-Image-Models.md) + * [PyTorch-Lightning](p/PyTorch-Lightning.md) + * [PyTorch3D](p/PyTorch3D.md) + * [PyTorchVideo](p/PyTorchVideo.md) + * [PyVCF](p/PyVCF.md) + * [PyVCF3](p/PyVCF3.md) + * [PyVista](p/PyVista.md) + * [pyWannier90](p/pyWannier90.md) + * [PyWavelets](p/PyWavelets.md) + * [PyWBGT](p/PyWBGT.md) + * [pyXDF](p/pyXDF.md) + * [PyYAML](p/PyYAML.md) + * [PyZMQ](p/PyZMQ.md) + * [q](q/index.md) + * [q2-krona](q/q2-krona.md) + * [Q6](q/Q6.md) + * [QCA](q/QCA.md) + * [qcat](q/qcat.md) + * [QCG-PilotJob](q/QCG-PilotJob.md) + * [qcint](q/qcint.md) + * [QCxMS](q/QCxMS.md) + * [QD](q/QD.md) + * [QDD](q/QDD.md) + * [QEMU](q/QEMU.md) + * [qforce](q/qforce.md) + * [QGIS](q/QGIS.md) + * [Qhull](q/Qhull.md) + * [QIIME](q/QIIME.md) + * [QIIME2](q/QIIME2.md) + * [Qiskit](q/Qiskit.md) + * [QJson](q/QJson.md) + * [qmflows](q/qmflows.md) + * [QML](q/QML.md) + * [qnorm](q/qnorm.md) + * [qpth](q/qpth.md) + * [qrupdate](q/qrupdate.md) + * [QScintilla](q/QScintilla.md) + * [Qt](q/Qt.md) + * [Qt5](q/Qt5.md) + * [Qt5Webkit](q/Qt5Webkit.md) + * [Qt6](q/Qt6.md) + * [Qtconsole](q/Qtconsole.md) + * [QtKeychain](q/QtKeychain.md) + * [QTLtools](q/QTLtools.md) + * [qtop](q/qtop.md) + * [QtPy](q/QtPy.md) + * [Qualimap](q/Qualimap.md) + * [Quandl](q/Quandl.md) + * [QuantumESPRESSO](q/QuantumESPRESSO.md) + * [QUAST](q/QUAST.md) + * [QuaZIP](q/QuaZIP.md) + * [QuickFF](q/QuickFF.md) + * [QuickPIC](q/QuickPIC.md) + * [QuickTree](q/QuickTree.md) + * [Quip](q/Quip.md) + * [Quorum](q/Quorum.md) + * [QuPath](q/QuPath.md) + * [QuTiP](q/QuTiP.md) + * [Qwt](q/Qwt.md) + * [QwtPolar](q/QwtPolar.md) + * [r](r/index.md) + * [R](r/R.md) + * [R-bundle-Bioconductor](r/R-bundle-Bioconductor.md) + * [R-bundle-CRAN](r/R-bundle-CRAN.md) + * [R-INLA](r/R-INLA.md) + * [R-keras](r/R-keras.md) + * [R-MXM](r/R-MXM.md) + * [R-opencv](r/R-opencv.md) + * [R-tesseract](r/R-tesseract.md) + * [R-transport](r/R-transport.md) + * [R2jags](r/R2jags.md) + * [Racon](r/Racon.md) + * [radeontop](r/radeontop.md) + * [radian](r/radian.md) + * [RaGOO](r/RaGOO.md) + * [Ragout](r/Ragout.md) + * [RagTag](r/RagTag.md) + * [rampart](r/rampart.md) + * [randfold](r/randfold.md) + * [randrproto](r/randrproto.md) + * [rapidcsv](r/rapidcsv.md) + * [RapidJSON](r/RapidJSON.md) + * [rapidNJ](r/rapidNJ.md) + * [rapidtide](r/rapidtide.md) + * [RAPSearch2](r/RAPSearch2.md) + * [Raptor](r/Raptor.md) + * [Rascaf](r/Rascaf.md) + * [RASPA2](r/RASPA2.md) + * [rasterio](r/rasterio.md) + * [rasterstats](r/rasterstats.md) + * [Ratatosk](r/Ratatosk.md) + * [Raven](r/Raven.md) + * [RAxML](r/RAxML.md) + * [RAxML-NG](r/RAxML-NG.md) + * [Ray-assembler](r/Ray-assembler.md) + * [Ray-project](r/Ray-project.md) + * [Raysect](r/Raysect.md) + * [RBFOpt](r/RBFOpt.md) + * [RCall](r/RCall.md) + * [rclone](r/rclone.md) + * [Rcorrector](r/Rcorrector.md) + * [RcppGSL](r/RcppGSL.md) + * [rCUDA](r/rCUDA.md) + * [RDFlib](r/RDFlib.md) + * [RDKit](r/RDKit.md) + * [RDP-Classifier](r/RDP-Classifier.md) + * [RE2](r/RE2.md) + * [re2c](r/re2c.md) + * [Reads2snp](r/Reads2snp.md) + * [Reapr](r/Reapr.md) + * [ReaxFF](r/ReaxFF.md) + * [RECON](r/RECON.md) + * [Red](r/Red.md) + * [Redis](r/Redis.md) + * [redis-py](r/redis-py.md) + * [Redundans](r/Redundans.md) + * [ReFrame](r/ReFrame.md) + * [regionmask](r/regionmask.md) + * [RegTools](r/RegTools.md) + * [Relate](r/Relate.md) + * [RELION](r/RELION.md) + * [remake](r/remake.md) + * [ReMatCh](r/ReMatCh.md) + * [REMORA](r/REMORA.md) + * [renderproto](r/renderproto.md) + * [RepastHPC](r/RepastHPC.md) + * [RepeatMasker](r/RepeatMasker.md) + * [RepeatModeler](r/RepeatModeler.md) + * [RepeatScout](r/RepeatScout.md) + * [request](r/request.md) + * [requests](r/requests.md) + * [RERconverge](r/RERconverge.md) + * [ResistanceGA](r/ResistanceGA.md) + * [resolos](r/resolos.md) + * [Restrander](r/Restrander.md) + * [rethinking](r/rethinking.md) + * [retworkx](r/retworkx.md) + * [RevBayes](r/RevBayes.md) + * [RFdiffusion](r/RFdiffusion.md) + * [rgdal](r/rgdal.md) + * [rgeos](r/rgeos.md) + * [Rgurobi](r/Rgurobi.md) + * [rhdf5](r/rhdf5.md) + * [RHEIA](r/RHEIA.md) + * [RheoTool](r/RheoTool.md) + * [Rhodium](r/Rhodium.md) + * [rickflow](r/rickflow.md) + * [RInChI](r/RInChI.md) + * [rioxarray](r/rioxarray.md) + * [ripunzip](r/ripunzip.md) + * [rising](r/rising.md) + * [Rivet](r/Rivet.md) + * [rjags](r/rjags.md) + * [RLCard](r/RLCard.md) + * [rmarkdown](r/rmarkdown.md) + * [Rmath](r/Rmath.md) + * [rMATS-turbo](r/rMATS-turbo.md) + * [RMBlast](r/RMBlast.md) + * [RNA-Bloom](r/RNA-Bloom.md) + * [RNA-SeQC](r/RNA-SeQC.md) + * [RNAclust](r/RNAclust.md) + * [RNAcode](r/RNAcode.md) + * [RNAIndel](r/RNAIndel.md) + * [RNAmmer](r/RNAmmer.md) + * [rnaQUAST](r/rnaQUAST.md) + * [RNAz](r/RNAz.md) + * [RnBeads](r/RnBeads.md) + * [Roary](r/Roary.md) + * [ROCm](r/ROCm.md) + * [rocm-cmake](r/rocm-cmake.md) + * [ROCm-CompilerSupport](r/ROCm-CompilerSupport.md) + * [rocm-smi](r/rocm-smi.md) + * [rocminfo](r/rocminfo.md) + * [ROCR-Runtime](r/ROCR-Runtime.md) + * [ROCT-Thunk-Interface](r/ROCT-Thunk-Interface.md) + * [ROI_PAC](r/ROI_PAC.md) + * [ROME](r/ROME.md) + * [ROOT](r/ROOT.md) + * [root_numpy](r/root_numpy.md) + * [rootpy](r/rootpy.md) + * [Rosetta](r/Rosetta.md) + * [rpmrebuild](r/rpmrebuild.md) + * [RPostgreSQL](r/RPostgreSQL.md) + * [rpy2](r/rpy2.md) + * [RQGIS3](r/RQGIS3.md) + * [RSEM](r/RSEM.md) + * [RSeQC](r/RSeQC.md) + * [RStan](r/RStan.md) + * [rstanarm](r/rstanarm.md) + * [RStudio-Server](r/RStudio-Server.md) + * [RTG-Tools](r/RTG-Tools.md) + * [Rtree](r/Rtree.md) + * [ruamel.yaml](r/ruamel.yaml.md) + * [Ruby](r/Ruby.md) + * [Ruby-Tk](r/Ruby-Tk.md) + * [ruffus](r/ruffus.md) + * [ruptures](r/ruptures.md) + * [Rust](r/Rust.md) + * [rustworkx](r/rustworkx.md) + * [s](s/index.md) + * [S-Lang](s/S-Lang.md) + * [s3fs](s/s3fs.md) + * [S4](s/S4.md) + * [Sabre](s/Sabre.md) + * [safestringlib](s/safestringlib.md) + * [Safetensors](s/Safetensors.md) + * [SAGE](s/SAGE.md) + * [Sailfish](s/Sailfish.md) + * [SALib](s/SALib.md) + * [Salmon](s/Salmon.md) + * [SALMON-TDDFT](s/SALMON-TDDFT.md) + * [Sambamba](s/Sambamba.md) + * [samblaster](s/samblaster.md) + * [Samcef](s/Samcef.md) + * [samclip](s/samclip.md) + * [samplot](s/samplot.md) + * [SAMtools](s/SAMtools.md) + * [sansa](s/sansa.md) + * [SAP](s/SAP.md) + * [SAS](s/SAS.md) + * [Satsuma2](s/Satsuma2.md) + * [savvy](s/savvy.md) + * [Saxon-HE](s/Saxon-HE.md) + * [SBCL](s/SBCL.md) + * [sbt](s/sbt.md) + * [ScaFaCoS](s/ScaFaCoS.md) + * [ScaLAPACK](s/ScaLAPACK.md) + * [Scalasca](s/Scalasca.md) + * [SCALCE](s/SCALCE.md) + * [Scalene](s/Scalene.md) + * [scanpy](s/scanpy.md) + * [scArches](s/scArches.md) + * [scCODA](s/scCODA.md) + * [sceasy](s/sceasy.md) + * [SCENIC](s/SCENIC.md) + * [scGeneFit](s/scGeneFit.md) + * [SCGid](s/SCGid.md) + * [scGSVA](s/scGSVA.md) + * [scHiCExplorer](s/scHiCExplorer.md) + * [Schrodinger](s/Schrodinger.md) + * [scib](s/scib.md) + * [scib-metrics](s/scib-metrics.md) + * [sciClone](s/sciClone.md) + * [ScientificPython](s/ScientificPython.md) + * [scikit-allel](s/scikit-allel.md) + * [scikit-bio](s/scikit-bio.md) + * [scikit-build](s/scikit-build.md) + * [scikit-build-core](s/scikit-build-core.md) + * [scikit-cuda](s/scikit-cuda.md) + * [scikit-extremes](s/scikit-extremes.md) + * [scikit-image](s/scikit-image.md) + * [scikit-learn](s/scikit-learn.md) + * [scikit-lego](s/scikit-lego.md) + * [scikit-misc](s/scikit-misc.md) + * [scikit-multilearn](s/scikit-multilearn.md) + * [scikit-optimize](s/scikit-optimize.md) + * [scikit-plot](s/scikit-plot.md) + * [scikit-uplift](s/scikit-uplift.md) + * [SCIP](s/SCIP.md) + * [SCIPhI](s/SCIPhI.md) + * [scipy](s/scipy.md) + * [SciPy-bundle](s/SciPy-bundle.md) + * [SciTools-Iris](s/SciTools-Iris.md) + * [SCnorm](s/SCnorm.md) + * [Scoary](s/Scoary.md) + * [SCons](s/SCons.md) + * [SCOOP](s/SCOOP.md) + * [SCopeLoomR](s/SCopeLoomR.md) + * [Score-P](s/Score-P.md) + * [SCOTCH](s/SCOTCH.md) + * [scp](s/scp.md) + * [scPred](s/scPred.md) + * [Scrappie](s/Scrappie.md) + * [SCReadCounts](s/SCReadCounts.md) + * [scrublet](s/scrublet.md) + * [scVelo](s/scVelo.md) + * [scvi-tools](s/scvi-tools.md) + * [Scythe](s/Scythe.md) + * [SDCC](s/SDCC.md) + * [SDL](s/SDL.md) + * [SDL2](s/SDL2.md) + * [SDL2_gfx](s/SDL2_gfx.md) + * [SDL2_image](s/SDL2_image.md) + * [SDL2_mixer](s/SDL2_mixer.md) + * [SDL2_ttf](s/SDL2_ttf.md) + * [SDL_image](s/SDL_image.md) + * [SDSL](s/SDSL.md) + * [Seaborn](s/Seaborn.md) + * [SEACells](s/SEACells.md) + * [SearchGUI](s/SearchGUI.md) + * [SeaView](s/SeaView.md) + * [SECAPR](s/SECAPR.md) + * [Seeder](s/Seeder.md) + * [segemehl](s/segemehl.md) + * [segment-anything](s/segment-anything.md) + * [segmentation-models](s/segmentation-models.md) + * [segmentation-models-pytorch](s/segmentation-models-pytorch.md) + * [SeisSol](s/SeisSol.md) + * [SelEstim](s/SelEstim.md) + * [SELFIES](s/SELFIES.md) + * [SemiBin](s/SemiBin.md) + * [semla](s/semla.md) + * [Sentence-Transformers](s/Sentence-Transformers.md) + * [SentencePiece](s/SentencePiece.md) + * [sentinelsat](s/sentinelsat.md) + * [sep](s/sep.md) + * [SEPP](s/SEPP.md) + * [Seq-Gen](s/Seq-Gen.md) + * [seq2HLA](s/seq2HLA.md) + * [SeqAn](s/SeqAn.md) + * [SeqAn3](s/SeqAn3.md) + * [SeqKit](s/SeqKit.md) + * [SeqLib](s/SeqLib.md) + * [Seqmagick](s/Seqmagick.md) + * [SeqPrep](s/SeqPrep.md) + * [seqtk](s/seqtk.md) + * [Serf](s/Serf.md) + * [setuptools](s/setuptools.md) + * [setuptools-rust](s/setuptools-rust.md) + * [Seurat](s/Seurat.md) + * [SeuratData](s/SeuratData.md) + * [SeuratDisk](s/SeuratDisk.md) + * [SeuratWrappers](s/SeuratWrappers.md) + * [sf](s/sf.md) + * [sfftk](s/sfftk.md) + * [Shannon](s/Shannon.md) + * [SHAP](s/SHAP.md) + * [shapAAR](s/shapAAR.md) + * [SHAPEIT](s/SHAPEIT.md) + * [SHAPEIT4](s/SHAPEIT4.md) + * [Shapely](s/Shapely.md) + * [sharutils](s/sharutils.md) + * [Shasta](s/Shasta.md) + * [ShengBTE](s/ShengBTE.md) + * [shift](s/shift.md) + * [SHORE](s/SHORE.md) + * [Short-Pair](s/Short-Pair.md) + * [shovill](s/shovill.md) + * [shrinkwrap](s/shrinkwrap.md) + * [SHTns](s/SHTns.md) + * [Sibelia](s/Sibelia.md) + * [SICER2](s/SICER2.md) + * [sickle](s/sickle.md) + * [Siesta](s/Siesta.md) + * [SignalP](s/SignalP.md) + * [silhouetteRank](s/silhouetteRank.md) + * [silx](s/silx.md) + * [simanneal](s/simanneal.md) + * [simint](s/simint.md) + * [SimNIBS](s/SimNIBS.md) + * [SimPEG](s/SimPEG.md) + * [SIMPLE](s/SIMPLE.md) + * [Simple-DFTD3](s/Simple-DFTD3.md) + * [SimpleElastix](s/SimpleElastix.md) + * [SimpleITK](s/SimpleITK.md) + * [simpy](s/simpy.md) + * [Simstrat](s/Simstrat.md) + * [SimVascular](s/SimVascular.md) + * [SingleM](s/SingleM.md) + * [Singular](s/Singular.md) + * [sinto](s/sinto.md) + * [SiNVICT](s/SiNVICT.md) + * [SIONlib](s/SIONlib.md) + * [SIP](s/SIP.md) + * [siscone](s/siscone.md) + * [SISSO](s/SISSO.md) + * [SISSO++](s/SISSO++.md) + * [SKESA](s/SKESA.md) + * [sketchmap](s/sketchmap.md) + * [skewer](s/skewer.md) + * [sklearn-pandas](s/sklearn-pandas.md) + * [sklearn-som](s/sklearn-som.md) + * [skorch](s/skorch.md) + * [sktime](s/sktime.md) + * [SlamDunk](s/SlamDunk.md) + * [SLATEC](s/SLATEC.md) + * [SLEPc](s/SLEPc.md) + * [slepc4py](s/slepc4py.md) + * [sleuth](s/sleuth.md) + * [slidingwindow](s/slidingwindow.md) + * [SLiM](s/SLiM.md) + * [slow5tools](s/slow5tools.md) + * [slurm-drmaa](s/slurm-drmaa.md) + * [smafa](s/smafa.md) + * [smallgenomeutilities](s/smallgenomeutilities.md) + * [SMAP](s/SMAP.md) + * [SMARTdenovo](s/SMARTdenovo.md) + * [SMC++](s/SMC++.md) + * [smfishHmrf](s/smfishHmrf.md) + * [smithwaterman](s/smithwaterman.md) + * [Smoldyn](s/Smoldyn.md) + * [smooth-topk](s/smooth-topk.md) + * [SMRT-Link](s/SMRT-Link.md) + * [SMV](s/SMV.md) + * [snakemake](s/snakemake.md) + * [SNAP](s/SNAP.md) + * [SNAP-ESA](s/SNAP-ESA.md) + * [SNAP-ESA-python](s/SNAP-ESA-python.md) + * [SNAP-HMM](s/SNAP-HMM.md) + * [SNAPE-pooled](s/SNAPE-pooled.md) + * [snaphu](s/snaphu.md) + * [snappy](s/snappy.md) + * [Sniffles](s/Sniffles.md) + * [snippy](s/snippy.md) + * [snp-sites](s/snp-sites.md) + * [snpEff](s/snpEff.md) + * [SNPhylo](s/SNPhylo.md) + * [SNPomatic](s/SNPomatic.md) + * [SOAPaligner](s/SOAPaligner.md) + * [SOAPdenovo-Trans](s/SOAPdenovo-Trans.md) + * [SOAPdenovo2](s/SOAPdenovo2.md) + * [SOAPfuse](s/SOAPfuse.md) + * [socat](s/socat.md) + * [SOCI](s/SOCI.md) + * [SolexaQA++](s/SolexaQA++.md) + * [solo](s/solo.md) + * [sonic](s/sonic.md) + * [SoPlex](s/SoPlex.md) + * [SoQt](s/SoQt.md) + * [SortMeRNA](s/SortMeRNA.md) + * [SoupX](s/SoupX.md) + * [SoX](s/SoX.md) + * [SoXt](s/SoXt.md) + * [SpaceRanger](s/SpaceRanger.md) + * [Spack](s/Spack.md) + * [spaCy](s/spaCy.md) + * [SPAdes](s/SPAdes.md) + * [spaln](s/spaln.md) + * [Spark](s/Spark.md) + * [sparse-neighbors-search](s/sparse-neighbors-search.md) + * [sparsehash](s/sparsehash.md) + * [SpatialDE](s/SpatialDE.md) + * [spatialreg](s/spatialreg.md) + * [spdlog](s/spdlog.md) + * [SpectrA](s/SpectrA.md) + * [spectral.methods](s/spectral.methods.md) + * [speech_tools](s/speech_tools.md) + * [SPEI](s/SPEI.md) + * [spektral](s/spektral.md) + * [spglib](s/spglib.md) + * [spglib-python](s/spglib-python.md) + * [Sphinx](s/Sphinx.md) + * [Sphinx-RTD-Theme](s/Sphinx-RTD-Theme.md) + * [SpiceyPy](s/SpiceyPy.md) + * [SpiecEasi](s/SpiecEasi.md) + * [SplAdder](s/SplAdder.md) + * [SPLASH](s/SPLASH.md) + * [SpliceMap](s/SpliceMap.md) + * [split-seq](s/split-seq.md) + * [splitRef](s/splitRef.md) + * [SPM](s/SPM.md) + * [spoa](s/spoa.md) + * [SPOOLES](s/SPOOLES.md) + * [SPOTPY](s/SPOTPY.md) + * [SPRNG](s/SPRNG.md) + * [Spyder](s/Spyder.md) + * [SQLAlchemy](s/SQLAlchemy.md) + * [SQLite](s/SQLite.md) + * [SqueezeMeta](s/SqueezeMeta.md) + * [Squidpy](s/Squidpy.md) + * [SRA-Toolkit](s/SRA-Toolkit.md) + * [sradownloader](s/sradownloader.md) + * [SRPRISM](s/SRPRISM.md) + * [SRST2](s/SRST2.md) + * [SSAHA2](s/SSAHA2.md) + * [SSN](s/SSN.md) + * [SSPACE_Basic](s/SSPACE_Basic.md) + * [SSW](s/SSW.md) + * [STACEY](s/STACEY.md) + * [Stack](s/Stack.md) + * [Stacks](s/Stacks.md) + * [STAMP](s/STAMP.md) + * [StaMPS](s/StaMPS.md) + * [Stampy](s/Stampy.md) + * [STAR](s/STAR.md) + * [STAR-CCM+](s/STAR-CCM+.md) + * [STAR-Fusion](s/STAR-Fusion.md) + * [stardist](s/stardist.md) + * [starparser](s/starparser.md) + * [stars](s/stars.md) + * [Stata](s/Stata.md) + * [Statistics-R](s/Statistics-R.md) + * [statsmodels](s/statsmodels.md) + * [STEAK](s/STEAK.md) + * [STIR](s/STIR.md) + * [stpipeline](s/stpipeline.md) + * [strace](s/strace.md) + * [Strainberry](s/Strainberry.md) + * [STREAM](s/STREAM.md) + * [strelka](s/strelka.md) + * [StringTie](s/StringTie.md) + * [stripy](s/stripy.md) + * [STRique](s/STRique.md) + * [Structure](s/Structure.md) + * [Structure_threader](s/Structure_threader.md) + * [STRUMPACK](s/STRUMPACK.md) + * [suave](s/suave.md) + * [SuAVE-biomat](s/SuAVE-biomat.md) + * [Subread](s/Subread.md) + * [subset-bam](s/subset-bam.md) + * [subunit](s/subunit.md) + * [Subversion](s/Subversion.md) + * [suds](s/suds.md) + * [SuiteSparse](s/SuiteSparse.md) + * [SUMACLUST](s/SUMACLUST.md) + * [SUMATRA](s/SUMATRA.md) + * [SUMO](s/SUMO.md) + * [SUNDIALS](s/SUNDIALS.md) + * [SunPy](s/SunPy.md) + * [SuperLU](s/SuperLU.md) + * [SuperLU_DIST](s/SuperLU_DIST.md) + * [supermagic](s/supermagic.md) + * [supernova](s/supernova.md) + * [SUPPA](s/SUPPA.md) + * [SURVIVOR](s/SURVIVOR.md) + * [SVclone](s/SVclone.md) + * [SVDetect](s/SVDetect.md) + * [SVDquest](s/SVDquest.md) + * [SVG](s/SVG.md) + * [SVIM](s/SVIM.md) + * [svist4get](s/svist4get.md) + * [swarm](s/swarm.md) + * [SWASH](s/SWASH.md) + * [SWAT+](s/SWAT+.md) + * [swifter](s/swifter.md) + * [SWIG](s/SWIG.md) + * [SWIPE](s/SWIPE.md) + * [swissknife](s/swissknife.md) + * [SymEngine](s/SymEngine.md) + * [SymEngine-python](s/SymEngine-python.md) + * [SYMMETRICA](s/SYMMETRICA.md) + * [SYMPHONY](s/SYMPHONY.md) + * [sympy](s/sympy.md) + * [synapseclient](s/synapseclient.md) + * [synthcity](s/synthcity.md) + * [SyRI](s/SyRI.md) + * [sysbench](s/sysbench.md) + * [Szip](s/Szip.md) + * [t](t/index.md) + * [T-Coffee](t/T-Coffee.md) + * [t-SNE-CUDA](t/t-SNE-CUDA.md) + * [tabix](t/tabix.md) + * [tabixpp](t/tabixpp.md) + * [taco](t/taco.md) + * [TagDust](t/TagDust.md) + * [TagLib](t/TagLib.md) + * [Taiyaki](t/Taiyaki.md) + * [TALON](t/TALON.md) + * [TALYS](t/TALYS.md) + * [TAMkin](t/TAMkin.md) + * [tantan](t/tantan.md) + * [Tapenade](t/Tapenade.md) + * [task-spooler](t/task-spooler.md) + * [taxator-tk](t/taxator-tk.md) + * [TBA](t/TBA.md) + * [tbb](t/tbb.md) + * [tbl2asn](t/tbl2asn.md) + * [TCC](t/TCC.md) + * [Tcl](t/Tcl.md) + * [TCLAP](t/TCLAP.md) + * [tcsh](t/tcsh.md) + * [tecplot360ex](t/tecplot360ex.md) + * [TELEMAC-MASCARET](t/TELEMAC-MASCARET.md) + * [Telescope](t/Telescope.md) + * [Teneto](t/Teneto.md) + * [tensorboard](t/tensorboard.md) + * [tensorboardX](t/tensorboardX.md) + * [TensorFlow](t/TensorFlow.md) + * [tensorflow-compression](t/tensorflow-compression.md) + * [TensorFlow-Datasets](t/TensorFlow-Datasets.md) + * [TensorFlow-Graphics](t/TensorFlow-Graphics.md) + * [tensorflow-probability](t/tensorflow-probability.md) + * [TensorRT](t/TensorRT.md) + * [terastructure](t/terastructure.md) + * [termcolor](t/termcolor.md) + * [Tesla-Deployment-Kit](t/Tesla-Deployment-Kit.md) + * [tesseract](t/tesseract.md) + * [testpath](t/testpath.md) + * [TetGen](t/TetGen.md) + * [TEToolkit](t/TEToolkit.md) + * [TEtranscripts](t/TEtranscripts.md) + * [texinfo](t/texinfo.md) + * [texlive](t/texlive.md) + * [Text-CSV](t/Text-CSV.md) + * [TF-COMB](t/TF-COMB.md) + * [TFEA](t/TFEA.md) + * [Theano](t/Theano.md) + * [ThemisPy](t/ThemisPy.md) + * [THetA](t/THetA.md) + * [thirdorder](t/thirdorder.md) + * [thurstonianIRT](t/thurstonianIRT.md) + * [TiCCutils](t/TiCCutils.md) + * [tidybayes](t/tidybayes.md) + * [tidymodels](t/tidymodels.md) + * [Tika](t/Tika.md) + * [tiktoken](t/tiktoken.md) + * [TiMBL](t/TiMBL.md) + * [time](t/time.md) + * [timm](t/timm.md) + * [TINKER](t/TINKER.md) + * [tiny-cuda-nn](t/tiny-cuda-nn.md) + * [TinyDB](t/TinyDB.md) + * [TinyXML](t/TinyXML.md) + * [Tk](t/Tk.md) + * [Tkinter](t/Tkinter.md) + * [TM-align](t/TM-align.md) + * [tMAE](t/tMAE.md) + * [tmap](t/tmap.md) + * [tmux](t/tmux.md) + * [TN93](t/TN93.md) + * [TOBIAS](t/TOBIAS.md) + * [ToFu](t/ToFu.md) + * [Togl](t/Togl.md) + * [toil](t/toil.md) + * [tokenizers](t/tokenizers.md) + * [Tombo](t/Tombo.md) + * [TOML-Fortran](t/TOML-Fortran.md) + * [TOPAS](t/TOPAS.md) + * [topaz](t/topaz.md) + * [TopHat](t/TopHat.md) + * [torchaudio](t/torchaudio.md) + * [torchdata](t/torchdata.md) + * [torchinfo](t/torchinfo.md) + * [TorchIO](t/TorchIO.md) + * [torchsampler](t/torchsampler.md) + * [torchtext](t/torchtext.md) + * [torchvf](t/torchvf.md) + * [torchvision](t/torchvision.md) + * [tornado](t/tornado.md) + * [TotalView](t/TotalView.md) + * [tox](t/tox.md) + * [tqdm](t/tqdm.md) + * [Tracer](t/Tracer.md) + * [TranscriptClean](t/TranscriptClean.md) + * [TransDecoder](t/TransDecoder.md) + * [Transformers](t/Transformers.md) + * [Transrate](t/Transrate.md) + * [travis](t/travis.md) + * [TRAVIS-Analyzer](t/TRAVIS-Analyzer.md) + * [treatSens](t/treatSens.md) + * [TreeMix](t/TreeMix.md) + * [TreeShrink](t/TreeShrink.md) + * [TRF](t/TRF.md) + * [Triangle](t/Triangle.md) + * [Trilinos](t/Trilinos.md) + * [Trim_Galore](t/Trim_Galore.md) + * [trimAl](t/trimAl.md) + * [trimesh](t/trimesh.md) + * [Trimmomatic](t/Trimmomatic.md) + * [Trinity](t/Trinity.md) + * [Trinotate](t/Trinotate.md) + * [Triplexator](t/Triplexator.md) + * [TRIQS](t/TRIQS.md) + * [TRIQS-cthyb](t/TRIQS-cthyb.md) + * [TRIQS-dft_tools](t/TRIQS-dft_tools.md) + * [TRIQS-tprf](t/TRIQS-tprf.md) + * [Triton](t/Triton.md) + * [tRNAscan-SE](t/tRNAscan-SE.md) + * [TRUST](t/TRUST.md) + * [TRUST4](t/TRUST4.md) + * [Trycycler](t/Trycycler.md) + * [tseriesEntropy](t/tseriesEntropy.md) + * [tsne](t/tsne.md) + * [turbinesFoam](t/turbinesFoam.md) + * [TurboVNC](t/TurboVNC.md) + * [TVB](t/TVB.md) + * [tvb-data](t/tvb-data.md) + * [TVB-deps](t/TVB-deps.md) + * [tvb-framework](t/tvb-framework.md) + * [tvb-library](t/tvb-library.md) + * [TWL-NINJA](t/TWL-NINJA.md) + * [TXR](t/TXR.md) + * [typing-extensions](t/typing-extensions.md) + * [u](u/index.md) + * [UCC](u/UCC.md) + * [UCC-CUDA](u/UCC-CUDA.md) + * [UCLUST](u/UCLUST.md) + * [UCX](u/UCX.md) + * [UCX-CUDA](u/UCX-CUDA.md) + * [ucx-py](u/ucx-py.md) + * [UCX-ROCm](u/UCX-ROCm.md) + * [udocker](u/udocker.md) + * [UDUNITS](u/UDUNITS.md) + * [UFL](u/UFL.md) + * [Ultralytics](u/Ultralytics.md) + * [umap-learn](u/umap-learn.md) + * [UMI-tools](u/UMI-tools.md) + * [umi4cPackage](u/umi4cPackage.md) + * [umis](u/umis.md) + * [UNAFold](u/UNAFold.md) + * [uncertainties](u/uncertainties.md) + * [uncertainty-calibration](u/uncertainty-calibration.md) + * [unicore-uftp](u/unicore-uftp.md) + * [Unicycler](u/Unicycler.md) + * [Unidecode](u/Unidecode.md) + * [unifdef](u/unifdef.md) + * [UniFrac](u/UniFrac.md) + * [unimap](u/unimap.md) + * [units](u/units.md) + * [unixODBC](u/unixODBC.md) + * [unrar](u/unrar.md) + * [UnZip](u/UnZip.md) + * [UQTk](u/UQTk.md) + * [USEARCH](u/USEARCH.md) + * [UShER](u/UShER.md) + * [USPEX](u/USPEX.md) + * [utf8proc](u/utf8proc.md) + * [util-linux](u/util-linux.md) + * [v](v/index.md) + * [V8](v/V8.md) + * [vaeda](v/vaeda.md) + * [Vala](v/Vala.md) + * [Valgrind](v/Valgrind.md) + * [Vamb](v/Vamb.md) + * [Vampir](v/Vampir.md) + * [Vampire](v/Vampire.md) + * [VAMPIRE-ASM](v/VAMPIRE-ASM.md) + * [VarDict](v/VarDict.md) + * [variant_tools](v/variant_tools.md) + * [VariantMetaCaller](v/VariantMetaCaller.md) + * [VarScan](v/VarScan.md) + * [vartools](v/vartools.md) + * [VASP](v/VASP.md) + * [VAtools](v/VAtools.md) + * [vawk](v/vawk.md) + * [VBZ-Compression](v/VBZ-Compression.md) + * [VCF-kit](v/VCF-kit.md) + * [vcflib](v/vcflib.md) + * [vcfnp](v/vcfnp.md) + * [VCFtools](v/VCFtools.md) + * [vConTACT2](v/vConTACT2.md) + * [VEGAS](v/VEGAS.md) + * [velocyto](v/velocyto.md) + * [Velvet](v/Velvet.md) + * [VEP](v/VEP.md) + * [verifyBamID](v/verifyBamID.md) + * [VERSE](v/VERSE.md) + * [VESTA](v/VESTA.md) + * [ViennaRNA](v/ViennaRNA.md) + * [Vim](v/Vim.md) + * [VirSorter](v/VirSorter.md) + * [VirSorter2](v/VirSorter2.md) + * [virtualenv](v/virtualenv.md) + * [VirtualGL](v/VirtualGL.md) + * [Virtuoso-opensource](v/Virtuoso-opensource.md) + * [visdom](v/visdom.md) + * [vispr](v/vispr.md) + * [VisPy](v/VisPy.md) + * [vitessce-python](v/vitessce-python.md) + * [vitessceR](v/vitessceR.md) + * [VMD](v/VMD.md) + * [VMTK](v/VMTK.md) + * [voltools](v/voltools.md) + * [vorbis-tools](v/vorbis-tools.md) + * [Voro++](v/Voro++.md) + * [vsc-base](v/vsc-base.md) + * [vsc-install](v/vsc-install.md) + * [vsc-mympirun](v/vsc-mympirun.md) + * [vsc-mympirun-scoop](v/vsc-mympirun-scoop.md) + * [vsc-processcontrol](v/vsc-processcontrol.md) + * [VSCode](v/VSCode.md) + * [VSEARCH](v/VSEARCH.md) + * [vt](v/vt.md) + * [VTK](v/VTK.md) + * [VTune](v/VTune.md) + * [VV](v/VV.md) + * [VXL](v/VXL.md) + * [w](w/index.md) + * [waLBerla](w/waLBerla.md) + * [wandb](w/wandb.md) + * [Wannier90](w/Wannier90.md) + * [WannierTools](w/WannierTools.md) + * [Wayland](w/Wayland.md) + * [Waylandpp](w/Waylandpp.md) + * [WCSLIB](w/WCSLIB.md) + * [WCT](w/WCT.md) + * [wcwidth](w/wcwidth.md) + * [webin-cli](w/webin-cli.md) + * [WebKitGTK+](w/WebKitGTK+.md) + * [WebSocket++](w/WebSocket++.md) + * [WEKA](w/WEKA.md) + * [WFA2](w/WFA2.md) + * [wfdb](w/wfdb.md) + * [WGDgc](w/WGDgc.md) + * [wget](w/wget.md) + * [wgsim](w/wgsim.md) + * [WHAM](w/WHAM.md) + * [WhatsHap](w/WhatsHap.md) + * [wheel](w/wheel.md) + * [WIEN2k](w/WIEN2k.md) + * [WildMagic](w/WildMagic.md) + * [Winnowmap](w/Winnowmap.md) + * [WisecondorX](w/WisecondorX.md) + * [WISExome](w/WISExome.md) + * [wkhtmltopdf](w/wkhtmltopdf.md) + * [worker](w/worker.md) + * [wpebackend-fdo](w/wpebackend-fdo.md) + * [WPS](w/WPS.md) + * [wrapt](w/wrapt.md) + * [WRF](w/WRF.md) + * [WRF-Fire](w/WRF-Fire.md) + * [wrf-python](w/wrf-python.md) + * [WSClean](w/WSClean.md) + * [wtdbg2](w/wtdbg2.md) + * [wxPropertyGrid](w/wxPropertyGrid.md) + * [wxPython](w/wxPython.md) + * [wxWidgets](w/wxWidgets.md) + * [x](x/index.md) + * [X11](x/X11.md) + * [x13as](x/x13as.md) + * [x264](x/x264.md) + * [x265](x/x265.md) + * [XALT](x/XALT.md) + * [xarray](x/xarray.md) + * [XBeach](x/XBeach.md) + * [xbitmaps](x/xbitmaps.md) + * [xcb-proto](x/xcb-proto.md) + * [xcb-util](x/xcb-util.md) + * [xcb-util-image](x/xcb-util-image.md) + * [xcb-util-keysyms](x/xcb-util-keysyms.md) + * [xcb-util-renderutil](x/xcb-util-renderutil.md) + * [xcb-util-wm](x/xcb-util-wm.md) + * [xCell](x/xCell.md) + * [XCFun](x/XCFun.md) + * [xclip](x/xclip.md) + * [XCrySDen](x/XCrySDen.md) + * [xdotool](x/xdotool.md) + * [Xerces-C++](x/Xerces-C++.md) + * [xESMF](x/xESMF.md) + * [xextproto](x/xextproto.md) + * [xf86vidmodeproto](x/xf86vidmodeproto.md) + * [XGBoost](x/XGBoost.md) + * [XGrafix](x/XGrafix.md) + * [xineramaproto](x/xineramaproto.md) + * [XKeyboardConfig](x/XKeyboardConfig.md) + * [XlsxWriter](x/XlsxWriter.md) + * [XMDS2](x/XMDS2.md) + * [Xmipp](x/Xmipp.md) + * [xmitgcm](x/xmitgcm.md) + * [XML-Compile](x/XML-Compile.md) + * [XML-LibXML](x/XML-LibXML.md) + * [XML-Parser](x/XML-Parser.md) + * [xmlf90](x/xmlf90.md) + * [XMLSec](x/XMLSec.md) + * [XMLStarlet](x/XMLStarlet.md) + * [xonsh](x/xonsh.md) + * [XOOPIC](x/XOOPIC.md) + * [xorg-macros](x/xorg-macros.md) + * [xpdf](x/xpdf.md) + * [XPLOR-NIH](x/XPLOR-NIH.md) + * [xprop](x/xprop.md) + * [xproto](x/xproto.md) + * [XSD](x/XSD.md) + * [XTandem](x/XTandem.md) + * [xtb](x/xtb.md) + * [xtensor](x/xtensor.md) + * [xtrans](x/xtrans.md) + * [Xvfb](x/Xvfb.md) + * [xxd](x/xxd.md) + * [xxHash](x/xxHash.md) + * [XZ](x/XZ.md) + * [y](y/index.md) + * [YACS](y/YACS.md) + * [Yade](y/Yade.md) + * [yaff](y/yaff.md) + * [Yambo](y/Yambo.md) + * [yaml-cpp](y/yaml-cpp.md) + * [YANK](y/YANK.md) + * [YAPS](y/YAPS.md) + * [Yasm](y/Yasm.md) + * [YAXT](y/YAXT.md) + * [Yices](y/Yices.md) + * [YODA](y/YODA.md) + * [yt](y/yt.md) + * [z](z/index.md) + * [Z3](z/Z3.md) + * [zarr](z/zarr.md) + * [Zeo++](z/Zeo++.md) + * [ZeroMQ](z/ZeroMQ.md) + * [zeus-mcmc](z/zeus-mcmc.md) + * [zfp](z/zfp.md) + * [Zgoubi](z/Zgoubi.md) + * [ZIMPL](z/ZIMPL.md) + * [zingeR](z/zingeR.md) + * [Zip](z/Zip.md) + * [zlib](z/zlib.md) + * [zlib-ng](z/zlib-ng.md) + * [zlibbioc](z/zlibbioc.md) + * [Zopfli](z/Zopfli.md) + * [ZPAQ](z/ZPAQ.md) + * [zsh](z/zsh.md) + * [zstd](z/zstd.md) + * [zUMIs](z/zUMIs.md) + + +*(quick links: [0](./0/index.md) - [a](./a/index.md) - [b](./b/index.md) - [c](./c/index.md) - [d](./d/index.md) - [e](./e/index.md) - [f](./f/index.md) - [g](./g/index.md) - [h](./h/index.md) - [i](./i/index.md) - [j](./j/index.md) - [k](./k/index.md) - [l](./l/index.md) - [m](./m/index.md) - [n](./n/index.md) - [o](./o/index.md) - [p](./p/index.md) - [q](./q/index.md) - [r](./r/index.md) - [s](./s/index.md) - [t](./t/index.md) - [u](./u/index.md) - [v](./v/index.md) - [w](./w/index.md) - [x](./x/index.md) - [y](./y/index.md) - [z](./z/index.md))* + diff --git a/docs/version-specific/supported-software/j/JAGS.md b/docs/version-specific/supported-software/j/JAGS.md new file mode 100644 index 000000000..437c9c13a --- /dev/null +++ b/docs/version-specific/supported-software/j/JAGS.md @@ -0,0 +1,32 @@ +--- +search: + boost: 0.5 +--- +# JAGS + +JAGS is Just Another Gibbs Sampler. It is a program for analysis of Bayesian hierarchical models using Markov Chain Monte Carlo (MCMC) simulation + +*homepage*: + +version | toolchain +--------|---------- +``4.2.0`` | ``foss/2016a`` +``4.2.0`` | ``intel/2016a`` +``4.2.0`` | ``intel/2017a`` +``4.3.0`` | ``foss/2017b`` +``4.3.0`` | ``foss/2018b`` +``4.3.0`` | ``foss/2019a`` +``4.3.0`` | ``foss/2019b`` +``4.3.0`` | ``foss/2020a`` +``4.3.0`` | ``foss/2020b`` +``4.3.0`` | ``foss/2021a`` +``4.3.0`` | ``foss/2021b`` +``4.3.0`` | ``fosscuda/2020b`` +``4.3.0`` | ``intel/2017b`` +``4.3.1`` | ``foss/2022a`` +``4.3.2`` | ``foss/2022b`` +``4.3.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/JAXFrontCE.md b/docs/version-specific/supported-software/j/JAXFrontCE.md new file mode 100644 index 000000000..668640995 --- /dev/null +++ b/docs/version-specific/supported-software/j/JAXFrontCE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# JAXFrontCE + +JAXFront is a technology to generate graphical user interfaces on multiple channels (Java Swing, HTML, PDF) on the basis of an XML schema. + +*homepage*: + +version | toolchain +--------|---------- +``2.75`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/JSON-GLib.md b/docs/version-specific/supported-software/j/JSON-GLib.md new file mode 100644 index 000000000..b7811c89b --- /dev/null +++ b/docs/version-specific/supported-software/j/JSON-GLib.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# JSON-GLib + +JSON-GLib implements a full JSON parser and generator using GLib and GObject, and integrates JSON with GLib data types. + +*homepage*: + +version | toolchain +--------|---------- +``1.6.2`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/JUBE.md b/docs/version-specific/supported-software/j/JUBE.md new file mode 100644 index 000000000..a3895c7f6 --- /dev/null +++ b/docs/version-specific/supported-software/j/JUBE.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# JUBE + +The JUBE benchmarking environment provides a script based framework to easily create benchmark sets, run those sets on different computer systems and evaluate the results. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.3`` | ``system`` +``2.0.4`` | ``system`` +``2.0.5`` | ``system`` +``2.4.0`` | ``system`` +``2.4.1`` | ``system`` +``2.4.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/JUnit.md b/docs/version-specific/supported-software/j/JUnit.md new file mode 100644 index 000000000..1d0557d20 --- /dev/null +++ b/docs/version-specific/supported-software/j/JUnit.md @@ -0,0 +1,34 @@ +--- +search: + boost: 0.5 +--- +# JUnit + +A programmer-oriented testing framework for Java. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.10`` | ``-Java-1.7.0_10`` | ``system`` +``4.10`` | ``-Java-1.7.0_21`` | ``system`` +``4.11`` | ``-Java-1.7.0_15`` | ``system`` +``4.11`` | ``-Java-1.7.0_21`` | ``system`` +``4.11`` | ``-Java-1.7.0_60`` | ``system`` +``4.11`` | ``-Java-1.7.0_75`` | ``system`` +``4.11`` | ``-Java-1.7.0_79`` | ``system`` +``4.12`` | ``-Java-1.7.0_80`` | ``system`` +``4.12`` | ``-Java-1.8.0_112`` | ``system`` +``4.12`` | ``-Java-1.8.0_121`` | ``system`` +``4.12`` | ``-Java-1.8.0_144`` | ``system`` +``4.12`` | ``-Java-1.8.0_152`` | ``system`` +``4.12`` | ``-Java-1.8.0_162`` | ``system`` +``4.12`` | ``-Java-1.8.0_66`` | ``system`` +``4.12`` | ``-Java-1.8.0_72`` | ``system`` +``4.12`` | ``-Java-1.8.0_77`` | ``system`` +``4.12`` | ``-Java-1.8.0_92`` | ``system`` +``4.12`` | ``-Java-1.8`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/JWM.md b/docs/version-specific/supported-software/j/JWM.md new file mode 100644 index 000000000..1b6a712cf --- /dev/null +++ b/docs/version-specific/supported-software/j/JWM.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# JWM + +JWM is a light-weight window manager for the X11 Window System. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.5`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/Jansson.md b/docs/version-specific/supported-software/j/Jansson.md new file mode 100644 index 000000000..e2ecf09e0 --- /dev/null +++ b/docs/version-specific/supported-software/j/Jansson.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Jansson + +Jansson is a C library for encoding, decoding and manipulating JSON data. Its main features and design principles are: * Simple and intuitive API and data model * Comprehensive documentation * No dependencies on other libraries * Full Unicode support (UTF-8) * Extensive test suite + +*homepage*: + +version | toolchain +--------|---------- +``2.13.1`` | ``GCC/10.2.0`` +``2.13.1`` | ``GCC/11.2.0`` +``2.14`` | ``GCC/11.3.0`` +``2.14`` | ``GCC/12.3.0`` +``2.6`` | ``GCC/4.8.3`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/JasPer.md b/docs/version-specific/supported-software/j/JasPer.md new file mode 100644 index 000000000..9497843cb --- /dev/null +++ b/docs/version-specific/supported-software/j/JasPer.md @@ -0,0 +1,42 @@ +--- +search: + boost: 0.5 +--- +# JasPer + +The JasPer Project is an open-source initiative to provide a free software-based reference implementation of the codec specified in the JPEG-2000 Part-1 standard. + +*homepage*: + +version | toolchain +--------|---------- +``1.900.1`` | ``GCCcore/5.4.0`` +``1.900.1`` | ``GCCcore/6.4.0`` +``1.900.1`` | ``GCCcore/8.2.0`` +``1.900.1`` | ``foss/2016a`` +``1.900.1`` | ``foss/2016b`` +``1.900.1`` | ``foss/2017a`` +``1.900.1`` | ``intel/2016a`` +``1.900.1`` | ``intel/2016b`` +``1.900.1`` | ``intel/2017a`` +``2.0.10`` | ``intel/2016b`` +``2.0.12`` | ``GCCcore/6.4.0`` +``2.0.12`` | ``foss/2016b`` +``2.0.12`` | ``intel/2017a`` +``2.0.14`` | ``GCCcore/6.4.0`` +``2.0.14`` | ``GCCcore/7.3.0`` +``2.0.14`` | ``GCCcore/8.2.0`` +``2.0.14`` | ``GCCcore/8.3.0`` +``2.0.14`` | ``GCCcore/9.3.0`` +``2.0.16`` | ``GCCcore/9.3.0`` +``2.0.24`` | ``GCCcore/10.2.0`` +``2.0.28`` | ``GCCcore/10.3.0`` +``2.0.33`` | ``GCCcore/11.2.0`` +``2.0.33`` | ``GCCcore/11.3.0`` +``4.0.0`` | ``GCCcore/12.2.0`` +``4.0.0`` | ``GCCcore/12.3.0`` +``4.0.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/Jasmine.md b/docs/version-specific/supported-software/j/Jasmine.md new file mode 100644 index 000000000..ab9d80fd5 --- /dev/null +++ b/docs/version-specific/supported-software/j/Jasmine.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Jasmine + +SV Merging Across Samples + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.4`` | ``-Java-15`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/Java.md b/docs/version-specific/supported-software/j/Java.md new file mode 100644 index 000000000..d690cf32a --- /dev/null +++ b/docs/version-specific/supported-software/j/Java.md @@ -0,0 +1,88 @@ +--- +search: + boost: 0.5 +--- +# Java + +Java Platform, Standard Edition (Java SE) lets you develop and deploy Java applications on desktops and servers. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.6.0_24`` | | ``system`` +``1.7.0_10`` | | ``system`` +``1.7.0_15`` | | ``system`` +``1.7.0_21`` | | ``system`` +``1.7.0_40`` | | ``system`` +``1.7.0_45`` | | ``system`` +``1.7.0_60`` | | ``system`` +``1.7.0_75`` | | ``system`` +``1.7.0_76`` | | ``system`` +``1.7.0_79`` | | ``system`` +``1.7.0_80`` | | ``system`` +``1.8.0_112`` | | ``system`` +``1.8.0_121`` | | ``system`` +``1.8.0_131`` | | ``system`` +``1.8.0_141`` | | ``system`` +``1.8.0_144`` | | ``system`` +``1.8.0_152`` | | ``system`` +``1.8.0_162`` | | ``system`` +``1.8.0_172`` | | ``system`` +``1.8.0_181`` | | ``system`` +``1.8.0_192`` | | ``system`` +``1.8.0_20`` | | ``system`` +``1.8.0_202`` | | ``system`` +``1.8.0_212`` | | ``system`` +``1.8.0_221`` | | ``system`` +``1.8.0_231`` | | ``system`` +``1.8.0_241`` | | ``system`` +``1.8.0_25`` | | ``system`` +``1.8.0_271`` | | ``system`` +``1.8.0_281`` | | ``system`` +``1.8.0_292`` | ``-OpenJDK`` | ``system`` +``1.8.0_31`` | | ``system`` +``1.8.0_311`` | | ``system`` +``1.8.0_40`` | | ``system`` +``1.8.0_45`` | | ``system`` +``1.8.0_60`` | | ``system`` +``1.8.0_65`` | | ``system`` +``1.8.0_66`` | | ``system`` +``1.8.0_72`` | | ``system`` +``1.8.0_74`` | | ``system`` +``1.8.0_77`` | | ``system`` +``1.8.0_92`` | | ``system`` +``1.8`` | | ``system`` +``1.8_191`` | ``-b26-OpenJDK`` | ``system`` +``1.8_265`` | ``-b01-OpenJDK-aarch64`` | ``system`` +``1.9.0.4`` | | ``system`` +``11.0.16`` | | ``system`` +``11.0.18`` | | ``system`` +``11.0.2`` | | ``system`` +``11.0.20`` | | ``system`` +``11.0.6`` | ``-ppc64le`` | ``system`` +``11.0.8`` | ``-aarch64`` | ``system`` +``11`` | | ``system`` +``13.0.2`` | | ``system`` +``13`` | | ``system`` +``15.0.1`` | | ``system`` +``15`` | | ``system`` +``16.0.1`` | | ``system`` +``16`` | | ``system`` +``17.0.1`` | | ``system`` +``17.0.2`` | | ``system`` +``17.0.4`` | | ``system`` +``17.0.6`` | | ``system`` +``17`` | | ``system`` +``19.0.2`` | | ``system`` +``19`` | | ``system`` +``21.0.2`` | | ``system`` +``21`` | | ``system`` +``8.345`` | | ``system`` +``8.362`` | | ``system`` +``8.402`` | | ``system`` +``8`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/JavaFX.md b/docs/version-specific/supported-software/j/JavaFX.md new file mode 100644 index 000000000..d63000486 --- /dev/null +++ b/docs/version-specific/supported-software/j/JavaFX.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# JavaFX + +OpenJFX is an open source, next generation client application platform for desktop, mobile and embedded systems built on Java + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``11.0.2`` | ``_linux-x64_bin-sdk`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/Jblob.md b/docs/version-specific/supported-software/j/Jblob.md new file mode 100644 index 000000000..6fd83bd8b --- /dev/null +++ b/docs/version-specific/supported-software/j/Jblob.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Jblob + +Jblob - WDC Climate dataset download + +*homepage*: + +version | toolchain +--------|---------- +``3.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/Jellyfish.md b/docs/version-specific/supported-software/j/Jellyfish.md new file mode 100644 index 000000000..29a54e247 --- /dev/null +++ b/docs/version-specific/supported-software/j/Jellyfish.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# Jellyfish + +Jellyfish is a tool for fast, memory-efficient counting of k-mers in DNA. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.11`` | ``foss/2016a`` +``1.1.11`` | ``foss/2016b`` +``1.1.12`` | ``foss/2018b`` +``1.1.12`` | ``intel/2018a`` +``2.2.10`` | ``foss/2018b`` +``2.2.10`` | ``intel/2018a`` +``2.2.6`` | ``foss/2016b`` +``2.2.6`` | ``intel/2017a`` +``2.3.0`` | ``GCC/10.2.0`` +``2.3.0`` | ``GCC/10.3.0`` +``2.3.0`` | ``GCC/11.2.0`` +``2.3.0`` | ``GCC/11.3.0`` +``2.3.0`` | ``GCC/12.2.0`` +``2.3.0`` | ``GCC/8.2.0-2.31.1`` +``2.3.0`` | ``GCC/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/JiTCODE.md b/docs/version-specific/supported-software/j/JiTCODE.md new file mode 100644 index 000000000..0db352887 --- /dev/null +++ b/docs/version-specific/supported-software/j/JiTCODE.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# JiTCODE + +Just-in-time compilation for ordinary/delay/stochastic differential equations (DDEs) + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.2`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.4.0`` | ``-Python-3.7.2`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/Jmol.md b/docs/version-specific/supported-software/j/Jmol.md new file mode 100644 index 000000000..ce6fc2927 --- /dev/null +++ b/docs/version-specific/supported-software/j/Jmol.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Jmol + +Jmol: an open-source Java viewer for chemical structures in 3D + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``16.1.41`` | ``-Java-11`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/Jorg.md b/docs/version-specific/supported-software/j/Jorg.md new file mode 100644 index 000000000..a502a211c --- /dev/null +++ b/docs/version-specific/supported-software/j/Jorg.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Jorg + +A MAG Circularization Method By Lauren Lui, Torben Nielsen, and Adam Arkin + +*homepage*: + +version | toolchain +--------|---------- +``1.0.1`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/JsonCpp.md b/docs/version-specific/supported-software/j/JsonCpp.md new file mode 100644 index 000000000..0731c0ba5 --- /dev/null +++ b/docs/version-specific/supported-software/j/JsonCpp.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# JsonCpp + +JsonCpp is a C++ library that allows manipulating JSON values, including serialization and deserialization to and from strings. It can also preserve existing comment in unserialization/serialization steps, making it a convenient format to store user input files. + +*homepage*: + +version | toolchain +--------|---------- +``0.10.7`` | ``GCCcore/8.2.0`` +``1.9.3`` | ``GCCcore/8.3.0`` +``1.9.4`` | ``GCCcore/10.2.0`` +``1.9.4`` | ``GCCcore/10.3.0`` +``1.9.4`` | ``GCCcore/11.2.0`` +``1.9.4`` | ``GCCcore/9.3.0`` +``1.9.5`` | ``GCCcore/11.3.0`` +``1.9.5`` | ``GCCcore/12.2.0`` +``1.9.5`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/Judy.md b/docs/version-specific/supported-software/j/Judy.md new file mode 100644 index 000000000..59e2731ce --- /dev/null +++ b/docs/version-specific/supported-software/j/Judy.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# Judy + +A C library that implements a dynamic array. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.5`` | ``GCCcore/10.2.0`` +``1.0.5`` | ``GCCcore/10.3.0`` +``1.0.5`` | ``GCCcore/11.2.0`` +``1.0.5`` | ``GCCcore/11.3.0`` +``1.0.5`` | ``GCCcore/12.2.0`` +``1.0.5`` | ``GCCcore/8.2.0`` +``1.0.5`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/Julia.md b/docs/version-specific/supported-software/j/Julia.md new file mode 100644 index 000000000..02a3a0449 --- /dev/null +++ b/docs/version-specific/supported-software/j/Julia.md @@ -0,0 +1,42 @@ +--- +search: + boost: 0.5 +--- +# Julia + +Julia is a high-level, high-performance dynamic programming language for numerical computing + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.1`` | ``-linux-x86_64`` | ``system`` +``1.10.0`` | ``-linux-x86_64`` | ``system`` +``1.2.0`` | ``-linux-x86_64`` | ``system`` +``1.3.1`` | ``-linux-x86_64`` | ``system`` +``1.4.0`` | ``-linux-x86_64`` | ``system`` +``1.4.1`` | ``-linux-x86_64`` | ``system`` +``1.4.2`` | ``-linux-x86_64`` | ``system`` +``1.5.1`` | ``-linux-x86_64`` | ``system`` +``1.5.3`` | ``-linux-x86_64`` | ``system`` +``1.6.0`` | ``-linux-aarch64`` | ``system`` +``1.6.1`` | ``-linux-x86_64`` | ``system`` +``1.6.2`` | ``-linux-x86_64`` | ``system`` +``1.6.4`` | ``-linux-x86_64`` | ``system`` +``1.6.5`` | ``-linux-x86_64`` | ``system`` +``1.6.6`` | ``-linux-x86_64`` | ``system`` +``1.6.7`` | ``-linux-x86_64`` | ``system`` +``1.7.0`` | ``-linux-x86_64`` | ``system`` +``1.7.1`` | ``-linux-x86_64`` | ``system`` +``1.7.2`` | ``-linux-x86_64`` | ``system`` +``1.7.3`` | ``-linux-x86_64`` | ``system`` +``1.8.0`` | ``-linux-x86_64`` | ``system`` +``1.8.2`` | ``-linux-x86_64`` | ``system`` +``1.8.5`` | ``-linux-x86_64`` | ``system`` +``1.9.0`` | ``-linux-x86_64`` | ``system`` +``1.9.2`` | ``-linux-x86_64`` | ``system`` +``1.9.3`` | ``-linux-x86_64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/Jupyter-bundle.md b/docs/version-specific/supported-software/j/Jupyter-bundle.md new file mode 100644 index 000000000..6de9d1477 --- /dev/null +++ b/docs/version-specific/supported-software/j/Jupyter-bundle.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Jupyter-bundle + +This bundle collects a range of Jupyter interfaces (Lab, Notebook and nbclassic), extensions (Jupyter Server Proxy, Jupyter Resource Monitor, Jupyter Lmod) and the JupyterHub. + +*homepage*: + +version | toolchain +--------|---------- +``20230823`` | ``GCCcore/12.3.0`` +``20240522`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/JupyterHub.md b/docs/version-specific/supported-software/j/JupyterHub.md new file mode 100644 index 000000000..90e8b91fc --- /dev/null +++ b/docs/version-specific/supported-software/j/JupyterHub.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# JupyterHub + +JupyterHub is a multiuser version of the Jupyter (IPython) notebook designed for centralized deployments in companies, university classrooms and research labs. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.6.1`` | ``-Python-3.5.1`` | ``foss/2016a`` +``0.8.1`` | ``-Python-3.6.4`` | ``foss/2017a`` +``1.1.0`` | | ``GCCcore/10.2.0`` +``1.4.1`` | | ``GCCcore/10.3.0`` +``3.0.0`` | | ``GCCcore/11.3.0`` +``4.0.1`` | | ``GCCcore/12.2.0`` +``4.0.2`` | | ``GCCcore/12.3.0`` +``4.1.5`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/JupyterLab.md b/docs/version-specific/supported-software/j/JupyterLab.md new file mode 100644 index 000000000..5bb349765 --- /dev/null +++ b/docs/version-specific/supported-software/j/JupyterLab.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# JupyterLab + +JupyterLab is the next-generation user interface for Project Jupyter offering all the familiar building blocks of the classic Jupyter Notebook (notebook, terminal, text editor, file browser, rich outputs, etc.) in a flexible and powerful user interface. JupyterLab will eventually replace the classic Jupyter Notebook. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.5`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.2.5`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``2.2.8`` | | ``GCCcore/10.2.0`` +``3.0.16`` | | ``GCCcore/10.3.0`` +``3.1.6`` | | ``GCCcore/11.2.0`` +``3.2.8`` | | ``GCCcore/10.3.0`` +``3.5.0`` | | ``GCCcore/11.3.0`` +``4.0.3`` | | ``GCCcore/12.2.0`` +``4.0.5`` | | ``GCCcore/12.3.0`` +``4.2.0`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/JupyterNotebook.md b/docs/version-specific/supported-software/j/JupyterNotebook.md new file mode 100644 index 000000000..e78b747b3 --- /dev/null +++ b/docs/version-specific/supported-software/j/JupyterNotebook.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# JupyterNotebook + +The Jupyter Notebook is the original web application for creating and sharing computational documents. It offers a simple, streamlined, document-centric experience. + +*homepage*: + +version | toolchain +--------|---------- +``7.0.2`` | ``GCCcore/12.3.0`` +``7.0.3`` | ``GCCcore/12.2.0`` +``7.2.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/index.md b/docs/version-specific/supported-software/j/index.md new file mode 100644 index 000000000..27a2e1a44 --- /dev/null +++ b/docs/version-specific/supported-software/j/index.md @@ -0,0 +1,58 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (j) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - *j* - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [JAGS](JAGS.md) + * [Jansson](Jansson.md) + * [Jasmine](Jasmine.md) + * [JasPer](JasPer.md) + * [Java](Java.md) + * [JavaFX](JavaFX.md) + * [jax](jax.md) + * [JAXFrontCE](JAXFrontCE.md) + * [jbigkit](jbigkit.md) + * [Jblob](Jblob.md) + * [jedi](jedi.md) + * [jedi-language-server](jedi-language-server.md) + * [Jellyfish](Jellyfish.md) + * [jemalloc](jemalloc.md) + * [jhbuild](jhbuild.md) + * [JiTCODE](JiTCODE.md) + * [jiter](jiter.md) + * [jModelTest](jModelTest.md) + * [Jmol](Jmol.md) + * [Jorg](Jorg.md) + * [joypy](joypy.md) + * [jq](jq.md) + * [json-c](json-c.md) + * [json-fortran](json-fortran.md) + * [JSON-GLib](JSON-GLib.md) + * [JsonCpp](JsonCpp.md) + * [JUBE](JUBE.md) + * [Judy](Judy.md) + * [Julia](Julia.md) + * [JUnit](JUnit.md) + * [Jupyter-bundle](Jupyter-bundle.md) + * [jupyter-contrib-nbextensions](jupyter-contrib-nbextensions.md) + * [jupyter-matlab-proxy](jupyter-matlab-proxy.md) + * [jupyter-resource-usage](jupyter-resource-usage.md) + * [jupyter-rsession-proxy](jupyter-rsession-proxy.md) + * [jupyter-server](jupyter-server.md) + * [jupyter-server-proxy](jupyter-server-proxy.md) + * [JupyterHub](JupyterHub.md) + * [JupyterLab](JupyterLab.md) + * [jupyterlab-lmod](jupyterlab-lmod.md) + * [jupyterlmod](jupyterlmod.md) + * [JupyterNotebook](JupyterNotebook.md) + * [JWM](JWM.md) + * [jxrlib](jxrlib.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - *j* - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/jModelTest.md b/docs/version-specific/supported-software/j/jModelTest.md new file mode 100644 index 000000000..3f4dd6eeb --- /dev/null +++ b/docs/version-specific/supported-software/j/jModelTest.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# jModelTest + +jModelTest is a tool to carry out statistical selection of best-fit models of nucleotide substitution. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.10r20160303`` | ``-Java-1.8.0_92`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/jax.md b/docs/version-specific/supported-software/j/jax.md new file mode 100644 index 000000000..287b98779 --- /dev/null +++ b/docs/version-specific/supported-software/j/jax.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# jax + +Composable transformations of Python+NumPy programs: differentiate, vectorize, JIT to GPU/TPU, and more + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.19`` | | ``foss/2020b`` +``0.2.19`` | | ``fosscuda/2020b`` +``0.2.20`` | | ``foss/2021a`` +``0.2.24`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``0.2.24`` | | ``foss/2021a`` +``0.3.14`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.3.23`` | ``-CUDA-11.4.1`` | ``foss/2021b`` +``0.3.23`` | | ``foss/2022a`` +``0.3.25`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.3.25`` | | ``foss/2022a`` +``0.3.9`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``0.3.9`` | | ``foss/2021a`` +``0.4.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.4.4`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/jbigkit.md b/docs/version-specific/supported-software/j/jbigkit.md new file mode 100644 index 000000000..a38c5d673 --- /dev/null +++ b/docs/version-specific/supported-software/j/jbigkit.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# jbigkit + +JBIG-KIT is a software implementation of the JBIG1 data compression standard (ITU-T T.82), which was designed for bi-level image data, such as scanned documents. + +*homepage*: + +version | toolchain +--------|---------- +``2.1`` | ``GCCcore/10.2.0`` +``2.1`` | ``GCCcore/10.3.0`` +``2.1`` | ``GCCcore/11.2.0`` +``2.1`` | ``GCCcore/11.3.0`` +``2.1`` | ``GCCcore/12.2.0`` +``2.1`` | ``GCCcore/12.3.0`` +``2.1`` | ``GCCcore/13.2.0`` +``2.1`` | ``GCCcore/13.3.0`` +``2.1`` | ``GCCcore/7.3.0`` +``2.1`` | ``GCCcore/8.2.0`` +``2.1`` | ``GCCcore/8.3.0`` +``2.1`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/jedi-language-server.md b/docs/version-specific/supported-software/j/jedi-language-server.md new file mode 100644 index 000000000..c99d3b4f1 --- /dev/null +++ b/docs/version-specific/supported-software/j/jedi-language-server.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# jedi-language-server + +A Python Language Server powered by Jedi. + +*homepage*: + +version | toolchain +--------|---------- +``0.39.0`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/jedi.md b/docs/version-specific/supported-software/j/jedi.md new file mode 100644 index 000000000..6487a53f6 --- /dev/null +++ b/docs/version-specific/supported-software/j/jedi.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# jedi + +Jedi is a static analysis tool for Python that is typically used in IDEs/editors plugins. + +*homepage*: + +version | toolchain +--------|---------- +``0.18.1`` | ``GCCcore/11.3.0`` +``0.19.1`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/jemalloc.md b/docs/version-specific/supported-software/j/jemalloc.md new file mode 100644 index 000000000..45b4ab412 --- /dev/null +++ b/docs/version-specific/supported-software/j/jemalloc.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# jemalloc + +jemalloc is a general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support. + +*homepage*: + +version | toolchain +--------|---------- +``4.1.0`` | ``intel/2016a`` +``4.2.0`` | ``foss/2016a`` +``4.2.0`` | ``intel/2016a`` +``4.2.1`` | ``intel/2016b`` +``4.5.0`` | ``intel/2017a`` +``5.0.1`` | ``GCCcore/6.4.0`` +``5.1.0`` | ``GCCcore/7.3.0`` +``5.2.0`` | ``GCCcore/8.2.0`` +``5.2.1`` | ``GCCcore/10.2.0`` +``5.2.1`` | ``GCCcore/10.3.0`` +``5.2.1`` | ``GCCcore/11.2.0`` +``5.2.1`` | ``GCCcore/11.3.0`` +``5.2.1`` | ``GCCcore/8.3.0`` +``5.2.1`` | ``GCCcore/9.3.0`` +``5.3.0`` | ``GCCcore/11.3.0`` +``5.3.0`` | ``GCCcore/12.2.0`` +``5.3.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/jhbuild.md b/docs/version-specific/supported-software/j/jhbuild.md new file mode 100644 index 000000000..73afda29c --- /dev/null +++ b/docs/version-specific/supported-software/j/jhbuild.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# jhbuild + +JHBuild allows you to automatically download and compile “modules” (i.e. source code packages). Modules are listed in “module set” files, which also include dependency information so that JHBuild can discover what modules need to be built and in what order. + +*homepage*: + +version | toolchain +--------|---------- +``3.15.92`` | ``GCCcore/4.9.3`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/jiter.md b/docs/version-specific/supported-software/j/jiter.md new file mode 100644 index 000000000..b01d4a7a2 --- /dev/null +++ b/docs/version-specific/supported-software/j/jiter.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# jiter + +Fast iterable JSON parser + +*homepage*: + +version | toolchain +--------|---------- +``0.4.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/joypy.md b/docs/version-specific/supported-software/j/joypy.md new file mode 100644 index 000000000..b946aa011 --- /dev/null +++ b/docs/version-specific/supported-software/j/joypy.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# joypy + +Joyplots in Python with matplotlib & pandas + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.2`` | ``-Python-3.7.4`` | ``intel/2019b`` +``0.2.4`` | | ``intel/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/jq.md b/docs/version-specific/supported-software/j/jq.md new file mode 100644 index 000000000..4796d0a98 --- /dev/null +++ b/docs/version-specific/supported-software/j/jq.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# jq + +jq is a lightweight and flexible command-line JSON processor. + +*homepage*: + +version | toolchain +--------|---------- +``1.5`` | ``GCCcore/10.2.0`` +``1.5`` | ``GCCcore/6.4.0`` +``1.6`` | ``GCCcore/11.2.0`` +``1.6`` | ``GCCcore/11.3.0`` +``1.6`` | ``GCCcore/12.2.0`` +``1.6`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/json-c.md b/docs/version-specific/supported-software/j/json-c.md new file mode 100644 index 000000000..a96ae5f5f --- /dev/null +++ b/docs/version-specific/supported-software/j/json-c.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# json-c + +JSON-C implements a reference counting object model that allows you to easily construct JSON objects in C, output them as JSON formatted strings and parse JSON formatted strings back into the C representation of JSON objects. + +*homepage*: + +version | toolchain +--------|---------- +``0.15`` | ``GCCcore/10.2.0`` +``0.15`` | ``GCCcore/10.3.0`` +``0.15`` | ``GCCcore/11.2.0`` +``0.16`` | ``GCCcore/11.3.0`` +``0.16`` | ``GCCcore/12.2.0`` +``0.16`` | ``GCCcore/12.3.0`` +``0.17`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/json-fortran.md b/docs/version-specific/supported-software/j/json-fortran.md new file mode 100644 index 000000000..afa9672e7 --- /dev/null +++ b/docs/version-specific/supported-software/j/json-fortran.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# json-fortran + +JSON-Fortran: A Modern Fortran JSON API + +*homepage*: + +version | toolchain +--------|---------- +``8.3.0`` | ``GCC/10.2.0`` +``8.3.0`` | ``GCC/10.3.0`` +``8.3.0`` | ``GCC/11.2.0`` +``8.3.0`` | ``GCC/11.3.0`` +``8.3.0`` | ``GCC/12.2.0`` +``8.3.0`` | ``iccifort/2020.4.304`` +``8.3.0`` | ``intel-compilers/2022.0.1`` +``8.3.0`` | ``intel-compilers/2022.1.0`` +``8.3.0`` | ``intel-compilers/2022.2.1`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/jupyter-contrib-nbextensions.md b/docs/version-specific/supported-software/j/jupyter-contrib-nbextensions.md new file mode 100644 index 000000000..10e0727c8 --- /dev/null +++ b/docs/version-specific/supported-software/j/jupyter-contrib-nbextensions.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# jupyter-contrib-nbextensions + +A collection of various notebook extensions for Jupyter + +*homepage*: + +version | toolchain +--------|---------- +``0.7.0`` | ``GCCcore/11.3.0`` +``0.7.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/jupyter-matlab-proxy.md b/docs/version-specific/supported-software/j/jupyter-matlab-proxy.md new file mode 100644 index 000000000..1d03ba0b6 --- /dev/null +++ b/docs/version-specific/supported-software/j/jupyter-matlab-proxy.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# jupyter-matlab-proxy + +MATLAB Integration for Jupyter + +*homepage*: + +version | toolchain +--------|---------- +``0.12.2`` | ``GCCcore/12.3.0`` +``0.3.4`` | ``GCCcore/10.3.0`` +``0.5.0`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/jupyter-resource-usage.md b/docs/version-specific/supported-software/j/jupyter-resource-usage.md new file mode 100644 index 000000000..24d93c120 --- /dev/null +++ b/docs/version-specific/supported-software/j/jupyter-resource-usage.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# jupyter-resource-usage + +Jupyter Notebook Extension for monitoring your own Resource Usage (memory and/or CPU) + +*homepage*: + +version | toolchain +--------|---------- +``0.6.1`` | ``GCCcore/10.3.0`` +``0.6.2`` | ``GCCcore/10.3.0`` +``0.6.3`` | ``GCCcore/11.3.0`` +``1.0.0`` | ``GCCcore/12.3.0`` +``1.0.2`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/jupyter-rsession-proxy.md b/docs/version-specific/supported-software/j/jupyter-rsession-proxy.md new file mode 100644 index 000000000..926194c27 --- /dev/null +++ b/docs/version-specific/supported-software/j/jupyter-rsession-proxy.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# jupyter-rsession-proxy + +Jupyter extensions for running an RStudio rsession proxy + +*homepage*: + +version | toolchain +--------|---------- +``2.1.0`` | ``GCCcore/11.3.0`` +``2.2.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/jupyter-server-proxy.md b/docs/version-specific/supported-software/j/jupyter-server-proxy.md new file mode 100644 index 000000000..2f2cf6f62 --- /dev/null +++ b/docs/version-specific/supported-software/j/jupyter-server-proxy.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# jupyter-server-proxy + +Jupyter Server Proxy lets you run arbitrary external processes (such as RStudio, Shiny Server, Syncthing, PostgreSQL, Code Server, etc) alongside your notebook server and provide authenticated web access to them using a path like /rstudio next to others like /lab. Alongside the python package that provides the main functionality, the JupyterLab extension (@jupyterlab/server-proxy) provides buttons in the JupyterLab launcher window to get to RStudio for example. + +*homepage*: + +version | toolchain +--------|---------- +``3.2.1`` | ``GCCcore/10.3.0`` +``3.2.2`` | ``GCCcore/11.3.0`` +``3.2.2`` | ``GCCcore/12.2.0`` +``4.0.0`` | ``GCCcore/12.3.0`` +``4.1.2`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/jupyter-server.md b/docs/version-specific/supported-software/j/jupyter-server.md new file mode 100644 index 000000000..8aa0d96c4 --- /dev/null +++ b/docs/version-specific/supported-software/j/jupyter-server.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# jupyter-server + +The Jupyter Server provides the backend (i.e. the core services, APIs, and REST endpoints) for Jupyter web applications like Jupyter notebook, JupyterLab, and Voila. + +*homepage*: + +version | toolchain +--------|---------- +``1.21.0`` | ``GCCcore/11.3.0`` +``2.14.0`` | ``GCCcore/13.2.0`` +``2.7.0`` | ``GCCcore/12.2.0`` +``2.7.2`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/jupyterlab-lmod.md b/docs/version-specific/supported-software/j/jupyterlab-lmod.md new file mode 100644 index 000000000..babf26643 --- /dev/null +++ b/docs/version-specific/supported-software/j/jupyterlab-lmod.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# jupyterlab-lmod + +JupyterLab extension that allows user to interact with environment modules before launching kernels. The extension use Lmod's Python interface to accomplish module related task like loading, unloading, saving collection, etc. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.2`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/jupyterlmod.md b/docs/version-specific/supported-software/j/jupyterlmod.md new file mode 100644 index 000000000..a234dbd4b --- /dev/null +++ b/docs/version-specific/supported-software/j/jupyterlmod.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# jupyterlmod + +Jupyter interactive notebook server extension that allows user to interact with environment modules before launching kernels. The extension use Lmod's Python interface to accomplish module related task like loading, unloading, saving collection, etc. + +*homepage*: + +version | toolchain +--------|---------- +``3.0.0`` | ``GCCcore/11.3.0`` +``4.0.3`` | ``GCCcore/11.3.0`` +``4.0.3`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/j/jxrlib.md b/docs/version-specific/supported-software/j/jxrlib.md new file mode 100644 index 000000000..298f8ef62 --- /dev/null +++ b/docs/version-specific/supported-software/j/jxrlib.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# jxrlib + +Open source implementation of jpegxr + +*homepage*: + +version | toolchain +--------|---------- +``1.1`` | ``GCCcore/10.2.0`` +``1.1`` | ``GCCcore/10.3.0`` +``1.1`` | ``GCCcore/11.3.0`` +``1.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/KAT.md b/docs/version-specific/supported-software/k/KAT.md new file mode 100644 index 000000000..1da18f749 --- /dev/null +++ b/docs/version-specific/supported-software/k/KAT.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# KAT + +The K-mer Analysis Toolkit (KAT) contains a number of tools that analyse and compare K-mer spectra. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.4.2`` | ``-Python-3.6.4`` | ``foss/2018a`` +``2.4.2`` | ``-Python-3.7.2`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/KITE.md b/docs/version-specific/supported-software/k/KITE.md new file mode 100644 index 000000000..277586496 --- /dev/null +++ b/docs/version-specific/supported-software/k/KITE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# KITE + +KITE is an open-source Python/C++ software suite for efficient real-space tight-binding (TB) simulations of electronic structure and bulk quantum transport properties of disordered systems scalable to multi billions of atomic orbitals. + +*homepage*: + +version | toolchain +--------|---------- +``1.1`` | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/KMC.md b/docs/version-specific/supported-software/k/KMC.md new file mode 100644 index 000000000..dca96cdd4 --- /dev/null +++ b/docs/version-specific/supported-software/k/KMC.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# KMC + +KMC is a disk-based programm for counting k-mers from (possibly gzipped) FASTQ/FASTA files. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.1.0`` | | ``foss/2018a`` +``3.1.0`` | | ``foss/2018b`` +``3.1.1`` | ``-Python-3.7.2`` | ``GCC/8.2.0-2.31.1`` +``3.1.2rc1`` | ``-Python-3.7.4`` | ``GCC/8.3.0`` +``3.2.1`` | ``-Python-2.7.18`` | ``GCC/11.2.0`` +``3.2.1`` | | ``GCC/11.2.0`` +``3.2.2`` | | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/KMCP.md b/docs/version-specific/supported-software/k/KMCP.md new file mode 100644 index 000000000..06166eab6 --- /dev/null +++ b/docs/version-specific/supported-software/k/KMCP.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# KMCP + +KMCP: accurate metagenomic profiling of both prokaryotic and viral populations by pseudo-mapping + +*homepage*: + +version | toolchain +--------|---------- +``0.9.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/KNIME.md b/docs/version-specific/supported-software/k/KNIME.md new file mode 100644 index 000000000..25bfd5946 --- /dev/null +++ b/docs/version-specific/supported-software/k/KNIME.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# KNIME + +KNIME Analytics Platform is the open source software for creating data science applications and services. KNIME stands for KoNstanz Information MinEr. + +*homepage*: + +version | toolchain +--------|---------- +``3.6.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/KWIML.md b/docs/version-specific/supported-software/k/KWIML.md new file mode 100644 index 000000000..d969b9ab9 --- /dev/null +++ b/docs/version-specific/supported-software/k/KWIML.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# KWIML + +The Kitware Information Macro Library + +*homepage*: + +version | toolchain +--------|---------- +``20180201`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/KaHIP.md b/docs/version-specific/supported-software/k/KaHIP.md new file mode 100644 index 000000000..c045c47f8 --- /dev/null +++ b/docs/version-specific/supported-software/k/KaHIP.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# KaHIP + +The graph partitioning framework KaHIP -- Karlsruhe High Quality Partitioning. + +*homepage*: + +version | toolchain +--------|---------- +``3.14`` | ``gompi/2022a`` +``3.14`` | ``gompi/2022b`` +``3.16`` | ``gompi/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/Kaiju.md b/docs/version-specific/supported-software/k/Kaiju.md new file mode 100644 index 000000000..dbcd739a4 --- /dev/null +++ b/docs/version-specific/supported-software/k/Kaiju.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Kaiju + +Kaiju is a program for sensitive taxonomic classification of high-throughput sequencing reads from metagenomic whole genome sequencing experiments + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5.0`` | | ``intel/2016b`` +``1.7.2`` | ``-Python-3.7.2`` | ``iimpi/2019a`` +``1.7.3`` | ``-Python-3.7.4`` | ``gompi/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/Kaleido.md b/docs/version-specific/supported-software/k/Kaleido.md new file mode 100644 index 000000000..7c66e4f5c --- /dev/null +++ b/docs/version-specific/supported-software/k/Kaleido.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Kaleido + +Fast static image export for web-based visualization libraries with zero dependencies + +*homepage*: + +version | toolchain +--------|---------- +``0.1.0`` | ``GCCcore/10.2.0`` +``0.2.1`` | ``GCCcore/10.3.0`` +``0.2.1`` | ``GCCcore/11.3.0`` +``0.2.1`` | ``GCCcore/12.2.0`` +``0.2.1`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/Kalign.md b/docs/version-specific/supported-software/k/Kalign.md new file mode 100644 index 000000000..fa35833f5 --- /dev/null +++ b/docs/version-specific/supported-software/k/Kalign.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# Kalign + +Kalign is a fast multiple sequence alignment program for biological sequences. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.4`` | ``GCCcore/10.2.0`` +``3.3.1`` | ``GCCcore/10.2.0`` +``3.3.1`` | ``GCCcore/10.3.0`` +``3.3.2`` | ``GCCcore/11.2.0`` +``3.3.5`` | ``GCCcore/11.3.0`` +``3.4.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/Kent_tools.md b/docs/version-specific/supported-software/k/Kent_tools.md new file mode 100644 index 000000000..53d9b5311 --- /dev/null +++ b/docs/version-specific/supported-software/k/Kent_tools.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# Kent_tools + +Kent tools: collection of tools used by the UCSC genome browser. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20130806`` | ``-linux.x86_64`` | ``system`` +``20171107`` | ``-linux.x86_64`` | ``system`` +``20180716`` | ``-linux.x86_64`` | ``system`` +``20190326`` | ``-linux.x86_64`` | ``system`` +``401`` | | ``gompi/2019b`` +``411`` | | ``GCC/10.2.0`` +``418`` | | ``GCC/10.3.0`` +``422`` | | ``GCC/11.2.0`` +``442`` | | ``GCC/11.3.0`` +``457`` | | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/Keras.md b/docs/version-specific/supported-software/k/Keras.md new file mode 100644 index 000000000..721a3fb02 --- /dev/null +++ b/docs/version-specific/supported-software/k/Keras.md @@ -0,0 +1,43 @@ +--- +search: + boost: 0.5 +--- +# Keras + +Keras is a minimalist, highly modular neural networks library, written in Python and capable of running on top of either TensorFlow or Theano. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.8`` | ``-Python-3.5.2`` | ``intel/2016b`` +``1.1.0`` | ``-Python-3.5.2`` | ``intel/2016b`` +``2.0.4`` | ``-Python-2.7.13`` | ``intel/2017a`` +``2.0.4`` | ``-Python-3.6.1`` | ``intel/2017a`` +``2.0.5`` | ``-Python-3.6.1`` | ``intel/2017a`` +``2.0.8`` | ``-Python-3.6.1`` | ``intel/2017a`` +``2.1.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.1.1`` | ``-Python-3.6.3`` | ``intel/2017b`` +``2.1.2`` | ``-Python-3.6.3`` | ``foss/2017b`` +``2.1.2`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.1.3`` | ``-Python-3.6.3`` | ``foss/2017b`` +``2.1.3`` | ``-Python-3.6.3`` | ``intel/2017b`` +``2.2.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``2.2.0`` | ``-Python-2.7.14`` | ``fosscuda/2017b`` +``2.2.0`` | ``-Python-3.6.3`` | ``fosscuda/2017b`` +``2.2.2`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``2.2.4`` | ``-Python-3.6.6`` | ``foss/2018b`` +``2.2.4`` | ``-Python-3.7.2`` | ``foss/2019a`` +``2.2.4`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``2.2.4`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` +``2.2.4`` | ``-Python-3.6.4`` | ``intel/2018a`` +``2.3.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.3.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2.3.1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``2.4.3`` | | ``foss/2020b`` +``2.4.3`` | ``-TensorFlow-2.5.0`` | ``fosscuda/2020b`` +``2.4.3`` | | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/KerasTuner.md b/docs/version-specific/supported-software/k/KerasTuner.md new file mode 100644 index 000000000..0665c494d --- /dev/null +++ b/docs/version-specific/supported-software/k/KerasTuner.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# KerasTuner + +KerasTuner is an easy-to-use, scalable hyperparameter optimization framework that solves the pain points of hyperparameter search. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.5`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/KmerGenie.md b/docs/version-specific/supported-software/k/KmerGenie.md new file mode 100644 index 000000000..1bd8ff7ea --- /dev/null +++ b/docs/version-specific/supported-software/k/KmerGenie.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# KmerGenie + +KmerGenie estimates the best k-mer length for genome de novo assembly. + +*homepage*: + +version | toolchain +--------|---------- +``1.7044`` | ``intel/2017a`` +``1.7048`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/Kraken.md b/docs/version-specific/supported-software/k/Kraken.md new file mode 100644 index 000000000..06c1412a5 --- /dev/null +++ b/docs/version-specific/supported-software/k/Kraken.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# Kraken + +Kraken is a system for assigning taxonomic labels to short DNA sequences, usually obtained through metagenomic studies. Previous attempts by other bioinformatics software to accomplish this task have often used sequence alignment or machine learning techniques that were quite slow, leading to the development of less sensitive but much faster abundance estimation programs. Kraken aims to achieve high sensitivity and high speed by utilizing exact alignments of k-mers and a novel classification algorithm. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.5-beta`` | ``-Perl-5.22.1`` | ``foss/2016a`` +``0.10.5-beta`` | ``-Perl-5.24.0`` | ``foss/2016b`` +``1.0`` | ``-Perl-5.26.1`` | ``intel/2018a`` +``1.1`` | ``-Perl-5.28.0`` | ``foss/2018b`` +``1.1.1`` | | ``GCCcore/10.2.0`` +``1.1.1`` | | ``GCCcore/10.3.0`` +``1.1.1`` | | ``GCCcore/11.3.0`` +``1.1.1`` | ``-Perl-5.28.1`` | ``GCCcore/8.2.0`` +``1.1.1`` | | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/Kraken2.md b/docs/version-specific/supported-software/k/Kraken2.md new file mode 100644 index 000000000..403d980a4 --- /dev/null +++ b/docs/version-specific/supported-software/k/Kraken2.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# Kraken2 + +Kraken is a system for assigning taxonomic labels to short DNA sequences, usually obtained through metagenomic studies. Previous attempts by other bioinformatics software to accomplish this task have often used sequence alignment or machine learning techniques that were quite slow, leading to the development of less sensitive but much faster abundance estimation programs. Kraken aims to achieve high sensitivity and high speed by utilizing exact alignments of k-mers and a novel classification algorithm. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.6-beta`` | ``-Perl-5.26.1`` | ``foss/2018a`` +``2.0.7-beta`` | ``-Perl-5.28.0`` | ``foss/2018b`` +``2.0.8-beta`` | ``-Perl-5.30.0`` | ``gompi/2019b`` +``2.0.9-beta`` | ``-Perl-5.28.0`` | ``foss/2018b`` +``2.0.9-beta`` | ``-Perl-5.30.2`` | ``gompi/2020a`` +``2.1.1`` | | ``gompi/2020b`` +``2.1.2`` | | ``gompi/2021a`` +``2.1.2`` | | ``gompi/2021b`` +``2.1.2`` | | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/KrakenUniq.md b/docs/version-specific/supported-software/k/KrakenUniq.md new file mode 100644 index 000000000..a5e409520 --- /dev/null +++ b/docs/version-specific/supported-software/k/KrakenUniq.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# KrakenUniq + +KrakenUniq: confident and fast metagenomics classification using unique k-mer counts + +*homepage*: + +version | toolchain +--------|---------- +``1.0.3`` | ``GCC/11.3.0`` +``1.0.4`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/Kratos.md b/docs/version-specific/supported-software/k/Kratos.md new file mode 100644 index 000000000..048f52fca --- /dev/null +++ b/docs/version-specific/supported-software/k/Kratos.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Kratos + +Kratos Multiphysics (A.K.A Kratos) is a framework for building parallel multi-disciplinary simulation software. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``6.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``6.0`` | ``-Python-3.6.4`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/KronaTools.md b/docs/version-specific/supported-software/k/KronaTools.md new file mode 100644 index 000000000..3045de3ae --- /dev/null +++ b/docs/version-specific/supported-software/k/KronaTools.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# KronaTools + +Krona Tools is a set of scripts to create Krona charts from several Bioinformatics tools as well as from text and XML files. + +*homepage*: + +version | toolchain +--------|---------- +``2.7`` | ``GCCcore/7.3.0`` +``2.7.1`` | ``GCCcore/8.2.0`` +``2.8`` | ``GCC/10.3.0`` +``2.8`` | ``GCCcore/10.2.0`` +``2.8.1`` | ``GCCcore/11.2.0`` +``2.8.1`` | ``GCCcore/11.3.0`` +``2.8.1`` | ``GCCcore/12.2.0`` +``2.8.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/KyotoCabinet.md b/docs/version-specific/supported-software/k/KyotoCabinet.md new file mode 100644 index 000000000..99fa5dea2 --- /dev/null +++ b/docs/version-specific/supported-software/k/KyotoCabinet.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# KyotoCabinet + +Kyoto Cabinet is a library of routines for managing a database. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.77`` | ``GCCcore/7.3.0`` +``1.2.77`` | ``GCCcore/8.2.0`` +``1.2.80`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/index.md b/docs/version-specific/supported-software/k/index.md new file mode 100644 index 000000000..2bb4cb153 --- /dev/null +++ b/docs/version-specific/supported-software/k/index.md @@ -0,0 +1,48 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (k) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - *k* - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [KaHIP](KaHIP.md) + * [Kaiju](Kaiju.md) + * [Kaleido](Kaleido.md) + * [Kalign](Kalign.md) + * [kallisto](kallisto.md) + * [KAT](KAT.md) + * [kb-python](kb-python.md) + * [kbproto](kbproto.md) + * [kedro](kedro.md) + * [Kent_tools](Kent_tools.md) + * [Keras](Keras.md) + * [KerasTuner](KerasTuner.md) + * [khmer](khmer.md) + * [kim-api](kim-api.md) + * [kineto](kineto.md) + * [king](king.md) + * [KITE](KITE.md) + * [kma](kma.md) + * [KMC](KMC.md) + * [KMCP](KMCP.md) + * [KmerGenie](KmerGenie.md) + * [kneaddata](kneaddata.md) + * [KNIME](KNIME.md) + * [kpcalg](kpcalg.md) + * [Kraken](Kraken.md) + * [Kraken2](Kraken2.md) + * [KrakenUniq](KrakenUniq.md) + * [Kratos](Kratos.md) + * [krbalancing](krbalancing.md) + * [KronaTools](KronaTools.md) + * [kwant](kwant.md) + * [KWIML](KWIML.md) + * [kWIP](kWIP.md) + * [KyotoCabinet](KyotoCabinet.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - *k* - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/kWIP.md b/docs/version-specific/supported-software/k/kWIP.md new file mode 100644 index 000000000..2240b79ac --- /dev/null +++ b/docs/version-specific/supported-software/k/kWIP.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# kWIP + +This software implements a de novo, alignment free measure of sample genetic dissimilarity which operates upon raw sequencing reads. It is able to calculate the genetic dissimilarity between samples without any reference genome, and without assembling one. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.0`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/kallisto.md b/docs/version-specific/supported-software/k/kallisto.md new file mode 100644 index 000000000..ce6dad34a --- /dev/null +++ b/docs/version-specific/supported-software/k/kallisto.md @@ -0,0 +1,34 @@ +--- +search: + boost: 0.5 +--- +# kallisto + +kallisto is a program for quantifying abundances of transcripts from RNA-Seq data, or more generally of target sequences using high-throughput sequencing reads. + +*homepage*: + +version | toolchain +--------|---------- +``0.42.5`` | ``foss/2016a`` +``0.43.0`` | ``intel/2016b`` +``0.43.1`` | ``foss/2016b`` +``0.43.1`` | ``intel/2017a`` +``0.43.1`` | ``intel/2017b`` +``0.44.0`` | ``foss/2016b`` +``0.44.0`` | ``intel/2018a`` +``0.45.0`` | ``foss/2018b`` +``0.45.1`` | ``foss/2019a`` +``0.46.0`` | ``intel/2019a`` +``0.46.1`` | ``foss/2019b`` +``0.46.1`` | ``iimpi/2020a`` +``0.46.1`` | ``iimpi/2020b`` +``0.46.2`` | ``foss/2020b`` +``0.48.0`` | ``gompi/2021a`` +``0.48.0`` | ``gompi/2021b`` +``0.48.0`` | ``gompi/2022a`` +``0.50.1`` | ``gompi/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/kb-python.md b/docs/version-specific/supported-software/k/kb-python.md new file mode 100644 index 000000000..987f76988 --- /dev/null +++ b/docs/version-specific/supported-software/k/kb-python.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# kb-python + +kallisto | bustools is a workflow for pre-processing single-cell RNA-seq data. Pre-processing single-cell RNA-seq involves: (1) association of reads with their cells of origin, (2) collapsing of reads according to unique molecular identifiers (UMIs), and (3) generation of gene or feature counts from the reads to generate a cell x gene matrix. + +*homepage*: + +version | toolchain +--------|---------- +``0.27.3`` | ``foss/2021b`` +``0.27.3`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/kbproto.md b/docs/version-specific/supported-software/k/kbproto.md new file mode 100644 index 000000000..35c45f093 --- /dev/null +++ b/docs/version-specific/supported-software/k/kbproto.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# kbproto + +X.org KBProto protocol headers. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.7`` | ``foss/2016a`` +``1.0.7`` | ``gimkl/2.11.5`` +``1.0.7`` | ``intel/2016a`` +``1.0.7`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/kedro.md b/docs/version-specific/supported-software/k/kedro.md new file mode 100644 index 000000000..b96f1c574 --- /dev/null +++ b/docs/version-specific/supported-software/k/kedro.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# kedro + +Kedro is an open-source Python framework that applies software engineering best-practice to data and machine-learning pipelines. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.16.5`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/khmer.md b/docs/version-specific/supported-software/k/khmer.md new file mode 100644 index 000000000..b33c02e93 --- /dev/null +++ b/docs/version-specific/supported-software/k/khmer.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# khmer + +In-memory nucleotide sequence k-mer counting, filtering, graph traversal and more + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4.1`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2.1.1`` | ``-Python-2.7.13`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/kim-api.md b/docs/version-specific/supported-software/k/kim-api.md new file mode 100644 index 000000000..038f45552 --- /dev/null +++ b/docs/version-specific/supported-software/k/kim-api.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# kim-api + +Open Knowledgebase of Interatomic Models. KIM is an API and OpenKIM is a collection of interatomic models (potentials) for atomistic simulations. This is a library that can be used by simulation programs to get access to the models in the OpenKIM database. This EasyBuild only installs the API, the models can be installed with the package openkim-models, or the user can install them manually by running kim-api-collections-management install user MODELNAME or kim-api-collections-management install user OpenKIM to install them all. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.2`` | ``foss/2019a`` +``2.1.2`` | ``intel/2019a`` +``2.1.3`` | ``foss/2019b`` +``2.1.3`` | ``foss/2020a`` +``2.1.3`` | ``intel/2019b`` +``2.1.3`` | ``intel/2020a`` +``2.2.1`` | ``GCC/10.2.0`` +``2.2.1`` | ``GCC/10.3.0`` +``2.2.1`` | ``iccifort/2020.4.304`` +``2.3.0`` | ``GCC/11.2.0`` +``2.3.0`` | ``GCC/11.3.0`` +``2.3.0`` | ``GCC/12.2.0`` +``2.3.0`` | ``GCC/12.3.0`` +``2.3.0`` | ``intel-compilers/2023.1.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/kineto.md b/docs/version-specific/supported-software/k/kineto.md new file mode 100644 index 000000000..1f84c1919 --- /dev/null +++ b/docs/version-specific/supported-software/k/kineto.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# kineto + +A CPU+GPU Profiling library that provides access to timeline traces and hardware performance counters + +*homepage*: + +version | toolchain +--------|---------- +``0.4.0`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/king.md b/docs/version-specific/supported-software/k/king.md new file mode 100644 index 000000000..2fe0bffa0 --- /dev/null +++ b/docs/version-specific/supported-software/k/king.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# king + +KING is a toolset that makes use of high-throughput SNP data typically seen in a genome-wide association study (GWAS) or a sequencing project. Applications of KING include family relationship inference and pedigree error checking, quality control, population substructure identification, forensics, gene mapping, etc. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.4`` | ``system`` +``2.2.7`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/kma.md b/docs/version-specific/supported-software/k/kma.md new file mode 100644 index 000000000..226f33409 --- /dev/null +++ b/docs/version-specific/supported-software/k/kma.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# kma + +KMA is a mapping method designed to map raw reads directly against redundant databases, in an ultra-fast manner using seed and extend. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.22`` | ``intel/2019b`` +``1.4.12a`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/kneaddata.md b/docs/version-specific/supported-software/k/kneaddata.md new file mode 100644 index 000000000..0dd9b7e28 --- /dev/null +++ b/docs/version-specific/supported-software/k/kneaddata.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# kneaddata + +KneadData is a tool designed to perform quality control on metagenomic and metatranscriptomic sequencing data, especially data from microbiome experiments. + +*homepage*: + +version | toolchain +--------|---------- +``0.12.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/kpcalg.md b/docs/version-specific/supported-software/k/kpcalg.md new file mode 100644 index 000000000..05d45a32f --- /dev/null +++ b/docs/version-specific/supported-software/k/kpcalg.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# kpcalg + +Kernel PC (kPC) algorithm for causal structure learning and causal inference using graphical models. kPC is a version of PC algorithm that uses kernel based independence criteria in order to be able to deal with non-linear relationships and non-Gaussian noise. Includes pcalg: Functions for causal structure learning and causal inference using graphical models. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.1`` | ``-R-3.5.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/krbalancing.md b/docs/version-specific/supported-software/k/krbalancing.md new file mode 100644 index 000000000..0b1cab698 --- /dev/null +++ b/docs/version-specific/supported-software/k/krbalancing.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# krbalancing + +A C++ extension for Python which computes K.R. balanced matrices. + +*homepage*: + +version | toolchain +--------|---------- +``0.5.0b0`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/k/kwant.md b/docs/version-specific/supported-software/k/kwant.md new file mode 100644 index 000000000..7360763f3 --- /dev/null +++ b/docs/version-specific/supported-software/k/kwant.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# kwant + +Kwant is a free (open source), powerful, and easy to use Python package for numerical calculations on tight-binding models with a strong focus on quantum transport. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4.1`` | ``-Python-3.7.2`` | ``foss/2019a`` +``1.4.1`` | ``-Python-3.7.2`` | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LADR.md b/docs/version-specific/supported-software/l/LADR.md new file mode 100644 index 000000000..0db86e9d4 --- /dev/null +++ b/docs/version-specific/supported-software/l/LADR.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# LADR + +Prover9, Mace4, and several related programs come packaged in a system called LADR (Library for Automated Deduction Research). + +*homepage*: + +version | toolchain +--------|---------- +``2009-11A`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LAME.md b/docs/version-specific/supported-software/l/LAME.md new file mode 100644 index 000000000..d32227f0c --- /dev/null +++ b/docs/version-specific/supported-software/l/LAME.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# LAME + +LAME is a high quality MPEG Audio Layer III (MP3) encoder licensed under the LGPL. + +*homepage*: + +version | toolchain +--------|---------- +``3.100`` | ``GCCcore/10.2.0`` +``3.100`` | ``GCCcore/10.3.0`` +``3.100`` | ``GCCcore/11.2.0`` +``3.100`` | ``GCCcore/11.3.0`` +``3.100`` | ``GCCcore/12.2.0`` +``3.100`` | ``GCCcore/12.3.0`` +``3.100`` | ``GCCcore/13.2.0`` +``3.100`` | ``GCCcore/6.4.0`` +``3.100`` | ``GCCcore/7.3.0`` +``3.100`` | ``GCCcore/8.2.0`` +``3.100`` | ``GCCcore/8.3.0`` +``3.100`` | ``GCCcore/9.3.0`` +``3.100`` | ``intel/2017b`` +``3.99.5`` | ``foss/2016b`` +``3.99.5`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LAMMPS.md b/docs/version-specific/supported-software/l/LAMMPS.md new file mode 100644 index 000000000..15499e1b8 --- /dev/null +++ b/docs/version-specific/supported-software/l/LAMMPS.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# LAMMPS + +LAMMPS is a classical molecular dynamics code, and an acronym for Large-scale Atomic/Molecular Massively Parallel Simulator. LAMMPS has potentials for solid-state materials (metals, semiconductors) and soft matter (biomolecules, polymers) and coarse-grained or mesoscopic systems. It can be used to model atoms or, more generically, as a parallel particle simulator at the atomic, meso, or continuum scale. LAMMPS runs on single processors or in parallel using message-passing techniques and a spatial-decomposition of the simulation domain. The code is designed to be easy to modify or extend with new functionality. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``23Jun2022`` | ``-kokkos-CUDA-11.3.1`` | ``foss/2021a`` +``23Jun2022`` | ``-kokkos`` | ``foss/2021a`` +``23Jun2022`` | ``-kokkos-CUDA-11.4.1`` | ``foss/2021b`` +``23Jun2022`` | ``-kokkos`` | ``foss/2021b`` +``23Jun2022`` | ``-kokkos`` | ``foss/2022a`` +``2Aug2023_update2`` | ``-kokkos-CUDA-12.1.1`` | ``foss/2023a`` +``2Aug2023_update2`` | ``-kokkos`` | ``foss/2023a`` +``3Mar2020`` | ``-Python-3.7.4-kokkos`` | ``foss/2019b`` +``3Mar2020`` | ``-Python-3.8.2-kokkos`` | ``foss/2020a`` +``3Mar2020`` | ``-Python-3.7.4-kokkos`` | ``intel/2019b`` +``3Mar2020`` | ``-Python-3.8.2-kokkos`` | ``intel/2020a`` +``7Aug2019`` | ``-Python-3.7.4-kokkos`` | ``foss/2019b`` +``7Aug2019`` | ``-Python-3.7.4-kokkos-OCTP`` | ``intel/2019b`` +``7Aug2019`` | ``-Python-3.7.4-kokkos`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LAPACK.md b/docs/version-specific/supported-software/l/LAPACK.md new file mode 100644 index 000000000..24e171534 --- /dev/null +++ b/docs/version-specific/supported-software/l/LAPACK.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# LAPACK + +LAPACK is written in Fortran90 and provides routines for solving systems of simultaneous linear equations, least-squares solutions of linear systems of equations, eigenvalue problems, and singular value problems. + +*homepage*: + +version | toolchain +--------|---------- +``3.10.1`` | ``GCC/11.2.0`` +``3.10.1`` | ``GCC/11.3.0`` +``3.12.0`` | ``GCC/12.3.0`` +``3.12.0`` | ``GCC/13.2.0`` +``3.8.0`` | ``GCC/7.3.0-2.30`` +``3.9.1`` | ``GCC/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LASSO-Python.md b/docs/version-specific/supported-software/l/LASSO-Python.md new file mode 100644 index 000000000..5f9bbd74a --- /dev/null +++ b/docs/version-specific/supported-software/l/LASSO-Python.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# LASSO-Python + +This python library is designed for general purpose usage in the field of Computer Aided Engineering (CAE). It's name originates from the original initiator and donator of the project Lasso GmbH. The library is now maintained by an open-source community. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.0`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LAST.md b/docs/version-specific/supported-software/l/LAST.md new file mode 100644 index 000000000..77472dd11 --- /dev/null +++ b/docs/version-specific/supported-software/l/LAST.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# LAST + +LAST finds similar regions between sequences. + +*homepage*: + +version | toolchain +--------|---------- +``1045`` | ``intel/2019b`` +``1179`` | ``GCC/10.2.0`` +``869`` | ``intel/2017a`` +``914`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LASTZ.md b/docs/version-specific/supported-software/l/LASTZ.md new file mode 100644 index 000000000..843a2b05d --- /dev/null +++ b/docs/version-specific/supported-software/l/LASTZ.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# LASTZ + +LASTZ is a program for aligning DNA sequences, a pairwise aligner. Originally designed to handle sequences the size of human chromosomes and from different species, it is also useful for sequences produced by NGS sequencing technologies such as Roche 454. + +*homepage*: + +version | toolchain +--------|---------- +``1.02.00`` | ``GCCcore/8.2.0`` +``1.02.00`` | ``foss/2016a`` +``1.04.03`` | ``foss/2019b`` +``1.04.22`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LBFGS++.md b/docs/version-specific/supported-software/l/LBFGS++.md new file mode 100644 index 000000000..f11aea8b9 --- /dev/null +++ b/docs/version-specific/supported-software/l/LBFGS++.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# LBFGS++ + +A header-only C++ library for L-BFGS and L-BFGS-B algorithms + +*homepage*: + +version | toolchain +--------|---------- +``0.1.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LCov.md b/docs/version-specific/supported-software/l/LCov.md new file mode 100644 index 000000000..e5f694570 --- /dev/null +++ b/docs/version-specific/supported-software/l/LCov.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# LCov + +LCOV - the LTP GCOV extension + +*homepage*: + +version | toolchain +--------|---------- +``1.13`` | ``GCCcore/7.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LDC.md b/docs/version-specific/supported-software/l/LDC.md new file mode 100644 index 000000000..1e0a1d099 --- /dev/null +++ b/docs/version-specific/supported-software/l/LDC.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# LDC + +The LLVM-based D Compiler + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.17.6`` | ``-x86_64`` | ``system`` +``1.24.0`` | ``-x86_64`` | ``system`` +``1.25.1`` | | ``GCCcore/10.2.0`` +``1.26.0`` | | ``GCCcore/10.3.0`` +``1.30.0`` | | ``GCCcore/11.3.0`` +``1.36.0`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LEMON.md b/docs/version-specific/supported-software/l/LEMON.md new file mode 100644 index 000000000..5344a140f --- /dev/null +++ b/docs/version-specific/supported-software/l/LEMON.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# LEMON + +LEMON stands for Library for Efficient Modeling and Optimization in Networks. It is a C++ template library providing efficient implementations of common data structures and algorithms with focus on combinatorial optimization tasks connected mainly with graphs and networks. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.1`` | ``GCC/8.2.0-2.31.1`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LERC.md b/docs/version-specific/supported-software/l/LERC.md new file mode 100644 index 000000000..aacd7a339 --- /dev/null +++ b/docs/version-specific/supported-software/l/LERC.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# LERC + +LERC is an open-source image or raster format which supports rapid encoding and decoding for any pixel type (not just RGB or Byte). Users set the maximum compression error per pixel while encoding, so the precision of the original input image is preserved (within user defined error bounds). + +*homepage*: + +version | toolchain +--------|---------- +``3.0`` | ``GCCcore/10.2.0`` +``3.0`` | ``GCCcore/10.3.0`` +``4.0.0`` | ``GCCcore/11.3.0`` +``4.0.0`` | ``GCCcore/12.2.0`` +``4.0.0`` | ``GCCcore/12.3.0`` +``4.0.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LHAPDF.md b/docs/version-specific/supported-software/l/LHAPDF.md new file mode 100644 index 000000000..7f29aa153 --- /dev/null +++ b/docs/version-specific/supported-software/l/LHAPDF.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# LHAPDF + +Les Houches Parton Density Function LHAPDF is the standard tool for evaluating parton distribution functions (PDFs) in high-energy physics. + +*homepage*: + +version | toolchain +--------|---------- +``6.5.3`` | ``GCC/11.3.0`` +``6.5.4`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LIANA.md b/docs/version-specific/supported-software/l/LIANA.md new file mode 100644 index 000000000..a2edeab0a --- /dev/null +++ b/docs/version-specific/supported-software/l/LIANA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# LIANA + +LIANA: a LIgand-receptor ANalysis frAmework. LIANA enables the use of any combination of ligand-receptor methods and resources, and their consensus. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.11`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LIBSVM-MATLAB.md b/docs/version-specific/supported-software/l/LIBSVM-MATLAB.md new file mode 100644 index 000000000..be5e88fd0 --- /dev/null +++ b/docs/version-specific/supported-software/l/LIBSVM-MATLAB.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# LIBSVM-MATLAB + +MATLAB interface of LIBSVM, an integrated software for support vector classification, (C-SVC, nu-SVC), regression (epsilon-SVR, nu-SVR) and distribution estimation (one-class SVM). It supports multi-class classification. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.30`` | ``-MATLAB-2022b-r5`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LIBSVM-Python.md b/docs/version-specific/supported-software/l/LIBSVM-Python.md new file mode 100644 index 000000000..9b6f6509b --- /dev/null +++ b/docs/version-specific/supported-software/l/LIBSVM-Python.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# LIBSVM-Python + +This tool provides a simple Python interface to LIBSVM, a library for support vector machines (http://www.csie.ntu.edu.tw/~cjlin/libsvm). The interface is very easy to use as the usage is the same as that of LIBSVM. The interface is developed with the built-in Python library "ctypes". + +*homepage*: + +version | toolchain +--------|---------- +``3.30`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LIBSVM.md b/docs/version-specific/supported-software/l/LIBSVM.md new file mode 100644 index 000000000..112645657 --- /dev/null +++ b/docs/version-specific/supported-software/l/LIBSVM.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# LIBSVM + +LIBSVM is an integrated software for support vector classification, (C-SVC, nu-SVC), regression (epsilon-SVR, nu-SVR) and distribution estimation (one-class SVM). It supports multi-class classification. + +*homepage*: + +version | toolchain +--------|---------- +``3.22`` | ``intel/2016b`` +``3.22`` | ``intel/2017b`` +``3.23`` | ``foss/2018b`` +``3.23`` | ``intel/2018b`` +``3.24`` | ``GCCcore/9.3.0`` +``3.25`` | ``GCCcore/10.2.0`` +``3.25`` | ``GCCcore/10.3.0`` +``3.25`` | ``GCCcore/11.2.0`` +``3.30`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LISFLOOD-FP.md b/docs/version-specific/supported-software/l/LISFLOOD-FP.md new file mode 100644 index 000000000..b2db80f31 --- /dev/null +++ b/docs/version-specific/supported-software/l/LISFLOOD-FP.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# LISFLOOD-FP + +The LISFLOOD-FP is a raster-based hydrodynamic model originally developed by the University of Bristol. It has undergone extensive development since conception and includes a collection of numerical schemes implemented to solve a variety of mathematical approximations of the 2D shallow water equations of different complexity. The local inertia solver, known as the ACC solver, is widely used to simulate floods with gradually-varying, subcritical flow over sufficiently rough surfaces with Manning’s coefficient of at least 0.03. It has a version with CPU-specific optimisations and enhanced with a subgrid channel model. LISFLOOD-FP also includes second-order discontinuous Galerkin (DG2) and first-order finite volume (FV1) solvers of the full shallow water equations for modelling a wide range of flows, including rapidly-propagating, supercritical flows, shock waves, or flows over very smooth surfaces. The DG2/FV1 solvers are parallelised for the multi-core CPU architecture, but do not integrate with the subgrid channel model nor with the CPU-specific optimisations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``8.1`` | ``-CUDA-11.7.0`` | ``gompi/2022a`` +``8.1`` | | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LLDB.md b/docs/version-specific/supported-software/l/LLDB.md new file mode 100644 index 000000000..968e1caa8 --- /dev/null +++ b/docs/version-specific/supported-software/l/LLDB.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# LLDB + +The debugger component of the LLVM project + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``11.0.0`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LLVM.md b/docs/version-specific/supported-software/l/LLVM.md new file mode 100644 index 000000000..e2e260792 --- /dev/null +++ b/docs/version-specific/supported-software/l/LLVM.md @@ -0,0 +1,57 @@ +--- +search: + boost: 0.5 +--- +# LLVM + +The LLVM Core libraries provide a modern source- and target-independent optimizer, along with code generation support for many popular CPUs (as well as some less common ones!) These libraries are built around a well specified code representation known as the LLVM intermediate representation ("LLVM IR"). The LLVM Core libraries are well documented, and it is particularly easy to invent your own language (or port an existing compiler) to use LLVM as an optimizer and code generator. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``10.0.0`` | | ``GCCcore/8.3.0`` +``10.0.1`` | | ``GCCcore/10.2.0`` +``11.0.0`` | | ``GCCcore/10.2.0`` +``11.1.0`` | | ``GCCcore/10.3.0`` +``12.0.1`` | | ``GCCcore/10.3.0`` +``12.0.1`` | | ``GCCcore/11.2.0`` +``14.0.3`` | | ``GCCcore/11.3.0`` +``14.0.6`` | ``-llvmlite`` | ``GCCcore/12.2.0`` +``14.0.6`` | ``-llvmlite`` | ``GCCcore/12.3.0`` +``15.0.5`` | | ``GCCcore/12.2.0`` +``16.0.6`` | | ``GCCcore/12.3.0`` +``16.0.6`` | | ``GCCcore/13.2.0`` +``3.7.1`` | | ``foss/2016a`` +``3.7.1`` | | ``gimkl/2.11.5`` +``3.7.1`` | | ``intel/2016a`` +``3.8.0`` | | ``foss/2016a`` +``3.8.0`` | | ``intel/2016a`` +``3.8.1`` | | ``GCCcore/4.9.3`` +``3.8.1`` | | ``foss/2016b`` +``3.8.1`` | | ``intel/2016b`` +``3.9.0`` | | ``foss/2016b`` +``3.9.0`` | | ``intel/2016b`` +``3.9.1`` | | ``foss/2017a`` +``4.0.0`` | | ``foss/2017a`` +``4.0.0`` | | ``intel/2017a`` +``4.0.1`` | | ``intel/2017a`` +``4.0.1`` | | ``intel/2017b`` +``5.0.0`` | | ``foss/2017b`` +``5.0.0`` | | ``fosscuda/2017b`` +``5.0.0`` | | ``intel/2017b`` +``5.0.0`` | | ``intelcuda/2017b`` +``5.0.1`` | | ``GCCcore/6.4.0`` +``6.0.0`` | | ``GCCcore/6.4.0`` +``6.0.0`` | | ``GCCcore/7.3.0`` +``7.0.0`` | | ``GCCcore/7.2.0`` +``7.0.0`` | | ``GCCcore/7.3.0`` +``7.0.1`` | | ``GCCcore/8.2.0`` +``8.0.1`` | | ``GCCcore/8.3.0`` +``9.0.0`` | | ``GCCcore/8.3.0`` +``9.0.1`` | | ``GCCcore/8.3.0`` +``9.0.1`` | | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LMDB.md b/docs/version-specific/supported-software/l/LMDB.md new file mode 100644 index 000000000..380a7a473 --- /dev/null +++ b/docs/version-specific/supported-software/l/LMDB.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# LMDB + +OpenLDAP's Lightning Memory-Mapped Database (LMDB) library. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.18`` | ``foss/2016a`` +``0.9.21`` | ``GCCcore/6.4.0`` +``0.9.21`` | ``intel/2017a`` +``0.9.22`` | ``GCCcore/7.3.0`` +``0.9.23`` | ``GCCcore/8.2.0`` +``0.9.24`` | ``GCCcore/10.2.0`` +``0.9.24`` | ``GCCcore/8.3.0`` +``0.9.24`` | ``GCCcore/9.3.0`` +``0.9.28`` | ``GCCcore/10.3.0`` +``0.9.29`` | ``GCCcore/11.2.0`` +``0.9.29`` | ``GCCcore/11.3.0`` +``0.9.29`` | ``GCCcore/12.2.0`` +``0.9.31`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LMfit.md b/docs/version-specific/supported-software/l/LMfit.md new file mode 100644 index 000000000..cec811978 --- /dev/null +++ b/docs/version-specific/supported-software/l/LMfit.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# LMfit + +Lmfit provides a high-level interface to non-linear optimization and curve fitting problems for Python + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.9.14`` | ``-Python-2.7.15`` | ``intel/2018b`` +``0.9.9`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.0.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.0.0`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.0.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.0.2`` | | ``foss/2020b`` +``1.0.2`` | | ``intel/2020b`` +``1.0.3`` | | ``foss/2021a`` +``1.0.3`` | | ``foss/2022a`` +``1.0.3`` | | ``intel/2022a`` +``1.2.1`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LOHHLA.md b/docs/version-specific/supported-software/l/LOHHLA.md new file mode 100644 index 000000000..d9730ad3e --- /dev/null +++ b/docs/version-specific/supported-software/l/LOHHLA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# LOHHLA + +LOHHLA, Loss Of Heterozygosity in Human Leukocyte Antigen, a computational tool to evaluate HLA loss using next-generation sequencing data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2018.11.05`` | ``-R-3.5.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LPJmL.md b/docs/version-specific/supported-software/l/LPJmL.md new file mode 100644 index 000000000..dbc8c6210 --- /dev/null +++ b/docs/version-specific/supported-software/l/LPJmL.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# LPJmL + +Dynamic global vegetation model with managed land and river routing + +*homepage*: + +version | toolchain +--------|---------- +``4.0.003`` | ``iimpi/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LPeg.md b/docs/version-specific/supported-software/l/LPeg.md new file mode 100644 index 000000000..a069c84b4 --- /dev/null +++ b/docs/version-specific/supported-software/l/LPeg.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# LPeg + +LPeg is a new pattern-matching library for Lua, based on Parsing Expression Grammars (PEGs). + +*homepage*: + +version | toolchain +--------|---------- +``1.0.2`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LS-PrePost.md b/docs/version-specific/supported-software/l/LS-PrePost.md new file mode 100644 index 000000000..240f0c212 --- /dev/null +++ b/docs/version-specific/supported-software/l/LS-PrePost.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# LS-PrePost + +LS-PrePost is an advanced pre and post-processor that is delivered free with LS-DYNA. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.6`` | ``-centos6`` | ``system`` +``4.6`` | ``-centos7`` | ``system`` +``4.6.24`` | | ``system`` +``4.7.15`` | | ``system`` +``4.7.8`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LSD2.md b/docs/version-specific/supported-software/l/LSD2.md new file mode 100644 index 000000000..d4552d043 --- /dev/null +++ b/docs/version-specific/supported-software/l/LSD2.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# LSD2 + +Least-squares methods to estimate rates and dates from phylogenies + +*homepage*: + +version | toolchain +--------|---------- +``1.9.7`` | ``GCCcore/9.3.0`` +``2.2`` | ``GCCcore/10.2.0`` +``2.3`` | ``GCCcore/10.3.0`` +``2.3`` | ``GCCcore/11.2.0`` +``2.3`` | ``GCCcore/11.3.0`` +``2.4.1`` | ``GCCcore/12.2.0`` +``2.4.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LSMS.md b/docs/version-specific/supported-software/l/LSMS.md new file mode 100644 index 000000000..3e458916b --- /dev/null +++ b/docs/version-specific/supported-software/l/LSMS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# LSMS + +LSMS benchmark, part of CORAL suite + +*homepage*: + +version | toolchain +--------|---------- +``3_rev237`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LTR_retriever.md b/docs/version-specific/supported-software/l/LTR_retriever.md new file mode 100644 index 000000000..fb4b29097 --- /dev/null +++ b/docs/version-specific/supported-software/l/LTR_retriever.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# LTR_retriever + +LTR_retriever is a highly accurate and sensitive program for identification of LTR retrotransposons; The LTR Assembly Index (LAI) is also included in this package. + +*homepage*: + +version | toolchain +--------|---------- +``2.9.0`` | ``foss/2020b`` +``2.9.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LUMPY.md b/docs/version-specific/supported-software/l/LUMPY.md new file mode 100644 index 000000000..78a9888fd --- /dev/null +++ b/docs/version-specific/supported-software/l/LUMPY.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# LUMPY + +A probabilistic framework for structural variant discovery. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.13`` | ``foss/2016b`` +``0.3.1`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LUSCUS.md b/docs/version-specific/supported-software/l/LUSCUS.md new file mode 100644 index 000000000..f19f21943 --- /dev/null +++ b/docs/version-specific/supported-software/l/LUSCUS.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# LUSCUS + +Luscus is the program for graphical display and editing of molecular systems. + +*homepage*: + +version | toolchain +--------|---------- +``0.8.6`` | ``foss/2018b`` +``0.8.6`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LZO.md b/docs/version-specific/supported-software/l/LZO.md new file mode 100644 index 000000000..fcf542f46 --- /dev/null +++ b/docs/version-specific/supported-software/l/LZO.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# LZO + +LZO-2.06: Portable lossless data compression library + +*homepage*: + +version | toolchain +--------|---------- +``2.09`` | ``intel/2016b`` +``2.09`` | ``intel/2017b`` +``2.10`` | ``GCCcore/10.2.0`` +``2.10`` | ``GCCcore/10.3.0`` +``2.10`` | ``GCCcore/11.2.0`` +``2.10`` | ``GCCcore/11.3.0`` +``2.10`` | ``GCCcore/12.2.0`` +``2.10`` | ``GCCcore/12.3.0`` +``2.10`` | ``GCCcore/13.2.0`` +``2.10`` | ``GCCcore/6.4.0`` +``2.10`` | ``GCCcore/7.3.0`` +``2.10`` | ``GCCcore/8.2.0`` +``2.10`` | ``GCCcore/8.3.0`` +``2.10`` | ``GCCcore/9.3.0`` +``2.10`` | ``foss/2016a`` +``2.10`` | ``foss/2016b`` +``2.10`` | ``foss/2017a`` +``2.10`` | ``foss/2018a`` +``2.10`` | ``foss/2018b`` +``2.10`` | ``fosscuda/2018b`` +``2.10`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/L_RNA_scaffolder.md b/docs/version-specific/supported-software/l/L_RNA_scaffolder.md new file mode 100644 index 000000000..e7a1c97b7 --- /dev/null +++ b/docs/version-specific/supported-software/l/L_RNA_scaffolder.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# L_RNA_scaffolder + +L_RNA_scaffolder is a novel scaffolding tool using long trancriptome reads to scaffold genome fragments + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20141124`` | ``-Perl-5.24.0`` | ``intel/2016b`` +``20190530`` | | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/Lab-Streaming-Layer.md b/docs/version-specific/supported-software/l/Lab-Streaming-Layer.md new file mode 100644 index 000000000..5ba3a3412 --- /dev/null +++ b/docs/version-specific/supported-software/l/Lab-Streaming-Layer.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Lab-Streaming-Layer + +The lab streaming layer (LSL) is a system for the unified collection of measurement time series in research experiments that handles both the networking, time-synchronization, (near-) real-time access as well as optionally the centralized collection, viewing and disk recording of the data. + +*homepage*: + +version | toolchain +--------|---------- +``1.16.2`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/Lace.md b/docs/version-specific/supported-software/l/Lace.md new file mode 100644 index 000000000..1b716e5cd --- /dev/null +++ b/docs/version-specific/supported-software/l/Lace.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Lace + +Building SuperTranscripts: A linear representation of transcriptome data + +*homepage*: + +version | toolchain +--------|---------- +``1.14.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LangChain.md b/docs/version-specific/supported-software/l/LangChain.md new file mode 100644 index 000000000..5e12a886b --- /dev/null +++ b/docs/version-specific/supported-software/l/LangChain.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# LangChain + +LangChain is a framework for developing applications powered by large language models (LLMs). + +*homepage*: + +version | toolchain +--------|---------- +``0.2.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LayoutParser.md b/docs/version-specific/supported-software/l/LayoutParser.md new file mode 100644 index 000000000..e01e291c9 --- /dev/null +++ b/docs/version-specific/supported-software/l/LayoutParser.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# LayoutParser + +A Unified Toolkit for Deep Learning Based Document Image Analysis + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.3.4`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LeadIT.md b/docs/version-specific/supported-software/l/LeadIT.md new file mode 100644 index 000000000..bac444c32 --- /dev/null +++ b/docs/version-specific/supported-software/l/LeadIT.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# LeadIT + +Visually Informed LeadOpt + +*homepage*: + +version | toolchain +--------|---------- +``2.1.9`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/Leptonica.md b/docs/version-specific/supported-software/l/Leptonica.md new file mode 100644 index 000000000..d09b4b4db --- /dev/null +++ b/docs/version-specific/supported-software/l/Leptonica.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Leptonica + +Leptonica is a collection of pedagogically-oriented open source software that is broadly useful for image processing and image analysis applications. + +*homepage*: + +version | toolchain +--------|---------- +``1.77.0`` | ``GCCcore/7.3.0`` +``1.78.0`` | ``GCCcore/8.2.0`` +``1.82.0`` | ``GCCcore/10.3.0`` +``1.83.0`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LevelDB.md b/docs/version-specific/supported-software/l/LevelDB.md new file mode 100644 index 000000000..6b81a4ca1 --- /dev/null +++ b/docs/version-specific/supported-software/l/LevelDB.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# LevelDB + +LevelDB is a fast key-value storage library written at Google that provides an ordered mapping from string keys to string values. + +*homepage*: + +version | toolchain +--------|---------- +``1.18`` | ``foss/2016a`` +``1.18`` | ``intel/2017a`` +``1.18`` | ``intel/2017b`` +``1.20`` | ``GCCcore/7.3.0`` +``1.22`` | ``GCCcore/11.3.0`` +``1.22`` | ``GCCcore/8.2.0`` +``1.22`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/Levenshtein.md b/docs/version-specific/supported-software/l/Levenshtein.md new file mode 100644 index 000000000..da5af2cfd --- /dev/null +++ b/docs/version-specific/supported-software/l/Levenshtein.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Levenshtein + +Python extension for computing string edit distances and similarities. + +*homepage*: + +version | toolchain +--------|---------- +``0.24.0`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LiBis.md b/docs/version-specific/supported-software/l/LiBis.md new file mode 100644 index 000000000..20cb208f1 --- /dev/null +++ b/docs/version-specific/supported-software/l/LiBis.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# LiBis + +An ultrasensitive alignment method for low input bisulfite sequencing + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20200428`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LibLZF.md b/docs/version-specific/supported-software/l/LibLZF.md new file mode 100644 index 000000000..39122f776 --- /dev/null +++ b/docs/version-specific/supported-software/l/LibLZF.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# LibLZF + +LibLZF is a very small data compression library. It consists of only two .c and two .h files and is very easy to incorporate into your own programs. The compression algorithm is very, very fast, yet still written in portable C. + +*homepage*: + +version | toolchain +--------|---------- +``3.4`` | ``GCCcore/10.2.0`` +``3.6`` | ``GCCcore/10.3.0`` +``3.6`` | ``GCCcore/11.3.0`` +``3.6`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LibSoup.md b/docs/version-specific/supported-software/l/LibSoup.md new file mode 100644 index 000000000..21c616b17 --- /dev/null +++ b/docs/version-specific/supported-software/l/LibSoup.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# LibSoup + +libsoup is an HTTP client/server library for GNOME. It uses GObjects and the glib main loop, to integrate well with GNOME applications, and also has a synchronous API, for use in threaded applications. + +*homepage*: + +version | toolchain +--------|---------- +``2.66.1`` | ``GCCcore/8.2.0`` +``2.70.0`` | ``GCCcore/8.3.0`` +``2.72.0`` | ``GCCcore/10.2.0`` +``2.74.0`` | ``GCCcore/10.3.0`` +``3.0.7`` | ``GCC/11.2.0`` +``3.0.8`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LibTIFF.md b/docs/version-specific/supported-software/l/LibTIFF.md new file mode 100644 index 000000000..7b5daa692 --- /dev/null +++ b/docs/version-specific/supported-software/l/LibTIFF.md @@ -0,0 +1,43 @@ +--- +search: + boost: 0.5 +--- +# LibTIFF + +tiff: Library and tools for reading and writing TIFF data files + +*homepage*: + +version | toolchain +--------|---------- +``4.0.10`` | ``GCCcore/8.2.0`` +``4.0.10`` | ``GCCcore/8.3.0`` +``4.0.6`` | ``GCCcore/5.4.0`` +``4.0.6`` | ``foss/2016a`` +``4.0.6`` | ``foss/2016b`` +``4.0.6`` | ``intel/2016a`` +``4.0.6`` | ``intel/2016b`` +``4.0.7`` | ``foss/2016b`` +``4.0.7`` | ``intel/2017a`` +``4.0.8`` | ``intel/2017a`` +``4.0.8`` | ``intel/2017b`` +``4.0.9`` | ``GCCcore/6.4.0`` +``4.0.9`` | ``GCCcore/7.3.0`` +``4.0.9`` | ``foss/2017b`` +``4.0.9`` | ``intel/2017b`` +``4.0.9`` | ``intel/2018.01`` +``4.0.9`` | ``intel/2018b`` +``4.1.0`` | ``GCCcore/10.2.0`` +``4.1.0`` | ``GCCcore/8.3.0`` +``4.1.0`` | ``GCCcore/9.3.0`` +``4.2.0`` | ``GCCcore/10.3.0`` +``4.3.0`` | ``GCCcore/11.2.0`` +``4.3.0`` | ``GCCcore/11.3.0`` +``4.4.0`` | ``GCCcore/12.2.0`` +``4.5.0`` | ``GCCcore/12.3.0`` +``4.6.0`` | ``GCCcore/13.2.0`` +``4.6.0`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LibUUID.md b/docs/version-specific/supported-software/l/LibUUID.md new file mode 100644 index 000000000..fc8ee4523 --- /dev/null +++ b/docs/version-specific/supported-software/l/LibUUID.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# LibUUID + +Portable uuid C library + +*homepage*: + +version | toolchain +--------|---------- +``1.0.3`` | ``GCCcore/6.4.0`` +``1.0.3`` | ``GCCcore/7.3.0`` +``1.0.3`` | ``GCCcore/8.2.0`` +``1.0.3`` | ``GCCcore/8.3.0`` +``1.0.3`` | ``foss/2016a`` +``1.0.3`` | ``intel/2017a`` +``1.0.3`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/Libint.md b/docs/version-specific/supported-software/l/Libint.md new file mode 100644 index 000000000..090812e37 --- /dev/null +++ b/docs/version-specific/supported-software/l/Libint.md @@ -0,0 +1,44 @@ +--- +search: + boost: 0.5 +--- +# Libint + +Libint library is used to evaluate the traditional (electron repulsion) and certain novel two-body matrix elements (integrals) over Cartesian Gaussian functions used in modern atomic and molecular theory. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.4`` | | ``intel/2016a`` +``1.1.6`` | | ``GCC/8.2.0-2.31.1`` +``1.1.6`` | | ``foss/2016b`` +``1.1.6`` | | ``foss/2018a`` +``1.1.6`` | | ``foss/2020a`` +``1.1.6`` | | ``foss/2020b`` +``1.1.6`` | | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``1.1.6`` | | ``intel/2016b`` +``1.1.6`` | | ``intel/2017b`` +``1.1.6`` | | ``intel/2018a`` +``1.1.6`` | | ``intel/2018b`` +``1.1.6`` | | ``intel/2020a`` +``2.0.3`` | | ``foss/2018b`` +``2.0.3`` | | ``gompi/2019a`` +``2.0.3`` | | ``intel/2018b`` +``2.1.0`` | | ``intel/2016b`` +``2.4.2`` | | ``intel/2018a`` +``2.5.0`` | | ``gompi/2019a`` +``2.5.0`` | | ``iimpi/2019a`` +``2.6.0`` | ``-lmax-6-cp2k`` | ``GCC/10.2.0`` +``2.6.0`` | ``-lmax-6-cp2k`` | ``GCC/10.3.0`` +``2.6.0`` | ``-lmax-6-cp2k`` | ``gompi/2020a`` +``2.6.0`` | ``-lmax-6-cp2k`` | ``iccifort/2020.4.304`` +``2.6.0`` | ``-lmax-6-cp2k`` | ``iimpi/2020a`` +``2.6.0`` | ``-lmax-6-cp2k`` | ``iimpi/2021a`` +``2.7.2`` | ``-lmax-6-cp2k`` | ``GCC/11.3.0`` +``2.7.2`` | ``-lmax-6-cp2k`` | ``GCC/12.2.0`` +``2.7.2`` | ``-lmax-6-cp2k`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/Lighter.md b/docs/version-specific/supported-software/l/Lighter.md new file mode 100644 index 000000000..080e82b2f --- /dev/null +++ b/docs/version-specific/supported-software/l/Lighter.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Lighter + +Fast and memory-efficient sequencing error corrector + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``foss/2018a`` +``1.1.2`` | ``GCC/11.2.0`` +``1.1.2`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/Lightning.md b/docs/version-specific/supported-software/l/Lightning.md new file mode 100644 index 000000000..2d8dd5eab --- /dev/null +++ b/docs/version-specific/supported-software/l/Lightning.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Lightning + +The deep learning framework to pretrain, finetune and deploy AI models. Lightning has 4 core packages: PyTorch Lightning: Train and deploy PyTorch at scale. Lightning Fabric: Expert control. Lightning Data: Blazing fast, distributed streaming of training data from cloud storage. Lightning Apps: Build AI products and ML workflows. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.1`` | ``-CUDA-12.1.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LinBox.md b/docs/version-specific/supported-software/l/LinBox.md new file mode 100644 index 000000000..d2f2b9622 --- /dev/null +++ b/docs/version-specific/supported-software/l/LinBox.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# LinBox + +C++ library for exact, high-performance linear algebra + +*homepage*: + +version | toolchain +--------|---------- +``1.4.0`` | ``foss/2016a`` +``1.7.0`` | ``gfbf/2022a`` +``1.7.0`` | ``gfbf/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/Lingeling.md b/docs/version-specific/supported-software/l/Lingeling.md new file mode 100644 index 000000000..b8548d400 --- /dev/null +++ b/docs/version-specific/supported-software/l/Lingeling.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Lingeling + +One of the design principles of the state-of-the-art SAT solver Lingeling is to use as compact data structures as possible. These reduce memory usage, increase cache efficiency and thus improve runtime, particularly, when using multiple solver instances on multi-core machines, as in our parallel portfolio solver Plingeling and our cube and conquer solver Treengeling. + +*homepage*: + +version | toolchain +--------|---------- +``bcp`` | ``GCC/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LittleCMS.md b/docs/version-specific/supported-software/l/LittleCMS.md new file mode 100644 index 000000000..572d29c91 --- /dev/null +++ b/docs/version-specific/supported-software/l/LittleCMS.md @@ -0,0 +1,36 @@ +--- +search: + boost: 0.5 +--- +# LittleCMS + +Little CMS intends to be an OPEN SOURCE small-footprint color management engine, with special focus on accuracy and performance. + +*homepage*: + +version | toolchain +--------|---------- +``2.11`` | ``GCCcore/10.2.0`` +``2.12`` | ``GCCcore/10.3.0`` +``2.12`` | ``GCCcore/11.2.0`` +``2.13.1`` | ``GCCcore/11.3.0`` +``2.14`` | ``GCCcore/12.2.0`` +``2.15`` | ``GCCcore/12.3.0`` +``2.15`` | ``GCCcore/13.2.0`` +``2.7`` | ``intel/2016a`` +``2.8`` | ``GCCcore/6.4.0`` +``2.8`` | ``foss/2016b`` +``2.8`` | ``intel/2016b`` +``2.8`` | ``intel/2017a`` +``2.9`` | ``GCCcore/6.4.0`` +``2.9`` | ``GCCcore/7.3.0`` +``2.9`` | ``GCCcore/8.2.0`` +``2.9`` | ``GCCcore/8.3.0`` +``2.9`` | ``GCCcore/9.3.0`` +``2.9`` | ``foss/2017b`` +``2.9`` | ``foss/2018a`` +``2.9`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/Lmod.md b/docs/version-specific/supported-software/l/Lmod.md new file mode 100644 index 000000000..395c4fc67 --- /dev/null +++ b/docs/version-specific/supported-software/l/Lmod.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# Lmod + +Lmod is a Lua based module system. Modules allow for dynamic modification of a user's environment under Unix systems. See www.tacc.utexas.edu/tacc-projects/lmod for a complete description. Lmod is a new implementation that easily handles the MODULEPATH Hierarchical problem. It is drop-in replacement for TCL/C modules and reads TCL modulefiles directly. + +*homepage*: + +version | toolchain +--------|---------- +``5.2`` | ``GCC/4.8.2`` +``5.2.5`` | ``GCC/4.8.2`` +``5.3`` | ``GCC/4.8.2`` +``5.4`` | ``GCC/4.8.2`` +``5.4.2`` | ``GCC/4.8.2`` +``5.5`` | ``GCC/4.8.2`` +``5.5.1`` | ``GCC/4.8.2`` +``5.6`` | ``GCC/4.8.2`` +``5.7`` | ``GCC/4.8.2`` +``5.8`` | ``GCC/4.8.2`` +``5.8.5`` | ``GCC/4.8.2`` +``5.9`` | ``GCC/4.8.2`` +``5.9`` | ``GCC/4.8.4`` +``6.4.2`` | ``system`` +``7.3`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LncLOOM.md b/docs/version-specific/supported-software/l/LncLOOM.md new file mode 100644 index 000000000..6e4b25165 --- /dev/null +++ b/docs/version-specific/supported-software/l/LncLOOM.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# LncLOOM + +LncLOOM is a graph-based framework that uses integer programming to identify combinations of short motifs that are deeply conserved in rapidly evolving sequences. + +*homepage*: + +version | toolchain +--------|---------- +``2.0`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LoFreq.md b/docs/version-specific/supported-software/l/LoFreq.md new file mode 100644 index 000000000..2b3e6df29 --- /dev/null +++ b/docs/version-specific/supported-software/l/LoFreq.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# LoFreq + +Fast and sensitive variant calling from next-gen sequencing data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.2`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2.1.3.1`` | ``-Python-2.7.14`` | ``foss/2017b`` +``2.1.3.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.1.3.1`` | ``-Python-2.7.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LoRDEC.md b/docs/version-specific/supported-software/l/LoRDEC.md new file mode 100644 index 000000000..8d8df6951 --- /dev/null +++ b/docs/version-specific/supported-software/l/LoRDEC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# LoRDEC + +Program for correcting sequencing errors in long reads (e.g., PacBio, Oxford Nanopore) using highly accurate short reads (e.g., Illumina). + +*homepage*: + +version | toolchain +--------|---------- +``0.9`` | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LocARNA.md b/docs/version-specific/supported-software/l/LocARNA.md new file mode 100644 index 000000000..32b002a01 --- /dev/null +++ b/docs/version-specific/supported-software/l/LocARNA.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# LocARNA + +LocARNA is a collection of alignment tools for the structural analysis of RNA. Given a set of RNA sequences, LocARNA simultaneously aligns and predicts common structures for your RNAs. In this way, LocARNA performs Sankoff-like alignment and is in particular suited for analyzing sets of related RNAs without known common structure. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.9.2`` | | ``foss/2016b`` +``1.9.2.2`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.9.2.3`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/Log-Log4perl.md b/docs/version-specific/supported-software/l/Log-Log4perl.md new file mode 100644 index 000000000..f7e0580f4 --- /dev/null +++ b/docs/version-specific/supported-software/l/Log-Log4perl.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Log-Log4perl + +Log4perl + +*homepage*: + +version | toolchain +--------|---------- +``1.47`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/Loki.md b/docs/version-specific/supported-software/l/Loki.md new file mode 100644 index 000000000..31ef662ad --- /dev/null +++ b/docs/version-specific/supported-software/l/Loki.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Loki + +Loki is a C++ library of designs, containing flexible implementations of common design patterns and idioms. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.7`` | ``foss/2016a`` +``0.1.7`` | ``foss/2016b`` +``0.1.7`` | ``intel/2016a`` +``0.1.7`` | ``intel/2016b`` +``0.1.7`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/Longshot.md b/docs/version-specific/supported-software/l/Longshot.md new file mode 100644 index 000000000..d5ca263da --- /dev/null +++ b/docs/version-specific/supported-software/l/Longshot.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Longshot + +Longshot is a variant calling tool for diploid genomes using long error prone reads such as Pacific Biosciences (PacBio) SMRT and Oxford Nanopore Technologies (ONT). It takes as input an aligned BAM file and outputs a phased VCF file with variants and haplotype information. It can also output haplotype-separated BAM files that can be used for downstream analysis. Currently, it only calls single nucleotide variants (SNVs). + +*homepage*: + +version | toolchain +--------|---------- +``0.3.4`` | ``GCCcore/8.2.0`` +``0.4.1`` | ``GCC/7.3.0-2.30`` +``0.4.1`` | ``GCCcore/8.3.0`` +``0.4.3`` | ``GCCcore/10.2.0`` +``0.4.5`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LoopTools.md b/docs/version-specific/supported-software/l/LoopTools.md new file mode 100644 index 000000000..67004918b --- /dev/null +++ b/docs/version-specific/supported-software/l/LoopTools.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# LoopTools + +LoopTools is a package for evaluation of scalar and tensor one-loop integrals. It is based on the FF package by G.J. van Oldenborgh. + +*homepage*: + +version | toolchain +--------|---------- +``2.15`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LtrDetector.md b/docs/version-specific/supported-software/l/LtrDetector.md new file mode 100644 index 000000000..664633ae3 --- /dev/null +++ b/docs/version-specific/supported-software/l/LtrDetector.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# LtrDetector + +A modern tool-suite for detectinglong terminal repeat retrotransposons de-novo onthe genomic scale + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0`` | ``-Python-3.7.4`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/Lua.md b/docs/version-specific/supported-software/l/Lua.md new file mode 100644 index 000000000..2c28fef4a --- /dev/null +++ b/docs/version-specific/supported-software/l/Lua.md @@ -0,0 +1,38 @@ +--- +search: + boost: 0.5 +--- +# Lua + +Lua is a powerful, fast, lightweight, embeddable scripting language. Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, runs by interpreting bytecode for a register-based virtual machine, and has automatic memory management with incremental garbage collection, making it ideal for configuration, scripting, and rapid prototyping. + +*homepage*: + +version | toolchain +--------|---------- +``5.1.4-5`` | ``GCC/4.8.2`` +``5.1.4-8`` | ``GCC/4.8.2`` +``5.1.4-8`` | ``GCC/4.8.4`` +``5.1.4-8`` | ``system`` +``5.1.5`` | ``GCCcore/7.3.0`` +``5.1.5`` | ``GCCcore/8.3.0`` +``5.2.4`` | ``GCCcore/6.4.0`` +``5.2.4`` | ``GCCcore/7.3.0`` +``5.3.4`` | ``GCCcore/7.2.0`` +``5.3.4`` | ``system`` +``5.3.5`` | ``GCCcore/10.2.0`` +``5.3.5`` | ``GCCcore/8.2.0`` +``5.3.5`` | ``GCCcore/8.3.0`` +``5.3.5`` | ``GCCcore/9.3.0`` +``5.3.5`` | ``system`` +``5.4.2`` | ``GCCcore/10.2.0`` +``5.4.3`` | ``GCCcore/10.3.0`` +``5.4.3`` | ``GCCcore/11.2.0`` +``5.4.4`` | ``GCCcore/11.3.0`` +``5.4.4`` | ``GCCcore/12.2.0`` +``5.4.6`` | ``GCCcore/12.3.0`` +``5.4.6`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LuaJIT.md b/docs/version-specific/supported-software/l/LuaJIT.md new file mode 100644 index 000000000..71ff4c352 --- /dev/null +++ b/docs/version-specific/supported-software/l/LuaJIT.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# LuaJIT + +LuaJIT is a Just-In-Time Compiler (JIT) for the Lua programming language. Lua is a powerful, dynamic and light-weight programming language. It may be embedded or used as a general-purpose, stand-alone language. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.2`` | ``GCC/4.9.2`` +``2.1.0-beta3_20230602`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LuaJIT2-OpenResty.md b/docs/version-specific/supported-software/l/LuaJIT2-OpenResty.md new file mode 100644 index 000000000..c82e3b917 --- /dev/null +++ b/docs/version-specific/supported-software/l/LuaJIT2-OpenResty.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# LuaJIT2-OpenResty + +openresty/luajit2 - OpenResty's maintained branch of LuaJIT. LuaJIT is a Just-In-Time Compiler (JIT) for the Lua programming language. Lua is a powerful, dynamic and light-weight programming language. It may be embedded or used as a general-purpose, stand-alone language. + +*homepage*: + +version | toolchain +--------|---------- +``2.1-20220411`` | ``GCC/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/LuaRocks.md b/docs/version-specific/supported-software/l/LuaRocks.md new file mode 100644 index 000000000..5bf7a1635 --- /dev/null +++ b/docs/version-specific/supported-software/l/LuaRocks.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# LuaRocks + +LuaRocks is the package manager for Lua modules. It allows you to create and install Lua modules as self-contained packages called rocks. + +*homepage*: + +version | toolchain +--------|---------- +``3.9.2`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/Lucene-Geo-Gazetteer.md b/docs/version-specific/supported-software/l/Lucene-Geo-Gazetteer.md new file mode 100644 index 000000000..53087c7ca --- /dev/null +++ b/docs/version-specific/supported-software/l/Lucene-Geo-Gazetteer.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Lucene-Geo-Gazetteer + +A command line gazetteer built around the Geonames.org dataset, that uses the Apache Lucene library to create a searchable gazetteer. + +*homepage*: + +version | toolchain +--------|---------- +``20170718`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/index.md b/docs/version-specific/supported-software/l/index.md new file mode 100644 index 000000000..803d4db18 --- /dev/null +++ b/docs/version-specific/supported-software/l/index.md @@ -0,0 +1,267 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (l) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - *l* - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [L_RNA_scaffolder](L_RNA_scaffolder.md) + * [Lab-Streaming-Layer](Lab-Streaming-Layer.md) + * [Lace](Lace.md) + * [LADR](LADR.md) + * [lagrangian-filtering](lagrangian-filtering.md) + * [LAME](LAME.md) + * [LAMMPS](LAMMPS.md) + * [lancet](lancet.md) + * [LangChain](LangChain.md) + * [langchain-anthropic](langchain-anthropic.md) + * [LAPACK](LAPACK.md) + * [LASSO-Python](LASSO-Python.md) + * [LAST](LAST.md) + * [LASTZ](LASTZ.md) + * [lavaan](lavaan.md) + * [LayoutParser](LayoutParser.md) + * [LBFGS++](LBFGS++.md) + * [lcalc](lcalc.md) + * [LCov](LCov.md) + * [LDC](LDC.md) + * [lDDT](lDDT.md) + * [LeadIT](LeadIT.md) + * [leafcutter](leafcutter.md) + * [leidenalg](leidenalg.md) + * [LEMON](LEMON.md) + * [Leptonica](Leptonica.md) + * [LERC](LERC.md) + * [less](less.md) + * [LevelDB](LevelDB.md) + * [Levenshtein](Levenshtein.md) + * [lftp](lftp.md) + * [LHAPDF](LHAPDF.md) + * [LIANA](LIANA.md) + * [libabigail](libabigail.md) + * [libaec](libaec.md) + * [libaed2](libaed2.md) + * [libaio](libaio.md) + * [libarchive](libarchive.md) + * [libav](libav.md) + * [libavif](libavif.md) + * [libbaseencode](libbaseencode.md) + * [libBigWig](libBigWig.md) + * [libbitmask](libbitmask.md) + * [libbraiding](libbraiding.md) + * [libcdms](libcdms.md) + * [libcerf](libcerf.md) + * [libcint](libcint.md) + * [libcircle](libcircle.md) + * [libcmaes](libcmaes.md) + * [libconfig](libconfig.md) + * [libcotp](libcotp.md) + * [libcpuset](libcpuset.md) + * [libcroco](libcroco.md) + * [libctl](libctl.md) + * [libdap](libdap.md) + * [libde265](libde265.md) + * [libdeflate](libdeflate.md) + * [libdivsufsort](libdivsufsort.md) + * [libdrm](libdrm.md) + * [libdrs](libdrs.md) + * [libdwarf](libdwarf.md) + * [libedit](libedit.md) + * [libelf](libelf.md) + * [libemf](libemf.md) + * [libepoxy](libepoxy.md) + * [libev](libev.md) + * [libevent](libevent.md) + * [libexif](libexif.md) + * [libfabric](libfabric.md) + * [libfdf](libfdf.md) + * [libffcall](libffcall.md) + * [libffi](libffi.md) + * [libFLAME](libFLAME.md) + * [libfontenc](libfontenc.md) + * [libfyaml](libfyaml.md) + * [libgcrypt](libgcrypt.md) + * [libgd](libgd.md) + * [libgdiplus](libgdiplus.md) + * [libGDSII](libGDSII.md) + * [libgeotiff](libgeotiff.md) + * [libgit2](libgit2.md) + * [libglade](libglade.md) + * [libGLU](libGLU.md) + * [libglvnd](libglvnd.md) + * [libgpg-error](libgpg-error.md) + * [libgpuarray](libgpuarray.md) + * [libGridXC](libGridXC.md) + * [libgtextutils](libgtextutils.md) + * [libgxps](libgxps.md) + * [libhandy](libhandy.md) + * [libharu](libharu.md) + * [libheif](libheif.md) + * [libhomfly](libhomfly.md) + * [libibmad](libibmad.md) + * [libibumad](libibumad.md) + * [libICE](libICE.md) + * [libiconv](libiconv.md) + * [libidn](libidn.md) + * [libidn2](libidn2.md) + * [Libint](Libint.md) + * [LiBis](LiBis.md) + * [libjpeg-turbo](libjpeg-turbo.md) + * [libjxl](libjxl.md) + * [libleidenalg](libleidenalg.md) + * [LibLZF](LibLZF.md) + * [libmad](libmad.md) + * [libmatheval](libmatheval.md) + * [libmaus2](libmaus2.md) + * [libmbd](libmbd.md) + * [libMemcached](libMemcached.md) + * [libmicrohttpd](libmicrohttpd.md) + * [libmo_unpack](libmo_unpack.md) + * [libmypaint](libmypaint.md) + * [libnsl](libnsl.md) + * [libobjcryst](libobjcryst.md) + * [libogg](libogg.md) + * [libopus](libopus.md) + * [libosmium](libosmium.md) + * [libpci](libpci.md) + * [libpciaccess](libpciaccess.md) + * [libplinkio](libplinkio.md) + * [libpng](libpng.md) + * [libpsl](libpsl.md) + * [libPSML](libPSML.md) + * [libpsortb](libpsortb.md) + * [libpspio](libpspio.md) + * [libpthread-stubs](libpthread-stubs.md) + * [libQGLViewer](libQGLViewer.md) + * [libreadline](libreadline.md) + * [libRmath](libRmath.md) + * [librosa](librosa.md) + * [librsb](librsb.md) + * [librsvg](librsvg.md) + * [librttopo](librttopo.md) + * [libsamplerate](libsamplerate.md) + * [libSBML](libSBML.md) + * [libsigc++](libsigc++.md) + * [libsigsegv](libsigsegv.md) + * [libSM](libSM.md) + * [libsndfile](libsndfile.md) + * [libsodium](libsodium.md) + * [LibSoup](LibSoup.md) + * [libspatialindex](libspatialindex.md) + * [libspatialite](libspatialite.md) + * [libspectre](libspectre.md) + * [libssh](libssh.md) + * [libStatGen](libStatGen.md) + * [libsupermesh](libsupermesh.md) + * [LIBSVM](LIBSVM.md) + * [LIBSVM-MATLAB](LIBSVM-MATLAB.md) + * [LIBSVM-Python](LIBSVM-Python.md) + * [libtar](libtar.md) + * [libtasn1](libtasn1.md) + * [libtecla](libtecla.md) + * [LibTIFF](LibTIFF.md) + * [libtirpc](libtirpc.md) + * [libtool](libtool.md) + * [libtree](libtree.md) + * [libunistring](libunistring.md) + * [libunwind](libunwind.md) + * [libutempter](libutempter.md) + * [LibUUID](LibUUID.md) + * [libuv](libuv.md) + * [libvdwxc](libvdwxc.md) + * [libvorbis](libvorbis.md) + * [libvori](libvori.md) + * [libWallModelledLES](libWallModelledLES.md) + * [libwebp](libwebp.md) + * [libwpe](libwpe.md) + * [libX11](libX11.md) + * [libXau](libXau.md) + * [libxc](libxc.md) + * [libxcb](libxcb.md) + * [libXcursor](libXcursor.md) + * [libXdamage](libXdamage.md) + * [libXdmcp](libXdmcp.md) + * [libXext](libXext.md) + * [libXfixes](libXfixes.md) + * [libXfont](libXfont.md) + * [libXft](libXft.md) + * [libXi](libXi.md) + * [libXinerama](libXinerama.md) + * [libxkbcommon](libxkbcommon.md) + * [libxml++](libxml++.md) + * [libxml2](libxml2.md) + * [libxml2-python](libxml2-python.md) + * [libXmu](libXmu.md) + * [libXp](libXp.md) + * [libXpm](libXpm.md) + * [libXrandr](libXrandr.md) + * [libXrender](libXrender.md) + * [libxslt](libxslt.md) + * [libxsmm](libxsmm.md) + * [libXt](libXt.md) + * [libXxf86vm](libXxf86vm.md) + * [libyaml](libyaml.md) + * [libzeep](libzeep.md) + * [libzip](libzip.md) + * [lie_learn](lie_learn.md) + * [lifelines](lifelines.md) + * [Lighter](Lighter.md) + * [Lightning](Lightning.md) + * [liknorm](liknorm.md) + * [likwid](likwid.md) + * [lil-aretomo](lil-aretomo.md) + * [limix](limix.md) + * [LinBox](LinBox.md) + * [line_profiler](line_profiler.md) + * [Lingeling](Lingeling.md) + * [LISFLOOD-FP](LISFLOOD-FP.md) + * [lit](lit.md) + * [LittleCMS](LittleCMS.md) + * [LLDB](LLDB.md) + * [LLVM](LLVM.md) + * [LMDB](LMDB.md) + * [LMfit](LMfit.md) + * [Lmod](Lmod.md) + * [lmoments3](lmoments3.md) + * [LncLOOM](LncLOOM.md) + * [LocARNA](LocARNA.md) + * [LoFreq](LoFreq.md) + * [Log-Log4perl](Log-Log4perl.md) + * [logaddexp](logaddexp.md) + * [LOHHLA](LOHHLA.md) + * [Loki](Loki.md) + * [longestrunsubsequence](longestrunsubsequence.md) + * [longread_umi](longread_umi.md) + * [Longshot](Longshot.md) + * [loompy](loompy.md) + * [loomR](loomR.md) + * [LoopTools](LoopTools.md) + * [LoRDEC](LoRDEC.md) + * [LPeg](LPeg.md) + * [LPJmL](LPJmL.md) + * [lpsolve](lpsolve.md) + * [lrslib](lrslib.md) + * [LS-PrePost](LS-PrePost.md) + * [LSD2](LSD2.md) + * [LSMS](LSMS.md) + * [LTR_retriever](LTR_retriever.md) + * [LtrDetector](LtrDetector.md) + * [Lua](Lua.md) + * [LuaJIT](LuaJIT.md) + * [LuaJIT2-OpenResty](LuaJIT2-OpenResty.md) + * [LuaRocks](LuaRocks.md) + * [Lucene-Geo-Gazetteer](Lucene-Geo-Gazetteer.md) + * [LUMPY](LUMPY.md) + * [LUSCUS](LUSCUS.md) + * [lwgrp](lwgrp.md) + * [lxml](lxml.md) + * [lynx](lynx.md) + * [lz4](lz4.md) + * [LZO](LZO.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - *l* - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/lDDT.md b/docs/version-specific/supported-software/l/lDDT.md new file mode 100644 index 000000000..fb62a3bb0 --- /dev/null +++ b/docs/version-specific/supported-software/l/lDDT.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# lDDT + +The local Distance Difference Test (lDDT) is a superposition-free score which evaluates local distance differences in a model compared to a reference structure. + +*homepage*: + +version | toolchain +--------|---------- +``1.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/lagrangian-filtering.md b/docs/version-specific/supported-software/l/lagrangian-filtering.md new file mode 100644 index 000000000..65502845a --- /dev/null +++ b/docs/version-specific/supported-software/l/lagrangian-filtering.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# lagrangian-filtering + +Temporal filtering of data in a Lagrangian frame of reference. + +*homepage*: + +version | toolchain +--------|---------- +``0.8.3`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/lancet.md b/docs/version-specific/supported-software/l/lancet.md new file mode 100644 index 000000000..ea6663d98 --- /dev/null +++ b/docs/version-specific/supported-software/l/lancet.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# lancet + +Lancet is a somatic variant caller (SNVs and indels) for short read data. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``iccifort/2019.5.281`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/langchain-anthropic.md b/docs/version-specific/supported-software/l/langchain-anthropic.md new file mode 100644 index 000000000..46cba3124 --- /dev/null +++ b/docs/version-specific/supported-software/l/langchain-anthropic.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# langchain-anthropic + +This package contains the LangChain integration for Anthropic's generative models. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.15`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/lavaan.md b/docs/version-specific/supported-software/l/lavaan.md new file mode 100644 index 000000000..749abd55c --- /dev/null +++ b/docs/version-specific/supported-software/l/lavaan.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# lavaan + +Fit a variety of latent variable models, including confirmatory factor analysis, structural equation modeling and latent growth curve models. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.6-2`` | ``-R-3.4.4`` | ``intel/2018a`` +``0.6-4.1433`` | ``-R-3.6.0`` | ``foss/2019a`` +``0.6-9`` | ``-R-4.1.0`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/lcalc.md b/docs/version-specific/supported-software/l/lcalc.md new file mode 100644 index 000000000..22fd2ba2c --- /dev/null +++ b/docs/version-specific/supported-software/l/lcalc.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# lcalc + +Lcalc is a package for working with L-functions. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.5`` | ``GCCcore/11.3.0`` +``2.0.5`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/leafcutter.md b/docs/version-specific/supported-software/l/leafcutter.md new file mode 100644 index 000000000..7b0fdd1d0 --- /dev/null +++ b/docs/version-specific/supported-software/l/leafcutter.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# leafcutter + +Leafcutter quantifies RNA splicing variation using short-read RNA-seq data. The core idea is to leverage spliced reads (reads that span an intron) to quantify (differential) intron usage across samples. The advantages of this approach include: easy detection of novel introns, modeling of more complex splicing events than exonic PSI, avoiding the challenge of isoform abundance estimation, simple, computationally efficient algorithms scaling to 100s or even 1000s of samples. For details please see our bioRxiv preprint and corresponding Nature Genetics publication. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.9`` | ``-R-4.2.2`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/leidenalg.md b/docs/version-specific/supported-software/l/leidenalg.md new file mode 100644 index 000000000..486ec14c0 --- /dev/null +++ b/docs/version-specific/supported-software/l/leidenalg.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# leidenalg + +Implementation of the Leiden algorithm for various quality functions to be used with igraph in Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.1`` | | ``foss/2022b`` +``0.10.2`` | | ``foss/2023a`` +``0.8.2`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.8.3`` | | ``foss/2020b`` +``0.8.3`` | | ``fosscuda/2020b`` +``0.8.7`` | | ``foss/2021a`` +``0.8.8`` | | ``foss/2021b`` +``0.9.1`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/less.md b/docs/version-specific/supported-software/l/less.md new file mode 100644 index 000000000..488267abf --- /dev/null +++ b/docs/version-specific/supported-software/l/less.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# less + +Less is a free, open-source file pager. It can be found on most versions of Linux, Unix and Mac OS, as well as on many other operating systems. + +*homepage*: + +version | toolchain +--------|---------- +``458`` | ``GCC/4.8.2`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/lftp.md b/docs/version-specific/supported-software/l/lftp.md new file mode 100644 index 000000000..2f3350f3b --- /dev/null +++ b/docs/version-specific/supported-software/l/lftp.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# lftp + +LFTP is a sophisticated ftp/http client, and a file transfer program supporting a number of network protocols. Like BASH, it has job control and uses the readline library for input. It has bookmarks, a built-in mirror command, and can transfer several files in parallel. It was designed with reliability in mind. + +*homepage*: + +version | toolchain +--------|---------- +``4.6.4`` | ``GNU/4.9.3-2.25`` +``4.8.4`` | ``GCCcore/6.4.0`` +``4.9.2`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libBigWig.md b/docs/version-specific/supported-software/l/libBigWig.md new file mode 100644 index 000000000..64ed428ad --- /dev/null +++ b/docs/version-specific/supported-software/l/libBigWig.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# libBigWig + +A C library for handling bigWig files + +*homepage*: + +version | toolchain +--------|---------- +``0.4.4`` | ``GCCcore/8.3.0`` +``0.4.6`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libFLAME.md b/docs/version-specific/supported-software/l/libFLAME.md new file mode 100644 index 000000000..0fb0f5d1e --- /dev/null +++ b/docs/version-specific/supported-software/l/libFLAME.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# libFLAME + +AMD fork of libFLAME. libFLAME is a portable library for dense matrix computations, providing much of the functionality present in LAPACK. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0`` | ``-amd`` | ``GCC/7.3.0-2.30`` +``2.2`` | ``-amd`` | ``GCCcore/9.3.0`` +``5.2.0`` | | ``GCC/10.3.0`` +``5.2.0`` | | ``GCCcore/10.2.0`` +``5.2.0`` | | ``GCCcore/10.3.0`` +``5.2.0`` | | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libGDSII.md b/docs/version-specific/supported-software/l/libGDSII.md new file mode 100644 index 000000000..7b5746be8 --- /dev/null +++ b/docs/version-specific/supported-software/l/libGDSII.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# libGDSII + +libGDSII is a C++ library for working with GDSII binary data files, intended primarily for use with the computational electromagnetism codes scuff-em and meep but sufficiently general-purpose to allow other uses as well. + +*homepage*: + +version | toolchain +--------|---------- +``0.21`` | ``GCCcore/10.2.0`` +``0.21`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libGLU.md b/docs/version-specific/supported-software/l/libGLU.md new file mode 100644 index 000000000..4baf0c863 --- /dev/null +++ b/docs/version-specific/supported-software/l/libGLU.md @@ -0,0 +1,46 @@ +--- +search: + boost: 0.5 +--- +# libGLU + +The OpenGL Utility Library (GLU) is a computer graphics library for OpenGL. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``9.0.0`` | | ``GCCcore/8.2.0`` +``9.0.0`` | ``-Mesa-11.2.1`` | ``foss/2016a`` +``9.0.0`` | | ``foss/2016a`` +``9.0.0`` | | ``foss/2016b`` +``9.0.0`` | | ``foss/2017a`` +``9.0.0`` | | ``foss/2017b`` +``9.0.0`` | | ``foss/2018a`` +``9.0.0`` | | ``foss/2018b`` +``9.0.0`` | | ``fosscuda/2017b`` +``9.0.0`` | | ``fosscuda/2018a`` +``9.0.0`` | | ``fosscuda/2018b`` +``9.0.0`` | | ``gimkl/2.11.5`` +``9.0.0`` | ``-Mesa-11.2.1`` | ``intel/2016a`` +``9.0.0`` | | ``intel/2016a`` +``9.0.0`` | | ``intel/2016b`` +``9.0.0`` | | ``intel/2017a`` +``9.0.0`` | | ``intel/2017b`` +``9.0.0`` | | ``intel/2018a`` +``9.0.0`` | | ``intel/2018b`` +``9.0.0`` | | ``intelcuda/2017b`` +``9.0.0`` | | ``iomkl/2018a`` +``9.0.1`` | | ``GCCcore/10.2.0`` +``9.0.1`` | | ``GCCcore/10.3.0`` +``9.0.1`` | | ``GCCcore/8.3.0`` +``9.0.1`` | | ``GCCcore/9.3.0`` +``9.0.2`` | | ``GCCcore/11.2.0`` +``9.0.2`` | | ``GCCcore/11.3.0`` +``9.0.2`` | | ``GCCcore/12.2.0`` +``9.0.3`` | | ``GCCcore/12.3.0`` +``9.0.3`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libGridXC.md b/docs/version-specific/supported-software/l/libGridXC.md new file mode 100644 index 000000000..7319e83c4 --- /dev/null +++ b/docs/version-specific/supported-software/l/libGridXC.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# libGridXC + +A library to compute the exchange and correlation energy and potential in spherical (i.e. an atom) or periodic systems. It is based on SiestaXC. + +*homepage*: + +version | toolchain +--------|---------- +``0.8.5`` | ``iimpi/2019b`` +``0.9.6`` | ``gompi/2020b`` +``0.9.6`` | ``gompi/2021a`` +``0.9.6`` | ``gompi/2021b`` +``0.9.6`` | ``iimpi/2020b`` +``0.9.6`` | ``iimpi/2021a`` +``0.9.6`` | ``iimpi/2021b`` +``1.1.0`` | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libICE.md b/docs/version-specific/supported-software/l/libICE.md new file mode 100644 index 000000000..79e1b6330 --- /dev/null +++ b/docs/version-specific/supported-software/l/libICE.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# libICE + +X Inter-Client Exchange library for freedesktop.org + +*homepage*: + +version | toolchain +--------|---------- +``1.0.9`` | ``foss/2016a`` +``1.0.9`` | ``gimkl/2.11.5`` +``1.0.9`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libMemcached.md b/docs/version-specific/supported-software/l/libMemcached.md new file mode 100644 index 000000000..6d76b4858 --- /dev/null +++ b/docs/version-specific/supported-software/l/libMemcached.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# libMemcached + +libMemcached is an open source C/C++ client library and tools for the memcached server (http://danga.com/memcached). It has been designed to be light on memory usage, thread safe, and provide full access to server side methods. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.18`` | ``GCCcore/13.2.0`` +``1.0.18`` | ``GCCcore/6.4.0`` +``1.0.18`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libPSML.md b/docs/version-specific/supported-software/l/libPSML.md new file mode 100644 index 000000000..0c17db414 --- /dev/null +++ b/docs/version-specific/supported-software/l/libPSML.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# libPSML + +LibPSML provides a Fortran API to parse files in the PSeudopotential Markup Language (PSML) format. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.10`` | ``GCC/10.2.0`` +``1.1.10`` | ``GCC/10.3.0`` +``1.1.10`` | ``GCC/11.2.0`` +``1.1.10`` | ``iccifort/2020.4.304`` +``1.1.10`` | ``intel-compilers/2021.2.0`` +``1.1.10`` | ``intel-compilers/2021.4.0`` +``1.1.12`` | ``GCC/11.3.0`` +``1.1.7`` | ``foss/2016b`` +``1.1.7`` | ``foss/2017a`` +``1.1.8`` | ``iccifort/2019.5.281`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libQGLViewer.md b/docs/version-specific/supported-software/l/libQGLViewer.md new file mode 100644 index 000000000..e1daaa670 --- /dev/null +++ b/docs/version-specific/supported-software/l/libQGLViewer.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# libQGLViewer + +libQGLViewer is a C++ library based on Qt that eases the creation of OpenGL 3D viewers. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.6.3`` | ``-Mesa-11.2.1`` | ``foss/2016a`` +``2.6.3`` | | ``foss/2016a`` +``2.6.3`` | | ``foss/2016b`` +``2.6.3`` | ``-Mesa-11.2.1`` | ``intel/2016a`` +``2.6.3`` | | ``intel/2016b`` +``2.6.4`` | | ``intel/2016b`` +``2.7.1`` | | ``intel/2018a`` +``2.8.0`` | | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libRmath.md b/docs/version-specific/supported-software/l/libRmath.md new file mode 100644 index 000000000..fa06fb893 --- /dev/null +++ b/docs/version-specific/supported-software/l/libRmath.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# libRmath + +The routines supporting the distribution and special functions in R and a few others are declared in C header file Rmath.h. These can be compiled into a standalone library for linking to other applications. + +*homepage*: + +version | toolchain +--------|---------- +``3.6.0`` | ``foss/2018b`` +``4.0.0`` | ``GCCcore/9.3.0`` +``4.1.0`` | ``GCCcore/10.2.0`` +``4.1.2`` | ``GCCcore/11.2.0`` +``4.2.0`` | ``GCCcore/10.3.0`` +``4.2.1`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libSBML.md b/docs/version-specific/supported-software/l/libSBML.md new file mode 100644 index 000000000..2d885d17a --- /dev/null +++ b/docs/version-specific/supported-software/l/libSBML.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# libSBML + +libSBML (Systems Biology Markup Language library) is a free, open-source programming library to help you read, write, manipulate, translate, and validate SBML files and data streams. It's not an application itself (though it does come with example programs), but rather a library you embed in your own applications. + +*homepage*: + +version | toolchain +--------|---------- +``5.19.0`` | ``GCC/10.2.0`` +``5.19.0`` | ``GCC/10.3.0`` +``5.19.7`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libSM.md b/docs/version-specific/supported-software/l/libSM.md new file mode 100644 index 000000000..02cc4d165 --- /dev/null +++ b/docs/version-specific/supported-software/l/libSM.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# libSM + +X11 Session Management library, which allows for applications to both manage sessions, and make use of session managers to save and restore their state for later use. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.2`` | ``foss/2016a`` +``1.2.2`` | ``gimkl/2.11.5`` +``1.2.2`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libStatGen.md b/docs/version-specific/supported-software/l/libStatGen.md new file mode 100644 index 000000000..0e7443d14 --- /dev/null +++ b/docs/version-specific/supported-software/l/libStatGen.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# libStatGen + +Useful set of classes for creating statistical genetic programs. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.15`` | ``GCCcore/10.2.0`` +``20190330`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libWallModelledLES.md b/docs/version-specific/supported-software/l/libWallModelledLES.md new file mode 100644 index 000000000..0a5d7c894 --- /dev/null +++ b/docs/version-specific/supported-software/l/libWallModelledLES.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libWallModelledLES + +libWallModelledLES is a library based on OpenFOAM® technology, extending the capabilities of OpenFOAM in the area of wall-modelled LES (WMLES). This is a turbulence modelling methodology, which allows to make LES cheaper by not resolving the inner region of turbulent boundary layers. + +*homepage*: + +version | toolchain +--------|---------- +``0.6.1`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libX11.md b/docs/version-specific/supported-software/l/libX11.md new file mode 100644 index 000000000..e0b3f4783 --- /dev/null +++ b/docs/version-specific/supported-software/l/libX11.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# libX11 + +X11 client-side library + +*homepage*: + +version | toolchain +--------|---------- +``1.6.3`` | ``foss/2016a`` +``1.6.3`` | ``gimkl/2.11.5`` +``1.6.3`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libXau.md b/docs/version-specific/supported-software/l/libXau.md new file mode 100644 index 000000000..5361a5af6 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXau.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# libXau + +The libXau package contains a library implementing the X11 Authorization Protocol. This is useful for restricting client access to the display. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.8`` | ``GCCcore/6.4.0`` +``1.0.8`` | ``foss/2016a`` +``1.0.8`` | ``gimkl/2.11.5`` +``1.0.8`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libXcursor.md b/docs/version-specific/supported-software/l/libXcursor.md new file mode 100644 index 000000000..e9fc4cc7c --- /dev/null +++ b/docs/version-specific/supported-software/l/libXcursor.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# libXcursor + +X Cursor management library + +*homepage*: + +version | toolchain +--------|---------- +``1.1.14`` | ``foss/2016a`` +``1.1.14`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libXdamage.md b/docs/version-specific/supported-software/l/libXdamage.md new file mode 100644 index 000000000..9dbed02a7 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXdamage.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# libXdamage + +X Damage extension library + +*homepage*: + +version | toolchain +--------|---------- +``1.1.4`` | ``foss/2016a`` +``1.1.4`` | ``gimkl/2.11.5`` +``1.1.4`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libXdmcp.md b/docs/version-specific/supported-software/l/libXdmcp.md new file mode 100644 index 000000000..bda47d2d8 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXdmcp.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# libXdmcp + +The libXdmcp package contains a library implementing the X Display Manager Control Protocol. This is useful for allowing clients to interact with the X Display Manager. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.2`` | ``GCCcore/6.4.0`` +``1.1.2`` | ``foss/2016a`` +``1.1.2`` | ``gimkl/2.11.5`` +``1.1.2`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libXext.md b/docs/version-specific/supported-software/l/libXext.md new file mode 100644 index 000000000..e5bae84ea --- /dev/null +++ b/docs/version-specific/supported-software/l/libXext.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# libXext + +Common X Extensions library + +*homepage*: + +version | toolchain +--------|---------- +``1.3.3`` | ``foss/2016a`` +``1.3.3`` | ``gimkl/2.11.5`` +``1.3.3`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libXfixes.md b/docs/version-specific/supported-software/l/libXfixes.md new file mode 100644 index 000000000..53d7407c8 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXfixes.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# libXfixes + +X Fixes extension library + +*homepage*: + +version | toolchain +--------|---------- +``5.0.1`` | ``foss/2016a`` +``5.0.1`` | ``gimkl/2.11.5`` +``5.0.1`` | ``intel/2016a`` +``5.0.2`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libXfont.md b/docs/version-specific/supported-software/l/libXfont.md new file mode 100644 index 000000000..5d400dc16 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXfont.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# libXfont + +X font libary + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5.1`` | ``-freetype-2.6.3`` | ``foss/2016a`` +``1.5.1`` | | ``foss/2016a`` +``1.5.1`` | | ``gimkl/2.11.5`` +``1.5.1`` | ``-freetype-2.6.3`` | ``intel/2016a`` +``1.5.1`` | | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libXft.md b/docs/version-specific/supported-software/l/libXft.md new file mode 100644 index 000000000..6791f12b5 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXft.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# libXft + +X11 client-side library + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.3.2`` | ``-freetype-2.6.3`` | ``foss/2016a`` +``2.3.2`` | | ``foss/2016a`` +``2.3.2`` | ``-fontconfig-2.11.95`` | ``intel/2016a`` +``2.3.2`` | | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libXi.md b/docs/version-specific/supported-software/l/libXi.md new file mode 100644 index 000000000..e7bc8ffe5 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXi.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# libXi + +LibXi provides an X Window System client interface to the XINPUT extension to the X protocol. + +*homepage*: + +version | toolchain +--------|---------- +``1.7.6`` | ``foss/2016a`` +``1.7.6`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libXinerama.md b/docs/version-specific/supported-software/l/libXinerama.md new file mode 100644 index 000000000..f88383fde --- /dev/null +++ b/docs/version-specific/supported-software/l/libXinerama.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# libXinerama + +Xinerama multiple monitor library + +*homepage*: + +version | toolchain +--------|---------- +``1.1.3`` | ``foss/2016a`` +``1.1.3`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libXmu.md b/docs/version-specific/supported-software/l/libXmu.md new file mode 100644 index 000000000..f8dcbe087 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXmu.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# libXmu + +libXmu provides a set of miscellaneous utility convenience functions for X libraries to use. libXmuu is a lighter-weight version that does not depend on libXt or libXext + +*homepage*: + +version | toolchain +--------|---------- +``1.1.2`` | ``foss/2016a`` +``1.1.2`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libXp.md b/docs/version-specific/supported-software/l/libXp.md new file mode 100644 index 000000000..d053bdaf9 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXp.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libXp + +libXp provides the X print library. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.3`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libXpm.md b/docs/version-specific/supported-software/l/libXpm.md new file mode 100644 index 000000000..2a20b4f14 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXpm.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# libXpm + +libXp provides the X print library. + +*homepage*: + +version | toolchain +--------|---------- +``3.5.11`` | ``foss/2016a`` +``3.5.11`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libXrandr.md b/docs/version-specific/supported-software/l/libXrandr.md new file mode 100644 index 000000000..28cb22344 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXrandr.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# libXrandr + +X Resize, Rotate and Reflection extension library + +*homepage*: + +version | toolchain +--------|---------- +``1.5.0`` | ``foss/2016a`` +``1.5.0`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libXrender.md b/docs/version-specific/supported-software/l/libXrender.md new file mode 100644 index 000000000..7ea9d2ea2 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXrender.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# libXrender + +X11 client-side library + +*homepage*: + +version | toolchain +--------|---------- +``0.9.9`` | ``foss/2016a`` +``0.9.9`` | ``gimkl/2.11.5`` +``0.9.9`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libXt.md b/docs/version-specific/supported-software/l/libXt.md new file mode 100644 index 000000000..4acb0d9e1 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXt.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# libXt + +libXt provides the X Toolkit Intrinsics, an abstract widget library upon which other toolkits are based. Xt is the basis for many toolkits, including the Athena widgets (Xaw), and LessTif (a Motif implementation). + +*homepage*: + +version | toolchain +--------|---------- +``1.1.5`` | ``foss/2016a`` +``1.1.5`` | ``gimkl/2.11.5`` +``1.1.5`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libXxf86vm.md b/docs/version-specific/supported-software/l/libXxf86vm.md new file mode 100644 index 000000000..2bc399a22 --- /dev/null +++ b/docs/version-specific/supported-software/l/libXxf86vm.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# libXxf86vm + +X11 XFree86 video mode extension library + +*homepage*: + +version | toolchain +--------|---------- +``1.1.4`` | ``foss/2016a`` +``1.1.4`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libabigail.md b/docs/version-specific/supported-software/l/libabigail.md new file mode 100644 index 000000000..783ff71b2 --- /dev/null +++ b/docs/version-specific/supported-software/l/libabigail.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libabigail + +ABIGAIL stands for the Application Binary Interface Generic Analysis and Instrumentation Library. It’s a framework which aims at helping developers and software distributors to spot some ABI-related issues like interface incompatibility in ELF shared libraries by performing a static analysis of the ELF binaries at hand. The type of interface incompatibilities that Abigail focuses on is related to changes on the exported ELF functions and variables symbols, as well as layout and size changes of data types of the functions and variables exported by shared libraries. In other words, if the return type of a function exported by a shared library changes in an incompatible way from one version of a given shared library to another, we want Abigail to help people catch that. + +*homepage*: + +version | toolchain +--------|---------- +``2.5`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libaec.md b/docs/version-specific/supported-software/l/libaec.md new file mode 100644 index 000000000..eb49ce1cc --- /dev/null +++ b/docs/version-specific/supported-software/l/libaec.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# libaec + +Libaec provides fast lossless compression of 1 up to 32 bit wide signed or unsigned integers (samples). The library achieves best results for low entropy data as often encountered in space imaging instrument data or numerical model output from weather or climate simulations. While floating point representations are not directly supported, they can also be efficiently coded by grouping exponents and mantissa. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.6`` | ``GCCcore/10.2.0`` +``1.0.6`` | ``GCCcore/10.3.0`` +``1.0.6`` | ``GCCcore/11.2.0`` +``1.0.6`` | ``GCCcore/11.3.0`` +``1.0.6`` | ``GCCcore/12.2.0`` +``1.0.6`` | ``GCCcore/12.3.0`` +``1.0.6`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libaed2.md b/docs/version-specific/supported-software/l/libaed2.md new file mode 100644 index 000000000..ffe0d949e --- /dev/null +++ b/docs/version-specific/supported-software/l/libaed2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libaed2 + +libaed2 is a library of modules and algorithms for simulation of "aquatic ecodynamics" - water quality, aquatic biogeochemsitry, biotic habitat and aquatic ecosystem dynamics. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.0`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libaio.md b/docs/version-specific/supported-software/l/libaio.md new file mode 100644 index 000000000..fafbcf2e5 --- /dev/null +++ b/docs/version-specific/supported-software/l/libaio.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# libaio + +Asynchronous input/output library that uses the kernels native interface. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.111`` | ``GCCcore/8.2.0`` +``0.3.111`` | ``GCCcore/8.3.0`` +``0.3.112`` | ``GCCcore/10.2.0`` +``0.3.112`` | ``GCCcore/10.3.0`` +``0.3.112`` | ``GCCcore/11.2.0`` +``0.3.112`` | ``GCCcore/11.3.0`` +``0.3.113`` | ``GCCcore/12.2.0`` +``0.3.113`` | ``GCCcore/12.3.0`` +``0.3.113`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libarchive.md b/docs/version-specific/supported-software/l/libarchive.md new file mode 100644 index 000000000..bac586398 --- /dev/null +++ b/docs/version-specific/supported-software/l/libarchive.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# libarchive + +Multi-format archive and compression library + +*homepage*: + +version | toolchain +--------|---------- +``3.4.0`` | ``GCCcore/8.2.0`` +``3.4.2`` | ``GCCcore/9.3.0`` +``3.4.3`` | ``GCCcore/10.2.0`` +``3.5.1`` | ``GCCcore/10.3.0`` +``3.5.1`` | ``GCCcore/11.2.0`` +``3.5.1`` | ``GCCcore/8.3.0`` +``3.6.1`` | ``GCCcore/11.3.0`` +``3.6.1`` | ``GCCcore/12.2.0`` +``3.6.2`` | ``GCCcore/12.3.0`` +``3.6.2`` | ``GCCcore/13.1.0`` +``3.7.2`` | ``GCCcore/13.2.0`` +``3.7.4`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libav.md b/docs/version-specific/supported-software/l/libav.md new file mode 100644 index 000000000..c1ebf6d77 --- /dev/null +++ b/docs/version-specific/supported-software/l/libav.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libav + +Libav is a friendly and community-driven effort to provide its users with a set of portable, functional and high-performance libraries for dealing with multimedia formats of all sorts. + +*homepage*: + +version | toolchain +--------|---------- +``11.10`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libavif.md b/docs/version-specific/supported-software/l/libavif.md new file mode 100644 index 000000000..41a54987c --- /dev/null +++ b/docs/version-specific/supported-software/l/libavif.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# libavif + +This library aims to be a friendly, portable C implementation of the AV1 Image File Format, as described here: https://aomediacodec.github.io/av1-avif/ + +*homepage*: + +version | toolchain +--------|---------- +``0.11.1`` | ``GCCcore/10.3.0`` +``0.11.1`` | ``GCCcore/11.3.0`` +``0.9.0`` | ``foss/2020b`` +``1.0.4`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libbaseencode.md b/docs/version-specific/supported-software/l/libbaseencode.md new file mode 100644 index 000000000..8f2cc2164 --- /dev/null +++ b/docs/version-specific/supported-software/l/libbaseencode.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libbaseencode + +Library written in C for encoding and decoding data using base32 or base64 according to RFC-4648 + +*homepage*: + +version | toolchain +--------|---------- +``1.0.11`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libbitmask.md b/docs/version-specific/supported-software/l/libbitmask.md new file mode 100644 index 000000000..4ebee2dee --- /dev/null +++ b/docs/version-specific/supported-software/l/libbitmask.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libbitmask + +libbitmask provides a convenient, powerful bitmask data type + +*homepage*: + +version | toolchain +--------|---------- +``2.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libbraiding.md b/docs/version-specific/supported-software/l/libbraiding.md new file mode 100644 index 000000000..63d471428 --- /dev/null +++ b/docs/version-specific/supported-software/l/libbraiding.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libbraiding + +This is a project to expose the functionalitis of the Braiding program as a shared library. The original goal is to include it as a component of SageMath, but it can be used in any other c++ program. + +*homepage*: + +version | toolchain +--------|---------- +``1.2`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libcdms.md b/docs/version-specific/supported-software/l/libcdms.md new file mode 100644 index 000000000..dff8b7c2c --- /dev/null +++ b/docs/version-specific/supported-software/l/libcdms.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libcdms + +Climate Data Management System Library. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.1.2`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libcerf.md b/docs/version-specific/supported-software/l/libcerf.md new file mode 100644 index 000000000..331430c2d --- /dev/null +++ b/docs/version-specific/supported-software/l/libcerf.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# libcerf + +libcerf is a self-contained numeric library that provides an efficient and accurate implementation of complex error functions, along with Dawson, Faddeeva, and Voigt functions. + +*homepage*: + +version | toolchain +--------|---------- +``1.11`` | ``GCCcore/7.3.0`` +``1.11`` | ``GCCcore/8.2.0`` +``1.13`` | ``GCCcore/8.3.0`` +``1.13`` | ``GCCcore/9.3.0`` +``1.14`` | ``GCCcore/10.2.0`` +``1.15`` | ``GCCcore/10.3.0`` +``1.17`` | ``GCCcore/10.3.0`` +``1.17`` | ``GCCcore/11.2.0`` +``1.4`` | ``foss/2016a`` +``1.4`` | ``foss/2016b`` +``1.4`` | ``intel/2016a`` +``1.5`` | ``GCCcore/5.4.0`` +``1.5`` | ``GCCcore/6.3.0`` +``1.5`` | ``GCCcore/6.4.0`` +``1.5`` | ``foss/2016b`` +``1.5`` | ``intel/2016b`` +``1.5`` | ``intel/2017a`` +``1.7`` | ``GCCcore/7.3.0`` +``2.1`` | ``GCCcore/11.3.0`` +``2.3`` | ``GCCcore/12.2.0`` +``2.3`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libcint.md b/docs/version-specific/supported-software/l/libcint.md new file mode 100644 index 000000000..9b87af2e4 --- /dev/null +++ b/docs/version-specific/supported-software/l/libcint.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# libcint + +libcint is an open source library for analytical Gaussian integrals. + +*homepage*: + +version | toolchain +--------|---------- +``4.4.0`` | ``foss/2020b`` +``4.4.0`` | ``foss/2021a`` +``4.4.0`` | ``gomkl/2021a`` +``5.1.6`` | ``foss/2022a`` +``5.4.0`` | ``gfbf/2023a`` +``5.5.0`` | ``gfbf/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libcircle.md b/docs/version-specific/supported-software/l/libcircle.md new file mode 100644 index 000000000..1b72da498 --- /dev/null +++ b/docs/version-specific/supported-software/l/libcircle.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# libcircle + +An API to provide an efficient distributed queue on a cluster. libcircle is an API for distributing embarrassingly parallel workloads using self-stabilization. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.1-rc.1`` | ``gompi/2019a`` +``0.2.1-rc.1`` | ``iimpi/2019a`` +``0.3`` | ``gompi/2020a`` +``0.3`` | ``gompi/2020b`` +``0.3`` | ``gompi/2022a`` +``0.3`` | ``gompi/2023a`` +``0.3`` | ``iimpi/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libcmaes.md b/docs/version-specific/supported-software/l/libcmaes.md new file mode 100644 index 000000000..b607f9074 --- /dev/null +++ b/docs/version-specific/supported-software/l/libcmaes.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libcmaes + +libcmaes is a multithreaded C++11 library for high performance blackbox stochastic optimization using the CMA-ES algorithm for Covariance Matrix Adaptation Evolution Strategy. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.5`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libconfig.md b/docs/version-specific/supported-software/l/libconfig.md new file mode 100644 index 000000000..d608000a4 --- /dev/null +++ b/docs/version-specific/supported-software/l/libconfig.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# libconfig + +Libconfig is a simple library for processing structured configuration files + +*homepage*: + +version | toolchain +--------|---------- +``1.5`` | ``intel/2016b`` +``1.7.1`` | ``GCCcore/6.4.0`` +``1.7.2`` | ``GCCcore/7.3.0`` +``1.7.3`` | ``GCCcore/10.3.0`` +``1.7.3`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libcotp.md b/docs/version-specific/supported-software/l/libcotp.md new file mode 100644 index 000000000..e01fc02ec --- /dev/null +++ b/docs/version-specific/supported-software/l/libcotp.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libcotp + +C library that generates TOTP and HOTP according to RFC-6238 + +*homepage*: + +version | toolchain +--------|---------- +``1.2.3`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libcpuset.md b/docs/version-specific/supported-software/l/libcpuset.md new file mode 100644 index 000000000..f79e16b2e --- /dev/null +++ b/docs/version-specific/supported-software/l/libcpuset.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libcpuset + +libcpuset provides full access to cpuset capabilities + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libcroco.md b/docs/version-specific/supported-software/l/libcroco.md new file mode 100644 index 000000000..8b636c0b2 --- /dev/null +++ b/docs/version-specific/supported-software/l/libcroco.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# libcroco + +Libcroco is a standalone css2 parsing and manipulation library. + +*homepage*: + +version | toolchain +--------|---------- +``0.6.11`` | ``intel/2016a`` +``0.6.13`` | ``GCC/10.2.0`` +``0.6.13`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libctl.md b/docs/version-specific/supported-software/l/libctl.md new file mode 100644 index 000000000..78d07d45c --- /dev/null +++ b/docs/version-specific/supported-software/l/libctl.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# libctl + +libctl is a free Guile-based library implementing flexible control files for scientific simulations. + +*homepage*: + +version | toolchain +--------|---------- +``3.2.2`` | ``foss/2016a`` +``4.0.0`` | ``intel/2020a`` +``4.1.3`` | ``GCCcore/6.4.0`` +``4.5.1`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libdap.md b/docs/version-specific/supported-software/l/libdap.md new file mode 100644 index 000000000..9b3c5a7ce --- /dev/null +++ b/docs/version-specific/supported-software/l/libdap.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# libdap + +A C++ SDK which contains an implementation of DAP 2.0 and the development versions of DAP3, up to 3.4. This includes both Client- and Server-side support classes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.18.1`` | ``-Python-2.7.11`` | ``foss/2016a`` +``3.18.1`` | | ``intel/2017a`` +``3.19.1`` | | ``GCCcore/6.4.0`` +``3.19.1`` | | ``foss/2017b`` +``3.19.1`` | | ``intel/2017b`` +``3.20.11`` | | ``GCCcore/11.3.0`` +``3.20.3`` | | ``GCCcore/7.3.0`` +``3.20.4`` | | ``GCCcore/8.2.0`` +``3.20.6`` | | ``GCCcore/8.3.0`` +``3.20.7`` | | ``GCCcore/10.2.0`` +``3.20.7`` | | ``GCCcore/10.3.0`` +``3.20.7`` | | ``GCCcore/9.3.0`` +``3.20.8`` | | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libde265.md b/docs/version-specific/supported-software/l/libde265.md new file mode 100644 index 000000000..d05238d3f --- /dev/null +++ b/docs/version-specific/supported-software/l/libde265.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# libde265 + +libde265 is an open source implementation of the h.265 video codec + +*homepage*: + +version | toolchain +--------|---------- +``1.0.11`` | ``GCC/11.3.0`` +``1.0.15`` | ``GCC/12.3.0`` +``1.0.8`` | ``GCC/10.3.0`` +``1.0.8`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libdeflate.md b/docs/version-specific/supported-software/l/libdeflate.md new file mode 100644 index 000000000..0f68bc2fc --- /dev/null +++ b/docs/version-specific/supported-software/l/libdeflate.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# libdeflate + +Heavily optimized library for DEFLATE/zlib/gzip compression and decompression. + +*homepage*: + +version | toolchain +--------|---------- +``1.10`` | ``GCCcore/11.3.0`` +``1.15`` | ``GCCcore/12.2.0`` +``1.18`` | ``GCCcore/12.3.0`` +``1.19`` | ``GCCcore/13.2.0`` +``1.20`` | ``GCCcore/13.3.0`` +``1.5`` | ``GCCcore/7.3.0`` +``1.7`` | ``GCCcore/10.2.0`` +``1.7`` | ``GCCcore/10.3.0`` +``1.7`` | ``GCCcore/9.3.0`` +``1.8`` | ``GCCcore/10.3.0`` +``1.8`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libdivsufsort.md b/docs/version-specific/supported-software/l/libdivsufsort.md new file mode 100644 index 000000000..f58c197a9 --- /dev/null +++ b/docs/version-specific/supported-software/l/libdivsufsort.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libdivsufsort + +libdivsufsort is a software library that implements a lightweight suffix array construction algorithm. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libdrm.md b/docs/version-specific/supported-software/l/libdrm.md new file mode 100644 index 000000000..b89180f62 --- /dev/null +++ b/docs/version-specific/supported-software/l/libdrm.md @@ -0,0 +1,39 @@ +--- +search: + boost: 0.5 +--- +# libdrm + +Direct Rendering Manager runtime library. + +*homepage*: + +version | toolchain +--------|---------- +``2.4.100`` | ``GCCcore/9.3.0`` +``2.4.102`` | ``GCCcore/10.2.0`` +``2.4.106`` | ``GCCcore/10.3.0`` +``2.4.107`` | ``GCCcore/11.2.0`` +``2.4.110`` | ``GCCcore/11.3.0`` +``2.4.114`` | ``GCCcore/12.2.0`` +``2.4.115`` | ``GCCcore/12.3.0`` +``2.4.117`` | ``GCCcore/13.2.0`` +``2.4.67`` | ``foss/2016a`` +``2.4.67`` | ``gimkl/2.11.5`` +``2.4.67`` | ``intel/2016a`` +``2.4.68`` | ``foss/2016a`` +``2.4.68`` | ``intel/2016a`` +``2.4.70`` | ``GCCcore/5.4.0`` +``2.4.70`` | ``foss/2016b`` +``2.4.70`` | ``intel/2016b`` +``2.4.76`` | ``GCCcore/6.3.0`` +``2.4.76`` | ``intel/2017a`` +``2.4.88`` | ``GCCcore/6.4.0`` +``2.4.91`` | ``GCCcore/6.4.0`` +``2.4.92`` | ``GCCcore/7.3.0`` +``2.4.97`` | ``GCCcore/8.2.0`` +``2.4.99`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libdrs.md b/docs/version-specific/supported-software/l/libdrs.md new file mode 100644 index 000000000..0b372d035 --- /dev/null +++ b/docs/version-specific/supported-software/l/libdrs.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libdrs + +PCMDI's old DRS format implementation + +*homepage*: + +version | toolchain +--------|---------- +``3.1.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libdwarf.md b/docs/version-specific/supported-software/l/libdwarf.md new file mode 100644 index 000000000..a5e68e9d9 --- /dev/null +++ b/docs/version-specific/supported-software/l/libdwarf.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# libdwarf + +The DWARF Debugging Information Format is of interest to programmers working on compilers and debuggers (and anyone interested in reading or writing DWARF information)) + +*homepage*: + +version | toolchain +--------|---------- +``0.4.1`` | ``GCCcore/11.3.0`` +``0.7.0`` | ``GCCcore/12.3.0`` +``0.9.2`` | ``GCCcore/13.2.0`` +``20140805`` | ``GCC/4.9.2`` +``20150310`` | ``GCC/4.9.2`` +``20150310`` | ``GCCcore/5.4.0`` +``20150310`` | ``GCCcore/6.3.0`` +``20190529`` | ``GCCcore/8.2.0`` +``20201201`` | ``GCCcore/10.2.0`` +``20210305`` | ``GCCcore/10.3.0`` +``20210528`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libedit.md b/docs/version-specific/supported-software/l/libedit.md new file mode 100644 index 000000000..e1a14f48d --- /dev/null +++ b/docs/version-specific/supported-software/l/libedit.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# libedit + +This BSD-style licensed command line editor library provides generic line editing, history, and tokenization functions, similar to those found in GNU Readline. + +*homepage*: + +version | toolchain +--------|---------- +``20150325`` | ``GNU/4.9.3-2.25`` +``20180525`` | ``GCCcore/6.4.0`` +``20191231`` | ``GCCcore/12.3.0`` +``20191231`` | ``GCCcore/9.3.0`` +``20210910`` | ``GCCcore/10.3.0`` +``20210910`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libelf.md b/docs/version-specific/supported-software/l/libelf.md new file mode 100644 index 000000000..347a2fcfa --- /dev/null +++ b/docs/version-specific/supported-software/l/libelf.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# libelf + +libelf is a free ELF object file access library + +*homepage*: + +version | toolchain +--------|---------- +``0.8.13`` | ``GCC/4.8.3`` +``0.8.13`` | ``GCC/4.9.2`` +``0.8.13`` | ``GCCcore/10.2.0`` +``0.8.13`` | ``GCCcore/10.3.0`` +``0.8.13`` | ``GCCcore/11.2.0`` +``0.8.13`` | ``GCCcore/11.3.0`` +``0.8.13`` | ``GCCcore/5.4.0`` +``0.8.13`` | ``GCCcore/6.3.0`` +``0.8.13`` | ``GCCcore/8.2.0`` +``0.8.13`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libemf.md b/docs/version-specific/supported-software/l/libemf.md new file mode 100644 index 000000000..f38b6f251 --- /dev/null +++ b/docs/version-specific/supported-software/l/libemf.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libemf + +Library implementation of ECMA-234 API for the generation of enhanced metafiles. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.13`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libepoxy.md b/docs/version-specific/supported-software/l/libepoxy.md new file mode 100644 index 000000000..c0c484f6f --- /dev/null +++ b/docs/version-specific/supported-software/l/libepoxy.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# libepoxy + +Epoxy is a library for handling OpenGL function pointer management for you + +*homepage*: + +version | toolchain +--------|---------- +``1.5.10`` | ``GCCcore/11.3.0`` +``1.5.10`` | ``GCCcore/12.2.0`` +``1.5.10`` | ``GCCcore/12.3.0`` +``1.5.10`` | ``GCCcore/13.2.0`` +``1.5.2`` | ``foss/2018a`` +``1.5.3`` | ``GCCcore/8.2.0`` +``1.5.3`` | ``fosscuda/2018b`` +``1.5.4`` | ``GCCcore/10.2.0`` +``1.5.4`` | ``GCCcore/8.3.0`` +``1.5.4`` | ``GCCcore/9.3.0`` +``1.5.8`` | ``GCCcore/10.3.0`` +``1.5.8`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libev.md b/docs/version-specific/supported-software/l/libev.md new file mode 100644 index 000000000..c989d034d --- /dev/null +++ b/docs/version-specific/supported-software/l/libev.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# libev + +A full-featured and high-performance (see benchmark) event loop that is loosely modelled after libevent, but without its limitations and bugs. It is used in GNU Virtual Private Ethernet, rxvt-unicode, auditd, the Deliantra MORPG Server and Client, and many other programs. + +*homepage*: + +version | toolchain +--------|---------- +``4.33`` | ``GCC/11.2.0`` +``4.33`` | ``GCC/11.3.0`` +``4.33`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libevent.md b/docs/version-specific/supported-software/l/libevent.md new file mode 100644 index 000000000..84a7dcf7c --- /dev/null +++ b/docs/version-specific/supported-software/l/libevent.md @@ -0,0 +1,39 @@ +--- +search: + boost: 0.5 +--- +# libevent + +The libevent API provides a mechanism to execute a callback function when a specific event occurs on a file descriptor or after a timeout has been reached. Furthermore, libevent also support callbacks due to signals or regular timeouts. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.22`` | ``GCC/4.9.2`` +``2.0.22`` | ``GCC/5.4.0-2.26`` +``2.0.22`` | ``GCCcore/4.9.3`` +``2.0.22`` | ``GNU/4.9.3-2.25`` +``2.1.11`` | ``GCCcore/7.2.0`` +``2.1.11`` | ``GCCcore/7.3.0`` +``2.1.11`` | ``GCCcore/8.3.0`` +``2.1.11`` | ``GCCcore/9.3.0`` +``2.1.12`` | ``GCCcore/10.2.0`` +``2.1.12`` | ``GCCcore/10.3.0`` +``2.1.12`` | ``GCCcore/11.2.0`` +``2.1.12`` | ``GCCcore/11.3.0`` +``2.1.12`` | ``GCCcore/12.2.0`` +``2.1.12`` | ``GCCcore/12.3.0`` +``2.1.12`` | ``GCCcore/13.2.0`` +``2.1.12`` | ``GCCcore/13.3.0`` +``2.1.12`` | ``system`` +``2.1.8`` | ``GCCcore/6.4.0`` +``2.1.8`` | ``GCCcore/7.2.0`` +``2.1.8`` | ``GCCcore/7.3.0`` +``2.1.8`` | ``GCCcore/8.2.0`` +``2.1.8`` | ``GCCcore/8.3.0`` +``2.1.8`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libexif.md b/docs/version-specific/supported-software/l/libexif.md new file mode 100644 index 000000000..4b4cf87fa --- /dev/null +++ b/docs/version-specific/supported-software/l/libexif.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libexif + +A library for parsing, editing, and saving EXIF data. + +*homepage*: + +version | toolchain +--------|---------- +``0.6.24`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libfabric.md b/docs/version-specific/supported-software/l/libfabric.md new file mode 100644 index 000000000..c2b6ff7bc --- /dev/null +++ b/docs/version-specific/supported-software/l/libfabric.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# libfabric + +Libfabric is a core component of OFI. It is the library that defines and exports the user-space API of OFI, and is typically the only software that applications deal with directly. It works in conjunction with provider libraries, which are often integrated directly into libfabric. + +*homepage*: + +version | toolchain +--------|---------- +``1.10.1`` | ``GCCcore/9.3.0`` +``1.11.0`` | ``GCCcore/10.2.0`` +``1.11.0`` | ``GCCcore/9.3.0`` +``1.12.1`` | ``GCCcore/10.3.0`` +``1.13.0`` | ``GCCcore/11.2.0`` +``1.13.1`` | ``GCCcore/11.2.0`` +``1.13.2`` | ``GCCcore/11.2.0`` +``1.15.1`` | ``GCCcore/11.3.0`` +``1.16.1`` | ``GCCcore/12.2.0`` +``1.18.0`` | ``GCCcore/12.3.0`` +``1.19.0`` | ``GCCcore/13.2.0`` +``1.21.0`` | ``GCCcore/13.3.0`` +``1.9.1`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libfdf.md b/docs/version-specific/supported-software/l/libfdf.md new file mode 100644 index 000000000..1dce06400 --- /dev/null +++ b/docs/version-specific/supported-software/l/libfdf.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# libfdf + +LibFDF provides a Fortran API to parse files in the Flexible Data Format (FDF). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.2`` | ``-serial`` | ``GCC/10.2.0`` +``0.2.2`` | ``-serial`` | ``GCC/10.3.0`` +``0.2.2`` | ``-serial`` | ``GCC/11.2.0`` +``0.2.2`` | ``-serial`` | ``iccifort/2020.4.304`` +``0.2.2`` | ``-serial`` | ``intel-compilers/2021.2.0`` +``0.2.2`` | ``-serial`` | ``intel-compilers/2021.4.0`` +``0.5.0`` | | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libffcall.md b/docs/version-specific/supported-software/l/libffcall.md new file mode 100644 index 000000000..748c0337b --- /dev/null +++ b/docs/version-specific/supported-software/l/libffcall.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# libffcall + +GNU Libffcall is a collection of four libraries which can be used to build foreign function call interfaces in embedded interpreters + +*homepage*: + +version | toolchain +--------|---------- +``1.13`` | ``GCCcore/6.4.0`` +``2.2`` | ``GCCcore/8.3.0`` +``2.2`` | ``GCCcore/9.3.0`` +``2.4`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libffi.md b/docs/version-specific/supported-software/l/libffi.md new file mode 100644 index 000000000..5ec095d72 --- /dev/null +++ b/docs/version-specific/supported-software/l/libffi.md @@ -0,0 +1,43 @@ +--- +search: + boost: 0.5 +--- +# libffi + +The libffi library provides a portable, high level programming interface to various calling conventions. This allows a programmer to call any function specified by a call interface description at run-time. + +*homepage*: + +version | toolchain +--------|---------- +``3.2.1`` | ``GCC/4.9.2`` +``3.2.1`` | ``GCC/4.9.3-2.25`` +``3.2.1`` | ``GCC/5.4.0-2.26`` +``3.2.1`` | ``GCCcore/5.4.0`` +``3.2.1`` | ``GCCcore/6.3.0`` +``3.2.1`` | ``GCCcore/6.4.0`` +``3.2.1`` | ``GCCcore/7.3.0`` +``3.2.1`` | ``GCCcore/8.2.0`` +``3.2.1`` | ``GCCcore/8.3.0`` +``3.2.1`` | ``GNU/4.9.3-2.25`` +``3.2.1`` | ``foss/2016.04`` +``3.2.1`` | ``foss/2016a`` +``3.2.1`` | ``foss/2016b`` +``3.2.1`` | ``gimkl/2.11.5`` +``3.2.1`` | ``intel/2016a`` +``3.2.1`` | ``intel/2016b`` +``3.2.1`` | ``system`` +``3.3`` | ``GCCcore/10.2.0`` +``3.3`` | ``GCCcore/10.3.0`` +``3.3`` | ``GCCcore/9.3.0`` +``3.4.2`` | ``GCCcore/11.2.0`` +``3.4.2`` | ``GCCcore/11.3.0`` +``3.4.4`` | ``GCCcore/12.2.0`` +``3.4.4`` | ``GCCcore/12.3.0`` +``3.4.4`` | ``GCCcore/13.1.0`` +``3.4.4`` | ``GCCcore/13.2.0`` +``3.4.5`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libfontenc.md b/docs/version-specific/supported-software/l/libfontenc.md new file mode 100644 index 000000000..e83f9f827 --- /dev/null +++ b/docs/version-specific/supported-software/l/libfontenc.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# libfontenc + +X11 font encoding library + +*homepage*: + +version | toolchain +--------|---------- +``1.1.3`` | ``foss/2016a`` +``1.1.3`` | ``gimkl/2.11.5`` +``1.1.3`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libfyaml.md b/docs/version-specific/supported-software/l/libfyaml.md new file mode 100644 index 000000000..2da5ec4c0 --- /dev/null +++ b/docs/version-specific/supported-software/l/libfyaml.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# libfyaml + +Fully feature complete YAML parser and emitter, supporting the latest YAML spec and passing the full YAML testsuite. + +*homepage*: + +version | toolchain +--------|---------- +``0.9`` | ``GCCcore/12.2.0`` +``0.9`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libgcrypt.md b/docs/version-specific/supported-software/l/libgcrypt.md new file mode 100644 index 000000000..b9ee06d8f --- /dev/null +++ b/docs/version-specific/supported-software/l/libgcrypt.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# libgcrypt + +Libgcrypt is a general purpose cryptographic library originally based on code from GnuPG + +*homepage*: + +version | toolchain +--------|---------- +``1.10.1`` | ``GCCcore/11.3.0`` +``1.10.3`` | ``GCCcore/12.3.0`` +``1.6.5`` | ``intel/2016a`` +``1.8.4`` | ``GCCcore/7.3.0`` +``1.8.4`` | ``GCCcore/8.2.0`` +``1.8.5`` | ``GCCcore/8.3.0`` +``1.9.2`` | ``GCCcore/10.2.0`` +``1.9.2`` | ``GCCcore/10.3.0`` +``1.9.3`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libgd.md b/docs/version-specific/supported-software/l/libgd.md new file mode 100644 index 000000000..0d4fe9b7f --- /dev/null +++ b/docs/version-specific/supported-software/l/libgd.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# libgd + +GD is an open source code library for the dynamic creation of images by programmers. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.1`` | ``foss/2016a`` +``2.1.1`` | ``intel/2016a`` +``2.2.3`` | ``foss/2016b`` +``2.2.3`` | ``intel/2016b`` +``2.2.4`` | ``GCCcore/6.4.0`` +``2.2.4`` | ``foss/2016b`` +``2.2.4`` | ``intel/2017a`` +``2.2.5`` | ``GCCcore/6.4.0`` +``2.2.5`` | ``GCCcore/7.3.0`` +``2.2.5`` | ``GCCcore/8.2.0`` +``2.2.5`` | ``GCCcore/8.3.0`` +``2.2.5`` | ``intel/2017b`` +``2.2.5`` | ``intel/2018a`` +``2.3.0`` | ``GCCcore/10.2.0`` +``2.3.0`` | ``GCCcore/9.3.0`` +``2.3.1`` | ``GCCcore/10.3.0`` +``2.3.3`` | ``GCCcore/11.2.0`` +``2.3.3`` | ``GCCcore/11.3.0`` +``2.3.3`` | ``GCCcore/12.2.0`` +``2.3.3`` | ``GCCcore/12.3.0`` +``2.3.3`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libgdiplus.md b/docs/version-specific/supported-software/l/libgdiplus.md new file mode 100644 index 000000000..8d1c65276 --- /dev/null +++ b/docs/version-specific/supported-software/l/libgdiplus.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libgdiplus + +Libgdiplus is the Mono library that provides a GDI+-compatible API on non-Windows operating systems. + +*homepage*: + +version | toolchain +--------|---------- +``6.1`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libgeotiff.md b/docs/version-specific/supported-software/l/libgeotiff.md new file mode 100644 index 000000000..98308b283 --- /dev/null +++ b/docs/version-specific/supported-software/l/libgeotiff.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# libgeotiff + +Library for reading and writing coordinate system information from/to GeoTIFF files + +*homepage*: + +version | toolchain +--------|---------- +``1.4.2`` | ``foss/2018a`` +``1.4.2`` | ``foss/2018b`` +``1.4.2`` | ``intel/2018b`` +``1.5.1`` | ``GCCcore/8.2.0`` +``1.5.1`` | ``GCCcore/8.3.0`` +``1.5.1`` | ``GCCcore/9.3.0`` +``1.6.0`` | ``GCCcore/10.2.0`` +``1.6.0`` | ``GCCcore/10.3.0`` +``1.7.0`` | ``GCCcore/11.2.0`` +``1.7.1`` | ``GCCcore/11.3.0`` +``1.7.1`` | ``GCCcore/12.2.0`` +``1.7.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libgit2.md b/docs/version-specific/supported-software/l/libgit2.md new file mode 100644 index 000000000..ce026d71e --- /dev/null +++ b/docs/version-specific/supported-software/l/libgit2.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# libgit2 + +libgit2 is a portable, pure C implementation of the Git core methods provided as a re-entrant linkable library with a solid API, allowing you to write native speed custom Git applications in any language which supports C bindings. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0`` | ``GCCcore/8.3.0`` +``1.1.0`` | ``GCCcore/10.2.0`` +``1.1.0`` | ``GCCcore/10.3.0`` +``1.1.0`` | ``GCCcore/9.3.0`` +``1.1.1`` | ``GCCcore/11.2.0`` +``1.4.3`` | ``GCCcore/11.3.0`` +``1.5.0`` | ``GCCcore/12.2.0`` +``1.7.1`` | ``GCCcore/12.3.0`` +``1.7.2`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libglade.md b/docs/version-specific/supported-software/l/libglade.md new file mode 100644 index 000000000..30eb22c56 --- /dev/null +++ b/docs/version-specific/supported-software/l/libglade.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# libglade + +Libglade is a library for constructing user interfaces dynamically from XML descriptions. + +*homepage*: + +version | toolchain +--------|---------- +``2.6.4`` | ``foss/2018b`` +``2.6.4`` | ``intel/2016a`` +``2.6.4`` | ``intel/2017b`` +``2.6.4`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libglvnd.md b/docs/version-specific/supported-software/l/libglvnd.md new file mode 100644 index 000000000..71e6b32d6 --- /dev/null +++ b/docs/version-specific/supported-software/l/libglvnd.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# libglvnd + +libglvnd is a vendor-neutral dispatch layer for arbitrating OpenGL API calls between multiple vendors. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.0`` | ``GCCcore/8.2.0`` +``1.2.0`` | ``GCCcore/8.3.0`` +``1.2.0`` | ``GCCcore/9.3.0`` +``1.3.2`` | ``GCCcore/10.2.0`` +``1.3.3`` | ``GCCcore/10.3.0`` +``1.3.3`` | ``GCCcore/11.2.0`` +``1.4.0`` | ``GCCcore/11.3.0`` +``1.6.0`` | ``GCCcore/12.2.0`` +``1.6.0`` | ``GCCcore/12.3.0`` +``1.7.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libgpg-error.md b/docs/version-specific/supported-software/l/libgpg-error.md new file mode 100644 index 000000000..6b5e5d898 --- /dev/null +++ b/docs/version-specific/supported-software/l/libgpg-error.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# libgpg-error + +Libgpg-error is a small library that defines common error values for all GnuPG components. + +*homepage*: + +version | toolchain +--------|---------- +``1.21`` | ``intel/2016a`` +``1.35`` | ``GCCcore/7.3.0`` +``1.36`` | ``GCCcore/8.2.0`` +``1.38`` | ``GCCcore/8.3.0`` +``1.41`` | ``GCCcore/10.2.0`` +``1.42`` | ``GCCcore/10.3.0`` +``1.42`` | ``GCCcore/11.2.0`` +``1.46`` | ``GCCcore/11.3.0`` +``1.48`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libgpuarray.md b/docs/version-specific/supported-software/l/libgpuarray.md new file mode 100644 index 000000000..0557ee1cf --- /dev/null +++ b/docs/version-specific/supported-software/l/libgpuarray.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# libgpuarray + +Library to manipulate tensors on the GPU. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7.5`` | ``-Python-2.7.14`` | ``fosscuda/2017b`` +``0.7.5`` | ``-Python-3.6.3`` | ``fosscuda/2017b`` +``0.7.5`` | ``-Python-3.6.3`` | ``intel/2017b`` +``0.7.5`` | ``-Python-2.7.14`` | ``intelcuda/2017b`` +``0.7.5`` | ``-Python-3.6.3`` | ``intelcuda/2017b`` +``0.7.6`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``0.7.6`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``0.7.6`` | | ``fosscuda/2019a`` +``0.7.6`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``0.7.6`` | | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libgtextutils.md b/docs/version-specific/supported-software/l/libgtextutils.md new file mode 100644 index 000000000..27f4023e8 --- /dev/null +++ b/docs/version-specific/supported-software/l/libgtextutils.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# libgtextutils + +ligtextutils is a dependency of fastx-toolkit and is provided via the same upstream + +*homepage*: + +version | toolchain +--------|---------- +``0.7`` | ``GCCcore/7.3.0`` +``0.7`` | ``foss/2016a`` +``0.7`` | ``foss/2016b`` +``0.7`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libgxps.md b/docs/version-specific/supported-software/l/libgxps.md new file mode 100644 index 000000000..c46840682 --- /dev/null +++ b/docs/version-specific/supported-software/l/libgxps.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libgxps + +libgxps is a GObject based library for handling and rendering XPS documents. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.2`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libhandy.md b/docs/version-specific/supported-software/l/libhandy.md new file mode 100644 index 000000000..cf5e3c9ec --- /dev/null +++ b/docs/version-specific/supported-software/l/libhandy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libhandy + +Building blocks for modern adaptive GNOME apps + +*homepage*: + +version | toolchain +--------|---------- +``1.8.2`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libharu.md b/docs/version-specific/supported-software/l/libharu.md new file mode 100644 index 000000000..1757a2635 --- /dev/null +++ b/docs/version-specific/supported-software/l/libharu.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# libharu + +libHaru is a free, cross platform, open source library for generating PDF files. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.0`` | ``GCCcore/10.2.0`` +``2.3.0`` | ``GCCcore/10.3.0`` +``2.3.0`` | ``GCCcore/11.2.0`` +``2.3.0`` | ``GCCcore/11.3.0`` +``2.3.0`` | ``GCCcore/7.3.0`` +``2.3.0`` | ``GCCcore/8.2.0`` +``2.3.0`` | ``GCCcore/8.3.0`` +``2.3.0`` | ``foss/2016a`` +``2.3.0`` | ``foss/2016b`` +``2.3.0`` | ``foss/2021a`` +``2.3.0`` | ``foss/2021b`` +``2.3.0`` | ``intel/2017a`` +``2.3.0`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libheif.md b/docs/version-specific/supported-software/l/libheif.md new file mode 100644 index 000000000..e605d417e --- /dev/null +++ b/docs/version-specific/supported-software/l/libheif.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# libheif + +libheif is an HEIF and AVIF file format decoder and encoder + +*homepage*: + +version | toolchain +--------|---------- +``1.12.0`` | ``GCC/10.3.0`` +``1.12.0`` | ``GCC/11.2.0`` +``1.16.2`` | ``GCC/11.3.0`` +``1.17.6`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libhomfly.md b/docs/version-specific/supported-software/l/libhomfly.md new file mode 100644 index 000000000..b7f193391 --- /dev/null +++ b/docs/version-specific/supported-software/l/libhomfly.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libhomfly + +This is basically a conversion of the program written by Robert J Jenkins Jr into a shared library. It accepts as entry a character string, formatted in the same way as the input files that the original code used (see below). The returned value is the string that the original program would print on screen. + +*homepage*: + +version | toolchain +--------|---------- +``1.02r6`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libibmad.md b/docs/version-specific/supported-software/l/libibmad.md new file mode 100644 index 000000000..16676a5a3 --- /dev/null +++ b/docs/version-specific/supported-software/l/libibmad.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libibmad + +libibmad is a convenience library to encode, decode, and dump IB MAD packets. It is implemented on top of and in conjunction with libibumad (the umad kernel interface library.) + +*homepage*: + +version | toolchain +--------|---------- +``1.3.12`` | ``GCC/4.9.3-2.25`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libibumad.md b/docs/version-specific/supported-software/l/libibumad.md new file mode 100644 index 000000000..4966e78a8 --- /dev/null +++ b/docs/version-specific/supported-software/l/libibumad.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libibumad + +libibumad is the umad kernel interface library. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.10.2`` | ``GCC/4.9.3-2.25`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libiconv.md b/docs/version-specific/supported-software/l/libiconv.md new file mode 100644 index 000000000..2f6053313 --- /dev/null +++ b/docs/version-specific/supported-software/l/libiconv.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# libiconv + +Libiconv converts from one character encoding to another through Unicode conversion + +*homepage*: + +version | toolchain +--------|---------- +``1.15`` | ``GCCcore/6.3.0`` +``1.15`` | ``GCCcore/6.4.0`` +``1.15`` | ``GCCcore/7.2.0`` +``1.15`` | ``GCCcore/7.3.0`` +``1.16`` | ``GCCcore/10.2.0`` +``1.16`` | ``GCCcore/10.3.0`` +``1.16`` | ``GCCcore/11.2.0`` +``1.16`` | ``GCCcore/8.2.0`` +``1.16`` | ``GCCcore/8.3.0`` +``1.16`` | ``GCCcore/9.3.0`` +``1.17`` | ``GCCcore/11.3.0`` +``1.17`` | ``GCCcore/12.2.0`` +``1.17`` | ``GCCcore/12.3.0`` +``1.17`` | ``GCCcore/13.2.0`` +``1.17`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libidn.md b/docs/version-specific/supported-software/l/libidn.md new file mode 100644 index 000000000..f2fb7f196 --- /dev/null +++ b/docs/version-specific/supported-software/l/libidn.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# libidn + +GNU Libidn is a fully documented implementation of the Stringprep, Punycode and IDNA specifications. Libidn's purpose is to encode and decode internationalized domain names. + +*homepage*: + +version | toolchain +--------|---------- +``1.32`` | ``GCCcore/5.4.0`` +``1.32`` | ``GNU/4.9.3-2.25`` +``1.32`` | ``foss/2016a`` +``1.32`` | ``foss/2016b`` +``1.32`` | ``intel/2016a`` +``1.34`` | ``GCCcore/6.4.0`` +``1.35`` | ``GCCcore/7.3.0`` +``1.35`` | ``GCCcore/8.3.0`` +``1.35`` | ``GCCcore/9.3.0`` +``1.36`` | ``GCCcore/10.2.0`` +``1.36`` | ``GCCcore/10.3.0`` +``1.38`` | ``GCCcore/11.2.0`` +``1.41`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libidn2.md b/docs/version-specific/supported-software/l/libidn2.md new file mode 100644 index 000000000..79b15af8d --- /dev/null +++ b/docs/version-specific/supported-software/l/libidn2.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# libidn2 + +GNU Libidn is a fully documented implementation of the Stringprep, Punycode and IDNA specifications. Libidn's purpose is to encode and decode internationalized domain names. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.0`` | ``GCCcore/10.2.0`` +``2.3.0`` | ``GCCcore/10.3.0`` +``2.3.0`` | ``GCCcore/5.4.0`` +``2.3.0`` | ``GCCcore/6.4.0`` +``2.3.0`` | ``GCCcore/7.3.0`` +``2.3.0`` | ``GCCcore/8.3.0`` +``2.3.0`` | ``GCCcore/9.3.0`` +``2.3.2`` | ``GCCcore/11.2.0`` +``2.3.2`` | ``GCCcore/11.3.0`` +``2.3.2`` | ``GCCcore/13.2.0`` +``2.3.7`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libjpeg-turbo.md b/docs/version-specific/supported-software/l/libjpeg-turbo.md new file mode 100644 index 000000000..f94c07f15 --- /dev/null +++ b/docs/version-specific/supported-software/l/libjpeg-turbo.md @@ -0,0 +1,44 @@ +--- +search: + boost: 0.5 +--- +# libjpeg-turbo + +libjpeg-turbo is a fork of the original IJG libjpeg which uses SIMD to accelerate baseline JPEG compression and decompression. libjpeg is a library that implements JPEG image encoding, decoding and transcoding. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4.2`` | ``-NASM-2.12.01`` | ``foss/2016a`` +``1.4.2`` | | ``foss/2016a`` +``1.4.2`` | | ``foss/2016b`` +``1.4.2`` | ``-NASM-2.12.01`` | ``intel/2016a`` +``1.4.2`` | | ``intel/2016a`` +``1.5.0`` | | ``GCCcore/5.4.0`` +``1.5.0`` | | ``foss/2016a`` +``1.5.0`` | | ``foss/2016b`` +``1.5.0`` | | ``intel/2016b`` +``1.5.1`` | | ``foss/2016b`` +``1.5.1`` | | ``intel/2016b`` +``1.5.1`` | | ``intel/2017a`` +``1.5.2`` | | ``GCCcore/6.3.0`` +``1.5.2`` | | ``GCCcore/6.4.0`` +``1.5.3`` | | ``GCCcore/6.4.0`` +``2.0.0`` | | ``GCCcore/7.3.0`` +``2.0.2`` | | ``GCCcore/7.3.0`` +``2.0.2`` | | ``GCCcore/8.2.0`` +``2.0.3`` | | ``GCCcore/8.3.0`` +``2.0.4`` | | ``GCCcore/9.3.0`` +``2.0.5`` | | ``GCCcore/10.2.0`` +``2.0.6`` | | ``GCCcore/10.3.0`` +``2.0.6`` | | ``GCCcore/11.2.0`` +``2.1.3`` | | ``GCCcore/11.3.0`` +``2.1.4`` | | ``GCCcore/12.2.0`` +``2.1.5.1`` | | ``GCCcore/12.3.0`` +``3.0.1`` | | ``GCCcore/13.2.0`` +``3.0.1`` | | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libjxl.md b/docs/version-specific/supported-software/l/libjxl.md new file mode 100644 index 000000000..169488012 --- /dev/null +++ b/docs/version-specific/supported-software/l/libjxl.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# libjxl + +JPEG XL image format reference implementation + +*homepage*: + +version | toolchain +--------|---------- +``0.5`` | ``GCCcore/10.3.0`` +``0.6.1`` | ``GCCcore/10.2.0`` +``0.8.1`` | ``foss/2022a`` +``0.8.2`` | ``GCCcore/12.3.0`` +``0.8.2`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libleidenalg.md b/docs/version-specific/supported-software/l/libleidenalg.md new file mode 100644 index 000000000..2a852c8c7 --- /dev/null +++ b/docs/version-specific/supported-software/l/libleidenalg.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# libleidenalg + +Implements the Leiden algorithm in C++ + +*homepage*: + +version | toolchain +--------|---------- +``0.11.1`` | ``foss/2022b`` +``0.11.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libmad.md b/docs/version-specific/supported-software/l/libmad.md new file mode 100644 index 000000000..56635920d --- /dev/null +++ b/docs/version-specific/supported-software/l/libmad.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# libmad + +MAD is a high-quality MPEG audio decoder. + +*homepage*: + +version | toolchain +--------|---------- +``0.15.1b`` | ``GCCcore/11.3.0`` +``0.15.1b`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libmatheval.md b/docs/version-specific/supported-software/l/libmatheval.md new file mode 100644 index 000000000..f47fa8fe6 --- /dev/null +++ b/docs/version-specific/supported-software/l/libmatheval.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# libmatheval + +GNU libmatheval is a library (callable from C and Fortran) to parse and evaluate symbolic expressions input as text. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.11`` | ``GCCcore/6.4.0`` +``1.1.11`` | ``GCCcore/7.3.0`` +``1.1.11`` | ``GCCcore/8.2.0`` +``1.1.11`` | ``GCCcore/8.3.0`` +``1.1.11`` | ``GCCcore/9.3.0`` +``1.1.11`` | ``foss/2016b`` +``1.1.11`` | ``foss/2017a`` +``1.1.11`` | ``intel/2016a`` +``1.1.11`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libmaus2.md b/docs/version-specific/supported-software/l/libmaus2.md new file mode 100644 index 000000000..ef3495fa6 --- /dev/null +++ b/docs/version-specific/supported-software/l/libmaus2.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# libmaus2 + +libmaus2 is a collection of data structures and algorithms. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.453`` | ``intel/2018a`` +``2.0.499`` | ``GCC/11.3.0`` +``2.0.813`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libmbd.md b/docs/version-specific/supported-software/l/libmbd.md new file mode 100644 index 000000000..8d403dc09 --- /dev/null +++ b/docs/version-specific/supported-software/l/libmbd.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# libmbd + +Libmbd implements the many-body dispersion (MBD) method in several programming languages and frameworks: - The Fortran implementation is the reference, most advanced implementation, with support for analytical gradients and distributed parallelism, and additional functionality beyond the MBD method itself. It provides a low-level and a high-level Fortran API, as well as a C API. Furthermore, Python bindings to the C API are provided. - The Python/Numpy implementation is intended for prototyping, and as a high-level language reference. - The Python/Tensorflow implementation is an experiment that should enable rapid prototyping of machine learning applications with MBD. The Python-based implementations as well as Python bindings to the Libmbd C API are accessible from the Python package called Pymbd. + +*homepage*: + +version | toolchain +--------|---------- +``0.10.4`` | ``foss/2020b`` +``0.10.4`` | ``foss/2021a`` +``0.10.4`` | ``intel/2020b`` +``0.10.4`` | ``intel/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libmicrohttpd.md b/docs/version-specific/supported-software/l/libmicrohttpd.md new file mode 100644 index 000000000..35ab23d2d --- /dev/null +++ b/docs/version-specific/supported-software/l/libmicrohttpd.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# libmicrohttpd + +GNU libmicrohttpd is a small C library that is supposed to make it easy to run an HTTP server as part of another application. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.71`` | ``GCCcore/9.3.0`` +``0.9.73`` | ``GCCcore/10.2.0`` +``0.9.73`` | ``GCCcore/8.2.0`` +``0.9.73`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libmo_unpack.md b/docs/version-specific/supported-software/l/libmo_unpack.md new file mode 100644 index 000000000..473ca0da1 --- /dev/null +++ b/docs/version-specific/supported-software/l/libmo_unpack.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libmo_unpack + +A library for handling the WGDOS and RLE compression schemes used in UM files. + +*homepage*: + +version | toolchain +--------|---------- +``3.1.2`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libmypaint.md b/docs/version-specific/supported-software/l/libmypaint.md new file mode 100644 index 000000000..239335cfa --- /dev/null +++ b/docs/version-specific/supported-software/l/libmypaint.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libmypaint + +libmypaint, a.k.a. "brushlib", is a library for making brushstrokes which is used by MyPaint and other projects + +*homepage*: + +version | toolchain +--------|---------- +``1.6.1`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libnsl.md b/docs/version-specific/supported-software/l/libnsl.md new file mode 100644 index 000000000..c2453b8d6 --- /dev/null +++ b/docs/version-specific/supported-software/l/libnsl.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# libnsl + +The libnsl package contains the public client interface for NIS(YP). + +*homepage*: + +version | toolchain +--------|---------- +``1.3.0`` | ``GCCcore/10.3.0`` +``2.0.0`` | ``GCCcore/11.3.0`` +``2.0.0`` | ``GCCcore/12.2.0`` +``2.0.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libobjcryst.md b/docs/version-specific/supported-software/l/libobjcryst.md new file mode 100644 index 000000000..c0e469da2 --- /dev/null +++ b/docs/version-specific/supported-software/l/libobjcryst.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# libobjcryst + +ObjCryst++ is Object-Oriented Crystallographic Library for C++ + +*homepage*: + +version | toolchain +--------|---------- +``2017.2.3`` | ``intel/2020a`` +``2021.1.2`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libogg.md b/docs/version-specific/supported-software/l/libogg.md new file mode 100644 index 000000000..2e60f0647 --- /dev/null +++ b/docs/version-specific/supported-software/l/libogg.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# libogg + +Ogg is a multimedia container format, and the native file and stream format for the Xiph.org multimedia codecs. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.4`` | ``GCCcore/10.2.0`` +``1.3.4`` | ``GCCcore/10.3.0`` +``1.3.5`` | ``GCCcore/11.2.0`` +``1.3.5`` | ``GCCcore/11.3.0`` +``1.3.5`` | ``GCCcore/12.2.0`` +``1.3.5`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libopus.md b/docs/version-specific/supported-software/l/libopus.md new file mode 100644 index 000000000..e10550701 --- /dev/null +++ b/docs/version-specific/supported-software/l/libopus.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# libopus + +Opus is a totally open, royalty-free, highly versatile audio codec. Opus is unmatched for interactive speech and music transmission over the Internet, but is also intended for storage and streaming applications. It is standardized by the Internet Engineering Task Force (IETF) as RFC 6716 which incorporated technology from Skype’s SILK codec and Xiph.Org’s CELT codec. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.1`` | ``GCCcore/11.3.0`` +``1.3.1`` | ``GCCcore/12.2.0`` +``1.4`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libosmium.md b/docs/version-specific/supported-software/l/libosmium.md new file mode 100644 index 000000000..9a2113536 --- /dev/null +++ b/docs/version-specific/supported-software/l/libosmium.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# libosmium + +A fast and flexible C++ library for working with OpenStreetMap data. The Osmium Library has extensive support for all types of OSM entities: nodes, ways, relations, and changesets. It allows reading from and writing to OSM files in XML and PBF formats, including change files and full history files. Osmium can store OSM data in memory and on disk in various formats and using various indexes. Its easy to use handler interface allows you to quickly write data filtering and conversion functions. Osmium can create WKT, WKB, OGR, GEOS and GeoJSON geometries for easy conversion into many GIS formats and it can assemble multipolygons from ways and relations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.15.4`` | ``-Python-3.6.6`` | ``foss/2018b`` +``2.15.6`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libpci.md b/docs/version-specific/supported-software/l/libpci.md new file mode 100644 index 000000000..7a74260aa --- /dev/null +++ b/docs/version-specific/supported-software/l/libpci.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# libpci + +Library for portable access to PCI bus configuration registers from PCI Utils. + +*homepage*: + +version | toolchain +--------|---------- +``3.7.0`` | ``GCCcore/10.2.0`` +``3.7.0`` | ``GCCcore/10.3.0`` +``3.7.0`` | ``GCCcore/11.2.0`` +``3.7.0`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libpciaccess.md b/docs/version-specific/supported-software/l/libpciaccess.md new file mode 100644 index 000000000..0caf456af --- /dev/null +++ b/docs/version-specific/supported-software/l/libpciaccess.md @@ -0,0 +1,36 @@ +--- +search: + boost: 0.5 +--- +# libpciaccess + +Generic PCI access library. + +*homepage*: + +version | toolchain +--------|---------- +``0.13.4`` | ``foss/2016a`` +``0.13.4`` | ``foss/2016b`` +``0.13.4`` | ``gimkl/2.11.5`` +``0.13.4`` | ``intel/2016a`` +``0.13.4`` | ``intel/2016b`` +``0.14`` | ``GCCcore/6.4.0`` +``0.14`` | ``GCCcore/7.2.0`` +``0.14`` | ``GCCcore/7.3.0`` +``0.14`` | ``GCCcore/8.2.0`` +``0.14`` | ``GCCcore/8.3.0`` +``0.16`` | ``GCCcore/10.2.0`` +``0.16`` | ``GCCcore/10.3.0`` +``0.16`` | ``GCCcore/11.2.0`` +``0.16`` | ``GCCcore/11.3.0`` +``0.16`` | ``GCCcore/9.2.0`` +``0.16`` | ``GCCcore/9.3.0`` +``0.17`` | ``GCCcore/12.2.0`` +``0.17`` | ``GCCcore/12.3.0`` +``0.17`` | ``GCCcore/13.2.0`` +``0.18.1`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libplinkio.md b/docs/version-specific/supported-software/l/libplinkio.md new file mode 100644 index 000000000..c880a4810 --- /dev/null +++ b/docs/version-specific/supported-software/l/libplinkio.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libplinkio + +A small C and Python library for reading PLINK genotype files. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.8`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libpng.md b/docs/version-specific/supported-software/l/libpng.md new file mode 100644 index 000000000..66495d0d3 --- /dev/null +++ b/docs/version-specific/supported-software/l/libpng.md @@ -0,0 +1,50 @@ +--- +search: + boost: 0.5 +--- +# libpng + +libpng is the official PNG reference library + +*homepage*: + +version | toolchain +--------|---------- +``1.2.58`` | ``system`` +``1.2.59`` | ``system`` +``1.5.30`` | ``system`` +``1.6.21`` | ``foss/2016a`` +``1.6.21`` | ``gimkl/2.11.5`` +``1.6.21`` | ``intel/2016a`` +``1.6.23`` | ``foss/2016a`` +``1.6.23`` | ``foss/2016b`` +``1.6.23`` | ``intel/2016b`` +``1.6.24`` | ``GCCcore/4.9.3`` +``1.6.24`` | ``GCCcore/5.4.0`` +``1.6.24`` | ``foss/2016b`` +``1.6.24`` | ``intel/2016b`` +``1.6.26`` | ``foss/2016b`` +``1.6.26`` | ``intel/2016b`` +``1.6.27`` | ``intel/2016b`` +``1.6.28`` | ``GCCcore/5.4.0`` +``1.6.28`` | ``GCCcore/6.3.0`` +``1.6.28`` | ``gimkl/2017a`` +``1.6.29`` | ``GCCcore/6.3.0`` +``1.6.32`` | ``GCCcore/6.4.0`` +``1.6.34`` | ``GCCcore/6.4.0`` +``1.6.34`` | ``GCCcore/7.3.0`` +``1.6.36`` | ``GCCcore/8.2.0`` +``1.6.37`` | ``GCCcore/10.2.0`` +``1.6.37`` | ``GCCcore/10.3.0`` +``1.6.37`` | ``GCCcore/11.2.0`` +``1.6.37`` | ``GCCcore/11.3.0`` +``1.6.37`` | ``GCCcore/8.3.0`` +``1.6.37`` | ``GCCcore/9.3.0`` +``1.6.38`` | ``GCCcore/12.2.0`` +``1.6.39`` | ``GCCcore/12.3.0`` +``1.6.40`` | ``GCCcore/13.2.0`` +``1.6.43`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libpsl.md b/docs/version-specific/supported-software/l/libpsl.md new file mode 100644 index 000000000..39fc4705e --- /dev/null +++ b/docs/version-specific/supported-software/l/libpsl.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# libpsl + +C library for the Public Suffix List + +*homepage*: + +version | toolchain +--------|---------- +``0.20.2`` | ``GCCcore/7.3.0`` +``0.21.0`` | ``GCCcore/8.2.0`` +``0.21.0`` | ``GCCcore/8.3.0`` +``0.21.1`` | ``GCCcore/10.2.0`` +``0.21.1`` | ``GCCcore/10.3.0`` +``0.21.1`` | ``GCCcore/11.2.0`` +``0.21.1`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libpsortb.md b/docs/version-specific/supported-software/l/libpsortb.md new file mode 100644 index 000000000..3e9a8b4c8 --- /dev/null +++ b/docs/version-specific/supported-software/l/libpsortb.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libpsortb + +PSORT family of programs for subcellular localization prediction as well as other datasets and resources relevant to localization prediction. + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libpspio.md b/docs/version-specific/supported-software/l/libpspio.md new file mode 100644 index 000000000..631fb6031 --- /dev/null +++ b/docs/version-specific/supported-software/l/libpspio.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# libpspio + +libpspio is a library to read and write pseudopotentials in multiple formats. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.4`` | ``GCC/10.2.0`` +``0.2.4`` | ``GCC/10.3.0`` +``0.2.4`` | ``GCC/11.2.0`` +``0.2.4`` | ``iccifort/2020.4.304`` +``0.2.4`` | ``intel-compilers/2021.2.0`` +``0.2.4`` | ``intel-compilers/2021.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libpthread-stubs.md b/docs/version-specific/supported-software/l/libpthread-stubs.md new file mode 100644 index 000000000..11a967136 --- /dev/null +++ b/docs/version-specific/supported-software/l/libpthread-stubs.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# libpthread-stubs + +The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility. + +*homepage*: + +version | toolchain +--------|---------- +``0.3`` | ``GCCcore/6.4.0`` +``0.3`` | ``foss/2016a`` +``0.3`` | ``foss/2016b`` +``0.3`` | ``gimkl/2.11.5`` +``0.3`` | ``intel/2016a`` +``0.3`` | ``intel/2016b`` +``0.4`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libreadline.md b/docs/version-specific/supported-software/l/libreadline.md new file mode 100644 index 000000000..ebf8debb6 --- /dev/null +++ b/docs/version-specific/supported-software/l/libreadline.md @@ -0,0 +1,56 @@ +--- +search: + boost: 0.5 +--- +# libreadline + +The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands. + +*homepage*: + +version | toolchain +--------|---------- +``6.3`` | ``GCC/4.8.2`` +``6.3`` | ``GCC/4.8.4`` +``6.3`` | ``GCC/4.9.2`` +``6.3`` | ``GCC/4.9.3-2.25`` +``6.3`` | ``GCC/5.4.0-2.26`` +``6.3`` | ``GCCcore/4.9.3`` +``6.3`` | ``GCCcore/5.4.0`` +``6.3`` | ``GCCcore/6.3.0`` +``6.3`` | ``GNU/4.9.3-2.25`` +``6.3`` | ``foss/2016.04`` +``6.3`` | ``foss/2016a`` +``6.3`` | ``foss/2016b`` +``6.3`` | ``gimkl/2.11.5`` +``6.3`` | ``gimkl/2017a`` +``6.3`` | ``intel/2016.02-GCC-4.9`` +``6.3`` | ``intel/2016a`` +``6.3`` | ``intel/2016b`` +``6.3`` | ``iomkl/2016.07`` +``6.3`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``6.3`` | ``system`` +``7.0`` | ``GCCcore/6.3.0`` +``7.0`` | ``GCCcore/6.4.0`` +``7.0`` | ``GCCcore/7.2.0`` +``7.0`` | ``GCCcore/7.3.0`` +``8.0`` | ``GCCcore/10.2.0`` +``8.0`` | ``GCCcore/8.2.0`` +``8.0`` | ``GCCcore/8.3.0`` +``8.0`` | ``GCCcore/9.3.0`` +``8.0`` | ``system`` +``8.1`` | ``FCC/4.5.0`` +``8.1`` | ``GCCcore/10.3.0`` +``8.1`` | ``GCCcore/11.2.0`` +``8.1`` | ``GCCcore/11.3.0`` +``8.1.2`` | ``GCCcore/11.3.0`` +``8.1.2`` | ``GCCcore/12.1.0`` +``8.2`` | ``GCCcore/12.2.0`` +``8.2`` | ``GCCcore/12.3.0`` +``8.2`` | ``GCCcore/13.1.0`` +``8.2`` | ``GCCcore/13.2.0`` +``8.2`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/librosa.md b/docs/version-specific/supported-software/l/librosa.md new file mode 100644 index 000000000..4e8ccb80b --- /dev/null +++ b/docs/version-specific/supported-software/l/librosa.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# librosa + +Audio and music processing in Python + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.1`` | | ``foss/2023a`` +``0.7.2`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.7.2`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/librsb.md b/docs/version-specific/supported-software/l/librsb.md new file mode 100644 index 000000000..c8c430551 --- /dev/null +++ b/docs/version-specific/supported-software/l/librsb.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# librsb + +A shared memory parallel sparse matrix computations library for the Recursive Sparse Blocks format + +*homepage*: + +version | toolchain +--------|---------- +``1.2.0.10`` | ``GCC/10.2.0`` +``1.2.0.11`` | ``GCC/10.2.0`` +``1.2.0.9`` | ``GCC/10.2.0`` +``1.3.0.0`` | ``GCC/10.2.0`` +``1.3.0.1`` | ``GCC/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/librsvg.md b/docs/version-specific/supported-software/l/librsvg.md new file mode 100644 index 000000000..55f50b208 --- /dev/null +++ b/docs/version-specific/supported-software/l/librsvg.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# librsvg + +librsvg is a library to render SVG files using cairo. + +*homepage*: + +version | toolchain +--------|---------- +``2.40.15`` | ``intel/2016a`` +``2.48.4`` | ``foss/2019a`` +``2.51.2`` | ``GCCcore/10.3.0`` +``2.52.8`` | ``GCCcore/11.2.0`` +``2.55.1`` | ``GCCcore/11.3.0`` +``2.58.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/librttopo.md b/docs/version-specific/supported-software/l/librttopo.md new file mode 100644 index 000000000..953110015 --- /dev/null +++ b/docs/version-specific/supported-software/l/librttopo.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# librttopo + +The RT Topology Library exposes an API to create and manage standard (ISO 13249 aka SQL/MM) topologies using user-provided data stores. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libsamplerate.md b/docs/version-specific/supported-software/l/libsamplerate.md new file mode 100644 index 000000000..252f74dd2 --- /dev/null +++ b/docs/version-specific/supported-software/l/libsamplerate.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libsamplerate + +Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.9`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libsigc++.md b/docs/version-specific/supported-software/l/libsigc++.md new file mode 100644 index 000000000..82dcfa3a0 --- /dev/null +++ b/docs/version-specific/supported-software/l/libsigc++.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# libsigc++ + +The libsigc++ package implements a typesafe callback system for standard C++. + +*homepage*: + +version | toolchain +--------|---------- +``2.10.0`` | ``GCCcore/6.4.0`` +``2.10.1`` | ``GCCcore/7.3.0`` +``2.10.2`` | ``GCCcore/8.2.0`` +``2.10.2`` | ``GCCcore/8.3.0`` +``2.10.8`` | ``GCCcore/10.3.0`` +``2.12.1`` | ``GCCcore/11.3.0`` +``3.4.0`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libsigsegv.md b/docs/version-specific/supported-software/l/libsigsegv.md new file mode 100644 index 000000000..0857cc78c --- /dev/null +++ b/docs/version-specific/supported-software/l/libsigsegv.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# libsigsegv + +GNU libsigsegv is a library for handling page faults in user mode. + +*homepage*: + +version | toolchain +--------|---------- +``2.11`` | ``GCCcore/6.4.0`` +``2.12`` | ``GCCcore/9.3.0`` +``2.13`` | ``GCCcore/10.2.0`` +``2.14`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libsndfile.md b/docs/version-specific/supported-software/l/libsndfile.md new file mode 100644 index 000000000..42ce75e6b --- /dev/null +++ b/docs/version-specific/supported-software/l/libsndfile.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# libsndfile + +Libsndfile is a C library for reading and writing files containing sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format) through one standard library interface. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.28`` | ``GCCcore/10.2.0`` +``1.0.28`` | ``GCCcore/6.4.0`` +``1.0.28`` | ``GCCcore/7.3.0`` +``1.0.28`` | ``GCCcore/8.2.0`` +``1.0.28`` | ``GCCcore/8.3.0`` +``1.0.28`` | ``GCCcore/9.3.0`` +``1.0.28`` | ``intel/2017a`` +``1.0.31`` | ``GCCcore/10.3.0`` +``1.0.31`` | ``GCCcore/11.2.0`` +``1.1.0`` | ``GCCcore/11.3.0`` +``1.2.0`` | ``GCCcore/12.2.0`` +``1.2.2`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libsodium.md b/docs/version-specific/supported-software/l/libsodium.md new file mode 100644 index 000000000..6bee71eb9 --- /dev/null +++ b/docs/version-specific/supported-software/l/libsodium.md @@ -0,0 +1,36 @@ +--- +search: + boost: 0.5 +--- +# libsodium + +Sodium is a modern, easy-to-use software library for encryption, decryption, signatures, password hashing and more. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.11`` | ``foss/2016b`` +``1.0.11`` | ``intel/2016b`` +``1.0.12`` | ``GCCcore/6.4.0`` +``1.0.12`` | ``intel/2017a`` +``1.0.13`` | ``GCCcore/6.4.0`` +``1.0.13`` | ``foss/2017a`` +``1.0.16`` | ``GCCcore/6.4.0`` +``1.0.16`` | ``GCCcore/7.3.0`` +``1.0.17`` | ``GCCcore/8.2.0`` +``1.0.18`` | ``GCCcore/10.2.0`` +``1.0.18`` | ``GCCcore/10.3.0`` +``1.0.18`` | ``GCCcore/11.2.0`` +``1.0.18`` | ``GCCcore/11.3.0`` +``1.0.18`` | ``GCCcore/12.2.0`` +``1.0.18`` | ``GCCcore/12.3.0`` +``1.0.18`` | ``GCCcore/8.3.0`` +``1.0.18`` | ``GCCcore/9.3.0`` +``1.0.19`` | ``GCCcore/13.2.0`` +``1.0.6`` | ``intel/2016a`` +``1.0.8`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libspatialindex.md b/docs/version-specific/supported-software/l/libspatialindex.md new file mode 100644 index 000000000..17b50633c --- /dev/null +++ b/docs/version-specific/supported-software/l/libspatialindex.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# libspatialindex + +C++ implementation of R*-tree, an MVR-tree and a TPR-tree with C API + +*homepage*: + +version | toolchain +--------|---------- +``1.8.5`` | ``GCCcore/6.4.0`` +``1.8.5`` | ``GCCcore/8.2.0`` +``1.8.5`` | ``foss/2016b`` +``1.8.5`` | ``intel/2016b`` +``1.8.5`` | ``intel/2018a`` +``1.9.3`` | ``GCCcore/11.2.0`` +``1.9.3`` | ``GCCcore/11.3.0`` +``1.9.3`` | ``GCCcore/12.2.0`` +``1.9.3`` | ``GCCcore/12.3.0`` +``1.9.3`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libspatialite.md b/docs/version-specific/supported-software/l/libspatialite.md new file mode 100644 index 000000000..485d87c22 --- /dev/null +++ b/docs/version-specific/supported-software/l/libspatialite.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# libspatialite + +SpatiaLite is an open source library intended to extend the SQLite core to support fully fledged Spatial SQL capabilities. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.3.0a`` | ``-Python-3.7.4`` | ``GCC/8.3.0`` +``4.3.0a`` | | ``foss/2016b`` +``4.3.0a`` | | ``foss/2018b`` +``4.3.0a`` | ``-Python-3.7.2`` | ``foss/2019a`` +``4.3.0a`` | | ``intel/2016b`` +``5.0.1`` | | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libspectre.md b/docs/version-specific/supported-software/l/libspectre.md new file mode 100644 index 000000000..f95606c83 --- /dev/null +++ b/docs/version-specific/supported-software/l/libspectre.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libspectre + +libspectre is a small library for rendering Postscript documents. It provides a convenient easy to use API for handling and rendering Postscript documents. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.12`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libssh.md b/docs/version-specific/supported-software/l/libssh.md new file mode 100644 index 000000000..99c90c569 --- /dev/null +++ b/docs/version-specific/supported-software/l/libssh.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libssh + +Multiplatform C library implementing the SSHv2 protocol on client and server side + +*homepage*: + +version | toolchain +--------|---------- +``0.9.0`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libsupermesh.md b/docs/version-specific/supported-software/l/libsupermesh.md new file mode 100644 index 000000000..639981aa0 --- /dev/null +++ b/docs/version-specific/supported-software/l/libsupermesh.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libsupermesh + +libsupermesh parallel supermeshing library. + +*homepage*: + +version | toolchain +--------|---------- +``2025-01-25`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libtar.md b/docs/version-specific/supported-software/l/libtar.md new file mode 100644 index 000000000..56d1c14be --- /dev/null +++ b/docs/version-specific/supported-software/l/libtar.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# libtar + +C library for manipulating POSIX tar files + +*homepage*: + +version | toolchain +--------|---------- +``1.2.20`` | ``GCCcore/7.3.0`` +``1.2.20`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libtasn1.md b/docs/version-specific/supported-software/l/libtasn1.md new file mode 100644 index 000000000..0fefb7542 --- /dev/null +++ b/docs/version-specific/supported-software/l/libtasn1.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# libtasn1 + +Libtasn1 is the ASN.1 library used by GnuTLS, GNU Shishi and some other packages. It was written by Fabio Fiorina, and has been shipped as part of GnuTLS for some time but is now a proper GNU package. + +*homepage*: + +version | toolchain +--------|---------- +``4.12`` | ``GCCcore/5.4.0`` +``4.13`` | ``GCCcore/7.3.0`` +``4.13`` | ``GCCcore/8.2.0`` +``4.16.0`` | ``GCCcore/10.2.0`` +``4.16.0`` | ``GCCcore/8.3.0`` +``4.17.0`` | ``GCCcore/10.3.0`` +``4.18.0`` | ``GCCcore/11.2.0`` +``4.19.0`` | ``GCCcore/11.3.0`` +``4.19.0`` | ``GCCcore/12.3.0`` +``4.7`` | ``GNU/4.9.3-2.25`` +``4.7`` | ``foss/2016a`` +``4.7`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libtecla.md b/docs/version-specific/supported-software/l/libtecla.md new file mode 100644 index 000000000..70dfeeba2 --- /dev/null +++ b/docs/version-specific/supported-software/l/libtecla.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libtecla + +The tecla library provides UNIX and LINUX programs with interactive command line editing facilities, similar to those of the UNIX tcsh shell. In addition to simple command-line editing, it supports recall of previously entered command lines, TAB completion of file names or other tokens, and in-line wild-card expansion of filenames. The internal functions which perform file-name completion and wild-card expansion are also available externally for optional use by programs. + +*homepage*: + +version | toolchain +--------|---------- +``1.6.3`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libtirpc.md b/docs/version-specific/supported-software/l/libtirpc.md new file mode 100644 index 000000000..b489b1d29 --- /dev/null +++ b/docs/version-specific/supported-software/l/libtirpc.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# libtirpc + +Libtirpc is a port of Suns Transport-Independent RPC library to Linux. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.4`` | ``GCCcore/7.3.0`` +``1.1.4`` | ``GCCcore/8.2.0`` +``1.2.6`` | ``GCCcore/8.3.0`` +``1.2.6`` | ``GCCcore/9.3.0`` +``1.3.1`` | ``GCCcore/10.2.0`` +``1.3.2`` | ``GCCcore/10.3.0`` +``1.3.2`` | ``GCCcore/11.2.0`` +``1.3.2`` | ``GCCcore/11.3.0`` +``1.3.3`` | ``GCCcore/12.2.0`` +``1.3.3`` | ``GCCcore/12.3.0`` +``1.3.4`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libtool.md b/docs/version-specific/supported-software/l/libtool.md new file mode 100644 index 000000000..3bfe92160 --- /dev/null +++ b/docs/version-specific/supported-software/l/libtool.md @@ -0,0 +1,64 @@ +--- +search: + boost: 0.5 +--- +# libtool + +GNU libtool is a generic library support script. Libtool hides the complexity of using shared libraries behind a consistent, portable interface. + +*homepage*: + +version | toolchain +--------|---------- +``2.4.2`` | ``GCC/4.8.2`` +``2.4.2`` | ``GCC/4.9.2`` +``2.4.5`` | ``GCC/4.8.4`` +``2.4.5`` | ``GCC/4.9.2`` +``2.4.6`` | ``FCC/4.5.0`` +``2.4.6`` | ``GCC/4.8.4`` +``2.4.6`` | ``GCC/4.9.2`` +``2.4.6`` | ``GCC/4.9.3-2.25`` +``2.4.6`` | ``GCC/4.9.3`` +``2.4.6`` | ``GCC/5.2.0`` +``2.4.6`` | ``GCC/5.4.0-2.26`` +``2.4.6`` | ``GCCcore/10.2.0`` +``2.4.6`` | ``GCCcore/10.3.0`` +``2.4.6`` | ``GCCcore/11.2.0`` +``2.4.6`` | ``GCCcore/4.9.2`` +``2.4.6`` | ``GCCcore/4.9.3`` +``2.4.6`` | ``GCCcore/5.3.0`` +``2.4.6`` | ``GCCcore/5.4.0`` +``2.4.6`` | ``GCCcore/6.1.0`` +``2.4.6`` | ``GCCcore/6.2.0`` +``2.4.6`` | ``GCCcore/6.3.0`` +``2.4.6`` | ``GCCcore/6.4.0`` +``2.4.6`` | ``GCCcore/7.2.0`` +``2.4.6`` | ``GCCcore/7.3.0`` +``2.4.6`` | ``GCCcore/8.2.0`` +``2.4.6`` | ``GCCcore/8.3.0`` +``2.4.6`` | ``GCCcore/9.2.0`` +``2.4.6`` | ``GCCcore/9.3.0`` +``2.4.6`` | ``GNU/4.9.2-2.25`` +``2.4.6`` | ``GNU/4.9.3-2.25`` +``2.4.6`` | ``GNU/5.1.0-2.25`` +``2.4.6`` | ``foss/2016.04`` +``2.4.6`` | ``foss/2016a`` +``2.4.6`` | ``foss/2016b`` +``2.4.6`` | ``gimkl/2.11.5`` +``2.4.6`` | ``intel/2016.02-GCC-4.9`` +``2.4.6`` | ``intel/2016a`` +``2.4.6`` | ``intel/2016b`` +``2.4.6`` | ``iomkl/2016.07`` +``2.4.6`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``2.4.6`` | ``system`` +``2.4.7`` | ``GCCcore/11.3.0`` +``2.4.7`` | ``GCCcore/12.2.0`` +``2.4.7`` | ``GCCcore/12.3.0`` +``2.4.7`` | ``GCCcore/13.1.0`` +``2.4.7`` | ``GCCcore/13.2.0`` +``2.4.7`` | ``GCCcore/13.3.0`` +``2.4.7`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libtree.md b/docs/version-specific/supported-software/l/libtree.md new file mode 100644 index 000000000..56c8b0619 --- /dev/null +++ b/docs/version-specific/supported-software/l/libtree.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# libtree + +libtree is a tool that turns ldd into a tree, explains why shared libraries are found and why not and optionally deploys executables and dependencies into a single directory + +*homepage*: + +version | toolchain +--------|---------- +``2.0.0`` | ``GCCcore/10.3.0`` +``3.0.3`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libunistring.md b/docs/version-specific/supported-software/l/libunistring.md new file mode 100644 index 000000000..77eabe002 --- /dev/null +++ b/docs/version-specific/supported-software/l/libunistring.md @@ -0,0 +1,34 @@ +--- +search: + boost: 0.5 +--- +# libunistring + +This library provides functions for manipulating Unicode strings and for manipulating C strings according to the Unicode standard. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.10`` | ``GCCcore/10.3.0`` +``0.9.10`` | ``GCCcore/7.3.0`` +``0.9.10`` | ``GCCcore/8.2.0`` +``0.9.10`` | ``GCCcore/8.3.0`` +``0.9.10`` | ``GCCcore/9.3.0`` +``0.9.3`` | ``GCC/4.9.3-2.25`` +``0.9.3`` | ``GNU/4.9.3-2.25`` +``0.9.3`` | ``foss/2016a`` +``0.9.3`` | ``intel/2016a`` +``0.9.6`` | ``GCCcore/5.4.0`` +``0.9.6`` | ``foss/2016b`` +``0.9.6`` | ``foss/2017a`` +``0.9.6`` | ``intel/2016b`` +``0.9.7`` | ``GCCcore/6.4.0`` +``1.0`` | ``GCCcore/11.2.0`` +``1.0`` | ``GCCcore/11.3.0`` +``1.1`` | ``GCCcore/10.2.0`` +``1.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libunwind.md b/docs/version-specific/supported-software/l/libunwind.md new file mode 100644 index 000000000..f336a94cb --- /dev/null +++ b/docs/version-specific/supported-software/l/libunwind.md @@ -0,0 +1,34 @@ +--- +search: + boost: 0.5 +--- +# libunwind + +The primary goal of libunwind is to define a portable and efficient C programming interface (API) to determine the call-chain of a program. The API additionally provides the means to manipulate the preserved (callee-saved) state of each call-frame and to resume execution at any point in the call-chain (non-local goto). The API supports both local (same-process) and remote (across-process) operation. As such, the API is useful in a number of applications + +*homepage*: + +version | toolchain +--------|---------- +``1.1`` | ``GCC/4.9.2`` +``1.1`` | ``foss/2016a`` +``1.1`` | ``intel/2016b`` +``1.2.1`` | ``GCCcore/6.3.0`` +``1.2.1`` | ``GCCcore/6.4.0`` +``1.2.1`` | ``GCCcore/7.3.0`` +``1.2.1`` | ``foss/2016b`` +``1.3.1`` | ``GCCcore/8.2.0`` +``1.3.1`` | ``GCCcore/8.3.0`` +``1.3.1`` | ``GCCcore/9.3.0`` +``1.4.0`` | ``GCCcore/10.2.0`` +``1.4.0`` | ``GCCcore/10.3.0`` +``1.5.0`` | ``GCCcore/10.3.0`` +``1.5.0`` | ``GCCcore/11.2.0`` +``1.6.2`` | ``GCCcore/11.3.0`` +``1.6.2`` | ``GCCcore/12.2.0`` +``1.6.2`` | ``GCCcore/12.3.0`` +``1.6.2`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libutempter.md b/docs/version-specific/supported-software/l/libutempter.md new file mode 100644 index 000000000..4a042819a --- /dev/null +++ b/docs/version-specific/supported-software/l/libutempter.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libutempter + +libutempter is library that provides an interface for terminal emulators such as screen and xterm to record user sessions to utmp and wtmp files. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.6.2`` | ``GCC/6.4.0-2.28`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libuv.md b/docs/version-specific/supported-software/l/libuv.md new file mode 100644 index 000000000..9ff70e870 --- /dev/null +++ b/docs/version-specific/supported-software/l/libuv.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# libuv + +libuv is a multi-platform support library with a focus on asynchronous I/O. + +*homepage*: + +version | toolchain +--------|---------- +``1.37.0`` | ``GCCcore/8.3.0`` +``1.48.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libvdwxc.md b/docs/version-specific/supported-software/l/libvdwxc.md new file mode 100644 index 000000000..c1f97d33c --- /dev/null +++ b/docs/version-specific/supported-software/l/libvdwxc.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# libvdwxc + +libvdwxc is a general library for evaluating energy and potential for exchange-correlation (XC) functionals from the vdW-DF family that can be used with various of density functional theory (DFT) codes. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.2`` | ``foss/2018b`` +``0.4.0`` | ``foss/2019a`` +``0.4.0`` | ``foss/2019b`` +``0.4.0`` | ``foss/2020a`` +``0.4.0`` | ``foss/2020b`` +``0.4.0`` | ``foss/2021a`` +``0.4.0`` | ``foss/2021b`` +``0.4.0`` | ``foss/2022a`` +``0.4.0`` | ``foss/2023a`` +``0.4.0`` | ``intel/2020b`` +``0.4.0`` | ``intel/2021a`` +``0.4.0`` | ``intel/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libvorbis.md b/docs/version-specific/supported-software/l/libvorbis.md new file mode 100644 index 000000000..ae44c1388 --- /dev/null +++ b/docs/version-specific/supported-software/l/libvorbis.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# libvorbis + +Ogg Vorbis is a fully open, non-proprietary, patent-and-royalty-free, general-purpose compressed audio format + +*homepage*: + +version | toolchain +--------|---------- +``1.3.7`` | ``GCCcore/10.2.0`` +``1.3.7`` | ``GCCcore/10.3.0`` +``1.3.7`` | ``GCCcore/11.2.0`` +``1.3.7`` | ``GCCcore/11.3.0`` +``1.3.7`` | ``GCCcore/12.2.0`` +``1.3.7`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libvori.md b/docs/version-specific/supported-software/l/libvori.md new file mode 100644 index 000000000..77cca0a6e --- /dev/null +++ b/docs/version-specific/supported-software/l/libvori.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# libvori + +C++ library implementing the Voronoi integration as well as the compressed bqb file format. The present version of libvori is a very early development version, which is hard-coded to work with the CP2k program package. + +*homepage*: + +version | toolchain +--------|---------- +``220621`` | ``GCCcore/11.3.0`` +``220621`` | ``GCCcore/12.2.0`` +``220621`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libwebp.md b/docs/version-specific/supported-software/l/libwebp.md new file mode 100644 index 000000000..8269a1d10 --- /dev/null +++ b/docs/version-specific/supported-software/l/libwebp.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# libwebp + +WebP is a modern image format that provides superior lossless and lossy compression for images on the web. Using WebP, webmasters and web developers can create smaller, richer images that make the web faster. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0`` | ``foss/2018b`` +``1.0.2`` | ``GCCcore/7.3.0`` +``1.0.2`` | ``GCCcore/8.2.0`` +``1.1.0`` | ``GCCcore/10.2.0`` +``1.1.0`` | ``GCCcore/8.3.0`` +``1.1.0`` | ``GCCcore/9.3.0`` +``1.2.0`` | ``GCCcore/10.3.0`` +``1.2.0`` | ``GCCcore/11.2.0`` +``1.2.4`` | ``GCCcore/11.3.0`` +``1.3.1`` | ``GCCcore/12.2.0`` +``1.3.1`` | ``GCCcore/12.3.0`` +``1.3.2`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libwpe.md b/docs/version-specific/supported-software/l/libwpe.md new file mode 100644 index 000000000..1b717e1a2 --- /dev/null +++ b/docs/version-specific/supported-software/l/libwpe.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# libwpe + +WPE is the reference WebKit port for embedded and low-consumption computer devices. It has been designed from the ground-up with performance, small footprint, accelerated content rendering, and simplicity of deployment in mind, bringing the excellence of the WebKit engine to countless platforms and target devices. + +*homepage*: + +version | toolchain +--------|---------- +``1.13.3`` | ``GCCcore/11.2.0`` +``1.14.1`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libxc.md b/docs/version-specific/supported-software/l/libxc.md new file mode 100644 index 000000000..d9987792d --- /dev/null +++ b/docs/version-specific/supported-software/l/libxc.md @@ -0,0 +1,77 @@ +--- +search: + boost: 0.5 +--- +# libxc + +Libxc is a library of exchange-correlation functionals for density-functional theory. The aim is to provide a portable, well tested and reliable set of exchange and correlation functionals. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.2`` | ``GCC/8.2.0-2.31.1`` +``2.2.2`` | ``foss/2018b`` +``2.2.2`` | ``intel/2018b`` +``2.2.3`` | ``foss/2016b`` +``2.2.3`` | ``intel/2016a`` +``2.2.3`` | ``intel/2016b`` +``2.2.3`` | ``intel/2017b`` +``2.2.3`` | ``intel/2018a`` +``3.0.0`` | ``GCC/5.4.0-2.26`` +``3.0.0`` | ``iccifort/2016.3.210-GCC-5.4.0-2.26`` +``3.0.0`` | ``intel/2016a`` +``3.0.0`` | ``intel/2016b`` +``3.0.0`` | ``intel/2017a`` +``3.0.0`` | ``intel/2017b`` +``3.0.1`` | ``GCC/8.2.0-2.31.1`` +``3.0.1`` | ``foss/2016b`` +``3.0.1`` | ``foss/2017a`` +``3.0.1`` | ``foss/2018a`` +``3.0.1`` | ``foss/2018b`` +``3.0.1`` | ``foss/2020a`` +``3.0.1`` | ``foss/2020b`` +``3.0.1`` | ``gimkl/2017a`` +``3.0.1`` | ``intel/2018a`` +``3.0.1`` | ``intel/2018b`` +``3.0.1`` | ``intel/2020a`` +``4.0.1`` | ``foss/2017b`` +``4.0.1`` | ``intel/2017b`` +``4.0.3`` | ``foss/2016b`` +``4.0.3`` | ``foss/2017a`` +``4.2.3`` | ``foss/2017b`` +``4.2.3`` | ``foss/2018a`` +``4.2.3`` | ``foss/2018b`` +``4.2.3`` | ``gimkl/2017a`` +``4.2.3`` | ``intel/2018a`` +``4.2.3`` | ``intel/2018b`` +``4.3.4`` | ``GCC/10.2.0`` +``4.3.4`` | ``GCC/10.3.0`` +``4.3.4`` | ``GCC/11.2.0`` +``4.3.4`` | ``GCC/8.2.0-2.31.1`` +``4.3.4`` | ``GCC/8.3.0`` +``4.3.4`` | ``GCC/9.3.0`` +``4.3.4`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``4.3.4`` | ``iccifort/2019.5.281`` +``4.3.4`` | ``iccifort/2020.1.217`` +``4.3.4`` | ``iccifort/2020.4.304`` +``4.3.4`` | ``intel-compilers/2021.2.0`` +``4.3.4`` | ``intel-compilers/2021.4.0`` +``5.1.2`` | ``GCC/10.2.0`` +``5.1.3`` | ``GCC/10.2.0`` +``5.1.5`` | ``GCC/10.3.0`` +``5.1.5`` | ``intel-compilers/2021.2.0`` +``5.1.6`` | ``GCC/11.2.0`` +``5.1.6`` | ``intel-compilers/2021.4.0`` +``5.2.3`` | ``GCC/11.3.0`` +``5.2.3`` | ``intel-compilers/2022.1.0`` +``6.1.0`` | ``GCC/12.2.0`` +``6.1.0`` | ``intel-compilers/2022.2.1`` +``6.2.2`` | ``GCC/12.3.0`` +``6.2.2`` | ``GCC/13.2.0`` +``6.2.2`` | ``intel-compilers/2023.1.0`` +``6.2.2`` | ``intel-compilers/2023.2.1`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libxcb.md b/docs/version-specific/supported-software/l/libxcb.md new file mode 100644 index 000000000..7f891e22d --- /dev/null +++ b/docs/version-specific/supported-software/l/libxcb.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# libxcb + +The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility. + +*homepage*: + +version | toolchain +--------|---------- +``1.11.1`` | ``foss/2016a`` +``1.11.1`` | ``gimkl/2.11.5`` +``1.11.1`` | ``intel/2016a`` +``1.13`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libxkbcommon.md b/docs/version-specific/supported-software/l/libxkbcommon.md new file mode 100644 index 000000000..aafbed84a --- /dev/null +++ b/docs/version-specific/supported-software/l/libxkbcommon.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# libxkbcommon + +xkbcommon is a library to handle keyboard descriptions, including loading them from disk, parsing them and handling their state. It's mainly meant for client toolkits, window systems, and other system applications. + +*homepage*: + +version | toolchain +--------|---------- +``0.6.1`` | ``foss/2016a`` +``0.6.1`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libxml++.md b/docs/version-specific/supported-software/l/libxml++.md new file mode 100644 index 000000000..4a0016bac --- /dev/null +++ b/docs/version-specific/supported-software/l/libxml++.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# libxml++ + +libxml++ is a C++ wrapper for the libxml XML parser library. + +*homepage*: + +version | toolchain +--------|---------- +``2.40.1`` | ``GCCcore/7.3.0`` +``2.40.1`` | ``GCCcore/8.2.0`` +``2.40.1`` | ``GCCcore/8.3.0`` +``2.42.1`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libxml2-python.md b/docs/version-specific/supported-software/l/libxml2-python.md new file mode 100644 index 000000000..0ff461309 --- /dev/null +++ b/docs/version-specific/supported-software/l/libxml2-python.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# libxml2-python + +Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable outside of the Gnome platform). This is the Python binding. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.11.4`` | | ``GCCcore/12.3.0`` +``2.9.13`` | | ``GCCcore/11.3.0`` +``2.9.7`` | ``-Python-2.7.14`` | ``intel/2018a`` +``2.9.8`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` +``2.9.8`` | ``-Python-2.7.15`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libxml2.md b/docs/version-specific/supported-software/l/libxml2.md new file mode 100644 index 000000000..f0f00a9dc --- /dev/null +++ b/docs/version-specific/supported-software/l/libxml2.md @@ -0,0 +1,58 @@ +--- +search: + boost: 0.5 +--- +# libxml2 + +Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable outside of the Gnome platform). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.10.3`` | | ``GCCcore/12.2.0`` +``2.11.4`` | | ``GCCcore/12.3.0`` +``2.11.5`` | | ``GCCcore/13.2.0`` +``2.12.7`` | | ``GCCcore/13.3.0`` +``2.9.10`` | | ``GCCcore/10.2.0`` +``2.9.10`` | | ``GCCcore/10.3.0`` +``2.9.10`` | | ``GCCcore/11.2.0`` +``2.9.10`` | | ``GCCcore/9.2.0`` +``2.9.10`` | | ``GCCcore/9.3.0`` +``2.9.13`` | | ``GCCcore/11.3.0`` +``2.9.2`` | | ``GCC/4.8.3`` +``2.9.2`` | | ``GCC/4.8.4`` +``2.9.2`` | | ``GCC/4.9.2`` +``2.9.2`` | | ``GCC/4.9.3-2.25`` +``2.9.2`` | | ``GNU/4.9.3-2.25`` +``2.9.3`` | | ``GCC/4.9.3-2.25`` +``2.9.3`` | ``-Python-2.7.11`` | ``foss/2016a`` +``2.9.3`` | | ``foss/2016a`` +``2.9.3`` | | ``gimkl/2.11.5`` +``2.9.3`` | ``-Python-2.7.11`` | ``intel/2016a`` +``2.9.3`` | | ``intel/2016a`` +``2.9.4`` | | ``GCC/5.4.0-2.26`` +``2.9.4`` | | ``GCCcore/4.9.3`` +``2.9.4`` | | ``GCCcore/5.4.0`` +``2.9.4`` | | ``GCCcore/6.3.0`` +``2.9.4`` | | ``GCCcore/6.4.0`` +``2.9.4`` | | ``foss/2016.04`` +``2.9.4`` | | ``foss/2016a`` +``2.9.4`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2.9.4`` | | ``foss/2016b`` +``2.9.4`` | | ``gimkl/2017a`` +``2.9.4`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2.9.4`` | | ``intel/2016b`` +``2.9.4`` | ``-Python-2.7.13`` | ``intel/2017a`` +``2.9.5`` | | ``GCCcore/6.3.0`` +``2.9.6`` | | ``GCCcore/6.4.0`` +``2.9.7`` | | ``GCCcore/6.4.0`` +``2.9.8`` | | ``GCCcore/6.4.0`` +``2.9.8`` | | ``GCCcore/7.2.0`` +``2.9.8`` | | ``GCCcore/7.3.0`` +``2.9.8`` | | ``GCCcore/8.2.0`` +``2.9.9`` | | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libxslt.md b/docs/version-specific/supported-software/l/libxslt.md new file mode 100644 index 000000000..db4bf1d29 --- /dev/null +++ b/docs/version-specific/supported-software/l/libxslt.md @@ -0,0 +1,36 @@ +--- +search: + boost: 0.5 +--- +# libxslt + +Libxslt is the XSLT C library developed for the GNOME project (but usable outside of the Gnome platform). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.28`` | | ``foss/2016a`` +``1.1.28`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.1.28`` | | ``intel/2016a`` +``1.1.29`` | | ``foss/2016b`` +``1.1.29`` | | ``intel/2016a`` +``1.1.29`` | | ``intel/2016b`` +``1.1.29`` | | ``intel/2017a`` +``1.1.30`` | | ``GCCcore/6.3.0`` +``1.1.32`` | | ``GCCcore/6.4.0`` +``1.1.32`` | | ``GCCcore/7.3.0`` +``1.1.33`` | | ``GCCcore/8.2.0`` +``1.1.34`` | | ``GCCcore/10.2.0`` +``1.1.34`` | | ``GCCcore/10.3.0`` +``1.1.34`` | | ``GCCcore/11.2.0`` +``1.1.34`` | | ``GCCcore/11.3.0`` +``1.1.34`` | | ``GCCcore/8.3.0`` +``1.1.34`` | | ``GCCcore/9.3.0`` +``1.1.37`` | | ``GCCcore/12.2.0`` +``1.1.38`` | | ``GCCcore/12.3.0`` +``1.1.38`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libxsmm.md b/docs/version-specific/supported-software/l/libxsmm.md new file mode 100644 index 000000000..2245fde79 --- /dev/null +++ b/docs/version-specific/supported-software/l/libxsmm.md @@ -0,0 +1,38 @@ +--- +search: + boost: 0.5 +--- +# libxsmm + +LIBXSMM is a library for small dense and small sparse matrix-matrix multiplications targeting Intel Architecture (x86). + +*homepage*: + +version | toolchain +--------|---------- +``1.10`` | ``GCC/8.2.0-2.31.1`` +``1.10`` | ``foss/2018b`` +``1.10`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``1.10`` | ``intel/2018b`` +``1.16.1`` | ``GCC/10.2.0`` +``1.16.1`` | ``GCC/9.3.0`` +``1.16.1`` | ``iccifort/2020.1.217`` +``1.16.1`` | ``iccifort/2020.4.304`` +``1.16.2`` | ``GCC/10.3.0`` +``1.16.2`` | ``intel-compilers/2021.2.0`` +``1.17`` | ``GCC/11.2.0`` +``1.17`` | ``GCC/11.3.0`` +``1.17`` | ``GCC/12.2.0`` +``1.17`` | ``GCC/12.3.0`` +``1.4`` | ``intel/2016a`` +``1.4.4`` | ``foss/2016b`` +``1.4.4`` | ``intel/2016b`` +``1.6.4`` | ``foss/2016b`` +``1.6.4`` | ``intel/2016b`` +``1.8.2`` | ``intel/2017b`` +``1.8.3`` | ``foss/2018a`` +``1.8.3`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libyaml.md b/docs/version-specific/supported-software/l/libyaml.md new file mode 100644 index 000000000..998b21dbd --- /dev/null +++ b/docs/version-specific/supported-software/l/libyaml.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# libyaml + +LibYAML is a YAML parser and emitter written in C. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.6`` | ``GCCcore/6.4.0`` +``0.1.6`` | ``foss/2016b`` +``0.1.6`` | ``intel/2016a`` +``0.1.6`` | ``intel/2016b`` +``0.1.7`` | ``GCCcore/6.3.0`` +``0.1.7`` | ``GCCcore/6.4.0`` +``0.1.7`` | ``GCCcore/7.3.0`` +``0.1.7`` | ``system`` +``0.2.1`` | ``GCCcore/7.3.0`` +``0.2.1`` | ``system`` +``0.2.2`` | ``GCCcore/8.2.0`` +``0.2.2`` | ``GCCcore/8.3.0`` +``0.2.2`` | ``GCCcore/9.3.0`` +``0.2.5`` | ``GCCcore/10.2.0`` +``0.2.5`` | ``GCCcore/10.3.0`` +``0.2.5`` | ``GCCcore/11.2.0`` +``0.2.5`` | ``GCCcore/11.3.0`` +``0.2.5`` | ``GCCcore/12.2.0`` +``0.2.5`` | ``GCCcore/12.3.0`` +``0.2.5`` | ``GCCcore/13.2.0`` +``0.2.5`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libzeep.md b/docs/version-specific/supported-software/l/libzeep.md new file mode 100644 index 000000000..b9b92d495 --- /dev/null +++ b/docs/version-specific/supported-software/l/libzeep.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# libzeep + +Libzeep was originally developed to make it easy to create SOAP servers. + +*homepage*: + +version | toolchain +--------|---------- +``5.0.1`` | ``gompi/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/libzip.md b/docs/version-specific/supported-software/l/libzip.md new file mode 100644 index 000000000..f42684826 --- /dev/null +++ b/docs/version-specific/supported-software/l/libzip.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# libzip + +libzip is a C library for reading, creating, and modifying zip archives. + +*homepage*: + +version | toolchain +--------|---------- +``1.5.2`` | ``GCCcore/8.2.0`` +``1.7.3`` | ``GCCcore/10.2.0`` +``1.7.3`` | ``GCCcore/10.3.0`` +``1.7.3`` | ``GCCcore/11.2.0`` +``1.9.2`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/lie_learn.md b/docs/version-specific/supported-software/l/lie_learn.md new file mode 100644 index 000000000..9b55bef76 --- /dev/null +++ b/docs/version-specific/supported-software/l/lie_learn.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# lie_learn + +lie_learn is a python package that knows how to do various tricky computations related to Lie groups and manifolds (mainly the sphere S2 and rotation group SO3). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.0.1.post1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/lifelines.md b/docs/version-specific/supported-software/l/lifelines.md new file mode 100644 index 000000000..e2e636d40 --- /dev/null +++ b/docs/version-specific/supported-software/l/lifelines.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# lifelines + +lifelines is a pure Python implementation of the best parts of survival analysis + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.22.8`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` +``0.26.3`` | | ``fosscuda/2020b`` +``0.27.4`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/liknorm.md b/docs/version-specific/supported-software/l/liknorm.md new file mode 100644 index 000000000..2da3cc162 --- /dev/null +++ b/docs/version-specific/supported-software/l/liknorm.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# liknorm + +Moments of the product of an exponential-family likelihood with a Normal distribution. + +*homepage*: + +version | toolchain +--------|---------- +``1.5.2`` | ``GCCcore/7.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/likwid.md b/docs/version-specific/supported-software/l/likwid.md new file mode 100644 index 000000000..bb641bc62 --- /dev/null +++ b/docs/version-specific/supported-software/l/likwid.md @@ -0,0 +1,36 @@ +--- +search: + boost: 0.5 +--- +# likwid + +Likwid stands for Like I knew what I am doing. This project contributes easy to use command line tools for Linux to support programmers in developing high performance multi threaded programs. + +*homepage*: + +version | toolchain +--------|---------- +``4.0.1`` | ``GNU/4.9.3-2.25`` +``4.1.0`` | ``GCCcore/4.9.3`` +``4.2.0`` | ``GCCcore/6.3.0`` +``4.2.0`` | ``GCCcore/6.4.0`` +``4.2.0`` | ``foss/2017a`` +``4.2.0`` | ``intel/2017a`` +``4.3.2`` | ``GCCcore/6.4.0`` +``4.3.2`` | ``GCCcore/7.3.0`` +``5.0.1`` | ``GCCcore/8.3.0`` +``5.1.0`` | ``GCCcore/9.3.0`` +``5.2.0`` | ``GCC/10.2.0`` +``5.2.0`` | ``GCC/10.3.0`` +``5.2.0`` | ``GCC/11.2.0`` +``5.2.0`` | ``iccifort/2020.4.304`` +``5.2.0`` | ``intel-compilers/2021.2.0`` +``5.2.1`` | ``GCC/11.2.0`` +``5.2.2`` | ``GCC/11.3.0`` +``5.2.2`` | ``GCC/12.3.0`` +``5.3.0`` | ``GCC/12.3.0`` +``5.3.0`` | ``GCC/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/lil-aretomo.md b/docs/version-specific/supported-software/l/lil-aretomo.md new file mode 100644 index 000000000..bab3d148d --- /dev/null +++ b/docs/version-specific/supported-software/l/lil-aretomo.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# lil-aretomo + +A lightweight Python API for AreTomo. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/limix.md b/docs/version-specific/supported-software/l/limix.md new file mode 100644 index 000000000..1cbfad7b1 --- /dev/null +++ b/docs/version-specific/supported-software/l/limix.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# limix + +Limix is a flexible and efficient linear mixed model library with interfaces to Python. Genomic analyses require flexible models that can be adapted to the needs of the user. Limix is smart about how particular models are fitted to save computational cost. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.4`` | ``-Python-3.6.6`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/line_profiler.md b/docs/version-specific/supported-software/l/line_profiler.md new file mode 100644 index 000000000..062abcef4 --- /dev/null +++ b/docs/version-specific/supported-software/l/line_profiler.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# line_profiler + +line_profiler is a module for doing line-by-line profiling of functions. kernprof is a convenient script for running either line_profiler or the Python standard library's cProfile or profile modules, depending on what is available. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.1.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``3.5.1`` | | ``foss/2021b`` +``4.0.0`` | | ``foss/2022a`` +``4.1.1`` | | ``GCCcore/12.2.0`` +``4.1.2`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/lit.md b/docs/version-specific/supported-software/l/lit.md new file mode 100644 index 000000000..6fb87c94c --- /dev/null +++ b/docs/version-specific/supported-software/l/lit.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# lit + +lit is a portable tool for executing LLVM and Clang style test suites, summarizing their results, and providing indication of failures. + +*homepage*: + +version | toolchain +--------|---------- +``18.1.2`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/lmoments3.md b/docs/version-specific/supported-software/l/lmoments3.md new file mode 100644 index 000000000..d1057e980 --- /dev/null +++ b/docs/version-specific/supported-software/l/lmoments3.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# lmoments3 + +Estimate linear moments for statistical distribution functions. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.6`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/logaddexp.md b/docs/version-specific/supported-software/l/logaddexp.md new file mode 100644 index 000000000..c09bbba9e --- /dev/null +++ b/docs/version-specific/supported-software/l/logaddexp.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# logaddexp + +C library that implements the logarithm of the sum of exponentiations. Inspired by NumPy's logaddexp function. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.3`` | ``GCCcore/7.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/longestrunsubsequence.md b/docs/version-specific/supported-software/l/longestrunsubsequence.md new file mode 100644 index 000000000..e5569a7ac --- /dev/null +++ b/docs/version-specific/supported-software/l/longestrunsubsequence.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# longestrunsubsequence + +Implementation of a solver for the Longest Run Subsequence Problem. Given a sequence as input, compute a longest subsequence such that there is at most one run for every character. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.1`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/longread_umi.md b/docs/version-specific/supported-software/l/longread_umi.md new file mode 100644 index 000000000..840cb4ea4 --- /dev/null +++ b/docs/version-specific/supported-software/l/longread_umi.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# longread_umi + +A collection of scripts for processing longread UMI data. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.2`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/loomR.md b/docs/version-specific/supported-software/l/loomR.md new file mode 100644 index 000000000..061fe0f44 --- /dev/null +++ b/docs/version-specific/supported-software/l/loomR.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# loomR + +An R interface for loom files + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.0-20180425`` | ``-R-4.2.1`` | ``foss/2022a`` +``0.2.0-20180425`` | ``-R-4.2.2`` | ``foss/2022b`` +``0.2.0-20180425`` | ``-R-4.3.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/loompy.md b/docs/version-specific/supported-software/l/loompy.md new file mode 100644 index 000000000..454c97804 --- /dev/null +++ b/docs/version-specific/supported-software/l/loompy.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# loompy + +Python implementation of the Loom file format, an efficient file format for large omics datasets + +*homepage*: + +version | toolchain +--------|---------- +``3.0.6`` | ``intel/2020b`` +``3.0.7`` | ``foss/2021a`` +``3.0.7`` | ``foss/2021b`` +``3.0.7`` | ``foss/2022a`` +``3.0.7`` | ``foss/2023a`` +``3.0.7`` | ``intel/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/lpsolve.md b/docs/version-specific/supported-software/l/lpsolve.md new file mode 100644 index 000000000..86394cda0 --- /dev/null +++ b/docs/version-specific/supported-software/l/lpsolve.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# lpsolve + +Mixed Integer Linear Programming (MILP) solver + +*homepage*: + +version | toolchain +--------|---------- +``5.5.2.11`` | ``GCC/10.2.0`` +``5.5.2.11`` | ``GCC/10.3.0`` +``5.5.2.11`` | ``GCC/11.2.0`` +``5.5.2.11`` | ``GCC/11.3.0`` +``5.5.2.11`` | ``GCC/12.2.0`` +``5.5.2.11`` | ``GCC/9.3.0`` +``5.5.2.5`` | ``GCC/6.4.0-2.28`` +``5.5.2.5`` | ``GCC/8.3.0`` +``5.5.2.5`` | ``foss/2018a`` +``5.5.2.5`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` +``5.5.2.5`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``5.5.2.5`` | ``iccifort/2019.5.281`` +``5.5.2.5`` | ``intel/2017a`` +``5.5.2.5`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/lrslib.md b/docs/version-specific/supported-software/l/lrslib.md new file mode 100644 index 000000000..7240f5d73 --- /dev/null +++ b/docs/version-specific/supported-software/l/lrslib.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# lrslib + +lrslib is a self-contained ANSI C implementation of the reverse search algorithm for vertex enumeration/convex hull problems + +*homepage*: + +version | toolchain +--------|---------- +``6.2`` | ``intel/2018b`` +``7.0a`` | ``gompi/2019a`` +``7.2`` | ``gompi/2022a`` +``7.2`` | ``gompi/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/lwgrp.md b/docs/version-specific/supported-software/l/lwgrp.md new file mode 100644 index 000000000..86ad2b331 --- /dev/null +++ b/docs/version-specific/supported-software/l/lwgrp.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# lwgrp + +The Light-weight Group Library provides methods for MPI codes to quickly create and destroy process groups + +*homepage*: + +version | toolchain +--------|---------- +``1.0.2`` | ``gompi/2019a`` +``1.0.2`` | ``gompi/2020a`` +``1.0.2`` | ``iimpi/2019a`` +``1.0.2`` | ``iimpi/2020a`` +``1.0.3`` | ``gompi/2020b`` +``1.0.5`` | ``gompi/2022a`` +``1.0.5`` | ``gompi/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/lxml.md b/docs/version-specific/supported-software/l/lxml.md new file mode 100644 index 000000000..9eb99bb30 --- /dev/null +++ b/docs/version-specific/supported-software/l/lxml.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# lxml + +The lxml XML toolkit is a Pythonic binding for the C libraries libxml2 and libxslt. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.5.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``3.6.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``3.6.4`` | ``-Python-2.7.12`` | ``intel/2016b`` +``4.0.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``4.1.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``4.2.0`` | ``-Python-2.7.14`` | ``foss/2018a`` +``4.2.0`` | ``-Python-2.7.14`` | ``intel/2018a`` +``4.2.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``4.2.5`` | ``-Python-2.7.15`` | ``foss/2018b`` +``4.2.5`` | ``-Python-3.6.6`` | ``foss/2018b`` +``4.2.5`` | ``-Python-2.7.15`` | ``intel/2018b`` +``4.3.3`` | | ``GCCcore/8.2.0`` +``4.4.2`` | | ``GCCcore/8.3.0`` +``4.5.2`` | | ``GCCcore/9.3.0`` +``4.6.2`` | | ``GCCcore/10.2.0`` +``4.6.3`` | | ``GCCcore/10.3.0`` +``4.6.3`` | | ``GCCcore/11.2.0`` +``4.9.1`` | | ``GCCcore/11.3.0`` +``4.9.2`` | | ``GCCcore/12.2.0`` +``4.9.2`` | | ``GCCcore/12.3.0`` +``4.9.3`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/lynx.md b/docs/version-specific/supported-software/l/lynx.md new file mode 100644 index 000000000..d57ec15a2 --- /dev/null +++ b/docs/version-specific/supported-software/l/lynx.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# lynx + +lynx is an alphanumeric display oriented World-Wide Web Client + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.8.9`` | ``-develop`` | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/l/lz4.md b/docs/version-specific/supported-software/l/lz4.md new file mode 100644 index 000000000..9e55611f8 --- /dev/null +++ b/docs/version-specific/supported-software/l/lz4.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# lz4 + +LZ4 is lossless compression algorithm, providing compression speed at 400 MB/s per core. It features an extremely fast decoder, with speed in multiple GB/s per core. + +*homepage*: + +version | toolchain +--------|---------- +``1.8.2`` | ``GCCcore/5.4.0`` +``1.8.2`` | ``GCCcore/6.4.0`` +``1.9.0`` | ``GCCcore/7.3.0`` +``1.9.1`` | ``GCCcore/8.2.0`` +``1.9.2`` | ``GCCcore/10.2.0`` +``1.9.2`` | ``GCCcore/8.3.0`` +``1.9.2`` | ``GCCcore/9.3.0`` +``1.9.3`` | ``GCCcore/10.3.0`` +``1.9.3`` | ``GCCcore/11.2.0`` +``1.9.3`` | ``GCCcore/11.3.0`` +``1.9.4`` | ``GCCcore/12.2.0`` +``1.9.4`` | ``GCCcore/12.3.0`` +``1.9.4`` | ``GCCcore/13.2.0`` +``1.9.4`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/M1QN3.md b/docs/version-specific/supported-software/m/M1QN3.md new file mode 100644 index 000000000..560eaae03 --- /dev/null +++ b/docs/version-specific/supported-software/m/M1QN3.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# M1QN3 + +A solver of large-scale unconstrained minimization problems + +*homepage*: + +version | toolchain +--------|---------- +``3.3`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/M3GNet.md b/docs/version-specific/supported-software/m/M3GNet.md new file mode 100644 index 000000000..1421f9386 --- /dev/null +++ b/docs/version-specific/supported-software/m/M3GNet.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# M3GNet + +" M3GNet is a new materials graph neural network architecture that incorporates 3-body interactions. A key difference with prior materials graph implementations such as MEGNet is the addition of the coordinates for atoms and the 3×3 lattice matrix in crystals, which are necessary for obtaining tensorial quantities such as forces and stresses via auto-differentiation. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.4`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/M4.md b/docs/version-specific/supported-software/m/M4.md new file mode 100644 index 000000000..5fcf4d611 --- /dev/null +++ b/docs/version-specific/supported-software/m/M4.md @@ -0,0 +1,85 @@ +--- +search: + boost: 0.5 +--- +# M4 + +GNU M4 is an implementation of the traditional Unix macro processor. It is mostly SVR4 compatible although it has some extensions (for example, handling more than 9 positional parameters to macros). GNU M4 also has built-in functions for including files, running shell commands, doing arithmetic, etc. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.16`` | ``GCC/4.8.1`` +``1.4.16`` | ``GCC/4.8.2`` +``1.4.16`` | ``system`` +``1.4.17`` | ``GCC/4.8.2`` +``1.4.17`` | ``GCC/4.8.4`` +``1.4.17`` | ``GCC/4.9.2-binutils-2.25`` +``1.4.17`` | ``GCC/4.9.2`` +``1.4.17`` | ``GCC/4.9.3-2.25`` +``1.4.17`` | ``GCC/4.9.3-binutils-2.25`` +``1.4.17`` | ``GCC/4.9.3`` +``1.4.17`` | ``GCC/5.1.0-binutils-2.25`` +``1.4.17`` | ``GCC/5.2.0`` +``1.4.17`` | ``GCC/5.4.0-2.26`` +``1.4.17`` | ``GCCcore/4.9.2`` +``1.4.17`` | ``GCCcore/4.9.3`` +``1.4.17`` | ``GCCcore/4.9.4`` +``1.4.17`` | ``GCCcore/5.3.0`` +``1.4.17`` | ``GCCcore/5.4.0`` +``1.4.17`` | ``GCCcore/6.1.0`` +``1.4.17`` | ``GCCcore/6.2.0`` +``1.4.17`` | ``GNU/4.9.2-2.25`` +``1.4.17`` | ``GNU/4.9.3-2.25`` +``1.4.17`` | ``GNU/5.1.0-2.25`` +``1.4.17`` | ``foss/2016.04`` +``1.4.17`` | ``foss/2016a`` +``1.4.17`` | ``foss/2016b`` +``1.4.17`` | ``gimkl/2.11.5`` +``1.4.17`` | ``intel/2016.02-GCC-4.9`` +``1.4.17`` | ``intel/2016a`` +``1.4.17`` | ``intel/2016b`` +``1.4.17`` | ``iomkl/2016.07`` +``1.4.17`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``1.4.17`` | ``system`` +``1.4.18`` | ``FCC/4.5.0`` +``1.4.18`` | ``GCCcore/10.1.0`` +``1.4.18`` | ``GCCcore/10.2.0`` +``1.4.18`` | ``GCCcore/10.3.0`` +``1.4.18`` | ``GCCcore/11.1.0`` +``1.4.18`` | ``GCCcore/5.3.0`` +``1.4.18`` | ``GCCcore/5.4.0`` +``1.4.18`` | ``GCCcore/5.5.0`` +``1.4.18`` | ``GCCcore/6.3.0`` +``1.4.18`` | ``GCCcore/6.4.0`` +``1.4.18`` | ``GCCcore/7.1.0`` +``1.4.18`` | ``GCCcore/7.2.0`` +``1.4.18`` | ``GCCcore/7.3.0`` +``1.4.18`` | ``GCCcore/7.4.0`` +``1.4.18`` | ``GCCcore/8.1.0`` +``1.4.18`` | ``GCCcore/8.2.0`` +``1.4.18`` | ``GCCcore/8.3.0`` +``1.4.18`` | ``GCCcore/8.4.0`` +``1.4.18`` | ``GCCcore/9.1.0`` +``1.4.18`` | ``GCCcore/9.2.0`` +``1.4.18`` | ``GCCcore/9.3.0`` +``1.4.18`` | ``GCCcore/system`` +``1.4.18`` | ``system`` +``1.4.19`` | ``GCCcore/11.2.0`` +``1.4.19`` | ``GCCcore/11.3.0`` +``1.4.19`` | ``GCCcore/11.4.0`` +``1.4.19`` | ``GCCcore/12.1.0`` +``1.4.19`` | ``GCCcore/12.2.0`` +``1.4.19`` | ``GCCcore/12.3.0`` +``1.4.19`` | ``GCCcore/13.1.0`` +``1.4.19`` | ``GCCcore/13.2.0`` +``1.4.19`` | ``GCCcore/13.3.0`` +``1.4.19`` | ``GCCcore/14.1.0`` +``1.4.19`` | ``GCCcore/9.4.0`` +``1.4.19`` | ``GCCcore/9.5.0`` +``1.4.19`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MACH.md b/docs/version-specific/supported-software/m/MACH.md new file mode 100644 index 000000000..83397caa9 --- /dev/null +++ b/docs/version-specific/supported-software/m/MACH.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MACH + +MACH 1.0 is a Markov Chain based haplotyper that can resolve long haplotypes or infer missing genotypes in samples of unrelated individuals. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.18`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MACS2.md b/docs/version-specific/supported-software/m/MACS2.md new file mode 100644 index 000000000..ecacb3b16 --- /dev/null +++ b/docs/version-specific/supported-software/m/MACS2.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# MACS2 + +Model Based Analysis for ChIP-Seq data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.1.20160309`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.1.2.1`` | ``-Python-2.7.14`` | ``foss/2017b`` +``2.1.2.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.1.2.1`` | ``-Python-2.7.15`` | ``intel/2019a`` +``2.2.5`` | ``-Python-3.6.6`` | ``foss/2018b`` +``2.2.7.1`` | | ``foss/2021a`` +``2.2.7.1`` | | ``foss/2021b`` +``2.2.9.1`` | | ``foss/2022a`` +``2.2.9.1`` | | ``foss/2022b`` +``2.2.9.1`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MACS3.md b/docs/version-specific/supported-software/m/MACS3.md new file mode 100644 index 000000000..1d8fe5b78 --- /dev/null +++ b/docs/version-specific/supported-software/m/MACS3.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# MACS3 + +Model Based Analysis for ChIP-Seq data + +*homepage*: + +version | toolchain +--------|---------- +``3.0.0`` | ``foss/2022b`` +``3.0.0b2`` | ``foss/2022b`` +``3.0.1`` | ``foss/2022b`` +``3.0.1`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MACSE.md b/docs/version-specific/supported-software/m/MACSE.md new file mode 100644 index 000000000..037294f58 --- /dev/null +++ b/docs/version-specific/supported-software/m/MACSE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MACSE + +MACSE aligns coding NT sequences with respect to their AA translation while allowing NT sequences to contain multiple frameshifts and/or stop codons. MACSE is hence the first automatic solution to align protein-coding gene datasets containing non-functional sequences (pseudogenes) without disrupting the underlying codon structure. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.06`` | ``-Java-15`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MAFFT.md b/docs/version-specific/supported-software/m/MAFFT.md new file mode 100644 index 000000000..6d4c82242 --- /dev/null +++ b/docs/version-specific/supported-software/m/MAFFT.md @@ -0,0 +1,38 @@ +--- +search: + boost: 0.5 +--- +# MAFFT + +MAFFT is a multiple sequence alignment program for unix-like operating systems. It offers a range of multiple alignment methods, L-INS-i (accurate; for alignment of <∼200 sequences), FFT-NS-2 (fast; for alignment of <∼10,000 sequences), etc. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``7.305`` | ``-with-extensions`` | ``foss/2016b`` +``7.397`` | ``-with-extensions`` | ``intel/2018a`` +``7.427`` | ``-with-extensions`` | ``foss/2018b`` +``7.427`` | ``-with-extensions`` | ``intel/2018b`` +``7.429`` | ``-with-extensions`` | ``GCC/8.2.0-2.31.1`` +``7.453`` | ``-with-extensions`` | ``GCC/8.3.0`` +``7.453`` | ``-with-extensions`` | ``GCC/9.3.0`` +``7.453`` | ``-with-extensions`` | ``gompi/2020a`` +``7.453`` | ``-with-extensions`` | ``iccifort/2019.5.281`` +``7.453`` | ``-with-extensions`` | ``iimpi/2020a`` +``7.470`` | ``-with-extensions`` | ``GCC/9.3.0`` +``7.470`` | ``-with-extensions`` | ``gompi/2020a`` +``7.471`` | ``-with-extensions`` | ``iimpi/2020a`` +``7.475`` | ``-with-extensions`` | ``GCC/10.2.0`` +``7.475`` | ``-with-extensions`` | ``gompi/2020b`` +``7.487`` | ``-with-extensions`` | ``gompi/2021a`` +``7.490`` | ``-with-extensions`` | ``GCC/10.3.0`` +``7.490`` | ``-with-extensions`` | ``GCC/11.2.0`` +``7.490`` | ``-with-extensions`` | ``gompi/2021b`` +``7.505`` | ``-with-extensions`` | ``GCC/11.3.0`` +``7.505`` | ``-with-extensions`` | ``GCC/12.2.0`` +``7.520`` | ``-with-extensions`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MAGMA-gene-analysis.md b/docs/version-specific/supported-software/m/MAGMA-gene-analysis.md new file mode 100644 index 000000000..a15705591 --- /dev/null +++ b/docs/version-specific/supported-software/m/MAGMA-gene-analysis.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# MAGMA-gene-analysis + +MAGMA is a tool for gene analysis and generalized gene-set analysis of GWAS data. It can be used to analyse both raw genotype data as well as summary SNP p-values from a previous GWAS or meta-analysis. + +*homepage*: + +version | toolchain +--------|---------- +``1.07b`` | ``foss/2018b`` +``1.07bb`` | ``GCC/8.3.0`` +``1.09b`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MAGeCK.md b/docs/version-specific/supported-software/m/MAGeCK.md new file mode 100644 index 000000000..db7419036 --- /dev/null +++ b/docs/version-specific/supported-software/m/MAGeCK.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# MAGeCK + +Model-based Analysis of Genome-wide CRISPR-Cas9 Knockout (MAGeCK) is a computational tool to identify important genes from the recent genome-scale CRISPR-Cas9 knockout screens (or GeCKO) technology. MAGeCK is developed by Wei Li and Han Xu from Dr. Xiaole Shirley Liu's lab at Dana-Farber Cancer Institute, and is being actively updated by Wei Li lab from Children's National Medical Center. + +*homepage*: + +version | toolchain +--------|---------- +``0.5.9.4`` | ``foss/2021a`` +``0.5.9.4`` | ``foss/2022a`` +``0.5.9.5`` | ``gfbf/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MAJIQ.md b/docs/version-specific/supported-software/m/MAJIQ.md new file mode 100644 index 000000000..f9705f1c3 --- /dev/null +++ b/docs/version-specific/supported-software/m/MAJIQ.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MAJIQ + +MAJIQ and Voila are two software packages that together detect, quantify, and visualize local splicing variations (LSV) from RNA-Seq data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.1`` | ``-Python-3.6.4`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MAKER.md b/docs/version-specific/supported-software/m/MAKER.md new file mode 100644 index 000000000..7a215ab67 --- /dev/null +++ b/docs/version-specific/supported-software/m/MAKER.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MAKER + +MAKER is a portable and easily configurable genome annotation pipeline. Its purpose is to allow smaller eukaryotic and prokaryotic genome projects to independently annotate their genomes and to create genome databases. + +*homepage*: + +version | toolchain +--------|---------- +``3.01.04`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MARS.md b/docs/version-specific/supported-software/m/MARS.md new file mode 100644 index 000000000..1237f1260 --- /dev/null +++ b/docs/version-specific/supported-software/m/MARS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MARS + +improving Multiple circular sequence Alignment using Refined Sequences + +*homepage*: + +version | toolchain +--------|---------- +``20191101`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MATIO.md b/docs/version-specific/supported-software/m/MATIO.md new file mode 100644 index 000000000..221da7109 --- /dev/null +++ b/docs/version-specific/supported-software/m/MATIO.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# MATIO + +matio is an C library for reading and writing Matlab MAT files. + +*homepage*: + +version | toolchain +--------|---------- +``1.5.11`` | ``foss/2017b`` +``1.5.12`` | ``GCCcore/6.4.0`` +``1.5.17`` | ``GCCcore/8.3.0`` +``1.5.19`` | ``GCCcore/9.3.0`` +``1.5.21`` | ``GCCcore/10.2.0`` +``1.5.22`` | ``GCCcore/11.2.0`` +``1.5.23`` | ``GCCcore/11.3.0`` +``1.5.23`` | ``GCCcore/12.1.0`` +``1.5.23`` | ``GCCcore/12.2.0`` +``1.5.26`` | ``GCCcore/12.3.0`` +``1.5.26`` | ``GCCcore/13.2.0`` +``1.5.9`` | ``GCCcore/5.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MATLAB-Engine.md b/docs/version-specific/supported-software/m/MATLAB-Engine.md new file mode 100644 index 000000000..e9c5de891 --- /dev/null +++ b/docs/version-specific/supported-software/m/MATLAB-Engine.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# MATLAB-Engine + +The MATLAB Engine API for Python provides a package for Python to call MATLAB as a computational engine. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2018b`` | ``-Python-2.7.14`` | ``foss/2017b`` +``2018b`` | ``-Python-3.6.3`` | ``foss/2017b`` +``2018b`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2018b`` | ``-Python-3.6.3`` | ``intel/2017b`` +``2019b`` | | ``GCCcore/8.3.0`` +``2021a-9.10.1`` | | ``GCCcore/10.2.0`` +``2021b-9.11.19`` | | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MATLAB.md b/docs/version-specific/supported-software/m/MATLAB.md new file mode 100644 index 000000000..5251ee8b8 --- /dev/null +++ b/docs/version-specific/supported-software/m/MATLAB.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# MATLAB + +MATLAB is a high-level language and interactive environment that enables you to perform computationally intensive tasks faster than with traditional programming languages such as C, C++, and Fortran. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2012b`` | | ``system`` +``2013b`` | | ``system`` +``2015a`` | | ``system`` +``2016a`` | | ``system`` +``2017a`` | | ``system`` +``2018b`` | | ``system`` +``2019b`` | | ``system`` +``2020a`` | | ``system`` +``2020b`` | | ``system`` +``2021a`` | | ``system`` +``2021b`` | | ``system`` +``2022a`` | ``-r3`` | ``system`` +``2022a`` | | ``system`` +``2022b`` | ``-r5`` | ``system`` +``2022b`` | | ``system`` +``2023a`` | | ``system`` +``2023b`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MATSim.md b/docs/version-specific/supported-software/m/MATSim.md new file mode 100644 index 000000000..9c427ee70 --- /dev/null +++ b/docs/version-specific/supported-software/m/MATSim.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# MATSim + +MATSim is an open-source framework to implement large-scale agent-based transport simulations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8.1`` | ``-Java-1.8.0_112`` | ``intel/2016b`` +``14.0`` | ``-Java-11`` | ``GCCcore/11.2.0`` +``14.0`` | ``-Java-11`` | ``system`` +``15.0`` | ``-Java-17`` | ``GCCcore/12.3.0`` +``15.0`` | ``-Java-17`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MBROLA.md b/docs/version-specific/supported-software/m/MBROLA.md new file mode 100644 index 000000000..93e59ef09 --- /dev/null +++ b/docs/version-specific/supported-software/m/MBROLA.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# MBROLA + +MBROLA is a speech synthesizer based on the concatenation of diphones. It takes a list of phonemes as input, together with prosodic information (duration of phonemes and a piecewise linear description of pitch), and produces speech samples on 16 bits (linear), at the sampling frequency of the diphone database. MBROLA voices project provides list of MBROLA speech synthesizer voices. It is intended to provide easier collaboration and automatic updates for individual users and packagers. + +*homepage*: <['https://github.com/numediart/MBROLA', 'https://github.com/numediart/MBROLA-voices']> + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.3`` | ``-voices-20200330`` | ``GCCcore/12.3.0`` +``3.3`` | ``-voices-20200330`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MCL.md b/docs/version-specific/supported-software/m/MCL.md new file mode 100644 index 000000000..baa08fb4a --- /dev/null +++ b/docs/version-specific/supported-software/m/MCL.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# MCL + +The MCL algorithm is short for the Markov Cluster Algorithm, a fast and scalable unsupervised cluster algorithm for graphs (also known as networks) based on simulation of (stochastic) flow in graphs. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``02.063`` | | ``intel/2016b`` +``14.137`` | | ``GCCcore/10.2.0`` +``14.137`` | | ``GCCcore/10.3.0`` +``14.137`` | | ``GCCcore/11.3.0`` +``14.137`` | ``-Perl-5.26.1`` | ``GCCcore/6.4.0`` +``14.137`` | ``-Perl-5.28.0`` | ``GCCcore/7.3.0`` +``14.137`` | | ``GCCcore/8.3.0`` +``14.137`` | | ``GCCcore/9.3.0`` +``14.137`` | | ``foss/2016a`` +``14.137`` | | ``intel/2016b`` +``22.282`` | | ``GCCcore/11.2.0`` +``22.282`` | | ``GCCcore/11.3.0`` +``22.282`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MCR.md b/docs/version-specific/supported-software/m/MCR.md new file mode 100644 index 000000000..9b8bf279a --- /dev/null +++ b/docs/version-specific/supported-software/m/MCR.md @@ -0,0 +1,39 @@ +--- +search: + boost: 0.5 +--- +# MCR + +The MATLAB Runtime is a standalone set of shared libraries that enables the execution of compiled MATLAB applications or components on computers that do not have MATLAB installed. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``R2013a`` | | ``system`` +``R2013b`` | | ``system`` +``R2014a`` | | ``system`` +``R2014b`` | | ``system`` +``R2015a`` | | ``system`` +``R2015b`` | | ``system`` +``R2016a`` | | ``system`` +``R2016b`` | | ``system`` +``R2018a`` | | ``system`` +``R2018b`` | | ``system`` +``R2019a`` | | ``system`` +``R2019b`` | ``.8`` | ``system`` +``R2020a`` | ``.6`` | ``system`` +``R2020b`` | ``.5`` | ``system`` +``R2021a`` | ``.0`` | ``system`` +``R2021a`` | ``.3`` | ``system`` +``R2021b`` | ``.1`` | ``system`` +``R2021b`` | ``.2`` | ``system`` +``R2021b`` | | ``system`` +``R2022a`` | ``.1`` | ``system`` +``R2022a`` | ``.5`` | ``system`` +``R2022a`` | | ``system`` +``R2023a`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MDAnalysis.md b/docs/version-specific/supported-software/m/MDAnalysis.md new file mode 100644 index 000000000..4e7538a47 --- /dev/null +++ b/docs/version-specific/supported-software/m/MDAnalysis.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# MDAnalysis + +MDAnalysis is an object-oriented Python library to analyze trajectories from molecular dynamics (MD) simulations in many popular formats. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.20.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.20.1`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.1.1`` | | ``foss/2020b`` +``2.0.0`` | | ``foss/2021a`` +``2.0.0`` | | ``foss/2021b`` +``2.0.0`` | | ``intel/2021b`` +``2.2.0`` | | ``foss/2022a`` +``2.4.2`` | | ``foss/2021a`` +``2.4.2`` | | ``foss/2022b`` +``2.7.0`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MDBM.md b/docs/version-specific/supported-software/m/MDBM.md new file mode 100644 index 000000000..b33516286 --- /dev/null +++ b/docs/version-specific/supported-software/m/MDBM.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# MDBM + +MDBM is a super-fast memory-mapped key/value store + +*homepage*: + +version | toolchain +--------|---------- +``4.13.0`` | ``GCCcore/6.4.0`` +``4.13.0`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MDI.md b/docs/version-specific/supported-software/m/MDI.md new file mode 100644 index 000000000..d85a87c1c --- /dev/null +++ b/docs/version-specific/supported-software/m/MDI.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# MDI + +The MolSSI Driver Interface (MDI) project provides a standardized API for fast, on-the-fly communication between computational chemistry codes. This greatly simplifies the process of implementing methods that require the cooperation of multiple software packages and enables developers to write a single implementation that works across many different codes. The API is sufficiently general to support a wide variety of techniques, including QM/MM, ab initio MD, machine learning, advanced sampling, and path integral MD, while also being straightforwardly extensible. Communication between codes is handled by the MDI Library, which enables tight coupling between codes using either the MPI or TCP/IP methods. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.16`` | ``gompi/2022b`` +``1.4.26`` | ``gompi/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MDSplus-Java.md b/docs/version-specific/supported-software/m/MDSplus-Java.md new file mode 100644 index 000000000..c51af199a --- /dev/null +++ b/docs/version-specific/supported-software/m/MDSplus-Java.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MDSplus-Java + +MDSplus is a set of software tools for data acquisition and storage and a methodology for management of complex scientific data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``7.96.12`` | ``-Java-13`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MDSplus-Python.md b/docs/version-specific/supported-software/m/MDSplus-Python.md new file mode 100644 index 000000000..f0a5ab3c8 --- /dev/null +++ b/docs/version-specific/supported-software/m/MDSplus-Python.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MDSplus-Python + +MDSplus is a set of software tools for data acquisition and storage and a methodology for management of complex scientific data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``7.96.12`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MDSplus.md b/docs/version-specific/supported-software/m/MDSplus.md new file mode 100644 index 000000000..b8a1b9a29 --- /dev/null +++ b/docs/version-specific/supported-software/m/MDSplus.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# MDSplus + +MDSplus is a set of software tools for data acquisition and storage and a methodology for management of complex scientific data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``7.0.67`` | ``-Java-1.7.0_79-Python-2.7.11`` | ``foss/2016a`` +``7.46.1`` | | ``foss/2018a`` +``7.96.12`` | | ``GCCcore/9.3.0`` +``7.96.8`` | | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MDTraj.md b/docs/version-specific/supported-software/m/MDTraj.md new file mode 100644 index 000000000..ce7d68da2 --- /dev/null +++ b/docs/version-specific/supported-software/m/MDTraj.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# MDTraj + +Read, write and analyze MD trajectories with only a few lines of Python code. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.9.1`` | ``-Python-3.6.3`` | ``intel/2017b`` +``1.9.2`` | ``-Python-3.6.6`` | ``intel/2018b`` +``1.9.3`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.9.3`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.9.4`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.9.4`` | ``-Python-3.8.2`` | ``intel/2020a`` +``1.9.5`` | | ``foss/2020b`` +``1.9.5`` | | ``fosscuda/2020b`` +``1.9.5`` | | ``intel/2020b`` +``1.9.7`` | | ``foss/2021a`` +``1.9.7`` | | ``foss/2021b`` +``1.9.7`` | | ``foss/2022a`` +``1.9.7`` | | ``intel/2021b`` +``1.9.7`` | | ``intel/2022a`` +``1.9.9`` | | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MEGA.md b/docs/version-specific/supported-software/m/MEGA.md new file mode 100644 index 000000000..b97b44929 --- /dev/null +++ b/docs/version-specific/supported-software/m/MEGA.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# MEGA + +MEGA-CC (Molecular Evolutionary Genetics Analysis Computational Core) is an integrated suite of tools for statistics-based comparative analysis of molecular sequence data based on evolutionary principles. + +*homepage*: + +version | toolchain +--------|---------- +``10.0.5`` | ``system`` +``11.0.10`` | ``system`` +``7.0.20-1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MEGACC.md b/docs/version-specific/supported-software/m/MEGACC.md new file mode 100644 index 000000000..77489f794 --- /dev/null +++ b/docs/version-specific/supported-software/m/MEGACC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MEGACC + +MEGA-Computing Core - Sophisticated and user-friendly software suite for analyzing DNA and protein sequence data from species and populations. + +*homepage*: + +version | toolchain +--------|---------- +``7.0.18-1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MEGAHIT.md b/docs/version-specific/supported-software/m/MEGAHIT.md new file mode 100644 index 000000000..3294a9821 --- /dev/null +++ b/docs/version-specific/supported-software/m/MEGAHIT.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# MEGAHIT + +An ultra-fast single-node solution for large and complex metagenomics assembly via succinct de Bruijn graph + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.2`` | ``-Python-2.7.14`` | ``foss/2018a`` +``1.1.3`` | ``-Python-2.7.14`` | ``foss/2017b`` +``1.1.3`` | ``-Python-3.6.3`` | ``foss/2017b`` +``1.1.3`` | ``-Python-2.7.14`` | ``foss/2018a`` +``1.1.4`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.1.4`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.2.8`` | | ``GCCcore/8.2.0`` +``1.2.9`` | ``-Python-2.7.18`` | ``GCCcore/10.2.0`` +``1.2.9`` | | ``GCCcore/10.3.0`` +``1.2.9`` | | ``GCCcore/11.2.0`` +``1.2.9`` | | ``GCCcore/11.3.0`` +``1.2.9`` | | ``GCCcore/12.2.0`` +``1.2.9`` | | ``GCCcore/12.3.0`` +``1.2.9`` | | ``GCCcore/9.3.0`` +``1.2.9`` | | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MEGAN.md b/docs/version-specific/supported-software/m/MEGAN.md new file mode 100644 index 000000000..3674cb8cc --- /dev/null +++ b/docs/version-specific/supported-software/m/MEGAN.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# MEGAN + +MEGAN is a comprehensive toolbox for interactively analyzing microbiome data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``6.22.0`` | ``-Java-17`` | ``system`` +``6.25.3`` | ``-Java-17`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MEM.md b/docs/version-specific/supported-software/m/MEM.md new file mode 100644 index 000000000..964134855 --- /dev/null +++ b/docs/version-specific/supported-software/m/MEM.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# MEM + +Marker Enrichment Modeling (MEM) is a tool designed to calculate enrichment scores. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20191023`` | | ``foss/2019b`` +``20191023`` | ``-R-4.0.0`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MEME.md b/docs/version-specific/supported-software/m/MEME.md new file mode 100644 index 000000000..4e3c23f22 --- /dev/null +++ b/docs/version-specific/supported-software/m/MEME.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# MEME + +The MEME Suite allows you to: * discover motifs using MEME, DREME (DNA only) or GLAM2 on groups of related DNA or protein sequences, * search sequence databases with motifs using MAST, FIMO, MCAST or GLAM2SCAN, * compare a motif to all motifs in a database of motifs, * associate motifs with Gene Ontology terms via their putative target genes, and * analyse motif enrichment using SpaMo or CentriMo. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.0.4`` | ``-Perl-5.26.0-Python-2.7.14`` | ``foss/2017b`` +``5.0.4`` | ``-Perl-5.26.0-Python-3.6.3`` | ``foss/2017b`` +``5.0.4`` | ``-Perl-5.26.0-Python-2.7.14`` | ``intel/2017b`` +``5.0.4`` | ``-Perl-5.26.0-Python-3.6.3`` | ``intel/2017b`` +``5.1.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``5.1.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``5.1.1`` | ``-Python-3.7.4`` | ``intel/2019b`` +``5.4.1`` | | ``GCC/10.3.0`` +``5.4.1`` | ``-Python-2.7.18`` | ``gompi/2021b`` +``5.4.1`` | | ``gompi/2021b`` +``5.5.4`` | | ``gompi/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MEMOTE.md b/docs/version-specific/supported-software/m/MEMOTE.md new file mode 100644 index 000000000..4f01ae55b --- /dev/null +++ b/docs/version-specific/supported-software/m/MEMOTE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MEMOTE + +The genome-scale metabolic model test suite + +*homepage*: + +version | toolchain +--------|---------- +``0.13.0`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MERCKX.md b/docs/version-specific/supported-software/m/MERCKX.md new file mode 100644 index 000000000..9df53b084 --- /dev/null +++ b/docs/version-specific/supported-software/m/MERCKX.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MERCKX + +Multilingual Entity/Resource Combiner & Knowledge eXtractor + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20170330`` | ``-Python-2.7.13`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MESS.md b/docs/version-specific/supported-software/m/MESS.md new file mode 100644 index 000000000..437f9c8e9 --- /dev/null +++ b/docs/version-specific/supported-software/m/MESS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MESS + +Master Equation System Solver (MESS) + +*homepage*: + +version | toolchain +--------|---------- +``0.1.6`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/METIS.md b/docs/version-specific/supported-software/m/METIS.md new file mode 100644 index 000000000..699a7792d --- /dev/null +++ b/docs/version-specific/supported-software/m/METIS.md @@ -0,0 +1,41 @@ +--- +search: + boost: 0.5 +--- +# METIS + +METIS is a set of serial programs for partitioning graphs, partitioning finite element meshes, and producing fill reducing orderings for sparse matrices. The algorithms implemented in METIS are based on the multilevel recursive-bisection, multilevel k-way, and multi-constraint partitioning schemes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.0.2`` | | ``gimkl/2.11.5`` +``5.1.0`` | | ``GCCcore/10.2.0`` +``5.1.0`` | | ``GCCcore/10.3.0`` +``5.1.0`` | | ``GCCcore/11.2.0`` +``5.1.0`` | ``-int64`` | ``GCCcore/11.3.0`` +``5.1.0`` | | ``GCCcore/11.3.0`` +``5.1.0`` | | ``GCCcore/12.2.0`` +``5.1.0`` | | ``GCCcore/12.3.0`` +``5.1.0`` | | ``GCCcore/13.2.0`` +``5.1.0`` | | ``GCCcore/6.4.0`` +``5.1.0`` | | ``GCCcore/7.3.0`` +``5.1.0`` | | ``GCCcore/8.2.0`` +``5.1.0`` | | ``GCCcore/8.3.0`` +``5.1.0`` | | ``GCCcore/9.3.0`` +``5.1.0`` | ``-32bitIDX`` | ``foss/2016a`` +``5.1.0`` | | ``foss/2016a`` +``5.1.0`` | | ``foss/2016b`` +``5.1.0`` | | ``foss/2017a`` +``5.1.0`` | | ``foss/2018b`` +``5.1.0`` | ``-32bitIDX`` | ``gimkl/2.11.5`` +``5.1.0`` | | ``gimkl/2.11.5`` +``5.1.0`` | ``-32bitIDX`` | ``intel/2016a`` +``5.1.0`` | | ``intel/2016a`` +``5.1.0`` | | ``intel/2016b`` +``5.1.0`` | | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MICOM.md b/docs/version-specific/supported-software/m/MICOM.md new file mode 100644 index 000000000..de052a824 --- /dev/null +++ b/docs/version-specific/supported-software/m/MICOM.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MICOM + +Python package to study microbial communities using metabolic modeling. + +*homepage*: + +version | toolchain +--------|---------- +``0.33.2`` | ``foss/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MIGRATE-N.md b/docs/version-specific/supported-software/m/MIGRATE-N.md new file mode 100644 index 000000000..bde256454 --- /dev/null +++ b/docs/version-specific/supported-software/m/MIGRATE-N.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# MIGRATE-N + +Migrate estimates population parameters, effective population sizes and migration rates of n populations, using genetic data. It uses a coalescent theory approach taking into account history of mutations and uncertainty of the genealogy. + +*homepage*: + +version | toolchain +--------|---------- +``4.2.14`` | ``foss/2018a`` +``4.2.8`` | ``foss/2016a`` +``5.0.4`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MINC.md b/docs/version-specific/supported-software/m/MINC.md new file mode 100644 index 000000000..1803c7a50 --- /dev/null +++ b/docs/version-specific/supported-software/m/MINC.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# MINC + +Medical Image NetCDF or MINC isn't netCDF. + +*homepage*: + +version | toolchain +--------|---------- +``2.4.03`` | ``foss/2017b`` +``2.4.03`` | ``foss/2018a`` +``2.4.03`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MINPACK.md b/docs/version-specific/supported-software/m/MINPACK.md new file mode 100644 index 000000000..c47aceab0 --- /dev/null +++ b/docs/version-specific/supported-software/m/MINPACK.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MINPACK + +Minpack includes software for solving nonlinear equations and nonlinear least squares problems. Five algorithmic paths each include a core subroutine and an easy-to-use driver. The algorithms proceed either from an analytic specification of the Jacobian matrix or directly from the problem functions. The paths include facilities for systems of equations with a banded Jacobian matrix, for least squares problems with a large amount of data, and for checking the consistency of the Jacobian matrix with the functions. + +*homepage*: + +version | toolchain +--------|---------- +``19961126`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MIRA.md b/docs/version-specific/supported-software/m/MIRA.md new file mode 100644 index 000000000..3c92bbba1 --- /dev/null +++ b/docs/version-specific/supported-software/m/MIRA.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# MIRA + +MIRA is a whole genome shotgun and EST sequence assembler for Sanger, 454, Solexa (Illumina), IonTorrent data and PacBio (the latter at the moment only CCS and error-corrected CLR reads). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.0.2`` | ``-Python-2.7.11`` | ``foss/2016a`` +``4.0.2`` | | ``foss/2018b`` +``4.0.2`` | | ``gompi/2019b`` +``4.0.2`` | | ``intel/2017b`` +``4.9.6`` | | ``intel/2017b`` +``5.0rc2`` | | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MITObim.md b/docs/version-specific/supported-software/m/MITObim.md new file mode 100644 index 000000000..3886e6fbf --- /dev/null +++ b/docs/version-specific/supported-software/m/MITObim.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# MITObim + +The MITObim procedure (mitochondrial baiting and iterative mapping) represents a highly efficient approach to assembling novel mitochondrial genomes of non-model organisms directly from total genomic DNA derived NGS reads. + +*homepage*: + +version | toolchain +--------|---------- +``1.9.1`` | ``foss/2018b`` +``1.9.1`` | ``foss/2020b`` +``1.9.1`` | ``gompi/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MITgcmutils.md b/docs/version-specific/supported-software/m/MITgcmutils.md new file mode 100644 index 000000000..abc9ad65b --- /dev/null +++ b/docs/version-specific/supported-software/m/MITgcmutils.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MITgcmutils + +A numerical model designed for study of the atmosphere, ocean, and climate, MITgcm’s flexible non-hydrostatic formulation enables it to efficiently simulate fluid phenomena over a wide range of scales; its adjoint capabilities enable it to be applied to sensitivity questions and to parameter and state estimation problems. By employing fluid equation isomorphisms, a single dynamical kernel can be used to simulate flow of both the atmosphere and ocean. The model is developed to perform efficiently on a wide variety of computational platforms. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.2`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MLC.md b/docs/version-specific/supported-software/m/MLC.md new file mode 100644 index 000000000..39e8725d3 --- /dev/null +++ b/docs/version-specific/supported-software/m/MLC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MLC + +Intel Memory Latency Checker (Intel MLC) is a tool used to measure memory latencies and b/w, and how they change with increasing load on the system. + +*homepage*: + +version | toolchain +--------|---------- +``3.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MLflow.md b/docs/version-specific/supported-software/m/MLflow.md new file mode 100644 index 000000000..c1da03a07 --- /dev/null +++ b/docs/version-specific/supported-software/m/MLflow.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MLflow + +MLflow is a platform to streamline machine learning development, including tracking experiments, packaging code into reproducible runs, and sharing and deploying models. + +*homepage*: + +version | toolchain +--------|---------- +``2.10.2`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MLxtend.md b/docs/version-specific/supported-software/m/MLxtend.md new file mode 100644 index 000000000..7dd111f66 --- /dev/null +++ b/docs/version-specific/supported-software/m/MLxtend.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MLxtend + +Mlxtend (machine learning extensions) is a Python library of useful tools for the day-to-day data science tasks. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.17.3`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MMSEQ.md b/docs/version-specific/supported-software/m/MMSEQ.md new file mode 100644 index 000000000..780760ab1 --- /dev/null +++ b/docs/version-specific/supported-software/m/MMSEQ.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MMSEQ + +The MMSEQ package contains a collection of statistical tools for analysing RNA-seq expression data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.8`` | ``-linux64-static`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MMseqs2.md b/docs/version-specific/supported-software/m/MMseqs2.md new file mode 100644 index 000000000..7d0bd1989 --- /dev/null +++ b/docs/version-specific/supported-software/m/MMseqs2.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# MMseqs2 + +MMseqs2: ultra fast and sensitive search and clustering suite + +*homepage*: + +version | toolchain +--------|---------- +``1-c7a89`` | ``foss/2016b`` +``10-6d92c`` | ``gompi/2019b`` +``10-6d92c`` | ``iimpi/2019b`` +``11-e1a1c`` | ``iimpi/2019b`` +``13-45111-20211006`` | ``gompi/2020b`` +``13-45111-20211019`` | ``gompi/2020b`` +``13-45111`` | ``gompi/2020b`` +``13-45111`` | ``gompi/2021a`` +``13-45111`` | ``gompi/2021b`` +``14-7e284`` | ``gompi/2022a`` +``14-7e284`` | ``gompi/2023a`` +``5-9375b`` | ``intel/2018a`` +``8-fac81`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MNE-Python.md b/docs/version-specific/supported-software/m/MNE-Python.md new file mode 100644 index 000000000..b72bc9cc3 --- /dev/null +++ b/docs/version-specific/supported-software/m/MNE-Python.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# MNE-Python + +MNE-Python software is an open-source Python package for exploring, visualizing, and analyzing human neurophysiological data such as MEG, EEG, sEEG, ECoG, and more. It includes modules for data input/output, preprocessing, visualization, source estimation, time-frequency analysis, connectivity analysis, machine learning, and statistics. + +*homepage*: + +version | toolchain +--------|---------- +``0.24.1`` | ``foss/2021a`` +``1.6.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MOABB.md b/docs/version-specific/supported-software/m/MOABB.md new file mode 100644 index 000000000..305ca4ed9 --- /dev/null +++ b/docs/version-specific/supported-software/m/MOABB.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# MOABB + +Build a comprehensive benchmark of popular Brain-Computer Interface (BCI) algorithms applied on an extensive list of freely available EEG datasets. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.6`` | ``foss/2021a`` +``1.0.0`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MOABS.md b/docs/version-specific/supported-software/m/MOABS.md new file mode 100644 index 000000000..282bd9e13 --- /dev/null +++ b/docs/version-specific/supported-software/m/MOABS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MOABS + +MOABS: MOdel based Analysis of Bisulfite Sequencing data + +*homepage*: + +version | toolchain +--------|---------- +``1.3.9.6`` | ``gompi/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MOB-suite.md b/docs/version-specific/supported-software/m/MOB-suite.md new file mode 100644 index 000000000..c980201fc --- /dev/null +++ b/docs/version-specific/supported-software/m/MOB-suite.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MOB-suite + +Software tools for clustering, reconstruction and typing of plasmids from draft assemblies + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MODFLOW.md b/docs/version-specific/supported-software/m/MODFLOW.md new file mode 100644 index 000000000..d5c967fa9 --- /dev/null +++ b/docs/version-specific/supported-software/m/MODFLOW.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MODFLOW + +MODFLOW is the USGS's modular hydrologic model. MODFLOW is considered an international standard for simulating and predicting groundwater conditions and groundwater/surface-water interactions. + +*homepage*: + +version | toolchain +--------|---------- +``6.4.4`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MOFA2.md b/docs/version-specific/supported-software/m/MOFA2.md new file mode 100644 index 000000000..9ad7132a9 --- /dev/null +++ b/docs/version-specific/supported-software/m/MOFA2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MOFA2 + +MOFA is a factor analysis model that provides a general framework for the integration of multi-omic data sets in an unsupervised fashion. Intuitively, MOFA can be viewed as a versatile and statistically rigorous generalization of principal component analysis to multi-omics data. Given several data matrices with measurements of multiple -omics data types on the same or on overlapping sets of samples, MOFA infers an interpretable low-dimensional representation in terms of a few latent factors. These learnt factors represent the driving sources of variation across data modalities, thus facilitating the identification of cellular states or disease subgroups. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.14.0`` | ``-R-4.3.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MONA.md b/docs/version-specific/supported-software/m/MONA.md new file mode 100644 index 000000000..88f17b030 --- /dev/null +++ b/docs/version-specific/supported-software/m/MONA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MONA + +MONA is a tool that translates formulas to finite-state automata. The formulas may express search patterns, temporal properties of reactive systems, parse tree constraints, etc. MONA analyses the automaton resulting from the compilation and prints out "valid" or a counter-example. + +*homepage*: + +version | toolchain +--------|---------- +``1.4-18`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MONAI-Label.md b/docs/version-specific/supported-software/m/MONAI-Label.md new file mode 100644 index 000000000..d8047d7c0 --- /dev/null +++ b/docs/version-specific/supported-software/m/MONAI-Label.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# MONAI-Label + +MONAI Label is an intelligent open source image labeling and learning tool that enables users to create annotated datasets and build AI annotation models for clinical evaluation. MONAI Label enables application developers to build labeling apps in a serverless way, where custom labeling apps are exposed as a service through the MONAI Label Server. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.5.2`` | ``-PyTorch-1.12.0-CUDA-11.7.0`` | ``foss/2022a`` +``0.5.2`` | ``-PyTorch-1.12.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MONAI.md b/docs/version-specific/supported-software/m/MONAI.md new file mode 100644 index 000000000..82485caa5 --- /dev/null +++ b/docs/version-specific/supported-software/m/MONAI.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# MONAI + +MONAI is a PyTorch-based, open-source framework for deep learning in healthcare imaging, part of PyTorch Ecosystem. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``0.8.0`` | | ``foss/2021a`` +``1.0.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``1.0.1`` | | ``foss/2022a`` +``1.3.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` +``1.3.0`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MOOSE.md b/docs/version-specific/supported-software/m/MOOSE.md new file mode 100644 index 000000000..b70a2637d --- /dev/null +++ b/docs/version-specific/supported-software/m/MOOSE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MOOSE + +The Multiphysics Object-Oriented Simulation Environment (MOOSE) is a finite-element, multiphysics framework primarily developed by Idaho National Laboratory + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2021-05-18`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MPB.md b/docs/version-specific/supported-software/m/MPB.md new file mode 100644 index 000000000..a169f3d28 --- /dev/null +++ b/docs/version-specific/supported-software/m/MPB.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# MPB + +MPB is a free and open-source software package for computing the band structures, or dispersion relations, and electromagnetic modes of periodic dielectric structures, on both serial and parallel computers. MPB is an acronym for MIT Photonic Bands. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.11.1`` | | ``foss/2020b`` +``1.6.2`` | ``-Python-2.7.14`` | ``foss/2017b`` +``1.6.2`` | ``-Python-2.7.14`` | ``foss/2018a`` +``1.6.2`` | ``-Python-2.7.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MPC.md b/docs/version-specific/supported-software/m/MPC.md new file mode 100644 index 000000000..69101a833 --- /dev/null +++ b/docs/version-specific/supported-software/m/MPC.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# MPC + +Gnu Mpc is a C library for the arithmetic of complex numbers with arbitrarily high precision and correct rounding of the result. It extends the principles of the IEEE-754 standard for fixed precision real floating point numbers to complex numbers, providing well-defined semantics for every operation. At the same time, speed of operation at high precision is a major design goal. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.3`` | ``-MPFR-3.1.6`` | ``foss/2017b`` +``1.0.3`` | | ``intel/2017a`` +``1.0.3`` | ``-MPFR-3.1.6`` | ``intel/2017b`` +``1.1.0`` | | ``GCC/8.3.0`` +``1.1.0`` | | ``GCC/9.3.0`` +``1.1.0`` | | ``GCCcore/9.3.0`` +``1.2.1`` | | ``GCCcore/10.2.0`` +``1.2.1`` | | ``GCCcore/10.3.0`` +``1.2.1`` | | ``GCCcore/11.2.0`` +``1.2.1`` | | ``GCCcore/11.3.0`` +``1.3.1`` | | ``GCCcore/12.2.0`` +``1.3.1`` | | ``GCCcore/12.3.0`` +``1.3.1`` | | ``GCCcore/13.2.0`` +``1.3.1`` | | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MPFI.md b/docs/version-specific/supported-software/m/MPFI.md new file mode 100644 index 000000000..cb62a6526 --- /dev/null +++ b/docs/version-specific/supported-software/m/MPFI.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# MPFI + +MPFI stands for Multiple Precision Floating-point Interval library. + +*homepage*: + +version | toolchain +--------|---------- +``1.5.4`` | ``GCCcore/11.3.0`` +``1.5.4`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MPFR.md b/docs/version-specific/supported-software/m/MPFR.md new file mode 100644 index 000000000..c757d5816 --- /dev/null +++ b/docs/version-specific/supported-software/m/MPFR.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# MPFR + +The MPFR library is a C library for multiple-precision floating-point computations with correct rounding. + +*homepage*: + +version | toolchain +--------|---------- +``2.4.2`` | ``system`` +``3.1.4`` | ``foss/2016a`` +``3.1.4`` | ``foss/2016b`` +``3.1.4`` | ``intel/2016a`` +``3.1.4`` | ``intel/2016b`` +``3.1.5`` | ``GCCcore/6.4.0`` +``3.1.5`` | ``intel/2017a`` +``3.1.6`` | ``GCCcore/6.4.0`` +``4.0.1`` | ``GCCcore/6.4.0`` +``4.0.1`` | ``GCCcore/7.3.0`` +``4.0.2`` | ``GCCcore/8.2.0`` +``4.0.2`` | ``GCCcore/8.3.0`` +``4.0.2`` | ``GCCcore/9.3.0`` +``4.1.0`` | ``GCCcore/10.2.0`` +``4.1.0`` | ``GCCcore/10.3.0`` +``4.1.0`` | ``GCCcore/11.2.0`` +``4.1.0`` | ``GCCcore/11.3.0`` +``4.2.0`` | ``GCCcore/12.2.0`` +``4.2.0`` | ``GCCcore/12.3.0`` +``4.2.1`` | ``GCCcore/13.2.0`` +``4.2.1`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MPICH.md b/docs/version-specific/supported-software/m/MPICH.md new file mode 100644 index 000000000..ea353e881 --- /dev/null +++ b/docs/version-specific/supported-software/m/MPICH.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# MPICH + +MPICH v3.x is an open source high-performance MPI 3.0 implementation. It does not support InfiniBand (use MVAPICH2 with InfiniBand devices). + +*homepage*: + +version | toolchain +--------|---------- +``3.0.4`` | ``GCC/4.8.1`` +``3.2`` | ``GCC/4.9.3-2.25`` +``3.2`` | ``GCC/7.2.0-2.29`` +``3.2.1`` | ``GCC/7.2.0-2.29`` +``3.3.2`` | ``GCC/10.2.0`` +``3.3.2`` | ``GCC/9.3.0`` +``3.4.2`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MPICH2.md b/docs/version-specific/supported-software/m/MPICH2.md new file mode 100644 index 000000000..5ea2b739a --- /dev/null +++ b/docs/version-specific/supported-software/m/MPICH2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MPICH2 + +MPICH v3.x is an open source high-performance MPI 3.0 implementation. It does not support InfiniBand (use MVAPICH2 with InfiniBand devices). + +*homepage*: + +version | toolchain +--------|---------- +``1.1`` | ``GCC/4.8.1`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MPJ-Express.md b/docs/version-specific/supported-software/m/MPJ-Express.md new file mode 100644 index 000000000..b030ef160 --- /dev/null +++ b/docs/version-specific/supported-software/m/MPJ-Express.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MPJ-Express + +MPJ Express is an open source Java message passing library that allows application developers to write and execute parallel applications for multicore processors and compute clusters/clouds. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.44`` | ``-Java-1.8.0_92`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MRCPP.md b/docs/version-specific/supported-software/m/MRCPP.md new file mode 100644 index 000000000..8f6e9b8db --- /dev/null +++ b/docs/version-specific/supported-software/m/MRCPP.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# MRCPP + +MultiResolution Computation Program Package + +*homepage*: + +version | toolchain +--------|---------- +``1.3.6`` | ``foss/2020a`` +``1.4.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MRChem.md b/docs/version-specific/supported-software/m/MRChem.md new file mode 100644 index 000000000..641bca9e2 --- /dev/null +++ b/docs/version-specific/supported-software/m/MRChem.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# MRChem + +MRChem is a numerical real-space code for molecular electronic structure calculations within the self-consistent field (SCF) approximations of quantum chemistry: Hartree-Fock and Density Functional Theory. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.1.1`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MRIcron.md b/docs/version-specific/supported-software/m/MRIcron.md new file mode 100644 index 000000000..b7ec5fda4 --- /dev/null +++ b/docs/version-specific/supported-software/m/MRIcron.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# MRIcron + +MRIcron allows viewing of medical images. It includes tools to complement SPM and FSL. Native format is NIFTI but includes a conversion program (see dcm2nii) for converting DICOM images. Features layers, ROIs, and volume rendering. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.20180614`` | ``system`` +``20150601`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MRPRESSO.md b/docs/version-specific/supported-software/m/MRPRESSO.md new file mode 100644 index 000000000..146503de5 --- /dev/null +++ b/docs/version-specific/supported-software/m/MRPRESSO.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MRPRESSO + +Performs the Mendelian Randomization Pleiotropy RESidual Sum and Outlier (MR-PRESSO) method.. + +*homepage*: + +version | toolchain +--------|---------- +``1.0-20230502`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MRtrix.md b/docs/version-specific/supported-software/m/MRtrix.md new file mode 100644 index 000000000..8ec856010 --- /dev/null +++ b/docs/version-specific/supported-software/m/MRtrix.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# MRtrix + +MRtrix provides a set of tools to perform diffusion-weighted MR white-matter tractography in a manner robust to crossing fibres, using constrained spherical deconvolution (CSD) and probabilistic streamlines. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.14`` | ``-Python-2.7.11`` | ``intel/2016a`` +``0.3.15`` | ``-Python-2.7.12`` | ``intel/2016b`` +``3.0-rc-20191217`` | ``-Python-2.7.16`` | ``foss/2019b`` +``3.0-rc-20191217`` | ``-Python-3.7.4`` | ``foss/2019b`` +``3.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``3.0.3`` | | ``foss/2021a`` +``3.0.4`` | | ``foss/2022b`` +``3.0_RC2`` | ``-Python-2.7.13`` | ``foss/2017a`` +``3.0_RC3`` | ``-Python-2.7.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MSFragger.md b/docs/version-specific/supported-software/m/MSFragger.md new file mode 100644 index 000000000..55859c46a --- /dev/null +++ b/docs/version-specific/supported-software/m/MSFragger.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MSFragger + +MSFragger is an ultrafast database search tool for peptide identification in mass spectrometry-based proteomics. It has demonstrated excellent performance across a wide range of datasets and applications. MSFragger is suitable for standard shotgun proteomics analyses as well as large datasets (including timsTOF PASEF data), enzyme unconstrained searches (e.g., peptidome), open database searches (e.g., precursor mass tolerance set to hundreds of Daltons) for identification of modified peptides, and glycopeptide identification (N-linked and O-linked). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.0`` | ``-Java-11`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MSM.md b/docs/version-specific/supported-software/m/MSM.md new file mode 100644 index 000000000..9b2f5babe --- /dev/null +++ b/docs/version-specific/supported-software/m/MSM.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# MSM + +Multimodal Surface Matching with Higher order Clique Reduction + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``foss/2017b`` +``1.0`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MSPC.md b/docs/version-specific/supported-software/m/MSPC.md new file mode 100644 index 000000000..d799e06f4 --- /dev/null +++ b/docs/version-specific/supported-software/m/MSPC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MSPC + +Using combined evidence from replicates to evaluate ChIP-seq peaks + +*homepage*: + +version | toolchain +--------|---------- +``3.3.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MTL4.md b/docs/version-specific/supported-software/m/MTL4.md new file mode 100644 index 000000000..0a615c4f7 --- /dev/null +++ b/docs/version-specific/supported-software/m/MTL4.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# MTL4 + +The Matrix Template Library 4 incorporates the most modern programming techniques to provide an easy and intuitive interface to users while enabling optimal performance. The natural mathematical notation in MTL4 empowers all engineers and scientists to implement their algorithms and models in minimal time. All technical aspects are encapsulated in the library. + +*homepage*: + +version | toolchain +--------|---------- +``4.0.8878`` | ``system`` +``4.0.9555`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MUMPS.md b/docs/version-specific/supported-software/m/MUMPS.md new file mode 100644 index 000000000..13ee73dfe --- /dev/null +++ b/docs/version-specific/supported-software/m/MUMPS.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# MUMPS + +A parallel sparse direct solver + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.1.2`` | ``-metis`` | ``foss/2017b`` +``5.2.1`` | ``-metis`` | ``foss/2018b`` +``5.2.1`` | ``-metis-seq`` | ``foss/2019a`` +``5.2.1`` | ``-metis`` | ``foss/2019a`` +``5.2.1`` | ``-metis`` | ``foss/2019b`` +``5.2.1`` | ``-metis`` | ``foss/2020a`` +``5.2.1`` | ``-metis-seq`` | ``intel/2019a`` +``5.2.1`` | ``-metis`` | ``intel/2019a`` +``5.2.1`` | ``-metis`` | ``intel/2019b`` +``5.2.1`` | ``-metis`` | ``intel/2020a`` +``5.3.5`` | ``-metis`` | ``foss/2020b`` +``5.3.5`` | ``-metis`` | ``intel/2020b`` +``5.4.0`` | ``-metis`` | ``foss/2021a`` +``5.4.0`` | ``-metis`` | ``intel/2021a`` +``5.4.1`` | ``-metis`` | ``foss/2021b`` +``5.4.1`` | ``-metis`` | ``intel/2021b`` +``5.5.0`` | ``-metis`` | ``foss/2021a`` +``5.5.1`` | ``-metis`` | ``foss/2022a`` +``5.6.1`` | ``-metis`` | ``foss/2022b`` +``5.6.1`` | ``-metis`` | ``foss/2023a`` +``5.6.1`` | ``-metis-seq`` | ``gomkl/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MUMmer.md b/docs/version-specific/supported-software/m/MUMmer.md new file mode 100644 index 000000000..c76e2e473 --- /dev/null +++ b/docs/version-specific/supported-software/m/MUMmer.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# MUMmer + +MUMmer is a system for rapidly aligning entire genomes, whether in complete or draft form. AMOS makes use of it. + +*homepage*: + +version | toolchain +--------|---------- +``3.23`` | ``GCCcore/10.3.0`` +``3.23`` | ``GCCcore/9.3.0`` +``3.23`` | ``foss/2016b`` +``4.0.0beta2`` | ``GCCcore/10.2.0`` +``4.0.0beta2`` | ``GCCcore/11.2.0`` +``4.0.0beta2`` | ``GCCcore/9.3.0`` +``4.0.0beta2`` | ``foss/2018b`` +``4.0.0rc1`` | ``GCCcore/11.2.0`` +``4.0.0rc1`` | ``GCCcore/11.3.0`` +``4.0.0rc1`` | ``GCCcore/12.2.0`` +``4.0.0rc1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MUSCLE.md b/docs/version-specific/supported-software/m/MUSCLE.md new file mode 100644 index 000000000..1953638b3 --- /dev/null +++ b/docs/version-specific/supported-software/m/MUSCLE.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# MUSCLE + +MUSCLE is one of the best-performing multiple alignment programs according to published benchmark tests, with accuracy and speed that are consistently better than CLUSTALW. MUSCLE can align hundreds of sequences in seconds. Most users learn everything they need to know about MUSCLE in a few minutes-only a handful of command-line options are needed to perform common alignment tasks. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.8.1551`` | | ``GCC/10.2.0`` +``3.8.1551`` | | ``GCC/8.2.0-2.31.1`` +``3.8.1551`` | | ``GCC/8.3.0`` +``3.8.31`` | | ``GCC/7.3.0-2.30`` +``3.8.31`` | | ``GCCcore/10.2.0`` +``3.8.31`` | | ``GCCcore/10.3.0`` +``3.8.31`` | | ``GCCcore/11.2.0`` +``3.8.31`` | | ``GCCcore/9.3.0`` +``3.8.31`` | | ``foss/2016a`` +``3.8.31`` | | ``foss/2017b`` +``3.8.31`` | | ``foss/2018a`` +``3.8.31`` | ``-i86linux64`` | ``system`` +``3.8.31`` | | ``intel/2016a`` +``3.8.31`` | | ``intel/2017b`` +``3.8.31`` | | ``intel/2018a`` +``3.8.31`` | | ``intel/2018b`` +``5.0.1428`` | | ``GCCcore/10.3.0`` +``5.1`` | | ``GCCcore/11.2.0`` +``5.1.0`` | | ``GCCcore/10.3.0`` +``5.1.0`` | | ``GCCcore/11.3.0`` +``5.1.0`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MUSCLE3.md b/docs/version-specific/supported-software/m/MUSCLE3.md new file mode 100644 index 000000000..3676e3158 --- /dev/null +++ b/docs/version-specific/supported-software/m/MUSCLE3.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MUSCLE3 + +MUSCLE3 allows connecting multiple simulation models together into a multiscale simulation. Simulation models can be as simple as a single Python file, or as complex as a combination of multiple separate simulation codes written in C++ or Fortran, and running on an HPC machine. + +*homepage*: + +version | toolchain +--------|---------- +``0.7.0`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MUST.md b/docs/version-specific/supported-software/m/MUST.md new file mode 100644 index 000000000..691fbbdfd --- /dev/null +++ b/docs/version-specific/supported-software/m/MUST.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# MUST + +MUST detects usage errors of the Message Passing Interface (MPI) and reports them to the user. As MPI calls are complex and usage errors common, this functionality is extremely helpful for application developers that want to develop correct MPI applications. This includes errors that already manifest – segmentation faults or incorrect results – as well as many errors that are not visible to the application developer or do not manifest on a certain system or MPI implementation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.6`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.6`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.7.1`` | | ``foss/2020b`` +``1.7.2`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MVAPICH2.md b/docs/version-specific/supported-software/m/MVAPICH2.md new file mode 100644 index 000000000..de45bc7ca --- /dev/null +++ b/docs/version-specific/supported-software/m/MVAPICH2.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# MVAPICH2 + +This is an MPI 3.0 implementation. It is based on MPICH2 and MVICH. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.1`` | ``GCC/4.8.4`` +``2.1`` | ``GCC/4.9.3-2.25`` +``2.2b`` | ``GCC/4.9.3-2.25`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MView.md b/docs/version-specific/supported-software/m/MView.md new file mode 100644 index 000000000..6a43aa79d --- /dev/null +++ b/docs/version-specific/supported-software/m/MView.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MView + +MView reformats the results of a sequence database search or a multiple alignment, optionally adding HTML markup. + +*homepage*: + +version | toolchain +--------|---------- +``1.67`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MXNet.md b/docs/version-specific/supported-software/m/MXNet.md new file mode 100644 index 000000000..6781a81f1 --- /dev/null +++ b/docs/version-specific/supported-software/m/MXNet.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# MXNet + +Flexible and Efficient Library for Deep Learning + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.9.3`` | ``-Python-2.7.12-R-3.3.3`` | ``foss/2016b`` +``1.9.1`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MaSuRCA.md b/docs/version-specific/supported-software/m/MaSuRCA.md new file mode 100644 index 000000000..94d7e3231 --- /dev/null +++ b/docs/version-specific/supported-software/m/MaSuRCA.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# MaSuRCA + +MaSuRCA is whole genome assembly software. It combines the efficiency of the de Bruijn graph and Overlap-Layout-Consensus (OLC) approaches. MaSuRCA can assemble data sets containing only short reads from Illumina sequencing or a mixture of short reads and long reads (Sanger, 454, Pacbio and Nanopore). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.2.2`` | | ``foss/2016a`` +``3.2.2`` | ``-Perl-5.26.0`` | ``foss/2017b`` +``3.2.4`` | | ``foss/2018a`` +``3.2.5`` | ``-Perl-5.26.0`` | ``foss/2017b`` +``3.3.1`` | ``-Perl-5.28.0`` | ``foss/2018b`` +``4.0.1`` | ``-Perl-5.30.2`` | ``foss/2020a`` +``4.0.9`` | ``-Perl-5.32.1`` | ``foss/2021a`` +``4.1.0`` | | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Magics.md b/docs/version-specific/supported-software/m/Magics.md new file mode 100644 index 000000000..97993fdce --- /dev/null +++ b/docs/version-specific/supported-software/m/Magics.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Magics + +Magics is ECMWF's meteorological plotting software and can be either accessed directly through its Python or Fortran interfaces or by using Metview. + +*homepage*: + +version | toolchain +--------|---------- +``4.13.0`` | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MagresPython.md b/docs/version-specific/supported-software/m/MagresPython.md new file mode 100644 index 000000000..35b97d5d7 --- /dev/null +++ b/docs/version-specific/supported-software/m/MagresPython.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MagresPython + +MagresPython is a Python library for parsing the CCP-NC ab-initio magnetic resonance file format. This is used in the latest version of the CASTEP and Quantum ESPRESSO (PWSCF) codes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20160329`` | ``-Python-2.7.15`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Mako.md b/docs/version-specific/supported-software/m/Mako.md new file mode 100644 index 000000000..e49e5b76f --- /dev/null +++ b/docs/version-specific/supported-software/m/Mako.md @@ -0,0 +1,45 @@ +--- +search: + boost: 0.5 +--- +# Mako + +A super-fast templating language that borrows the best ideas from the existing templating languages + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.4`` | ``-Python-2.7.12`` | ``foss/2016b`` +``1.0.4`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.0.6`` | ``-Python-2.7.13`` | ``foss/2017a`` +``1.0.6`` | ``-Python-2.7.13`` | ``intel/2017a`` +``1.0.7`` | ``-Python-2.7.14`` | ``foss/2017b`` +``1.0.7`` | ``-Python-2.7.14`` | ``foss/2018a`` +``1.0.7`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.0.7`` | ``-Python-2.7.14`` | ``fosscuda/2017b`` +``1.0.7`` | ``-Python-2.7.14`` | ``fosscuda/2018a`` +``1.0.7`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``1.0.7`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``1.0.7`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.0.7`` | ``-Python-2.7.14`` | ``intel/2018.01`` +``1.0.7`` | ``-Python-2.7.14`` | ``intel/2018a`` +``1.0.7`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.0.7`` | ``-Python-2.7.15`` | ``intel/2018b`` +``1.0.7`` | ``-Python-2.7.14`` | ``intelcuda/2017b`` +``1.0.7`` | ``-Python-2.7.14`` | ``iomkl/2018a`` +``1.0.8`` | | ``GCCcore/8.2.0`` +``1.1.0`` | | ``GCCcore/8.3.0`` +``1.1.2`` | | ``GCCcore/9.3.0`` +``1.1.3`` | | ``GCCcore/10.2.0`` +``1.1.4`` | | ``GCCcore/10.3.0`` +``1.1.4`` | | ``GCCcore/11.2.0`` +``1.2.0`` | | ``GCCcore/11.3.0`` +``1.2.4`` | | ``GCCcore/12.2.0`` +``1.2.4`` | | ``GCCcore/12.3.0`` +``1.2.4`` | | ``GCCcore/13.2.0`` +``1.3.5`` | | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Mamba.md b/docs/version-specific/supported-software/m/Mamba.md new file mode 100644 index 000000000..e6963bdef --- /dev/null +++ b/docs/version-specific/supported-software/m/Mamba.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Mamba + +Mamba is a fast, robust, and cross-platform package manager. It runs on Windows, OS X and Linux (ARM64 and PPC64LE included) and is fully compatible with conda packages and supports most of conda's commands. + +*homepage*: + +version | toolchain +--------|---------- +``23.1.0-4`` | ``system`` +``23.11.0-0`` | ``system`` +``4.14.0-0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MapSplice.md b/docs/version-specific/supported-software/m/MapSplice.md new file mode 100644 index 000000000..32cd4cdba --- /dev/null +++ b/docs/version-specific/supported-software/m/MapSplice.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# MapSplice + +MapSplice is a software for mapping RNA-seq data to reference genome for splice junction discovery that depends only on reference genome, and not on any further annotations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.1`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2.2.1`` | ``-Python-2.7.15`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Maple.md b/docs/version-specific/supported-software/m/Maple.md new file mode 100644 index 000000000..e3e23ce10 --- /dev/null +++ b/docs/version-specific/supported-software/m/Maple.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Maple + +Maple combines the world's most powerful mathematical computation engine with an intuitive, 'clickable' user interface. + +*homepage*: + +version | toolchain +--------|---------- +``15`` | ``system`` +``2017.2`` | ``system`` +``2022.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Maq.md b/docs/version-specific/supported-software/m/Maq.md new file mode 100644 index 000000000..c124a6208 --- /dev/null +++ b/docs/version-specific/supported-software/m/Maq.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Maq + +Maq is a software that builds mapping assemblies from short reads generated by the next-generation sequencing machines. + +*homepage*: + +version | toolchain +--------|---------- +``0.7.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MariaDB-connector-c.md b/docs/version-specific/supported-software/m/MariaDB-connector-c.md new file mode 100644 index 000000000..f35f14448 --- /dev/null +++ b/docs/version-specific/supported-software/m/MariaDB-connector-c.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# MariaDB-connector-c + +MariaDB Connector/C is used to connect applications developed in C/C++ to MariaDB and MySQL databases. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.4`` | ``foss/2017b`` +``2.3.4`` | ``intel/2017b`` +``2.3.5`` | ``intel/2018a`` +``2.3.5`` | ``iomkl/2018a`` +``2.3.7`` | ``GCCcore/8.2.0`` +``2.3.7`` | ``GCCcore/8.3.0`` +``2.3.7`` | ``foss/2018b`` +``3.1.11`` | ``GCCcore/10.2.0`` +``3.1.7`` | ``GCCcore/9.3.0`` +``3.2.2`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MariaDB.md b/docs/version-specific/supported-software/m/MariaDB.md new file mode 100644 index 000000000..5c7bf15cb --- /dev/null +++ b/docs/version-specific/supported-software/m/MariaDB.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# MariaDB + +MariaDB An enhanced, drop-in replacement for MySQL. + +*homepage*: + +version | toolchain +--------|---------- +``10.0.21`` | ``GNU/4.9.3-2.25`` +``10.1.13`` | ``intel/2016a`` +``10.1.14`` | ``foss/2016a`` +``10.1.14`` | ``intel/2016a`` +``10.1.17`` | ``intel/2016b`` +``10.1.24`` | ``intel/2017a`` +``10.11.2`` | ``GCC/12.2.0`` +``10.2.11`` | ``foss/2017b`` +``10.2.11`` | ``intel/2017b`` +``10.3.10`` | ``foss/2018b`` +``10.3.14`` | ``foss/2019a`` +``10.3.7`` | ``intel/2018a`` +``10.4.13`` | ``gompi/2019b`` +``10.5.8`` | ``GCC/10.2.0`` +``10.6.4`` | ``GCC/10.3.0`` +``10.6.4`` | ``GCC/11.2.0`` +``10.9.3`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Markdown.md b/docs/version-specific/supported-software/m/Markdown.md new file mode 100644 index 000000000..9e478ce10 --- /dev/null +++ b/docs/version-specific/supported-software/m/Markdown.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Markdown + +This is a Python implementation of John Gruber's Markdown. It is almost completely compliant with the reference implementation, though there are a few known issues. Additional features are supported by the Available Extensions. + +*homepage*: + +version | toolchain +--------|---------- +``3.6`` | ``GCCcore/12.2.0`` +``3.6`` | ``GCCcore/12.3.0`` +``3.6`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Mash.md b/docs/version-specific/supported-software/m/Mash.md new file mode 100644 index 000000000..4db8895ab --- /dev/null +++ b/docs/version-specific/supported-software/m/Mash.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# Mash + +Fast genome and metagenome distance estimation using MinHash + +*homepage*: + +version | toolchain +--------|---------- +``2.0`` | ``foss/2018a`` +``2.1`` | ``foss/2018b`` +``2.2`` | ``GCC/9.3.0`` +``2.3`` | ``GCC/10.3.0`` +``2.3`` | ``GCC/11.2.0`` +``2.3`` | ``GCC/11.3.0`` +``2.3`` | ``GCC/12.2.0`` +``2.3`` | ``GCC/12.3.0`` +``2.3`` | ``intel-compilers/2021.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Mashtree.md b/docs/version-specific/supported-software/m/Mashtree.md new file mode 100644 index 000000000..ccfea6e69 --- /dev/null +++ b/docs/version-specific/supported-software/m/Mashtree.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Mashtree + +Create a tree using Mash distances. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.6`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MathGL.md b/docs/version-specific/supported-software/m/MathGL.md new file mode 100644 index 000000000..94dbf6e7e --- /dev/null +++ b/docs/version-specific/supported-software/m/MathGL.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MathGL + +MathGL is ... a library for making high-quality scientific graphics under Linux and Windows; a library for the fast data plotting and data processing of large data arrays; a library for working in window and console modes and for easy embedding into other programs; a library with large and growing set of graphics. + +*homepage*: + +version | toolchain +--------|---------- +``2.4.1`` | ``foss/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Mathematica.md b/docs/version-specific/supported-software/m/Mathematica.md new file mode 100644 index 000000000..fe350abb1 --- /dev/null +++ b/docs/version-specific/supported-software/m/Mathematica.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# Mathematica + +Mathematica is a computational software program used in many scientific, engineering, mathematical and computing fields. + +*homepage*: + +version | toolchain +--------|---------- +``10.0.2`` | ``system`` +``10.1.0`` | ``system`` +``10.4.1`` | ``system`` +``11.0.1`` | ``system`` +``11.1.1`` | ``system`` +``11.3.0`` | ``system`` +``12.0.0`` | ``system`` +``12.1.1`` | ``system`` +``13.0.0`` | ``system`` +``13.1.0`` | ``system`` +``9.0.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Maude.md b/docs/version-specific/supported-software/m/Maude.md new file mode 100644 index 000000000..072077d9e --- /dev/null +++ b/docs/version-specific/supported-software/m/Maude.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Maude + +Maude is a high-performance reflective language and system supporting both equational and rewriting logic specification and programming for a wide range of applications. Maude has been influenced in important ways by the OBJ3 language, which can be regarded as an equational logic sublanguage. Besides supporting equational specification and programming, Maude also supports rewriting logic computation. + +*homepage*: + +version | toolchain +--------|---------- +``3.1`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Maven.md b/docs/version-specific/supported-software/m/Maven.md new file mode 100644 index 000000000..f7be27163 --- /dev/null +++ b/docs/version-specific/supported-software/m/Maven.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# Maven + +Binary maven install, Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information. + +*homepage*: + +version | toolchain +--------|---------- +``3.2.3`` | ``system`` +``3.3.3`` | ``system`` +``3.3.9`` | ``system`` +``3.5.0`` | ``system`` +``3.5.2`` | ``system`` +``3.6.0`` | ``system`` +``3.6.3`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MaxBin.md b/docs/version-specific/supported-software/m/MaxBin.md new file mode 100644 index 000000000..46b23bc05 --- /dev/null +++ b/docs/version-specific/supported-software/m/MaxBin.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# MaxBin + +MaxBin is software for binning assembled metagenomic sequences based on an Expectation-Maximization algorithm. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.6`` | ``-Perl-5.28.0`` | ``foss/2018b`` +``2.2.7`` | ``-Perl-5.28.1`` | ``GCC/8.2.0-2.31.1`` +``2.2.7`` | | ``gompi/2020b`` +``2.2.7`` | | ``gompi/2021a`` +``2.2.7`` | | ``gompi/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MaxQuant.md b/docs/version-specific/supported-software/m/MaxQuant.md new file mode 100644 index 000000000..bdc776242 --- /dev/null +++ b/docs/version-specific/supported-software/m/MaxQuant.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# MaxQuant + +MaxQuant is a quantitative proteomics software package designed for analyzing large mass-spectrometric data sets. It is specifically aimed at high-resolution MS data. Several labeling techniques as well as label-free quantification are supported. + +*homepage*: + +version | toolchain +--------|---------- +``1.6.10.43`` | ``foss/2018b`` +``2.0.3.0`` | ``GCCcore/11.2.0`` +``2.2.0.0`` | ``GCCcore/11.2.0`` +``2.4.2.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MbedTLS.md b/docs/version-specific/supported-software/m/MbedTLS.md new file mode 100644 index 000000000..358fd7bb6 --- /dev/null +++ b/docs/version-specific/supported-software/m/MbedTLS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MbedTLS + +An open source, portable, easy to use, readable and flexible SSL library. + +*homepage*: + +version | toolchain +--------|---------- +``2.26.0`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MedPy.md b/docs/version-specific/supported-software/m/MedPy.md new file mode 100644 index 000000000..f361b0464 --- /dev/null +++ b/docs/version-specific/supported-software/m/MedPy.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# MedPy + +MedPy is a library and script collection for medical image processing in Python, providing basic functionalities for reading, writing and manipulating large images of arbitrary dimensionality. Its main contributions are n-dimensional versions of popular image filters, a collection of image feature extractors, ready to be used with scikit-learn, and an exhaustive n-dimensional graph-cut package. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.4.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.4.0`` | | ``foss/2020b`` +``0.4.0`` | | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Meep.md b/docs/version-specific/supported-software/m/Meep.md new file mode 100644 index 000000000..f8b641950 --- /dev/null +++ b/docs/version-specific/supported-software/m/Meep.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# Meep + +Meep (or MEEP) is a free finite-difference time-domain (FDTD) simulation software package developed at MIT to model electromagnetic systems. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.26.0`` | | ``foss/2020b`` +``1.3`` | | ``foss/2016a`` +``1.4.3`` | | ``intel/2020a`` +``1.6.0`` | ``-Python-2.7.14`` | ``foss/2017b`` +``1.6.0`` | ``-Python-2.7.14`` | ``foss/2018a`` +``1.6.0`` | ``-Python-2.7.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Megalodon.md b/docs/version-specific/supported-software/m/Megalodon.md new file mode 100644 index 000000000..8db1f59a5 --- /dev/null +++ b/docs/version-specific/supported-software/m/Megalodon.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Megalodon + +Megalodon is a research command line tool to extract high accuracy modified base and sequence variant calls from raw nanopore reads by anchoring the information rich basecalling neural network output to a reference genome/transriptome. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.3.5`` | | ``foss/2020b`` +``2.3.5`` | | ``fosscuda/2020b`` +``2.5.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``2.5.0`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Meld.md b/docs/version-specific/supported-software/m/Meld.md new file mode 100644 index 000000000..956d52e59 --- /dev/null +++ b/docs/version-specific/supported-software/m/Meld.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Meld + +Meld is a visual diff and merge tool targeted at developers. Meld helps you compare files, directories, and version controlled projects. It provides two- and three-way comparison of both files and directories, and has support for many popular version control systems. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.20.1`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Mercurial.md b/docs/version-specific/supported-software/m/Mercurial.md new file mode 100644 index 000000000..0088a92cf --- /dev/null +++ b/docs/version-specific/supported-software/m/Mercurial.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# Mercurial + +Mercurial is a free, distributed source control management tool. It efficiently handles projects of any size and offers an easy and intuitive interface. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.8.3`` | ``-Python-2.7.11`` | ``foss/2016a`` +``5.7.1`` | | ``GCCcore/10.2.0`` +``5.7.1`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``5.8`` | | ``GCCcore/10.3.0`` +``6.2`` | | ``GCCcore/11.3.0`` +``6.4.5`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Mesa-demos.md b/docs/version-specific/supported-software/m/Mesa-demos.md new file mode 100644 index 000000000..03585294e --- /dev/null +++ b/docs/version-specific/supported-software/m/Mesa-demos.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Mesa-demos + +Mesa utility and demo programs, including glxinfo and eglinfo. + +*homepage*: + +version | toolchain +--------|---------- +``8.4.0`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Mesa.md b/docs/version-specific/supported-software/m/Mesa.md new file mode 100644 index 000000000..e4fb3d31b --- /dev/null +++ b/docs/version-specific/supported-software/m/Mesa.md @@ -0,0 +1,47 @@ +--- +search: + boost: 0.5 +--- +# Mesa + +Mesa is an open-source implementation of the OpenGL specification - a system for rendering interactive 3D graphics. + +*homepage*: + +version | toolchain +--------|---------- +``11.1.2`` | ``foss/2016a`` +``11.1.2`` | ``gimkl/2.11.5`` +``11.1.2`` | ``intel/2016a`` +``11.2.1`` | ``foss/2016a`` +``11.2.1`` | ``intel/2016a`` +``12.0.2`` | ``foss/2016b`` +``12.0.2`` | ``intel/2016b`` +``17.0.2`` | ``foss/2017a`` +``17.0.2`` | ``intel/2017a`` +``17.2.4`` | ``intel/2017b`` +``17.2.4`` | ``intelcuda/2017b`` +``17.2.5`` | ``foss/2017b`` +``17.2.5`` | ``fosscuda/2017b`` +``17.3.6`` | ``foss/2018a`` +``17.3.6`` | ``fosscuda/2018a`` +``17.3.6`` | ``intel/2018a`` +``17.3.6`` | ``iomkl/2018a`` +``18.1.1`` | ``foss/2018b`` +``18.1.1`` | ``fosscuda/2018b`` +``18.1.1`` | ``intel/2018b`` +``19.0.1`` | ``GCCcore/8.2.0`` +``19.1.7`` | ``GCCcore/8.3.0`` +``19.2.1`` | ``GCCcore/8.3.0`` +``20.0.2`` | ``GCCcore/9.3.0`` +``20.2.1`` | ``GCCcore/10.2.0`` +``21.1.1`` | ``GCCcore/10.3.0`` +``21.1.7`` | ``GCCcore/11.2.0`` +``22.0.3`` | ``GCCcore/11.3.0`` +``22.2.4`` | ``GCCcore/12.2.0`` +``23.1.4`` | ``GCCcore/12.3.0`` +``23.1.9`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Meson.md b/docs/version-specific/supported-software/m/Meson.md new file mode 100644 index 000000000..6415f395f --- /dev/null +++ b/docs/version-specific/supported-software/m/Meson.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# Meson + +Meson is a cross-platform build system designed to be both as fast and as user friendly as possible. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.43.0`` | ``-Python-3.6.3`` | ``intel/2017b`` +``0.46.1`` | ``-Python-3.6.4`` | ``foss/2018a`` +``0.48.1`` | ``-Python-3.6.4`` | ``foss/2018a`` +``0.48.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.48.1`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``0.48.1`` | ``-Python-3.6.4`` | ``intel/2018a`` +``0.50.0`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` +``0.51.2`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``0.53.1`` | ``-Python-3.6.3`` | ``intel/2017b`` +``0.53.2`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``0.55.1`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``0.55.3`` | | ``GCCcore/10.2.0`` +``0.58.0`` | | ``GCCcore/10.3.0`` +``0.58.2`` | | ``GCCcore/11.2.0`` +``0.59.1`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``0.62.1`` | | ``GCCcore/11.3.0`` +``0.64.0`` | | ``GCCcore/12.2.0`` +``1.1.1`` | | ``GCCcore/12.3.0`` +``1.2.3`` | | ``GCCcore/13.2.0`` +``1.3.1`` | | ``GCCcore/12.3.0`` +``1.4.0`` | | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Mesquite.md b/docs/version-specific/supported-software/m/Mesquite.md new file mode 100644 index 000000000..aa032f235 --- /dev/null +++ b/docs/version-specific/supported-software/m/Mesquite.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# Mesquite + +Mesh-Quality Improvement Library + +*homepage*: + +version | toolchain +--------|---------- +``2.3.0`` | ``GCCcore/10.2.0`` +``2.3.0`` | ``GCCcore/12.3.0`` +``2.3.0`` | ``GCCcore/6.4.0`` +``2.3.0`` | ``GCCcore/8.3.0`` +``2.3.0`` | ``gimkl/2.11.5`` +``2.3.0`` | ``intel/2016a`` +``2.3.0`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MetaBAT.md b/docs/version-specific/supported-software/m/MetaBAT.md new file mode 100644 index 000000000..3447c48d7 --- /dev/null +++ b/docs/version-specific/supported-software/m/MetaBAT.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# MetaBAT + +An efficient tool for accurately reconstructing single genomes from complex microbial communities + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.12.1`` | ``-Python-2.7.15`` | ``foss/2018b`` +``2.14`` | | ``gompi/2019a`` +``2.15`` | | ``GCC/11.2.0`` +``2.15`` | ``-Python-2.7.18`` | ``gompi/2020b`` +``2.15`` | | ``gompi/2021a`` +``2.15`` | | ``gompi/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MetaDecoder.md b/docs/version-specific/supported-software/m/MetaDecoder.md new file mode 100644 index 000000000..4137afee6 --- /dev/null +++ b/docs/version-specific/supported-software/m/MetaDecoder.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MetaDecoder + +An algorithm for clustering metagenomic sequences + +*homepage*: + +version | toolchain +--------|---------- +``1.0.19`` | ``foss/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MetaEuk.md b/docs/version-specific/supported-software/m/MetaEuk.md new file mode 100644 index 000000000..47be2ca54 --- /dev/null +++ b/docs/version-specific/supported-software/m/MetaEuk.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# MetaEuk + +MetaEuk is a modular toolkit designed for large-scale gene discovery and annotation in eukaryotic metagenomic contigs. + +*homepage*: + +version | toolchain +--------|---------- +``4`` | ``GCC/10.2.0`` +``5`` | ``GCC/10.3.0`` +``6`` | ``GCC/11.2.0`` +``6`` | ``GCC/11.3.0`` +``6`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MetaGeneAnnotator.md b/docs/version-specific/supported-software/m/MetaGeneAnnotator.md new file mode 100644 index 000000000..66bab203f --- /dev/null +++ b/docs/version-specific/supported-software/m/MetaGeneAnnotator.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MetaGeneAnnotator + +MetaGeneAnnotator is a gene-finding program for prokaryote and phage. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20080819`` | ``-x86-64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MetaMorpheus.md b/docs/version-specific/supported-software/m/MetaMorpheus.md new file mode 100644 index 000000000..940482ca4 --- /dev/null +++ b/docs/version-specific/supported-software/m/MetaMorpheus.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# MetaMorpheus + +MetaMorpheus is a bottom-up proteomics database search software with integrated post-translational modification (PTM) discovery capability. This program combines features of Morpheus and G-PTM-D in a single tool. + +*homepage*: + +version | toolchain +--------|---------- +``0.0.320`` | ``GCCcore/10.3.0`` +``1.0.5`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MetaPhlAn.md b/docs/version-specific/supported-software/m/MetaPhlAn.md new file mode 100644 index 000000000..41381f4b4 --- /dev/null +++ b/docs/version-specific/supported-software/m/MetaPhlAn.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# MetaPhlAn + +MetaPhlAn is a computational tool for profiling the composition of microbial communities from metagenomic shotgun sequencing data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.9`` | ``-Python-3.8.2`` | ``foss/2020a`` +``4.0.6`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MetaPhlAn2.md b/docs/version-specific/supported-software/m/MetaPhlAn2.md new file mode 100644 index 000000000..b8ad555ed --- /dev/null +++ b/docs/version-specific/supported-software/m/MetaPhlAn2.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# MetaPhlAn2 + +MetaPhlAn is a computational tool for profiling the composition of microbial communities (Bacteria, Archaea, Eukaryotes and Viruses) from metagenomic shotgun sequencing data (i.e. not 16S) with species-level. With the newly added StrainPhlAn module, it is now possible to perform accurate strain-level microbial profiling. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.7.8`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2.7.8`` | ``-Python-3.6.6`` | ``foss/2018b`` +``2.7.8`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MetaboAnalystR.md b/docs/version-specific/supported-software/m/MetaboAnalystR.md new file mode 100644 index 000000000..59f87aa40 --- /dev/null +++ b/docs/version-specific/supported-software/m/MetaboAnalystR.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MetaboAnalystR + +MetaboAnalystR contains the R functions and libraries underlying the popular MetaboAnalyst web server, including > 500 functions for metabolomic data analysis, visualization, and functional interpretation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.1-20190827`` | ``-R-3.6.0`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Metagenome-Atlas.md b/docs/version-specific/supported-software/m/Metagenome-Atlas.md new file mode 100644 index 000000000..4ee24dbd4 --- /dev/null +++ b/docs/version-specific/supported-software/m/Metagenome-Atlas.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Metagenome-Atlas + +Metagenome-atlas is a easy-to-use metagenomic pipeline based on snakemake. It handles all steps from QC, Assembly, Binning, to Annotation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.4.3`` | ``-Python-3.8.2`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Metal.md b/docs/version-specific/supported-software/m/Metal.md new file mode 100644 index 000000000..41a3ab0c7 --- /dev/null +++ b/docs/version-specific/supported-software/m/Metal.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Metal + +Metal - Meta Analysis Helper. The METAL software is designed to facilitate meta-analysis of large datasets (such as several whole genome scans) in a convenient, rapid and memory efficient manner. + +*homepage*: + +version | toolchain +--------|---------- +``2011-03-25`` | ``foss/2016a`` +``2020-05-05`` | ``GCC/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MetalWalls.md b/docs/version-specific/supported-software/m/MetalWalls.md new file mode 100644 index 000000000..f5e93717a --- /dev/null +++ b/docs/version-specific/supported-software/m/MetalWalls.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MetalWalls + +MetalWalls (MW) is a molecular dynamics code dedicated to the modelling of electrochemical systems. Its main originality is the inclusion of a series of methods allowing to apply a constant potential within the electrode materials. + +*homepage*: + +version | toolchain +--------|---------- +``21.06.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Metaxa2.md b/docs/version-specific/supported-software/m/Metaxa2.md new file mode 100644 index 000000000..2e1d885c7 --- /dev/null +++ b/docs/version-specific/supported-software/m/Metaxa2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Metaxa2 + +Metaxa2 -- Identifies Small Subunit (SSU) rRNAs and classifies them taxonomically + +*homepage*: + +version | toolchain +--------|---------- +``2.2`` | ``gompi/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MethylDackel.md b/docs/version-specific/supported-software/m/MethylDackel.md new file mode 100644 index 000000000..39ebb117d --- /dev/null +++ b/docs/version-specific/supported-software/m/MethylDackel.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# MethylDackel + +A (mostly) universal methylation extractor for BS-seq experiments. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.0`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``0.5.0`` | ``iccifort/2019.5.281`` +``0.6.1`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MiGEC.md b/docs/version-specific/supported-software/m/MiGEC.md new file mode 100644 index 000000000..33e31bc3b --- /dev/null +++ b/docs/version-specific/supported-software/m/MiGEC.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# MiGEC + +MIGEC is a software pipeline that facilitates processing and analysis of immune repertoire sequencing data generated using molecular barcoding technique + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.8`` | ``-Java-1.8.0_162`` | ``system`` +``1.2.9`` | ``-Java-1.8`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MiXCR.md b/docs/version-specific/supported-software/m/MiXCR.md new file mode 100644 index 000000000..dcafef54d --- /dev/null +++ b/docs/version-specific/supported-software/m/MiXCR.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# MiXCR + +MiXCR processes big immunome data from raw sequences to quantitated clonotypes + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.9`` | ``-Java-1.8.0_162`` | ``system`` +``3.0.13`` | ``-Java-1.8`` | ``system`` +``3.0.13`` | ``-Java-11`` | ``system`` +``3.0.3`` | ``-Java-1.8`` | ``system`` +``4.6.0`` | ``-Java-17`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MicrobeAnnotator.md b/docs/version-specific/supported-software/m/MicrobeAnnotator.md new file mode 100644 index 000000000..8d1e530fe --- /dev/null +++ b/docs/version-specific/supported-software/m/MicrobeAnnotator.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MicrobeAnnotator + +Easy-to-use pipeline for the comprehensive metabolic annotation of microbial genomes. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.5`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Mikado.md b/docs/version-specific/supported-software/m/Mikado.md new file mode 100644 index 000000000..eae9c882c --- /dev/null +++ b/docs/version-specific/supported-software/m/Mikado.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Mikado + +Mikado is a lightweight Python3 pipeline to identify the most useful or “best” set of transcripts from multiple transcript assemblies. Our approach leverages transcript assemblies generated by multiple methods to define expressed loci, assign a representative transcript and return a set of gene models that selects against transcripts that are chimeric, fragmented or with short or disrupted CDS. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.4`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Miller.md b/docs/version-specific/supported-software/m/Miller.md new file mode 100644 index 000000000..b9c26aba5 --- /dev/null +++ b/docs/version-specific/supported-software/m/Miller.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Miller + +Miller is like awk, sed, cut, join, and sort for name-indexed data such as CSV, TSV, and tabular JSON + +*homepage*: + +version | toolchain +--------|---------- +``6.4.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MinCED.md b/docs/version-specific/supported-software/m/MinCED.md new file mode 100644 index 000000000..bd85022be --- /dev/null +++ b/docs/version-specific/supported-software/m/MinCED.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MinCED + +Mining CRISPRs in Environmental Datasets + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.4.2`` | ``-Java-11`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MinPath.md b/docs/version-specific/supported-software/m/MinPath.md new file mode 100644 index 000000000..96b5f31ec --- /dev/null +++ b/docs/version-specific/supported-software/m/MinPath.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# MinPath + +MinPath (Minimal set of Pathways) is a parsimony approach for biological pathway reconstructions using protein family predictions, achieving a more conservative, yet more faithful, estimation of the biological pathways for a query dataset. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.4`` | ``-Python-2.7.15`` | ``intel/2018b`` +``1.4`` | ``-Python-2.7.16`` | ``intel/2019b`` +``1.6`` | | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Mini-XML.md b/docs/version-specific/supported-software/m/Mini-XML.md new file mode 100644 index 000000000..a4ee3ee97 --- /dev/null +++ b/docs/version-specific/supported-software/m/Mini-XML.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Mini-XML + +Mini-XML is a small XML parsing library that you can use to read XML data files or strings in your application without requiring large non-standard libraries + +*homepage*: + +version | toolchain +--------|---------- +``2.12`` | ``GCCcore/9.3.0`` +``2.9`` | ``GCCcore/8.2.0`` +``3.2`` | ``GCCcore/10.3.0`` +``3.3.1`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MiniCARD.md b/docs/version-specific/supported-software/m/MiniCARD.md new file mode 100644 index 000000000..2b5f860f6 --- /dev/null +++ b/docs/version-specific/supported-software/m/MiniCARD.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MiniCARD + +MiniCARD is a *cardinality solver* based on MiniSAT [www.minisat.se]. MiniCARD handles cardinality constraints natively, using the same efficient data structures and techniques MiniSAT uses for clauses, giving it much better performance on cardinality constraints than CNF encodings of those constraints passed to a typical SAT solver. It can read the standard DIMACS CNF format, the OPB pseudo-boolean format (with linear cardinality constraints only), and CNF+, a format that extends CNF to include cardinality constraints. + +*homepage*: + +version | toolchain +--------|---------- +``1.2`` | ``GCC/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MiniSat.md b/docs/version-specific/supported-software/m/MiniSat.md new file mode 100644 index 000000000..0d091ea31 --- /dev/null +++ b/docs/version-specific/supported-software/m/MiniSat.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# MiniSat + +MiniSat is a minimalistic, open-source SAT solver, developed to help researchers and developers alike to get started on SAT. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.0`` | ``GCC/9.3.0`` +``20130925`` | ``GCC/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Miniconda2.md b/docs/version-specific/supported-software/m/Miniconda2.md new file mode 100644 index 000000000..a4b1202c6 --- /dev/null +++ b/docs/version-specific/supported-software/m/Miniconda2.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Miniconda2 + +Miniconda is a free minimal installer for conda. It is a small, bootstrap version of Anaconda that includes only conda, Python, the packages they depend on, and a small number of other useful packages. + +*homepage*: + +version | toolchain +--------|---------- +``4.3.21`` | ``system`` +``4.6.14`` | ``system`` +``4.7.10`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Miniconda3.md b/docs/version-specific/supported-software/m/Miniconda3.md new file mode 100644 index 000000000..4925ad708 --- /dev/null +++ b/docs/version-specific/supported-software/m/Miniconda3.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# Miniconda3 + +Miniconda is a free minimal installer for conda. It is a small, bootstrap version of Anaconda that includes only conda, Python, the packages they depend on, and a small number of other useful packages. + +*homepage*: + +version | toolchain +--------|---------- +``22.11.1-1`` | ``system`` +``23.5.2-0`` | ``system`` +``23.9.0-0`` | ``system`` +``4.12.0`` | ``system`` +``4.4.10`` | ``system`` +``4.5.12`` | ``system`` +``4.6.14`` | ``system`` +``4.7.10`` | ``system`` +``4.8.3`` | ``system`` +``4.9.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Miniforge3.md b/docs/version-specific/supported-software/m/Miniforge3.md new file mode 100644 index 000000000..55c234a2d --- /dev/null +++ b/docs/version-specific/supported-software/m/Miniforge3.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Miniforge3 + +Miniforge is a free minimal installer for conda and Mamba specific to conda-forge. + +*homepage*: + +version | toolchain +--------|---------- +``24.1.2-0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Minimac4.md b/docs/version-specific/supported-software/m/Minimac4.md new file mode 100644 index 000000000..be75b814a --- /dev/null +++ b/docs/version-specific/supported-software/m/Minimac4.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Minimac4 + +Minimac4 is a latest version in the series of genotype imputation software - preceded by Minimac3 (2015), Minimac2 (2014), minimac (2012) and MaCH (2010). Minimac4 is a lower memory and more computationally efficient implementation of the original algorithms with comparable imputation quality. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0`` | ``foss/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Minipolish.md b/docs/version-specific/supported-software/m/Minipolish.md new file mode 100644 index 000000000..cab2dced1 --- /dev/null +++ b/docs/version-specific/supported-software/m/Minipolish.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Minipolish + +A tool for Racon polishing of miniasm assemblies + +*homepage*: + +version | toolchain +--------|---------- +``0.1.3`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Mish-Cuda.md b/docs/version-specific/supported-software/m/Mish-Cuda.md new file mode 100644 index 000000000..734cb4238 --- /dev/null +++ b/docs/version-specific/supported-software/m/Mish-Cuda.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Mish-Cuda + +Mish-Cuda: Self Regularized Non-Monotonic Activation Function + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20210309`` | ``-PyTorch-1.9.0`` | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MitoHiFi.md b/docs/version-specific/supported-software/m/MitoHiFi.md new file mode 100644 index 000000000..154beb95b --- /dev/null +++ b/docs/version-specific/supported-software/m/MitoHiFi.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MitoHiFi + +MitoHiFi is a Python workflow that assembles mitogenomes from Pacbio HiFi reads + +*homepage*: + +version | toolchain +--------|---------- +``3.2`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MitoZ.md b/docs/version-specific/supported-software/m/MitoZ.md new file mode 100644 index 000000000..e198a3909 --- /dev/null +++ b/docs/version-specific/supported-software/m/MitoZ.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MitoZ + +MitoZ is a Python3-based toolkit which aims to automatically filter pair-end raw data (fastq files), assemble genome, search for mitogenome sequences from the genome assembly result, annotate mitogenome (genbank file as result), and mitogenome visualization. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.3`` | ``-Python-3.6.6`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MixMHC2pred.md b/docs/version-specific/supported-software/m/MixMHC2pred.md new file mode 100644 index 000000000..803e5ed11 --- /dev/null +++ b/docs/version-specific/supported-software/m/MixMHC2pred.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MixMHC2pred + +MixMHC2pred is a predictor of HLA class II ligands and epitopes. It is described in publication Racle, J., et al. Robust prediction of HLA class II epitopes by deep motif deconvolution of immunopeptidomes + +*homepage*: + +version | toolchain +--------|---------- +``1.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Mmg.md b/docs/version-specific/supported-software/m/Mmg.md new file mode 100644 index 000000000..132037835 --- /dev/null +++ b/docs/version-specific/supported-software/m/Mmg.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Mmg + +Mmg is an open source software for simplicial remeshing. It provides 3 applications and 4 libraries: the mmg2d application and the libmmg2d library: adaptation and optimization of a two-dimensional triangulation and generation of a triangulation from a set of points or from given boundary edges the mmgs application and the libmmgs library: adaptation and optimization of a surface triangulation and isovalue discretization the mmg3d application and the libmmg3d library: adaptation and optimization of a tetrahedral mesh and implicit domain meshing the libmmg library gathering the libmmg2d, libmmgs and libmmg3d libraries + +*homepage*: + +version | toolchain +--------|---------- +``5.3.9`` | ``foss/2017b`` +``5.6.0`` | ``gompi/2021a`` +``5.6.0`` | ``gompi/2021b`` +``5.7.2`` | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/ModelTest-NG.md b/docs/version-specific/supported-software/m/ModelTest-NG.md new file mode 100644 index 000000000..29057e03a --- /dev/null +++ b/docs/version-specific/supported-software/m/ModelTest-NG.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ModelTest-NG + +ModelTest-NG is a tool for selecting the best-fit model of evolution for DNA and protein alignments. ModelTest-NG supersedes jModelTest and ProtTest in one single tool, with graphical and command console interfaces. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.7`` | ``gompi/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Molcas.md b/docs/version-specific/supported-software/m/Molcas.md new file mode 100644 index 000000000..4828f6e20 --- /dev/null +++ b/docs/version-specific/supported-software/m/Molcas.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Molcas + +Molcas is an ab initio quantum chemistry software package developed by scientists to be used by scientists. The basic philosophy is is to be able to treat general electronic structures for molecules consisting of atoms from most of the periodic table. As such, the primary focus of the package is on multiconfigurational methods with applications typically connected to the treatment of highly degenerate states. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``8.0-15.06.18`` | ``_CentOS_6.6_x86_64`` | ``system`` +``8.2`` | ``-centos-mkl-par`` | ``system`` +``8.2`` | ``-centos-par`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Molden.md b/docs/version-specific/supported-software/m/Molden.md new file mode 100644 index 000000000..65c0dffda --- /dev/null +++ b/docs/version-specific/supported-software/m/Molden.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# Molden + +Molden is a package for displaying Molecular Density from the Ab Initio packages GAMESS-UK, GAMESS-US and GAUSSIAN and the Semi-Empirical packages Mopac/Ampac + +*homepage*: + +version | toolchain +--------|---------- +``5.6`` | ``foss/2016a`` +``5.7`` | ``intel/2016b`` +``5.8`` | ``foss/2018a`` +``6.1`` | ``GCCcore/8.2.0`` +``6.8`` | ``GCCcore/10.2.0`` +``6.8`` | ``GCCcore/9.3.0`` +``7.1`` | ``GCCcore/11.3.0`` +``7.3`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Molekel.md b/docs/version-specific/supported-software/m/Molekel.md new file mode 100644 index 000000000..c448e89c3 --- /dev/null +++ b/docs/version-specific/supported-software/m/Molekel.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Molekel + +Molekel is an open-source multi-platform molecular visualization program. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.4.0`` | ``-Linux_x86_64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Molpro.md b/docs/version-specific/supported-software/m/Molpro.md new file mode 100644 index 000000000..788e74e99 --- /dev/null +++ b/docs/version-specific/supported-software/m/Molpro.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# Molpro + +Molpro is a complete system of ab initio programs for molecular electronic structure calculations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2010.1.23`` | ``.Linux_x86_64`` | ``system`` +``2015.1.0`` | ``.linux_x86_64_intel`` | ``system`` +``2015.1.10`` | ``.linux_x86_64_openmp`` | ``system`` +``2015.1.3`` | ``.linux_x86_64_openmp`` | ``system`` +``2024.1.0`` | ``.linux_x86_64_mpipr`` | ``system`` +``2024.1.0`` | ``.linux_x86_64_sockets`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Mono.md b/docs/version-specific/supported-software/m/Mono.md new file mode 100644 index 000000000..315bd9695 --- /dev/null +++ b/docs/version-specific/supported-software/m/Mono.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# Mono + +An open source, cross-platform, implementation of C# and the CLR that is binary compatible with Microsoft.NET. + +*homepage*: + +version | toolchain +--------|---------- +``2.10.6`` | ``intel/2016b`` +``4.6.2.7`` | ``intel/2016b`` +``4.6.2.7`` | ``system`` +``4.8.0.495`` | ``intel/2017a`` +``5.10.0.160`` | ``foss/2018a`` +``5.18.1.0`` | ``foss/2018a`` +``5.4.1.6`` | ``foss/2017b`` +``5.4.1.6`` | ``intel/2017b`` +``6.12.0.122`` | ``GCCcore/11.2.0`` +``6.4.0.198`` | ``foss/2018b`` +``6.8.0.105`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Monocle3.md b/docs/version-specific/supported-software/m/Monocle3.md new file mode 100644 index 000000000..eab9ff39c --- /dev/null +++ b/docs/version-specific/supported-software/m/Monocle3.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Monocle3 + +An analysis toolkit for single-cell RNA-seq. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.0`` | ``-Python-3.7.2-R-3.6.0`` | ``foss/2019a`` +``0.2.3`` | ``-R-4.0.3`` | ``foss/2020b`` +``1.3.1`` | ``-R-4.2.1`` | ``foss/2022a`` +``1.3.1`` | ``-R-4.2.2`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MoreRONN.md b/docs/version-specific/supported-software/m/MoreRONN.md new file mode 100644 index 000000000..02dffefd8 --- /dev/null +++ b/docs/version-specific/supported-software/m/MoreRONN.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MoreRONN + +MoreRONN is the spiritual successor of RONN and is useful for surveying disorder in proteins as well as designing expressible constructs for X-ray crystallography. + +*homepage*: + +version | toolchain +--------|---------- +``4.9`` | ``GCC/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Mothur.md b/docs/version-specific/supported-software/m/Mothur.md new file mode 100644 index 000000000..296f2007d --- /dev/null +++ b/docs/version-specific/supported-software/m/Mothur.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Mothur + +Mothur is a single piece of open-source, expandable software to fill the bioinformatics needs of the microbial ecology community. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.39.5`` | ``-Python-2.7.13`` | ``intel/2017a`` +``1.41.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.43.0`` | ``-Python-3.7.2`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MotionCor2.md b/docs/version-specific/supported-software/m/MotionCor2.md new file mode 100644 index 000000000..361dc103e --- /dev/null +++ b/docs/version-specific/supported-software/m/MotionCor2.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# MotionCor2 + +MotionCor2 correct anisotropic image motion at the single pixel level across the whole frame, suitable for both single particle and tomographic images. Iterative, patch-based motion detection is combined with spatial and temporal constraints and dose weighting. Cite publication: Shawn Q. Zheng, Eugene Palovcak, Jean-Paul Armache, Yifan Cheng and David A. Agard (2016) Anisotropic Correction of Beam-induced Motion for Improved Single-particle Electron Cryo-microscopy, Nature Methods, submitted. BioArxiv: https://biorxiv.org/content/early/2016/07/04/061960 + +*homepage*: + +version | toolchain +--------|---------- +``1.2.6`` | ``GCCcore/8.2.0`` +``1.3.1`` | ``GCCcore/8.3.0`` +``1.3.2`` | ``GCCcore/8.3.0`` +``1.4.2`` | ``GCCcore/10.2.0`` +``1.4.4`` | ``GCCcore/10.2.0`` +``1.4.4`` | ``GCCcore/10.3.0`` +``1.5.0`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MotionCor3.md b/docs/version-specific/supported-software/m/MotionCor3.md new file mode 100644 index 000000000..edc01bd01 --- /dev/null +++ b/docs/version-specific/supported-software/m/MotionCor3.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MotionCor3 + +Anisotropic correction of beam induced motion for cryo-electron microscopy and cryo-electron tomography images. MotionCor3, an improved implementation of MotionCor2 with addition of CTF (Contrast Transfer Function) estimation, is a multi-GPU accelerated software package that enables single-pixel level correction of anisotropic beam induced sample motion for cryo-electron microscopy and cryo-electron tomography images. The iterative, patch-based motion detection combined with spatial and temporal constraints and dose weighting provides robust and accurate correction. By refining the measurement of early motion, MotionCor3 further improves correction on tilted samples. The efficiency achieved by multi-GPU acceleration and parallelization enables correction to keep pace with automated data collection. The recent addition of a very robust GPU-accelerated CTF estimation makes MotionCor3 more versatile in cryoEM and cryoET processing pipeline. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.1`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MoviePy.md b/docs/version-specific/supported-software/m/MoviePy.md new file mode 100644 index 000000000..fa0ef4d7d --- /dev/null +++ b/docs/version-specific/supported-software/m/MoviePy.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# MoviePy + +MoviePy (full documentation) is a Python library for video editing: cutting, concatenations, title insertions, video compositing (a.k.a. non-linear editing), video processing, and creation of custom effects. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.1`` | ``-Python-3.7.2`` | ``foss/2019a`` +``1.0.3`` | | ``foss/2021a`` +``1.0.3`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MrBayes.md b/docs/version-specific/supported-software/m/MrBayes.md new file mode 100644 index 000000000..47483784c --- /dev/null +++ b/docs/version-specific/supported-software/m/MrBayes.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# MrBayes + +MrBayes is a program for the Bayesian estimation of phylogeny. + +*homepage*: + +version | toolchain +--------|---------- +``3.2.6`` | ``foss/2016a`` +``3.2.6`` | ``foss/2017a`` +``3.2.6`` | ``gompi/2020b`` +``3.2.7`` | ``gompi/2020b`` +``3.2.7`` | ``gompi/2022a`` +``3.2.7`` | ``gompic/2019b`` +``3.2.7a`` | ``foss/2020a`` +``3.2.7a`` | ``iimpi/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MuJoCo.md b/docs/version-specific/supported-software/m/MuJoCo.md new file mode 100644 index 000000000..aac267648 --- /dev/null +++ b/docs/version-specific/supported-software/m/MuJoCo.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# MuJoCo + +MuJoCo stands for Multi-Joint dynamics with Contact. It is a general purpose physics engine that aims to facilitate research and development in robotics, biomechanics, graphics and animation, machine learning, and other areas which demand fast and accurate simulation of articulated structures interacting with their environment. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.1`` | ``GCCcore/11.2.0`` +``2.2.2`` | ``GCCcore/11.3.0`` +``3.1.4`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MuPeXI.md b/docs/version-specific/supported-software/m/MuPeXI.md new file mode 100644 index 000000000..3f4a949e5 --- /dev/null +++ b/docs/version-specific/supported-software/m/MuPeXI.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MuPeXI + +MuPeXI: Mutant Peptide eXtractor and Informer. Given a list of somatic mutations (VCF file) as input, MuPeXI returns a table containing all mutated peptides (neo-peptides) of user-defined lengths, along with several pieces of information relevant for identifying which of these neo-peptides are likely to serve as neo-epitopes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.0`` | ``-Perl-5.28.0-Python-2.7.15`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MuSiC.md b/docs/version-specific/supported-software/m/MuSiC.md new file mode 100644 index 000000000..7bfeee4ea --- /dev/null +++ b/docs/version-specific/supported-software/m/MuSiC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MuSiC + +Multi-subject Single Cell deconvolution (MuSiC) is a deconvolution method that utilizes cross-subject scRNA-seq to estimate cell type proportions in bulk RNA-seq data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.6.2`` | ``-R-3.5.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MuTect.md b/docs/version-specific/supported-software/m/MuTect.md new file mode 100644 index 000000000..db05e8607 --- /dev/null +++ b/docs/version-specific/supported-software/m/MuTect.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# MuTect + +MuTect is a method developed at the Broad Institute for the reliable and accurate identification of somatic point mutations in next generation sequencing data of cancer genomes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.4`` | ``-Java-1.7.0_76`` | ``system`` +``1.1.4`` | ``-Java-1.7.0_80`` | ``system`` +``1.1.7`` | ``-Java-1.7.0_80`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MultiNest.md b/docs/version-specific/supported-software/m/MultiNest.md new file mode 100644 index 000000000..7a58b3875 --- /dev/null +++ b/docs/version-specific/supported-software/m/MultiNest.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MultiNest + +MultiNest is a Bayesian inference tool which calculates the evidence and explores the parameter space which may contain multiple posterior modes and pronounced (curving) degeneracies in moderately high dimensions. + +*homepage*: + +version | toolchain +--------|---------- +``3.10`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MultiQC.md b/docs/version-specific/supported-software/m/MultiQC.md new file mode 100644 index 000000000..cc10184aa --- /dev/null +++ b/docs/version-specific/supported-software/m/MultiQC.md @@ -0,0 +1,39 @@ +--- +search: + boost: 0.5 +--- +# MultiQC + +Aggregate results from bioinformatics analyses across many samples into a single report. MultiQC searches a given directory for analysis logs and compiles a HTML report. It's a general use tool, perfect for summarising the output from numerous bioinformatics tools. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.9`` | ``-Python-2.7.12`` | ``foss/2016b`` +``1.10.1`` | | ``foss/2020b`` +``1.11`` | | ``foss/2021a`` +``1.12`` | | ``foss/2021b`` +``1.14`` | | ``foss/2022a`` +``1.14`` | | ``foss/2022b`` +``1.2`` | ``-Python-2.7.14`` | ``foss/2017b`` +``1.2`` | ``-Python-3.6.3`` | ``foss/2017b`` +``1.2`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.2`` | ``-Python-3.6.3`` | ``intel/2017b`` +``1.6`` | ``-Python-2.7.14`` | ``foss/2017b`` +``1.6`` | ``-Python-3.6.3`` | ``foss/2017b`` +``1.6`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.6`` | ``-Python-3.6.3`` | ``intel/2017b`` +``1.7`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.7`` | ``-Python-2.7.15`` | ``intel/2018b`` +``1.7`` | ``-Python-3.6.6`` | ``intel/2018b`` +``1.8`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.8`` | ``-Python-2.7.16`` | ``intel/2019b`` +``1.8`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.9`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.9`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.9`` | ``-Python-3.8.2`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MultilevelEstimators.md b/docs/version-specific/supported-software/m/MultilevelEstimators.md new file mode 100644 index 000000000..815099fb2 --- /dev/null +++ b/docs/version-specific/supported-software/m/MultilevelEstimators.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MultilevelEstimators + +The Julia module for Multilevel Monte Carlo methods + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.0`` | ``-Julia-1.7.2`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Multiwfn.md b/docs/version-specific/supported-software/m/Multiwfn.md new file mode 100644 index 000000000..760afcc58 --- /dev/null +++ b/docs/version-specific/supported-software/m/Multiwfn.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Multiwfn + +A multifunctional wavefunction analyzer + +*homepage*: + +version | toolchain +--------|---------- +``3.4.1`` | ``intel/2017b`` +``3.6`` | ``intel/2019a`` +``3.6`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MyCC.md b/docs/version-specific/supported-software/m/MyCC.md new file mode 100644 index 000000000..b2ae516ce --- /dev/null +++ b/docs/version-specific/supported-software/m/MyCC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# MyCC + +MyCC is built and delivered as a tailored solution for metagenomics sequencesclassfication. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2017-03-01`` | ``-Python-2.7.16`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MyMediaLite.md b/docs/version-specific/supported-software/m/MyMediaLite.md new file mode 100644 index 000000000..c29b03484 --- /dev/null +++ b/docs/version-specific/supported-software/m/MyMediaLite.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# MyMediaLite + +MyMediaLite is a lightweight, multi-purpose library of recommender system algorithms. + +*homepage*: + +version | toolchain +--------|---------- +``3.10`` | ``intel/2016b`` +``3.11`` | ``intel/2016b`` +``3.12`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MySQL-python.md b/docs/version-specific/supported-software/m/MySQL-python.md new file mode 100644 index 000000000..e51e80b7d --- /dev/null +++ b/docs/version-specific/supported-software/m/MySQL-python.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# MySQL-python + +MySQL database connector for Python + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.5`` | ``-Python-2.7.11-MariaDB-10.1.14`` | ``intel/2016a`` +``1.2.5`` | ``-Python-2.7.11`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/MySQL.md b/docs/version-specific/supported-software/m/MySQL.md new file mode 100644 index 000000000..024cc0543 --- /dev/null +++ b/docs/version-specific/supported-software/m/MySQL.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# MySQL + +MySQL is (as of March 2014) the world's second most widely used open-source relational database management system (RDBMS). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.6.26`` | ``-clientonly`` | ``GNU/4.9.3-2.25`` +``5.7.21`` | ``-clientonly`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/Myokit.md b/docs/version-specific/supported-software/m/Myokit.md new file mode 100644 index 000000000..f0a53135b --- /dev/null +++ b/docs/version-specific/supported-software/m/Myokit.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Myokit + +Myokit is an open-source Python-based toolkit that facilitates modeling and simulation of cardiac cellular electrophysiology. + +*homepage*: + +version | toolchain +--------|---------- +``1.32.0`` | ``foss/2020b`` +``1.32.0`` | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/index.md b/docs/version-specific/supported-software/m/index.md new file mode 100644 index 000000000..2fc9d1ed4 --- /dev/null +++ b/docs/version-specific/supported-software/m/index.md @@ -0,0 +1,286 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (m) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - *m* - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [M1QN3](M1QN3.md) + * [M3GNet](M3GNet.md) + * [M4](M4.md) + * [m4ri](m4ri.md) + * [m4rie](m4rie.md) + * [MACH](MACH.md) + * [MACS2](MACS2.md) + * [MACS3](MACS3.md) + * [MACSE](MACSE.md) + * [maeparser](maeparser.md) + * [MAFFT](MAFFT.md) + * [MAGeCK](MAGeCK.md) + * [magick](magick.md) + * [Magics](Magics.md) + * [magma](magma.md) + * [MAGMA-gene-analysis](MAGMA-gene-analysis.md) + * [MagresPython](MagresPython.md) + * [mahotas](mahotas.md) + * [MAJIQ](MAJIQ.md) + * [make](make.md) + * [makedepend](makedepend.md) + * [makedepf90](makedepf90.md) + * [makefun](makefun.md) + * [makeinfo](makeinfo.md) + * [MAKER](MAKER.md) + * [Mako](Mako.md) + * [Mamba](Mamba.md) + * [mandrake](mandrake.md) + * [mannkendall](mannkendall.md) + * [manta](manta.md) + * [mapDamage](mapDamage.md) + * [Maple](Maple.md) + * [MapSplice](MapSplice.md) + * [Maq](Maq.md) + * [MariaDB](MariaDB.md) + * [MariaDB-connector-c](MariaDB-connector-c.md) + * [Markdown](Markdown.md) + * [MARS](MARS.md) + * [Mash](Mash.md) + * [Mashtree](Mashtree.md) + * [MaSuRCA](MaSuRCA.md) + * [Mathematica](Mathematica.md) + * [MathGL](MathGL.md) + * [MATIO](MATIO.md) + * [MATLAB](MATLAB.md) + * [MATLAB-Engine](MATLAB-Engine.md) + * [matlab-proxy](matlab-proxy.md) + * [matplotlib](matplotlib.md) + * [matplotlib-inline](matplotlib-inline.md) + * [MATSim](MATSim.md) + * [maturin](maturin.md) + * [Maude](Maude.md) + * [mauveAligner](mauveAligner.md) + * [Maven](Maven.md) + * [mawk](mawk.md) + * [MaxBin](MaxBin.md) + * [MaxQuant](MaxQuant.md) + * [mayavi](mayavi.md) + * [maze](maze.md) + * [MbedTLS](MbedTLS.md) + * [MBROLA](MBROLA.md) + * [mbuffer](mbuffer.md) + * [mc](mc.md) + * [MCL](MCL.md) + * [MCR](MCR.md) + * [mctc-lib](mctc-lib.md) + * [mcu](mcu.md) + * [MDAnalysis](MDAnalysis.md) + * [MDBM](MDBM.md) + * [MDI](MDI.md) + * [MDSplus](MDSplus.md) + * [MDSplus-Java](MDSplus-Java.md) + * [MDSplus-Python](MDSplus-Python.md) + * [mdtest](mdtest.md) + * [MDTraj](MDTraj.md) + * [mdust](mdust.md) + * [meboot](meboot.md) + * [medaka](medaka.md) + * [medImgProc](medImgProc.md) + * [MedPy](MedPy.md) + * [Meep](Meep.md) + * [MEGA](MEGA.md) + * [MEGACC](MEGACC.md) + * [MEGAHIT](MEGAHIT.md) + * [Megalodon](Megalodon.md) + * [MEGAN](MEGAN.md) + * [Meld](Meld.md) + * [MEM](MEM.md) + * [MEME](MEME.md) + * [memkind](memkind.md) + * [memory-profiler](memory-profiler.md) + * [MEMOTE](MEMOTE.md) + * [memtester](memtester.md) + * [meRanTK](meRanTK.md) + * [MERCKX](MERCKX.md) + * [Mercurial](Mercurial.md) + * [Mesa](Mesa.md) + * [Mesa-demos](Mesa-demos.md) + * [meshalyzer](meshalyzer.md) + * [meshio](meshio.md) + * [meshtool](meshtool.md) + * [Meson](Meson.md) + * [meson-python](meson-python.md) + * [Mesquite](Mesquite.md) + * [MESS](MESS.md) + * [MetaBAT](MetaBAT.md) + * [MetaboAnalystR](MetaboAnalystR.md) + * [MetaDecoder](MetaDecoder.md) + * [metaerg](metaerg.md) + * [MetaEuk](MetaEuk.md) + * [MetaGeneAnnotator](MetaGeneAnnotator.md) + * [Metagenome-Atlas](Metagenome-Atlas.md) + * [Metal](Metal.md) + * [MetalWalls](MetalWalls.md) + * [MetaMorpheus](MetaMorpheus.md) + * [MetaPhlAn](MetaPhlAn.md) + * [MetaPhlAn2](MetaPhlAn2.md) + * [metaWRAP](metaWRAP.md) + * [Metaxa2](Metaxa2.md) + * [methylartist](methylartist.md) + * [MethylDackel](MethylDackel.md) + * [methylpy](methylpy.md) + * [METIS](METIS.md) + * [mfqe](mfqe.md) + * [mgen](mgen.md) + * [mgltools](mgltools.md) + * [mhcflurry](mhcflurry.md) + * [mhcnuggets](mhcnuggets.md) + * [MICOM](MICOM.md) + * [MicrobeAnnotator](MicrobeAnnotator.md) + * [microctools](microctools.md) + * [MiGEC](MiGEC.md) + * [MIGRATE-N](MIGRATE-N.md) + * [Mikado](Mikado.md) + * [Miller](Miller.md) + * [mimalloc](mimalloc.md) + * [MINC](MINC.md) + * [MinCED](MinCED.md) + * [Mini-XML](Mini-XML.md) + * [miniasm](miniasm.md) + * [minibar](minibar.md) + * [MiniCARD](MiniCARD.md) + * [Miniconda2](Miniconda2.md) + * [Miniconda3](Miniconda3.md) + * [minieigen](minieigen.md) + * [Miniforge3](Miniforge3.md) + * [Minimac4](Minimac4.md) + * [minimap2](minimap2.md) + * [Minipolish](Minipolish.md) + * [MiniSat](MiniSat.md) + * [minizip](minizip.md) + * [MINPACK](MINPACK.md) + * [MinPath](MinPath.md) + * [MIRA](MIRA.md) + * [miRDeep2](miRDeep2.md) + * [Mish-Cuda](Mish-Cuda.md) + * [misha](misha.md) + * [MITgcmutils](MITgcmutils.md) + * [MITObim](MITObim.md) + * [MitoHiFi](MitoHiFi.md) + * [MitoZ](MitoZ.md) + * [MiXCR](MiXCR.md) + * [MixMHC2pred](MixMHC2pred.md) + * [mkl-dnn](mkl-dnn.md) + * [mkl-service](mkl-service.md) + * [mkl_fft](mkl_fft.md) + * [ml-collections](ml-collections.md) + * [ml_dtypes](ml_dtypes.md) + * [MLC](MLC.md) + * [MLflow](MLflow.md) + * [mlpack](mlpack.md) + * [MLxtend](MLxtend.md) + * [mm-common](mm-common.md) + * [Mmg](Mmg.md) + * [MMSEQ](MMSEQ.md) + * [MMseqs2](MMseqs2.md) + * [mmtf-cpp](mmtf-cpp.md) + * [MNE-Python](MNE-Python.md) + * [MOABB](MOABB.md) + * [MOABS](MOABS.md) + * [MOB-suite](MOB-suite.md) + * [ModelTest-NG](ModelTest-NG.md) + * [MODFLOW](MODFLOW.md) + * [modred](modred.md) + * [MOFA2](MOFA2.md) + * [Molcas](Molcas.md) + * [mold](mold.md) + * [Molden](Molden.md) + * [molecularGSM](molecularGSM.md) + * [Molekel](Molekel.md) + * [molmod](molmod.md) + * [Molpro](Molpro.md) + * [MONA](MONA.md) + * [MONAI](MONAI.md) + * [MONAI-Label](MONAI-Label.md) + * [mongolite](mongolite.md) + * [Mono](Mono.md) + * [Monocle3](Monocle3.md) + * [moonjit](moonjit.md) + * [MOOSE](MOOSE.md) + * [mordecai](mordecai.md) + * [MoreRONN](MoreRONN.md) + * [morphosamplers](morphosamplers.md) + * [mosdepth](mosdepth.md) + * [Mothur](Mothur.md) + * [motif](motif.md) + * [MotionCor2](MotionCor2.md) + * [MotionCor3](MotionCor3.md) + * [motionSegmentation](motionSegmentation.md) + * [MoviePy](MoviePy.md) + * [mpath](mpath.md) + * [MPB](MPB.md) + * [MPC](MPC.md) + * [MPFI](MPFI.md) + * [MPFR](MPFR.md) + * [mpi4py](mpi4py.md) + * [MPICH](MPICH.md) + * [MPICH2](MPICH2.md) + * [mpifileutils](mpifileutils.md) + * [mpiP](mpiP.md) + * [MPJ-Express](MPJ-Express.md) + * [mpmath](mpmath.md) + * [MrBayes](MrBayes.md) + * [mrcfile](mrcfile.md) + * [MRChem](MRChem.md) + * [MRCPP](MRCPP.md) + * [MRIcron](MRIcron.md) + * [MRPRESSO](MRPRESSO.md) + * [MRtrix](MRtrix.md) + * [MSFragger](MSFragger.md) + * [msgpack-c](msgpack-c.md) + * [MSM](MSM.md) + * [MSPC](MSPC.md) + * [msprime](msprime.md) + * [mstore](mstore.md) + * [MTL4](MTL4.md) + * [MuJoCo](MuJoCo.md) + * [mujoco-py](mujoco-py.md) + * [multicharge](multicharge.md) + * [multichoose](multichoose.md) + * [MultilevelEstimators](MultilevelEstimators.md) + * [MultiNest](MultiNest.md) + * [multiprocess](multiprocess.md) + * [MultiQC](MultiQC.md) + * [Multiwfn](Multiwfn.md) + * [muMerge](muMerge.md) + * [MUMmer](MUMmer.md) + * [mumott](mumott.md) + * [MUMPS](MUMPS.md) + * [muParser](muParser.md) + * [muparserx](muparserx.md) + * [MuPeXI](MuPeXI.md) + * [MUSCLE](MUSCLE.md) + * [MUSCLE3](MUSCLE3.md) + * [MuSiC](MuSiC.md) + * [MUST](MUST.md) + * [MuTect](MuTect.md) + * [mutil](mutil.md) + * [MVAPICH2](MVAPICH2.md) + * [MView](MView.md) + * [mxml](mxml.md) + * [mxmlplus](mxmlplus.md) + * [MXNet](MXNet.md) + * [MyCC](MyCC.md) + * [mygene](mygene.md) + * [MyMediaLite](MyMediaLite.md) + * [mympingpong](mympingpong.md) + * [Myokit](Myokit.md) + * [mypy](mypy.md) + * [MySQL](MySQL.md) + * [MySQL-python](MySQL-python.md) + * [mysqlclient](mysqlclient.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - *m* - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/m4ri.md b/docs/version-specific/supported-software/m/m4ri.md new file mode 100644 index 000000000..f76ff2571 --- /dev/null +++ b/docs/version-specific/supported-software/m/m4ri.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# m4ri + +M4RI is a library for fast arithmetic with dense matrices over F2. + +*homepage*: + +version | toolchain +--------|---------- +``20200125`` | ``GCC/11.3.0`` +``20200125`` | ``GCC/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/m4rie.md b/docs/version-specific/supported-software/m/m4rie.md new file mode 100644 index 000000000..9aa8bf3ff --- /dev/null +++ b/docs/version-specific/supported-software/m/m4rie.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# m4rie + +M4RIE is a library for fast arithmetic with dense matrices. + +*homepage*: + +version | toolchain +--------|---------- +``20200125`` | ``GCC/11.3.0`` +``20200125`` | ``GCC/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/maeparser.md b/docs/version-specific/supported-software/m/maeparser.md new file mode 100644 index 000000000..9c525c22f --- /dev/null +++ b/docs/version-specific/supported-software/m/maeparser.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# maeparser + +maeparser is a parser for Schrodinger Maestro files. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.2`` | ``gompi/2019a`` +``1.2.2`` | ``iimpi/2019a`` +``1.3.0`` | ``gompi/2019b`` +``1.3.0`` | ``gompi/2021a`` +``1.3.0`` | ``gompi/2022a`` +``1.3.0`` | ``iimpi/2020a`` +``1.3.1`` | ``gompi/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/magick.md b/docs/version-specific/supported-software/m/magick.md new file mode 100644 index 000000000..9a3ef986e --- /dev/null +++ b/docs/version-specific/supported-software/m/magick.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# magick + +R bindings to the open-source image processing library ImageMagick + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0`` | ``-R-3.5.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/magma.md b/docs/version-specific/supported-software/m/magma.md new file mode 100644 index 000000000..f9e894e7a --- /dev/null +++ b/docs/version-specific/supported-software/m/magma.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# magma + +The MAGMA project aims to develop a dense linear algebra library similar to LAPACK but for heterogeneous/hybrid architectures, starting with current Multicore+GPU systems. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.3.0`` | ``-CUDA-9.1.85`` | ``foss/2018a`` +``2.3.0`` | | ``fosscuda/2017b`` +``2.3.0`` | | ``intelcuda/2017b`` +``2.4.0`` | | ``fosscuda/2018b`` +``2.5.0`` | | ``fosscuda/2018b`` +``2.5.1`` | | ``fosscuda/2019a`` +``2.5.1`` | | ``fosscuda/2019b`` +``2.5.4`` | | ``fosscuda/2019a`` +``2.5.4`` | | ``fosscuda/2019b`` +``2.5.4`` | | ``fosscuda/2020a`` +``2.5.4`` | | ``fosscuda/2020b`` +``2.5.4`` | | ``intelcuda/2019b`` +``2.5.4`` | | ``intelcuda/2020b`` +``2.6.1`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``2.6.2`` | ``-CUDA-11.4.1`` | ``foss/2021b`` +``2.6.2`` | ``-CUDA-11.5.2`` | ``foss/2021b`` +``2.6.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``2.7.1`` | ``-CUDA-11.7.0`` | ``foss/2022b`` +``2.7.1`` | ``-CUDA-12.0.0`` | ``foss/2022b`` +``2.7.2`` | ``-CUDA-12.1.1`` | ``foss/2023a`` +``2.7.2`` | ``-CUDA-12.4.0`` | ``foss/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mahotas.md b/docs/version-specific/supported-software/m/mahotas.md new file mode 100644 index 000000000..9417b1bac --- /dev/null +++ b/docs/version-specific/supported-software/m/mahotas.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# mahotas + +Mahotas is a computer vision and image processing library for Python + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4.13`` | | ``foss/2022a`` +``1.4.3`` | ``-Python-2.7.12`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/make.md b/docs/version-specific/supported-software/m/make.md new file mode 100644 index 000000000..a5ab9f328 --- /dev/null +++ b/docs/version-specific/supported-software/m/make.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# make + +make-3.82: GNU version of make utility + +*homepage*: + +version | toolchain +--------|---------- +``3.82`` | ``GCC/4.8.2`` +``4.1`` | ``GCC/4.9.2`` +``4.2.1`` | ``GCC/7.3.0-2.30`` +``4.2.1`` | ``GCCcore/8.3.0`` +``4.3`` | ``GCCcore/10.2.0`` +``4.3`` | ``GCCcore/10.3.0`` +``4.3`` | ``GCCcore/11.2.0`` +``4.3`` | ``GCCcore/11.3.0`` +``4.3`` | ``GCCcore/12.2.0`` +``4.3`` | ``GCCcore/9.3.0`` +``4.4.1`` | ``GCCcore/12.2.0`` +``4.4.1`` | ``GCCcore/12.3.0`` +``4.4.1`` | ``GCCcore/13.2.0`` +``4.4.1`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/makedepend.md b/docs/version-specific/supported-software/m/makedepend.md new file mode 100644 index 000000000..dcee11d74 --- /dev/null +++ b/docs/version-specific/supported-software/m/makedepend.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# makedepend + +The makedepend package contains a C-preprocessor like utility to determine build-time dependencies. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.5`` | ``GCCcore/6.3.0`` +``1.0.5`` | ``GCCcore/6.4.0`` +``1.0.5`` | ``foss/2016a`` +``1.0.5`` | ``gimkl/2.11.5`` +``1.0.5`` | ``intel/2016a`` +``1.0.6`` | ``GCCcore/10.2.0`` +``1.0.6`` | ``GCCcore/10.3.0`` +``1.0.6`` | ``GCCcore/7.3.0`` +``1.0.6`` | ``GCCcore/8.3.0`` +``1.0.6`` | ``GCCcore/9.3.0`` +``1.0.7`` | ``GCCcore/11.3.0`` +``1.0.7`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/makedepf90.md b/docs/version-specific/supported-software/m/makedepf90.md new file mode 100644 index 000000000..d203ca589 --- /dev/null +++ b/docs/version-specific/supported-software/m/makedepf90.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# makedepf90 + +Makedepf90 is a program for automatic creation of Makefile-style dependency lists for Fortran source code. + +*homepage*: + +version | toolchain +--------|---------- +``2.8.8`` | ``foss/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/makefun.md b/docs/version-specific/supported-software/m/makefun.md new file mode 100644 index 000000000..72510d901 --- /dev/null +++ b/docs/version-specific/supported-software/m/makefun.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# makefun + +Small library to dynamically create python functions. makefun helps you create functions dynamically, with the signature of your choice. It was largely inspired by decorator and functools, and created mainly to cover some of their limitations. + +*homepage*: + +version | toolchain +--------|---------- +``1.15.2`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/makeinfo.md b/docs/version-specific/supported-software/m/makeinfo.md new file mode 100644 index 000000000..204058f2e --- /dev/null +++ b/docs/version-specific/supported-software/m/makeinfo.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# makeinfo + +makeinfo is part of the Texinfo project, the official documentation format of the GNU project. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``6.7`` | | ``FCC/4.5.0`` +``6.7`` | ``-minimal`` | ``GCCcore/10.2.0`` +``6.7`` | | ``GCCcore/10.2.0`` +``6.7`` | ``-minimal`` | ``GCCcore/10.3.0`` +``6.7`` | | ``GCCcore/10.3.0`` +``6.7`` | ``-minimal`` | ``GCCcore/8.3.0`` +``6.7`` | | ``GCCcore/8.3.0`` +``6.7`` | ``-minimal`` | ``GCCcore/9.3.0`` +``6.7`` | | ``GCCcore/9.3.0`` +``6.8`` | | ``GCCcore/11.2.0`` +``6.8`` | | ``GCCcore/11.3.0`` +``7.0.3`` | | ``GCCcore/12.2.0`` +``7.0.3`` | | ``GCCcore/12.3.0`` +``7.1`` | | ``GCCcore/13.2.0`` +``7.1`` | | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mandrake.md b/docs/version-specific/supported-software/m/mandrake.md new file mode 100644 index 000000000..74a653b49 --- /dev/null +++ b/docs/version-specific/supported-software/m/mandrake.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# mandrake + +Fast visualisation of the population structure of pathogens using Stochastic Cluster Embedding. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.2`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mannkendall.md b/docs/version-specific/supported-software/m/mannkendall.md new file mode 100644 index 000000000..b2abe8ad8 --- /dev/null +++ b/docs/version-specific/supported-software/m/mannkendall.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# mannkendall + +A python package for non parametric Mann Kendall family of trend tests. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/manta.md b/docs/version-specific/supported-software/m/manta.md new file mode 100644 index 000000000..54dd19825 --- /dev/null +++ b/docs/version-specific/supported-software/m/manta.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# manta + +Manta calls structural variants (SVs) and indels from mapped paired-end sequencing reads. It is optimized for analysis of germline variation in small sets of individuals and somatic variation in tumor/normal sample pairs. Manta discovers, assembles and scores large-scale SVs, medium-sized indels and large insertions within a single efficient workflow. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.1`` | | ``system`` +``1.6.0`` | ``-Python-2.7.18`` | ``GCC/10.2.0`` +``1.6.0`` | ``-Python-2.7.16`` | ``gompi/2019b`` +``1.6.0`` | ``-Python-2.7.18`` | ``gompi/2020a`` +``1.6.0`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mapDamage.md b/docs/version-specific/supported-software/m/mapDamage.md new file mode 100644 index 000000000..4c7b44091 --- /dev/null +++ b/docs/version-specific/supported-software/m/mapDamage.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# mapDamage + +mapDamage2 is a computational framework written in Python and R, which tracks and quantifies DNA damage patterns among ancient DNA sequencing reads generated by Next-Generation Sequencing platforms. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.1`` | ``-R-4.0.4`` | ``foss/2020b`` +``2.2.1`` | ``-R-4.1.0`` | ``foss/2021a`` +``2.2.1`` | | ``foss/2021b`` +``2.2.1`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/matlab-proxy.md b/docs/version-specific/supported-software/m/matlab-proxy.md new file mode 100644 index 000000000..f67b3e8d4 --- /dev/null +++ b/docs/version-specific/supported-software/m/matlab-proxy.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# matlab-proxy + +A Python package which enables you to launch MATLAB and access it from a web browser. + +*homepage*: + +version | toolchain +--------|---------- +``0.18.1`` | ``GCCcore/12.3.0`` +``0.5.4`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/matplotlib-inline.md b/docs/version-specific/supported-software/m/matplotlib-inline.md new file mode 100644 index 000000000..daadb4904 --- /dev/null +++ b/docs/version-specific/supported-software/m/matplotlib-inline.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# matplotlib-inline + +Matplotlib Inline Back-end for IPython and Jupyter. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.3`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/matplotlib.md b/docs/version-specific/supported-software/m/matplotlib.md new file mode 100644 index 000000000..9d7839663 --- /dev/null +++ b/docs/version-specific/supported-software/m/matplotlib.md @@ -0,0 +1,112 @@ +--- +search: + boost: 0.5 +--- +# matplotlib + +matplotlib is a python 2D plotting library which produces publication quality figures in a variety of hardcopy formats and interactive environments across platforms. matplotlib can be used in python scripts, the python and ipython shell, web application servers, and six graphical user interface toolkits. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4.3`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.5.1`` | ``-Python-2.7.11-freetype-2.6.3`` | ``foss/2016a`` +``1.5.1`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.5.1`` | ``-Python-3.5.1`` | ``foss/2016a`` +``1.5.1`` | ``-Python-2.7.11-freetype-2.6.3`` | ``intel/2016a`` +``1.5.1`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.5.1`` | ``-Python-3.5.1`` | ``intel/2016a`` +``1.5.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.5.1`` | ``-Python-3.5.2`` | ``intel/2016b`` +``1.5.2`` | ``-Python-2.7.12`` | ``foss/2016b`` +``1.5.2`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.5.2`` | ``-Python-3.5.2`` | ``intel/2016b`` +``1.5.3`` | ``-Python-2.7.12`` | ``foss/2016b`` +``1.5.3`` | ``-Python-3.5.2`` | ``foss/2016b`` +``1.5.3`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.5.3`` | ``-Python-3.5.2`` | ``intel/2016b`` +``2.0.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2.0.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2.0.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``2.0.1`` | ``-Python-3.6.1`` | ``intel/2017a`` +``2.0.2`` | ``-Python-2.7.13`` | ``foss/2017a`` +``2.0.2`` | ``-Python-3.6.1`` | ``foss/2017a`` +``2.0.2`` | ``-Python-2.7.13-Qt-4.8.7`` | ``intel/2017a`` +``2.0.2`` | ``-Python-2.7.13-libpng-1.6.29`` | ``intel/2017a`` +``2.0.2`` | ``-Python-2.7.13`` | ``intel/2017a`` +``2.0.2`` | ``-Python-3.6.1-libpng-1.6.29`` | ``intel/2017a`` +``2.1.0`` | ``-Python-2.7.14`` | ``foss/2017b`` +``2.1.0`` | ``-Python-3.6.2`` | ``foss/2017b`` +``2.1.0`` | ``-Python-3.6.3`` | ``foss/2017b`` +``2.1.0`` | ``-Python-2.7.14`` | ``fosscuda/2017b`` +``2.1.0`` | ``-Python-3.6.3`` | ``fosscuda/2017b`` +``2.1.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.1.0`` | ``-Python-3.6.3`` | ``intel/2017b`` +``2.1.0`` | ``-Python-2.7.14`` | ``intelcuda/2017b`` +``2.1.0`` | ``-Python-3.6.3`` | ``intelcuda/2017b`` +``2.1.1`` | ``-Python-3.6.3`` | ``foss/2017b`` +``2.1.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.1.1`` | ``-Python-3.6.3`` | ``intel/2017b`` +``2.1.2`` | ``-Python-2.7.14`` | ``foss/2018a`` +``2.1.2`` | ``-Python-3.6.4`` | ``foss/2018a`` +``2.1.2`` | ``-Python-2.7.14`` | ``intel/2018a`` +``2.1.2`` | ``-Python-3.6.4`` | ``intel/2018a`` +``2.1.2`` | ``-Python-3.6.4`` | ``iomkl/2018.02`` +``2.1.2`` | ``-Python-3.6.4`` | ``iomkl/2018a`` +``2.2.3`` | ``-Python-2.7.15`` | ``foss/2018b`` +``2.2.3`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``2.2.3`` | ``-Python-2.7.15`` | ``intel/2018b`` +``2.2.3`` | ``-Python-3.6.6`` | ``intel/2018b`` +``2.2.4`` | ``-Python-2.7.15`` | ``foss/2019a`` +``2.2.4`` | ``-Python-2.7.16`` | ``foss/2019b`` +``2.2.4`` | ``-Python-2.7.15`` | ``fosscuda/2019a`` +``2.2.4`` | ``-Python-2.7.16`` | ``fosscuda/2019b`` +``2.2.4`` | ``-Python-2.7.15`` | ``intel/2019a`` +``2.2.4`` | ``-Python-2.7.16`` | ``intel/2019b`` +``2.2.4`` | ``-Python-2.7.15`` | ``intelcuda/2019a`` +``2.2.5`` | ``-Python-2.7.16`` | ``foss/2019b`` +``2.2.5`` | ``-Python-2.7.18`` | ``foss/2020a`` +``2.2.5`` | ``-Python-2.7.18`` | ``foss/2020b`` +``2.2.5`` | ``-Python-2.7.18`` | ``foss/2021b`` +``2.2.5`` | ``-Python-2.7.18`` | ``fosscuda/2020a`` +``2.2.5`` | ``-Python-2.7.18`` | ``intel/2020a`` +``3.0.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``3.0.0`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``3.0.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``3.0.0`` | ``-Python-3.6.6`` | ``iomkl/2018b`` +``3.0.2`` | ``-Python-3.6.6`` | ``foss/2018b`` +``3.0.3`` | ``-Python-3.7.2`` | ``foss/2019a`` +``3.0.3`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` +``3.0.3`` | ``-Python-3.7.2`` | ``intel/2019a`` +``3.0.3`` | ``-Python-3.7.2`` | ``intelcuda/2019a`` +``3.1.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``3.1.1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``3.1.1`` | ``-Python-3.7.4`` | ``intel/2019b`` +``3.1.1`` | ``-Python-3.7.4`` | ``intelcuda/2019b`` +``3.2.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``3.2.1`` | ``-Python-3.8.2`` | ``fosscuda/2020a`` +``3.2.1`` | ``-Python-3.8.2`` | ``intel/2020a`` +``3.2.1`` | ``-Python-3.8.2`` | ``intelcuda/2020a`` +``3.3.3`` | | ``foss/2020b`` +``3.3.3`` | | ``fosscuda/2020b`` +``3.3.3`` | | ``intel/2020b`` +``3.3.3`` | | ``intelcuda/2020b`` +``3.4.2`` | | ``foss/2021a`` +``3.4.2`` | | ``gomkl/2021a`` +``3.4.2`` | | ``intel/2021a`` +``3.4.3`` | | ``foss/2021b`` +``3.4.3`` | | ``intel/2021b`` +``3.5.1`` | | ``foss/2020b`` +``3.5.1`` | | ``intel/2020b`` +``3.5.2`` | | ``foss/2021b`` +``3.5.2`` | | ``foss/2022a`` +``3.5.2`` | | ``intel/2022a`` +``3.7.0`` | | ``gfbf/2022b`` +``3.7.2`` | | ``gfbf/2023a`` +``3.7.2`` | | ``iimkl/2023a`` +``3.8.2`` | | ``gfbf/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/maturin.md b/docs/version-specific/supported-software/m/maturin.md new file mode 100644 index 000000000..4c08650cb --- /dev/null +++ b/docs/version-specific/supported-software/m/maturin.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# maturin + +This project is meant as a zero configuration replacement for setuptools-rust and milksnake. It supports building wheels for python 3.5+ on windows, linux, mac and freebsd, can upload them to pypi and has basic pypy and graalpy support. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.0`` | | ``GCCcore/12.2.0`` +``1.1.0`` | | ``GCCcore/12.3.0`` +``1.3.1`` | | ``GCCcore/13.2.0`` +``1.3.2`` | ``-Rust-1.65.0`` | ``GCCcore/11.3.0`` +``1.4.0`` | ``-Rust-1.75.0`` | ``GCCcore/12.2.0`` +``1.4.0`` | ``-Rust-1.75.0`` | ``GCCcore/12.3.0`` +``1.5.0`` | ``-Rust-1.76.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mauveAligner.md b/docs/version-specific/supported-software/m/mauveAligner.md new file mode 100644 index 000000000..55b1ba51f --- /dev/null +++ b/docs/version-specific/supported-software/m/mauveAligner.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# mauveAligner + +Mauve is a system for constructing multiple genome alignments in the presence of large-scale evolutionary events such as rearrangement and inversion. Multiple genome alignments provide a basis for research into comparative genomics and the study of genome-wide evolutionary dynamics. This version was built without Graphical User Interface. + +*homepage*: + +version | toolchain +--------|---------- +``4736`` | ``gompi/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mawk.md b/docs/version-specific/supported-software/m/mawk.md new file mode 100644 index 000000000..6454d9c71 --- /dev/null +++ b/docs/version-specific/supported-software/m/mawk.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# mawk + +mawk is an interpreter for the AWK Programming Language. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.4-20141206`` | ``GCC/4.9.2`` +``1.3.4-20171017`` | ``foss/2018a`` +``1.3.4-20171017`` | ``foss/2018b`` +``1.3.4-20171017`` | ``foss/2019a`` +``1.3.4-20171017`` | ``intel/2018a`` +``1.3.4-20171017`` | ``intel/2018b`` +``1.3.4-20171017`` | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mayavi.md b/docs/version-specific/supported-software/m/mayavi.md new file mode 100644 index 000000000..4bd6f17c6 --- /dev/null +++ b/docs/version-specific/supported-software/m/mayavi.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# mayavi + +The Mayavi scientific data 3-dimensional visualizer + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.4.4`` | ``-Python-2.7.11`` | ``intel/2016a`` +``4.6.2`` | ``-Python-3.6.6`` | ``foss/2018b`` +``4.7.1`` | ``-Python-2.7.15`` | ``foss/2019a`` +``4.7.1`` | ``-Python-3.7.2`` | ``foss/2019a`` +``4.7.4`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/maze.md b/docs/version-specific/supported-software/m/maze.md new file mode 100644 index 000000000..1edc3c5b4 --- /dev/null +++ b/docs/version-specific/supported-software/m/maze.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# maze + +In a similar manner to dot plots, maze highlights local sequence similarity between two DNA sequences. In particular, maximal exact substring matches are computed with MUMmer3 and visualised. + +*homepage*: + +version | toolchain +--------|---------- +``20170124`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mbuffer.md b/docs/version-specific/supported-software/m/mbuffer.md new file mode 100644 index 000000000..111a5a7b7 --- /dev/null +++ b/docs/version-specific/supported-software/m/mbuffer.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# mbuffer + +mbuffer is a tool for buffering data streams with a large set of unique features. + +*homepage*: + +version | toolchain +--------|---------- +``20191016`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mc.md b/docs/version-specific/supported-software/m/mc.md new file mode 100644 index 000000000..9dd373b34 --- /dev/null +++ b/docs/version-specific/supported-software/m/mc.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# mc + +mc-4.6.1: User-friendly file manager and visual shell + +*homepage*: + +version | toolchain +--------|---------- +``4.8.13`` | ``GCC/4.9.2`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mctc-lib.md b/docs/version-specific/supported-software/m/mctc-lib.md new file mode 100644 index 000000000..39d6a2881 --- /dev/null +++ b/docs/version-specific/supported-software/m/mctc-lib.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# mctc-lib + +Common tool chain for working with molecular structure data in various applications. This library provides a unified way to perform operations on molecular structure data, like reading and writing to common geometry file formats. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.1`` | ``GCC/11.3.0`` +``0.3.1`` | ``GCC/12.2.0`` +``0.3.1`` | ``intel-compilers/2022.1.0`` +``0.3.1`` | ``intel-compilers/2022.2.1`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mcu.md b/docs/version-specific/supported-software/m/mcu.md new file mode 100644 index 000000000..f84a7369e --- /dev/null +++ b/docs/version-specific/supported-software/m/mcu.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# mcu + +A package for periodic wavefunction and crystallography analysis. mcu is designed to support large scale analysis and topological descriptions for periodic wavefunction. + +*homepage*: + +version | toolchain +--------|---------- +``2021-04-06`` | ``gomkl/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mdtest.md b/docs/version-specific/supported-software/m/mdtest.md new file mode 100644 index 000000000..38b327b7c --- /dev/null +++ b/docs/version-specific/supported-software/m/mdtest.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# mdtest + +mdtest is an MPI-coordinated metadata benchmark test that performs open/stat/close operations on files and directories and then reports the performance. + +*homepage*: + +version | toolchain +--------|---------- +``1.9.3`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mdust.md b/docs/version-specific/supported-software/m/mdust.md new file mode 100644 index 000000000..54efe4c67 --- /dev/null +++ b/docs/version-specific/supported-software/m/mdust.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# mdust + +mdust from DFCI Gene Indices Software Tools (archived for a historical record only) + +*homepage*: + +version | toolchain +--------|---------- +``20150102`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/meRanTK.md b/docs/version-specific/supported-software/m/meRanTK.md new file mode 100644 index 000000000..8f654e053 --- /dev/null +++ b/docs/version-specific/supported-software/m/meRanTK.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# meRanTK + +meRanTK is a versatile high performance toolkit for complete analysis of methylated RNA data. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1b`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/meboot.md b/docs/version-specific/supported-software/m/meboot.md new file mode 100644 index 000000000..4130b3eeb --- /dev/null +++ b/docs/version-specific/supported-software/m/meboot.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# meboot + +Maximum entropy density based dependent data bootstrap. An algorithm is provided to create a population of time series (ensemble) without assuming stationarity. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4-9.2`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/medImgProc.md b/docs/version-specific/supported-software/m/medImgProc.md new file mode 100644 index 000000000..ba00e804f --- /dev/null +++ b/docs/version-specific/supported-software/m/medImgProc.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# medImgProc + +Motion correction, explicit spatio-temporal regularization of motion tracking, random speckles enhancement, and segmentation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.5.7`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/medaka.md b/docs/version-specific/supported-software/m/medaka.md new file mode 100644 index 000000000..a1b4d4675 --- /dev/null +++ b/docs/version-specific/supported-software/m/medaka.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# medaka + +medaka is a tool to create a consensus sequence from nanopore sequencing data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.11.4`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.12.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.4.3`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.1.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.1.3`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.11.3`` | | ``foss/2022a`` +``1.11.3`` | | ``foss/2023a`` +``1.2.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.4.3`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.4.3`` | | ``foss/2020b`` +``1.5.0`` | | ``foss/2021a`` +``1.6.0`` | | ``foss/2021b`` +``1.8.1`` | | ``foss/2022a`` +``1.9.1`` | | ``foss/2022a`` +``1.9.1`` | | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/memkind.md b/docs/version-specific/supported-software/m/memkind.md new file mode 100644 index 000000000..8b0c0d576 --- /dev/null +++ b/docs/version-specific/supported-software/m/memkind.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# memkind + +User Extensible Heap Manager built on top of jemalloc which enables control of memory characteristics and a partitioning of the heap between kinds of memory. + +*homepage*: + +version | toolchain +--------|---------- +``1.5.0`` | ``GCCcore/5.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/memory-profiler.md b/docs/version-specific/supported-software/m/memory-profiler.md new file mode 100644 index 000000000..e7824bb82 --- /dev/null +++ b/docs/version-specific/supported-software/m/memory-profiler.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# memory-profiler + +memory-profiler is a Python module for monitoring memory consumption of a process as well as line-by-line analysis of memory consumption for python programs. + +*homepage*: + +version | toolchain +--------|---------- +``0.55.0`` | ``foss/2019a`` +``0.55.0`` | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/memtester.md b/docs/version-specific/supported-software/m/memtester.md new file mode 100644 index 000000000..0439f8470 --- /dev/null +++ b/docs/version-specific/supported-software/m/memtester.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# memtester + +A userspace utility for testing the memory subsystem for faults + +*homepage*: + +version | toolchain +--------|---------- +``4.5.1`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/meshalyzer.md b/docs/version-specific/supported-software/m/meshalyzer.md new file mode 100644 index 000000000..6e846f670 --- /dev/null +++ b/docs/version-specific/supported-software/m/meshalyzer.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# meshalyzer + +Graphical program for display time dependent data on 3D finite elment meshes + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2.2`` | | ``foss/2020b`` +``20200308`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/meshio.md b/docs/version-specific/supported-software/m/meshio.md new file mode 100644 index 000000000..f68395bc2 --- /dev/null +++ b/docs/version-specific/supported-software/m/meshio.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# meshio + +meshio is a tool for reading/writing various mesh formats representing unstructured meshes + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.7.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2.0.2`` | ``-Python-2.7.14`` | ``intel/2018a`` +``2.0.2`` | ``-Python-3.6.4`` | ``intel/2018a`` +``5.3.4`` | | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/meshtool.md b/docs/version-specific/supported-software/m/meshtool.md new file mode 100644 index 000000000..d61327312 --- /dev/null +++ b/docs/version-specific/supported-software/m/meshtool.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# meshtool + +Meshtool is a comand-line tool written in C++. It is designed to apply various manipulations to volumetric meshes. + +*homepage*: + +version | toolchain +--------|---------- +``16`` | ``GCC/10.2.0`` +``16`` | ``GCC/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/meson-python.md b/docs/version-specific/supported-software/m/meson-python.md new file mode 100644 index 000000000..c7ac42b64 --- /dev/null +++ b/docs/version-specific/supported-software/m/meson-python.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# meson-python + +Python build backend (PEP 517) for Meson projects + +*homepage*: + +version | toolchain +--------|---------- +``0.11.0`` | ``GCCcore/12.2.0`` +``0.13.2`` | ``GCCcore/12.3.0`` +``0.15.0`` | ``GCCcore/12.3.0`` +``0.15.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/metaWRAP.md b/docs/version-specific/supported-software/m/metaWRAP.md new file mode 100644 index 000000000..29c2c7beb --- /dev/null +++ b/docs/version-specific/supported-software/m/metaWRAP.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# metaWRAP + +MetaWRAP aims to be an easy-to-use metagenomic wrapper suite that accomplishes the core tasks of metagenomic analysis from start to finish: read quality control, assembly, visualization, taxonomic profiling, extracting draft genomes (binning), and functional annotation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.2.2`` | ``-Python-2.7.15`` | ``foss/2019a`` +``1.3`` | ``-Python-2.7.18`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/metaerg.md b/docs/version-specific/supported-software/m/metaerg.md new file mode 100644 index 000000000..e68bac2ba --- /dev/null +++ b/docs/version-specific/supported-software/m/metaerg.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# metaerg + +MetaErg is a stand-alone and fully automated metagenomic and metaproteomic data annotation pipeline. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.3`` | ``-Python-2.7.16`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/methylartist.md b/docs/version-specific/supported-software/m/methylartist.md new file mode 100644 index 000000000..42256ca32 --- /dev/null +++ b/docs/version-specific/supported-software/m/methylartist.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# methylartist + +Tools for plotting methylation data in various ways + +*homepage*: + +version | toolchain +--------|---------- +``1.2.6`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/methylpy.md b/docs/version-specific/supported-software/m/methylpy.md new file mode 100644 index 000000000..ea2a3e532 --- /dev/null +++ b/docs/version-specific/supported-software/m/methylpy.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# methylpy + +Bisulfite sequencing data processing and differential methylation analysis. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.9`` | ``-Python-2.7.13`` | ``foss/2017a`` +``1.2.9`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mfqe.md b/docs/version-specific/supported-software/m/mfqe.md new file mode 100644 index 000000000..f96ce46e4 --- /dev/null +++ b/docs/version-specific/supported-software/m/mfqe.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# mfqe + +extract one or more sets of reads from a FASTQ (or FASTA) file by specifying their read names. + +*homepage*: + +version | toolchain +--------|---------- +``0.5.0`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mgen.md b/docs/version-specific/supported-software/m/mgen.md new file mode 100644 index 000000000..6cbe99b89 --- /dev/null +++ b/docs/version-specific/supported-software/m/mgen.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# mgen + +Convenient matrix generation functions + +*homepage*: + +version | toolchain +--------|---------- +``1.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mgltools.md b/docs/version-specific/supported-software/m/mgltools.md new file mode 100644 index 000000000..d419e5e24 --- /dev/null +++ b/docs/version-specific/supported-software/m/mgltools.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# mgltools + +The MGLTools software suite can be used for visualization and analysis of molecular structures and comprises the Python Molecular Viewer (PMV, a general purpose molecular viewer), AutoDockTools (ADT, a set of PMV commands specifically developed to support AutoDock users) and Vision (a visual programming environment). + +*homepage*: + +version | toolchain +--------|---------- +``1.5.7`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mhcflurry.md b/docs/version-specific/supported-software/m/mhcflurry.md new file mode 100644 index 000000000..4424c641a --- /dev/null +++ b/docs/version-specific/supported-software/m/mhcflurry.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# mhcflurry + +MHCflurry implements class I peptide/MHC binding affinity prediction. By default it supports 112 MHC alleles using ensembles of allele-specific models. Pan-allele predictors supporting virtually any MHC allele of known sequence are available for testing (see below). MHCflurry runs on Python 2.7 and 3.4+ using the keras neural network library. It exposes command-line and Python library interfaces. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.4`` | ``-Python-3.7.2`` | ``foss/2019a`` +``1.2.4`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mhcnuggets.md b/docs/version-specific/supported-software/m/mhcnuggets.md new file mode 100644 index 000000000..4e555a90a --- /dev/null +++ b/docs/version-specific/supported-software/m/mhcnuggets.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# mhcnuggets + +MHCnuggets: Neoantigen peptide MHC binding prediction for class I and II. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.3`` | ``-Python-3.7.2`` | ``foss/2019a`` +``2.3`` | | ``foss/2020b`` +``2.3`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` +``2.3`` | | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/miRDeep2.md b/docs/version-specific/supported-software/m/miRDeep2.md new file mode 100644 index 000000000..ef06dbde2 --- /dev/null +++ b/docs/version-specific/supported-software/m/miRDeep2.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# miRDeep2 + +miRDeep2 is a completely overhauled tool which discovers microRNA genes by analyzing sequenced RNAs + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``2.0.0.8`` | | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/microctools.md b/docs/version-specific/supported-software/m/microctools.md new file mode 100644 index 000000000..c0233427f --- /dev/null +++ b/docs/version-specific/supported-software/m/microctools.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# microctools + +Various worker functions for microclimc package + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.0-20201209`` | ``-R-4.0.4`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mimalloc.md b/docs/version-specific/supported-software/m/mimalloc.md new file mode 100644 index 000000000..15c013691 --- /dev/null +++ b/docs/version-specific/supported-software/m/mimalloc.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# mimalloc + +mimalloc is a general purpose allocator with excellent performance characteristics. + +*homepage*: + +version | toolchain +--------|---------- +``1.7.2`` | ``GCCcore/10.3.0`` +``1.7.2`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/miniasm.md b/docs/version-specific/supported-software/m/miniasm.md new file mode 100644 index 000000000..67768b9e2 --- /dev/null +++ b/docs/version-specific/supported-software/m/miniasm.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# miniasm + +Miniasm is a very fast OLC-based de novo assembler for noisy long reads. It takes all-vs-all read self-mappings (typically by minimap) as input and outputs an assembly graph in the GFA format. Different from mainstream assemblers, miniasm does not have a consensus step. It simply concatenates pieces of read sequences to generate the final unitig sequences. Thus the per-base error rate is similar to the raw input reads. + +*homepage*: + +version | toolchain +--------|---------- +``0.3-20191007`` | ``GCCcore/10.3.0`` +``0.3-20191007`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/minibar.md b/docs/version-specific/supported-software/m/minibar.md new file mode 100644 index 000000000..4ba07246e --- /dev/null +++ b/docs/version-specific/supported-software/m/minibar.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# minibar + +Dual barcode and primer demultiplexing for MinION sequenced reads + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20200326`` | ``-Python-3.7.4`` | ``iccifort/2019.5.281`` +``20200326`` | ``-Python-3.8.2`` | ``iccifort/2020.1.217`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/minieigen.md b/docs/version-specific/supported-software/m/minieigen.md new file mode 100644 index 000000000..31749fe6e --- /dev/null +++ b/docs/version-specific/supported-software/m/minieigen.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# minieigen + +A small wrapper for core parts of EIgen, c++ library for linear algebra. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.5.3`` | ``-Python-2.7.11`` | ``foss/2016a`` +``0.5.3`` | ``-Python-2.7.12`` | ``foss/2016b`` +``0.5.3`` | ``-Python-2.7.11`` | ``intel/2016a`` +``0.5.3`` | ``-Python-2.7.12-Boost-1.63.0`` | ``intel/2016b`` +``0.5.3`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.5.4`` | ``-Python-2.7.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/minimap2.md b/docs/version-specific/supported-software/m/minimap2.md new file mode 100644 index 000000000..d2aca80c6 --- /dev/null +++ b/docs/version-specific/supported-software/m/minimap2.md @@ -0,0 +1,32 @@ +--- +search: + boost: 0.5 +--- +# minimap2 + +Minimap2 is a fast sequence mapping and alignment program that can find overlaps between long noisy reads, or map long reads or their assemblies to a reference genome optionally with detailed alignment (i.e. CIGAR). At present, it works efficiently with query sequences from a few kilobases to ~100 megabases in length at an error rate ~15%. Minimap2 outputs in the PAF or the SAM format. On limited test data sets, minimap2 is over 20 times faster than most other long-read aligners. It will replace BWA-MEM for long reads and contig alignment. + +*homepage*: + +version | toolchain +--------|---------- +``2.0rc1`` | ``foss/2016b`` +``2.10`` | ``foss/2018a`` +``2.11`` | ``intel/2018a`` +``2.12`` | ``foss/2018a`` +``2.13`` | ``foss/2018b`` +``2.17`` | ``GCC/8.2.0-2.31.1`` +``2.17`` | ``GCC/8.3.0`` +``2.17`` | ``GCCcore/9.3.0`` +``2.18`` | ``GCCcore/10.2.0`` +``2.20`` | ``GCCcore/10.2.0`` +``2.20`` | ``GCCcore/10.3.0`` +``2.22`` | ``GCCcore/11.2.0`` +``2.24`` | ``GCCcore/11.2.0`` +``2.24`` | ``GCCcore/11.3.0`` +``2.26`` | ``GCCcore/12.2.0`` +``2.26`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/minizip.md b/docs/version-specific/supported-software/m/minizip.md new file mode 100644 index 000000000..09bf1ef7f --- /dev/null +++ b/docs/version-specific/supported-software/m/minizip.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# minizip + +Mini zip and unzip based on zlib + +*homepage*: + +version | toolchain +--------|---------- +``1.1`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/misha.md b/docs/version-specific/supported-software/m/misha.md new file mode 100644 index 000000000..2ec440f07 --- /dev/null +++ b/docs/version-specific/supported-software/m/misha.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# misha + +The misha package is intended to help users to efficiently analyze genomic data achieved from various experiments. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.0.10`` | ``-R-4.0.0`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mkl-dnn.md b/docs/version-specific/supported-software/m/mkl-dnn.md new file mode 100644 index 000000000..dcb7bd548 --- /dev/null +++ b/docs/version-specific/supported-software/m/mkl-dnn.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# mkl-dnn + +Intel(R) Math Kernel Library for Deep Neural Networks (Intel(R) MKL-DNN) + +*homepage*: + +version | toolchain +--------|---------- +``0.11`` | ``intel/2017b`` +``0.13`` | ``intel/2018a`` +``0.16`` | ``foss/2018b`` +``0.16`` | ``intel/2018b`` +``0.17.2`` | ``foss/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mkl-service.md b/docs/version-specific/supported-software/m/mkl-service.md new file mode 100644 index 000000000..a5642a8dc --- /dev/null +++ b/docs/version-specific/supported-software/m/mkl-service.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# mkl-service + +Python hooks for Intel(R) Math Kernel Library runtime control settings. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.2`` | | ``intel/2019a`` +``2.3.0`` | ``-Python-3.7.4`` | ``intel/2019b`` +``2.3.0`` | | ``intel/2020b`` +``2.3.0`` | | ``intel/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mkl_fft.md b/docs/version-specific/supported-software/m/mkl_fft.md new file mode 100644 index 000000000..8a4624e06 --- /dev/null +++ b/docs/version-specific/supported-software/m/mkl_fft.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# mkl_fft + +NumPy-based Python interface to Intel(R) MKL FFT functionality + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.14`` | ``-Python-3.6.6`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/ml-collections.md b/docs/version-specific/supported-software/m/ml-collections.md new file mode 100644 index 000000000..8cd58ca94 --- /dev/null +++ b/docs/version-specific/supported-software/m/ml-collections.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ml-collections + +ML Collections is a library of Python Collections designed for ML use cases. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/ml_dtypes.md b/docs/version-specific/supported-software/m/ml_dtypes.md new file mode 100644 index 000000000..a3cf9599a --- /dev/null +++ b/docs/version-specific/supported-software/m/ml_dtypes.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ml_dtypes + +ml_dtypes is a stand-alone implementation of several NumPy dtype extensions used in machine learning libraries, including: bfloat16: an alternative to the standard float16 format float8_*: several experimental 8-bit floating point representations including: float8_e4m3b11fnuz float8_e4m3fn float8_e4m3fnuz float8_e5m2 float8_e5m2fnuz + +*homepage*: + +version | toolchain +--------|---------- +``0.3.2`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mlpack.md b/docs/version-specific/supported-software/m/mlpack.md new file mode 100644 index 000000000..f07ec3d4d --- /dev/null +++ b/docs/version-specific/supported-software/m/mlpack.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# mlpack + +mlpack is a fast, header-only C++ machine learning library written in C++ and built on the Armadillo linear algebra library, the ensmallen numerical optimization library, and the cereal serialization library. + +*homepage*: + +version | toolchain +--------|---------- +``4.3.0`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mm-common.md b/docs/version-specific/supported-software/m/mm-common.md new file mode 100644 index 000000000..077384b44 --- /dev/null +++ b/docs/version-specific/supported-software/m/mm-common.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# mm-common + +The mm-common module provides the build infrastructure and utilities shared among the GNOME C++ binding libraries. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.4`` | ``GCCcore/10.3.0`` +``1.0.5`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mmtf-cpp.md b/docs/version-specific/supported-software/m/mmtf-cpp.md new file mode 100644 index 000000000..2d9c6e887 --- /dev/null +++ b/docs/version-specific/supported-software/m/mmtf-cpp.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# mmtf-cpp + +The Macromolecular Transmission Format (MMTF) is a new compact binary format to transmit and store biomolecular structures for fast 3D visualization and analysis. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/modred.md b/docs/version-specific/supported-software/m/modred.md new file mode 100644 index 000000000..72482d17d --- /dev/null +++ b/docs/version-specific/supported-software/m/modred.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# modred + +Compute modal decompositions and reduced-order models, easily, efficiently, and in parallel. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.2`` | ``-Python-3.5.2`` | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mold.md b/docs/version-specific/supported-software/m/mold.md new file mode 100644 index 000000000..9363a0070 --- /dev/null +++ b/docs/version-specific/supported-software/m/mold.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# mold + +mold is a high-performance drop-in replacement for existing Unix linkers. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.6`` | ``GCCcore/11.2.0`` +``1.0.0`` | ``GCCcore/11.2.0`` +``1.11.0`` | ``GCCcore/12.3.0`` +``1.2.1`` | ``GCCcore/11.3.0`` +``1.3.0`` | ``GCCcore/11.3.0`` +``1.7.1`` | ``GCCcore/12.2.0`` +``2.3.1`` | ``GCCcore/13.2.0`` +``2.31.0`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/molecularGSM.md b/docs/version-specific/supported-software/m/molecularGSM.md new file mode 100644 index 000000000..502ea57d8 --- /dev/null +++ b/docs/version-specific/supported-software/m/molecularGSM.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# molecularGSM + +Code for single-ended and double-ended molecular GSM. The growing string method is a reaction path and transition state finding method developed in c++. + +*homepage*: + +version | toolchain +--------|---------- +``20190826`` | ``intel/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/molmod.md b/docs/version-specific/supported-software/m/molmod.md new file mode 100644 index 000000000..9d8cb5ba6 --- /dev/null +++ b/docs/version-specific/supported-software/m/molmod.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# molmod + +MolMod is a Python library with many compoments that are useful to write molecular modeling programs. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.1`` | ``-Python-2.7.13`` | ``intel/2017a`` +``1.4.3`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.4.3`` | ``-Python-3.6.3`` | ``intel/2017b`` +``1.4.4`` | ``-Python-2.7.14`` | ``foss/2018a`` +``1.4.4`` | ``-Python-2.7.14`` | ``intel/2018a`` +``1.4.4`` | ``-Python-2.7.15`` | ``intel/2018b`` +``1.4.4`` | ``-Python-3.7.2`` | ``intel/2019a`` +``1.4.5`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.4.5`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.4.5`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.4.5`` | ``-Python-3.8.2`` | ``intel/2020a`` +``1.4.8`` | | ``foss/2020b`` +``1.4.8`` | | ``foss/2021a`` +``1.4.8`` | | ``foss/2021b`` +``1.4.8`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mongolite.md b/docs/version-specific/supported-software/m/mongolite.md new file mode 100644 index 000000000..f933307fd --- /dev/null +++ b/docs/version-specific/supported-software/m/mongolite.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# mongolite + +High-performance MongoDB client based on 'mongo-c-driver' and 'jsonlite'. Includes support for aggregation, indexing, map-reduce, streaming, encryption, enterprise authentication, and GridFS. The online user manual provides an overview of the available methods in the package: . + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.3.0`` | ``-R-4.0.0`` | ``foss/2020a`` +``2.3.0`` | ``-R-4.0.3`` | ``foss/2020b`` +``2.3.0`` | ``-R-4.0.4`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/moonjit.md b/docs/version-specific/supported-software/m/moonjit.md new file mode 100644 index 000000000..41cd409d0 --- /dev/null +++ b/docs/version-specific/supported-software/m/moonjit.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# moonjit + +Moonjit is a Just-In-Time Compiler (JIT) for the Lua programming language. Lua is a powerful, dynamic and light-weight programming language. It may be embedded or used as a general-purpose, stand-alone language. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.0`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mordecai.md b/docs/version-specific/supported-software/m/mordecai.md new file mode 100644 index 000000000..f31730638 --- /dev/null +++ b/docs/version-specific/supported-software/m/mordecai.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# mordecai + +mordecai is a full text geoparsing as a Python library. Extract the place names from a piece of text, resolve them to the correct place, and return their coordinates and structured geographic information. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.1`` | ``-Python-3.6.4`` | ``foss/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/morphosamplers.md b/docs/version-specific/supported-software/m/morphosamplers.md new file mode 100644 index 000000000..5a5a22d8f --- /dev/null +++ b/docs/version-specific/supported-software/m/morphosamplers.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# morphosamplers + +A library for sampling image data along morphological objects such as splines and surfaces. + +*homepage*: + +version | toolchain +--------|---------- +``0.0.10`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mosdepth.md b/docs/version-specific/supported-software/m/mosdepth.md new file mode 100644 index 000000000..91f5f4aca --- /dev/null +++ b/docs/version-specific/supported-software/m/mosdepth.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# mosdepth + +Fast BAM/CRAM depth calculation for WGS, exome, or targeted sequencing + +*homepage*: + +version | toolchain +--------|---------- +``0.2.2`` | ``intel/2018a`` +``0.2.3`` | ``intel/2018a`` +``0.2.4`` | ``foss/2018b`` +``0.3.3`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/motif.md b/docs/version-specific/supported-software/m/motif.md new file mode 100644 index 000000000..56de1bbc0 --- /dev/null +++ b/docs/version-specific/supported-software/m/motif.md @@ -0,0 +1,34 @@ +--- +search: + boost: 0.5 +--- +# motif + +Motif refers to both a graphical user interface (GUI) specification and the widget toolkit for building applications that follow that specification under the X Window System on Unix and other POSIX-compliant systems. It was the standard toolkit for the Common Desktop Environment and thus for Unix. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.5`` | ``foss/2016a`` +``2.3.5`` | ``intel/2016a`` +``2.3.7`` | ``intel/2017a`` +``2.3.8`` | ``GCCcore/10.2.0`` +``2.3.8`` | ``GCCcore/10.3.0`` +``2.3.8`` | ``GCCcore/11.2.0`` +``2.3.8`` | ``GCCcore/11.3.0`` +``2.3.8`` | ``GCCcore/12.2.0`` +``2.3.8`` | ``GCCcore/12.3.0`` +``2.3.8`` | ``GCCcore/8.3.0`` +``2.3.8`` | ``GCCcore/9.3.0`` +``2.3.8`` | ``foss/2017b`` +``2.3.8`` | ``foss/2018a`` +``2.3.8`` | ``foss/2018b`` +``2.3.8`` | ``foss/2019a`` +``2.3.8`` | ``intel/2017b`` +``2.3.8`` | ``intel/2018a`` +``2.3.8`` | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/motionSegmentation.md b/docs/version-specific/supported-software/m/motionSegmentation.md new file mode 100644 index 000000000..f4e708c09 --- /dev/null +++ b/docs/version-specific/supported-software/m/motionSegmentation.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# motionSegmentation + +Motion correction, explicit spatio-temporal regularization of motion tracking, random speckles enhancement, and segmentation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.7.9`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mpath.md b/docs/version-specific/supported-software/m/mpath.md new file mode 100644 index 000000000..b09c526ce --- /dev/null +++ b/docs/version-specific/supported-software/m/mpath.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# mpath + +For now it's quit simple and get_path_info() method returns information about given path. It can be either a directory or a file path. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.3`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mpi4py.md b/docs/version-specific/supported-software/m/mpi4py.md new file mode 100644 index 000000000..d7626af17 --- /dev/null +++ b/docs/version-specific/supported-software/m/mpi4py.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# mpi4py + +MPI for Python (mpi4py) provides bindings of the Message Passing Interface (MPI) standard for the Python programming language, allowing any Python program to exploit multiple processors. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.1`` | ``-Python-2.7.11-timed-pingpong`` | ``intel/2016a`` +``1.3.1`` | ``-Python-2.7.12-timed-pingpong`` | ``intel/2016b`` +``2.0.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2.0.0`` | ``-Python-2.7.13-timed-pingpong`` | ``intel/2017a`` +``3.0.0`` | ``-Python-3.6.3`` | ``intel/2017b`` +``3.0.0`` | ``-Python-2.7.14-timed-pingpong`` | ``intel/2018a`` +``3.0.1`` | ``-Python-3.6.6`` | ``intel/2018b`` +``3.0.2`` | ``-timed-pingpong`` | ``gompi/2019a`` +``3.0.2`` | ``-timed-pingpong`` | ``iimpi/2019a`` +``3.1.4`` | | ``gompi/2022b`` +``3.1.4`` | | ``gompi/2023a`` +``3.1.5`` | | ``gompi/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mpiP.md b/docs/version-specific/supported-software/m/mpiP.md new file mode 100644 index 000000000..ff01d1d58 --- /dev/null +++ b/docs/version-specific/supported-software/m/mpiP.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# mpiP + +mpiP is a lightweight profiling library for MPI applications. Because it only collects statistical information about MPI functions, mpiP generates considerably less overhead and much less data than tracing tools. All the information captured by mpiP is task-local. It only uses communication during report generation, typically at the end of the experiment, to merge results from all of the tasks into one output file. + +*homepage*: + +version | toolchain +--------|---------- +``3.4.1`` | ``gompi/2019a`` +``3.4.1`` | ``iimpi/2019a`` +``3.4.1`` | ``iompi/2019.01`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mpifileutils.md b/docs/version-specific/supported-software/m/mpifileutils.md new file mode 100644 index 000000000..16940a7e8 --- /dev/null +++ b/docs/version-specific/supported-software/m/mpifileutils.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# mpifileutils + +MPI-Based File Utilities For Distributed Systems + +*homepage*: + +version | toolchain +--------|---------- +``0.10`` | ``gompi/2020a`` +``0.10`` | ``iimpi/2020a`` +``0.10.1`` | ``gompi/2020a`` +``0.11.1`` | ``gompi/2022a`` +``0.11.1`` | ``gompi/2023a`` +``0.9.1`` | ``gompi/2019a`` +``0.9.1`` | ``iimpi/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mpmath.md b/docs/version-specific/supported-software/m/mpmath.md new file mode 100644 index 000000000..9e45bc635 --- /dev/null +++ b/docs/version-specific/supported-software/m/mpmath.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# mpmath + +mpmath can be used as an arbitrary-precision substitute for Python's float/complex types and math/cmath modules, but also does much more advanced mathematics. Almost any calculation can be performed just as well at 10-digit or 1000-digit precision, with either real or complex numbers, and in many cases mpmath implements efficient algorithms that scale well for extremely high precision work. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.19`` | ``-Python-2.7.11`` | ``foss/2016a`` +``0.19`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.0.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.0.0`` | ``-Python-2.7.14`` | ``intel/2018a`` +``1.1.0`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``1.2.1`` | | ``GCCcore/10.2.0`` +``1.2.1`` | | ``GCCcore/10.3.0`` +``1.2.1`` | | ``GCCcore/11.2.0`` +``1.2.1`` | | ``GCCcore/11.3.0`` +``1.3.0`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mrcfile.md b/docs/version-specific/supported-software/m/mrcfile.md new file mode 100644 index 000000000..fd21062bf --- /dev/null +++ b/docs/version-specific/supported-software/m/mrcfile.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# mrcfile + +mrcfile is a Python implementation of the MRC2014 file format, which is used in structural biology to store image and volume data. It allows MRC files to be created and opened easily using a very simple API, which exposes the file’s header and data as numpy arrays. The code runs in Python 2 and 3 and is fully unit-tested. This library aims to allow users and developers to read and write standard- compliant MRC files in Python as easily as possible, and with no dependencies on any compiled libraries except numpy. You can use it interactively to inspect files, correct headers and so on, or in scripts and larger software packages to provide basic MRC file I/O functions. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.0`` | ``foss/2020b`` +``1.3.0`` | ``foss/2021a`` +``1.3.0`` | ``fosscuda/2020b`` +``1.4.3`` | ``foss/2022a`` +``1.5.0`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/msgpack-c.md b/docs/version-specific/supported-software/m/msgpack-c.md new file mode 100644 index 000000000..c30d3beb4 --- /dev/null +++ b/docs/version-specific/supported-software/m/msgpack-c.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# msgpack-c + +MessagePack is an efficient binary serialization format, which lets you exchange data among multiple languages like JSON, except that it's faster and smaller. Small integers are encoded into a single byte while typical short strings require only one extra byte in addition to the strings themselves. + +*homepage*: + +version | toolchain +--------|---------- +``3.3.0`` | ``GCCcore/10.2.0`` +``6.0.0`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/msprime.md b/docs/version-specific/supported-software/m/msprime.md new file mode 100644 index 000000000..0e5e87c8e --- /dev/null +++ b/docs/version-specific/supported-software/m/msprime.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# msprime + +msprime is a coalescent simulator and library for processing tree-based genetic data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7.0`` | ``-Python-3.7.2`` | ``intel/2019a`` +``1.2.0`` | | ``foss/2021b`` +``1.2.0`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mstore.md b/docs/version-specific/supported-software/m/mstore.md new file mode 100644 index 000000000..2ba2b863c --- /dev/null +++ b/docs/version-specific/supported-software/m/mstore.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# mstore + +Molecular structure store for testing + +*homepage*: + +version | toolchain +--------|---------- +``0.2.0`` | ``GCC/11.2.0`` +``0.2.0`` | ``GCC/11.3.0`` +``0.2.0`` | ``GCC/12.2.0`` +``0.2.0`` | ``intel-compilers/2022.1.0`` +``0.2.0`` | ``intel-compilers/2022.2.1`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/muMerge.md b/docs/version-specific/supported-software/m/muMerge.md new file mode 100644 index 000000000..80746ba84 --- /dev/null +++ b/docs/version-specific/supported-software/m/muMerge.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# muMerge + +muMerge is a tool for combining bed regions from multiple bed files that overlap. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/muParser.md b/docs/version-specific/supported-software/m/muParser.md new file mode 100644 index 000000000..e8d3d8807 --- /dev/null +++ b/docs/version-specific/supported-software/m/muParser.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# muParser + +muParser is an extensible high performance math expression parser library written in C++. It works by transforming a mathematical expression into bytecode and precalculating constant parts of the expression. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.5`` | ``GCCcore/6.4.0`` +``2.3.2`` | ``GCCcore/10.2.0`` +``2.3.2`` | ``GCCcore/9.3.0`` +``2.3.3`` | ``GCCcore/10.3.0`` +``2.3.4`` | ``GCCcore/11.3.0`` +``2.3.4`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mujoco-py.md b/docs/version-specific/supported-software/m/mujoco-py.md new file mode 100644 index 000000000..9438b5e18 --- /dev/null +++ b/docs/version-specific/supported-software/m/mujoco-py.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# mujoco-py + +MuJoCo is a physics engine for detailed, efficient rigid body simulations with contacts. mujoco-py allows using MuJoCo from Python 3. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.2.14`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/multicharge.md b/docs/version-specific/supported-software/m/multicharge.md new file mode 100644 index 000000000..3c9198789 --- /dev/null +++ b/docs/version-specific/supported-software/m/multicharge.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# multicharge + +Electronegativity equilibration model for atomic partial charges. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.0`` | ``gfbf/2022b`` +``0.2.0`` | ``iimkl/2022a`` +``0.2.0`` | ``iimkl/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/multichoose.md b/docs/version-specific/supported-software/m/multichoose.md new file mode 100644 index 000000000..5b66751bd --- /dev/null +++ b/docs/version-specific/supported-software/m/multichoose.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# multichoose + +generate multiset combinations (n multichoose k). + +*homepage*: + +version | toolchain +--------|---------- +``1.0.3`` | ``GCCcore/10.2.0`` +``1.0.3`` | ``GCCcore/10.3.0`` +``1.0.3`` | ``GCCcore/11.2.0`` +``1.0.3`` | ``GCCcore/11.3.0`` +``1.0.3`` | ``GCCcore/12.3.0`` +``1.0.3`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/multiprocess.md b/docs/version-specific/supported-software/m/multiprocess.md new file mode 100644 index 000000000..c3497b656 --- /dev/null +++ b/docs/version-specific/supported-software/m/multiprocess.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# multiprocess + +better multiprocessing and multithreading in python + +*homepage*: + +version | toolchain +--------|---------- +``0.70.15`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mumott.md b/docs/version-specific/supported-software/m/mumott.md new file mode 100644 index 000000000..bfaa792a0 --- /dev/null +++ b/docs/version-specific/supported-software/m/mumott.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# mumott + +mumott is a Python library for the analysis of multi-modal tensor tomography data. + +*homepage*: + +version | toolchain +--------|---------- +``2.1`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/muparserx.md b/docs/version-specific/supported-software/m/muparserx.md new file mode 100644 index 000000000..e228cb544 --- /dev/null +++ b/docs/version-specific/supported-software/m/muparserx.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# muparserx + +A C++ Library for Parsing Expressions with Strings, Complex Numbers, Vectors, Matrices and more. + +*homepage*: + +version | toolchain +--------|---------- +``4.0.8`` | ``GCCcore/10.3.0`` +``4.0.8`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mutil.md b/docs/version-specific/supported-software/m/mutil.md new file mode 100644 index 000000000..9b1711498 --- /dev/null +++ b/docs/version-specific/supported-software/m/mutil.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# mutil + +Mutil is a set of standard utilities that have been parallelized to maximize performance on modern file systems. These currently include multi-threaded drop-in replacements for cp and md5sum from GNU coreutils, which have achieved 10/30x rates on one/many nodes. + +*homepage*: + +version | toolchain +--------|---------- +``1.822.3`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mxml.md b/docs/version-specific/supported-software/m/mxml.md new file mode 100644 index 000000000..97ad16fce --- /dev/null +++ b/docs/version-specific/supported-software/m/mxml.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# mxml + +Mini-XML is a tiny XML library that you can use to read and write XML and XML-like data files in your application without requiring large non-standard libraries. + +*homepage*: + +version | toolchain +--------|---------- +``3.2`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mxmlplus.md b/docs/version-specific/supported-software/m/mxmlplus.md new file mode 100644 index 000000000..b0c8ccb57 --- /dev/null +++ b/docs/version-specific/supported-software/m/mxmlplus.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# mxmlplus + +Mxml is a pure C library (yet having an object oriented layout) that is meant to help developers implementing XML file interpretation in their projects. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.2`` | ``GCC/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mygene.md b/docs/version-specific/supported-software/m/mygene.md new file mode 100644 index 000000000..12f502cc9 --- /dev/null +++ b/docs/version-specific/supported-software/m/mygene.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# mygene + +Python Client for MyGene.Info services. + +*homepage*: + +version | toolchain +--------|---------- +``3.1.0`` | ``intel/2019a`` +``3.2.2`` | ``foss/2022a`` +``3.2.2`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mympingpong.md b/docs/version-specific/supported-software/m/mympingpong.md new file mode 100644 index 000000000..1547912f2 --- /dev/null +++ b/docs/version-specific/supported-software/m/mympingpong.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# mympingpong + +A mpi4py based random pair pingpong network stress test. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``0.7.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.8.0`` | ``-Python-2.7.15`` | ``foss/2019a`` +``0.8.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``0.8.0`` | ``-Python-2.7.14`` | ``intel/2018a`` +``0.8.0`` | ``-Python-2.7.15`` | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mypy.md b/docs/version-specific/supported-software/m/mypy.md new file mode 100644 index 000000000..4c451a20c --- /dev/null +++ b/docs/version-specific/supported-software/m/mypy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# mypy + +Optional static typing for Python + +*homepage*: + +version | toolchain +--------|---------- +``0.4.5`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/m/mysqlclient.md b/docs/version-specific/supported-software/m/mysqlclient.md new file mode 100644 index 000000000..48b52e2ef --- /dev/null +++ b/docs/version-specific/supported-software/m/mysqlclient.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# mysqlclient + +Python interface to MySQL + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.7`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.3.7`` | ``-Python-2.7.11`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NAG.md b/docs/version-specific/supported-software/n/NAG.md new file mode 100644 index 000000000..2b42b844e --- /dev/null +++ b/docs/version-specific/supported-software/n/NAG.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# NAG + +The worlds largest collection of robust, documented, tested and maintained numerical algorithms. + +*homepage*: + +version | toolchain +--------|---------- +``24`` | ``PGI/17.4-GCC-6.4.0-2.28`` +``26`` | ``GCCcore/6.4.0`` +``26`` | ``intel/2018a`` +``7.1`` | ``gompi/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NAGfor.md b/docs/version-specific/supported-software/n/NAGfor.md new file mode 100644 index 000000000..dc850b020 --- /dev/null +++ b/docs/version-specific/supported-software/n/NAGfor.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# NAGfor + +The checking compiler for improved code portability and detailed error reporting. + +*homepage*: + +version | toolchain +--------|---------- +``6.2.14`` | ``system`` +``7.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NAMD.md b/docs/version-specific/supported-software/n/NAMD.md new file mode 100644 index 000000000..b954e9be0 --- /dev/null +++ b/docs/version-specific/supported-software/n/NAMD.md @@ -0,0 +1,36 @@ +--- +search: + boost: 0.5 +--- +# NAMD + +NAMD is a parallel molecular dynamics code designed for high-performance simulation of large biomolecular systems. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.11`` | ``-mpi`` | ``intel/2016a`` +``2.12`` | ``-CUDA-8.0.61`` | ``foss/2016b`` +``2.12`` | ``-mpi`` | ``foss/2017a`` +``2.12`` | ``-mpi`` | ``foss/2017b`` +``2.12`` | ``-mpi`` | ``intel/2017a`` +``2.12`` | ``-mpi`` | ``intel/2017b`` +``2.13`` | ``-mpi`` | ``foss/2018b`` +``2.13`` | ``-mpi`` | ``foss/2019b`` +``2.13`` | | ``fosscuda/2018b`` +``2.13`` | ``-mpi`` | ``intel/2018b`` +``2.14`` | ``-mpi`` | ``foss/2019b`` +``2.14`` | ``-mpi`` | ``foss/2020a`` +``2.14`` | ``-mpi`` | ``foss/2020b`` +``2.14`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``2.14`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``2.14`` | ``-mpi`` | ``foss/2022a`` +``2.14`` | ``-mpi`` | ``foss/2023a`` +``2.14`` | | ``fosscuda/2019b`` +``2.14`` | | ``fosscuda/2020b`` +``2.14`` | ``-mpi`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NASM.md b/docs/version-specific/supported-software/n/NASM.md new file mode 100644 index 000000000..d55df4fba --- /dev/null +++ b/docs/version-specific/supported-software/n/NASM.md @@ -0,0 +1,43 @@ +--- +search: + boost: 0.5 +--- +# NASM + +NASM: General-purpose x86 assembler + +*homepage*: + +version | toolchain +--------|---------- +``2.11.08`` | ``GCCcore/5.4.0`` +``2.11.08`` | ``foss/2016a`` +``2.11.08`` | ``foss/2016b`` +``2.11.08`` | ``gimkl/2.11.5`` +``2.11.08`` | ``intel/2016a`` +``2.12.01`` | ``foss/2016a`` +``2.12.01`` | ``intel/2016a`` +``2.12.02`` | ``foss/2016a`` +``2.12.02`` | ``foss/2016b`` +``2.12.02`` | ``intel/2016b`` +``2.12.02`` | ``intel/2017a`` +``2.12.02`` | ``system`` +``2.13.01`` | ``GCCcore/6.3.0`` +``2.13.01`` | ``GCCcore/6.4.0`` +``2.13.03`` | ``GCCcore/6.4.0`` +``2.13.03`` | ``GCCcore/7.3.0`` +``2.14.02`` | ``GCCcore/8.2.0`` +``2.14.02`` | ``GCCcore/8.3.0`` +``2.14.02`` | ``GCCcore/9.3.0`` +``2.15.05`` | ``GCCcore/10.2.0`` +``2.15.05`` | ``GCCcore/10.3.0`` +``2.15.05`` | ``GCCcore/11.2.0`` +``2.15.05`` | ``GCCcore/11.3.0`` +``2.15.05`` | ``GCCcore/12.2.0`` +``2.16.01`` | ``GCCcore/12.3.0`` +``2.16.01`` | ``GCCcore/13.2.0`` +``2.16.03`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NBO.md b/docs/version-specific/supported-software/n/NBO.md new file mode 100644 index 000000000..ea1c36096 --- /dev/null +++ b/docs/version-specific/supported-software/n/NBO.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# NBO + +Generalized Natural Bond Orbital algorithm to handle systems characterized by periodic symmetry. + +*homepage*: + +version | toolchain +--------|---------- +``1.1`` | ``intel/2016a`` +``7.0`` | ``intel/2017b`` +``7.0.10`` | ``GCC/10.2.0`` +``7.0.10`` | ``GCC/10.3.0`` +``7.0.10`` | ``GCC/11.2.0`` +``7.0.10`` | ``GCC/9.3.0`` +``7.0.10`` | ``gfbf/2022a`` +``7.0.10`` | ``gfbf/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NCBI-Toolkit.md b/docs/version-specific/supported-software/n/NCBI-Toolkit.md new file mode 100644 index 000000000..46fda8175 --- /dev/null +++ b/docs/version-specific/supported-software/n/NCBI-Toolkit.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# NCBI-Toolkit + +The NCBI Toolkit is a collection of utilities developed for the production and distribution of GenBank, Entrez, BLAST, and related services by the National Center for Biotechnology Information. + +*homepage*: + +version | toolchain +--------|---------- +``18.0.0`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NCCL-tests.md b/docs/version-specific/supported-software/n/NCCL-tests.md new file mode 100644 index 000000000..e88a87d9a --- /dev/null +++ b/docs/version-specific/supported-software/n/NCCL-tests.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# NCCL-tests + +Tests check both the performance and the correctness of NCCL operations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.0`` | | ``gompic/2019b`` +``2.13.6`` | ``-CUDA-11.7.0`` | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NCCL.md b/docs/version-specific/supported-software/n/NCCL.md new file mode 100644 index 000000000..9a80024b3 --- /dev/null +++ b/docs/version-specific/supported-software/n/NCCL.md @@ -0,0 +1,35 @@ +--- +search: + boost: 0.5 +--- +# NCCL + +The NVIDIA Collective Communications Library (NCCL) implements multi-GPU and multi-node collective communication primitives that are performance optimized for NVIDIA GPUs. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.4`` | ``-CUDA-9.0.176`` | ``system`` +``2.10.3`` | ``-CUDA-11.3.1`` | ``GCCcore/10.3.0`` +``2.10.3`` | ``-CUDA-11.4.1`` | ``GCCcore/11.2.0`` +``2.10.3`` | ``-CUDA-11.5.2`` | ``GCCcore/11.2.0`` +``2.11.4`` | | ``gcccuda/2019b`` +``2.12.12`` | ``-CUDA-11.7.0`` | ``GCCcore/11.3.0`` +``2.16.2`` | ``-CUDA-11.7.0`` | ``GCCcore/12.2.0`` +``2.16.2`` | ``-CUDA-12.0.0`` | ``GCCcore/12.2.0`` +``2.18.3`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` +``2.2.13`` | ``-CUDA-9.2.148.1`` | ``system`` +``2.20.5`` | ``-CUDA-12.4.0`` | ``GCCcore/13.2.0`` +``2.3.7`` | | ``fosscuda/2018b`` +``2.4.2`` | | ``gcccuda/2019a`` +``2.4.8`` | | ``gcccuda/2019b`` +``2.8.3`` | ``-CUDA-11.0.2`` | ``system`` +``2.8.3`` | ``-CUDA-11.1.1`` | ``system`` +``2.8.3`` | ``-CUDA-11.1.1`` | ``GCCcore/10.2.0`` +``2.8.3`` | ``-CUDA-11.0.2`` | ``GCCcore/9.3.0`` +``2.9.9`` | ``-CUDA-11.3.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NCIPLOT.md b/docs/version-specific/supported-software/n/NCIPLOT.md new file mode 100644 index 000000000..b76778f47 --- /dev/null +++ b/docs/version-specific/supported-software/n/NCIPLOT.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# NCIPLOT + +NCIPLOT is a program for revealing non covalent interactions based on the reduced density gradient. + +*homepage*: + +version | toolchain +--------|---------- +``4.0-20190718`` | ``iccifort/2019.5.281`` +``4.0-20200106`` | ``iccifort/2019.5.281`` +``4.0-20200624`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NCL.md b/docs/version-specific/supported-software/n/NCL.md new file mode 100644 index 000000000..db0307e20 --- /dev/null +++ b/docs/version-specific/supported-software/n/NCL.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# NCL + +NCL is an interpreted language designed specifically for scientific data analysis and visualization. + +*homepage*: + +version | toolchain +--------|---------- +``6.4.0`` | ``intel/2017a`` +``6.4.0`` | ``intel/2017b`` +``6.4.0`` | ``intel/2018a`` +``6.5.0`` | ``intel/2018a`` +``6.6.2`` | ``foss/2018b`` +``6.6.2`` | ``foss/2020a`` +``6.6.2`` | ``foss/2020b`` +``6.6.2`` | ``foss/2021a`` +``6.6.2`` | ``intel/2018b`` +``6.6.2`` | ``intel/2019b`` +``6.6.2`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NCO.md b/docs/version-specific/supported-software/n/NCO.md new file mode 100644 index 000000000..458a73f0e --- /dev/null +++ b/docs/version-specific/supported-software/n/NCO.md @@ -0,0 +1,36 @@ +--- +search: + boost: 0.5 +--- +# NCO + +manipulates and analyzes data stored in netCDF-accessible formats, including DAP, HDF4, and HDF5 + +*homepage*: + +version | toolchain +--------|---------- +``4.6.0`` | ``foss/2016a`` +``4.6.6`` | ``intel/2017a`` +``4.7.0`` | ``intel/2017b`` +``4.7.1`` | ``intel/2017b`` +``4.7.4`` | ``foss/2017b`` +``4.7.6`` | ``intel/2018a`` +``4.7.9`` | ``foss/2018b`` +``4.7.9`` | ``intel/2018b`` +``4.8.1`` | ``foss/2019a`` +``4.9.3`` | ``foss/2019b`` +``4.9.7`` | ``foss/2020a`` +``4.9.7`` | ``foss/2020b`` +``5.0.1`` | ``foss/2021a`` +``5.0.3`` | ``foss/2021b`` +``5.0.3`` | ``intel/2021b`` +``5.0.6`` | ``intel/2019b`` +``5.1.0`` | ``foss/2022a`` +``5.1.3`` | ``foss/2021a`` +``5.1.3`` | ``foss/2022a`` +``5.1.9`` | ``intel/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NECI.md b/docs/version-specific/supported-software/n/NECI.md new file mode 100644 index 000000000..59498bbcc --- /dev/null +++ b/docs/version-specific/supported-software/n/NECI.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# NECI + +Standalone NECI codebase designed for FCIQMC and other stochastic quantum chemistry methods. + +*homepage*: + +version | toolchain +--------|---------- +``20220711`` | ``foss/2022a`` +``20230620`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NEURON.md b/docs/version-specific/supported-software/n/NEURON.md new file mode 100644 index 000000000..b0dd3d562 --- /dev/null +++ b/docs/version-specific/supported-software/n/NEURON.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# NEURON + +Empirically-based simulations of neurons and networks of neurons. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``7.4`` | | ``intel/2016b`` +``7.6.5`` | ``-Python-2.7.15`` | ``intel/2018b`` +``7.8.2`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NEXUS-CL.md b/docs/version-specific/supported-software/n/NEXUS-CL.md new file mode 100644 index 000000000..2510a2362 --- /dev/null +++ b/docs/version-specific/supported-software/n/NEXUS-CL.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# NEXUS-CL + +The NEXUS Class Library is a C++ library for parsing NEXUS files. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.18`` | ``GCC/8.2.0-2.31.1`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NEdit.md b/docs/version-specific/supported-software/n/NEdit.md new file mode 100644 index 000000000..d71d0f5a5 --- /dev/null +++ b/docs/version-specific/supported-software/n/NEdit.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# NEdit + +NEdit is a multi-purpose text editor for the X Window System, which combines a standard, easy to use, graphical user interface with the thorough functionality and stability required by users who edit text eight hours a day. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.5`` | ``-Linux-x86`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NFFT.md b/docs/version-specific/supported-software/n/NFFT.md new file mode 100644 index 000000000..9247ba54d --- /dev/null +++ b/docs/version-specific/supported-software/n/NFFT.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# NFFT + +The NFFT (nonequispaced fast Fourier transform or nonuniform fast Fourier transform) is a C subroutine library for computing the nonequispaced discrete Fourier transform (NDFT) and its generalisations in one or more dimensions, of arbitrary input size, and of complex data. + +*homepage*: + +version | toolchain +--------|---------- +``3.1.3`` | ``foss/2020b`` +``3.1.3`` | ``fosscuda/2020b`` +``3.5.1`` | ``foss/2018b`` +``3.5.1`` | ``foss/2019a`` +``3.5.2`` | ``foss/2020a`` +``3.5.2`` | ``foss/2021a`` +``3.5.2`` | ``foss/2021b`` +``3.5.3`` | ``foss/2022a`` +``3.5.3`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NGLess.md b/docs/version-specific/supported-software/n/NGLess.md new file mode 100644 index 000000000..f71bf7412 --- /dev/null +++ b/docs/version-specific/supported-software/n/NGLess.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# NGLess + +NGLess is a domain-specific language for NGS (next-generation sequencing data) processing. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.1`` | ``-static-Linux64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NGS-Python.md b/docs/version-specific/supported-software/n/NGS-Python.md new file mode 100644 index 000000000..3e9db0e26 --- /dev/null +++ b/docs/version-specific/supported-software/n/NGS-Python.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# NGS-Python + +NGS is a new, domain-specific API for accessing reads, alignments and pileups produced from Next Generation Sequencing. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.3`` | ``-Python-2.7.11`` | ``intel/2016a`` +``2.10.4`` | ``-Python-2.7.16`` | ``gompi/2019b`` +``2.9.3`` | ``-Python-3.6.6`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NGS.md b/docs/version-specific/supported-software/n/NGS.md new file mode 100644 index 000000000..c34a6f2a3 --- /dev/null +++ b/docs/version-specific/supported-software/n/NGS.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# NGS + +NGS is a new, domain-specific API for accessing reads, alignments and pileups produced from Next Generation Sequencing. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.3`` | | ``foss/2016b`` +``1.2.3`` | | ``intel/2016a`` +``1.2.5`` | | ``foss/2016b`` +``1.3.0`` | | ``GCCcore/6.4.0`` +``1.3.0`` | | ``intel/2017a`` +``2.10.0`` | ``-Java-1.8`` | ``GCCcore/8.2.0`` +``2.10.0`` | ``-Java-11`` | ``GCCcore/8.2.0`` +``2.10.4`` | ``-Java-11`` | ``GCCcore/8.3.0`` +``2.10.5`` | | ``GCCcore/9.3.0`` +``2.10.9`` | | ``GCCcore/10.2.0`` +``2.10.9`` | | ``GCCcore/10.3.0`` +``2.11.2`` | | ``GCCcore/11.2.0`` +``2.9.1`` | ``-Java-1.8.0_162`` | ``foss/2018a`` +``2.9.1`` | ``-Java-1.8.0_162`` | ``intel/2018a`` +``2.9.3`` | ``-Java-1.8`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NGSadmix.md b/docs/version-specific/supported-software/n/NGSadmix.md new file mode 100644 index 000000000..3b105139d --- /dev/null +++ b/docs/version-specific/supported-software/n/NGSadmix.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# NGSadmix + +NGSadmix is a tool for finding admixture proportions from NGS data, based on genotype likelihoods. + +*homepage*: + +version | toolchain +--------|---------- +``32`` | ``GCC/7.3.0-2.30`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NGSpeciesID.md b/docs/version-specific/supported-software/n/NGSpeciesID.md new file mode 100644 index 000000000..f0bd1c744 --- /dev/null +++ b/docs/version-specific/supported-software/n/NGSpeciesID.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# NGSpeciesID + +NGSpeciesID is a tool for clustering and consensus forming of targeted ONT reads. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.1.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.1.2.1`` | | ``foss/2021b`` +``0.3.0`` | | ``foss/2022b`` +``0.3.0`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NIMBLE.md b/docs/version-specific/supported-software/n/NIMBLE.md new file mode 100644 index 000000000..fc41b9670 --- /dev/null +++ b/docs/version-specific/supported-software/n/NIMBLE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# NIMBLE + +NIMBLE is a system for building and sharing analysis methods for statistical models, especially for hierarchical models and computationally-intensive methods. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7.0`` | ``-R-3.5.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NIfTI.md b/docs/version-specific/supported-software/n/NIfTI.md new file mode 100644 index 000000000..0e51c4fb0 --- /dev/null +++ b/docs/version-specific/supported-software/n/NIfTI.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# NIfTI + +Niftilib is a set of i/o libraries for reading and writing files in the nifti-1 data format. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.0`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NLMpy.md b/docs/version-specific/supported-software/n/NLMpy.md new file mode 100644 index 000000000..121307a4a --- /dev/null +++ b/docs/version-specific/supported-software/n/NLMpy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# NLMpy + +NLMpy is a Python package for the creation of neutral landscape models that are widely used in the modelling of ecological patterns and processes across landscapes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.5`` | ``-Python-3.7.4`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NLTK.md b/docs/version-specific/supported-software/n/NLTK.md new file mode 100644 index 000000000..587a578e7 --- /dev/null +++ b/docs/version-specific/supported-software/n/NLTK.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# NLTK + +NLTK is a leading platform for building Python programs to work with human language data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.2.2`` | ``-Python-2.7.13`` | ``intel/2017a`` +``3.2.4`` | ``-Python-2.7.13`` | ``intel/2017a`` +``3.5`` | ``-Python-3.7.4`` | ``foss/2019b`` +``3.5`` | ``-Python-3.8.2`` | ``foss/2020a`` +``3.5`` | ``-Python-3.8.2`` | ``fosscuda/2020a`` +``3.6.7`` | | ``foss/2021a`` +``3.7`` | | ``foss/2021b`` +``3.8.1`` | | ``foss/2022b`` +``3.8.1`` | | ``foss/2023a`` +``3.8.1`` | | ``foss/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NLopt.md b/docs/version-specific/supported-software/n/NLopt.md new file mode 100644 index 000000000..7f7a71931 --- /dev/null +++ b/docs/version-specific/supported-software/n/NLopt.md @@ -0,0 +1,38 @@ +--- +search: + boost: 0.5 +--- +# NLopt + +NLopt is a free/open-source library for nonlinear optimization, providing a common interface for a number of different free optimization routines available online as well as original implementations of various other algorithms. + +*homepage*: + +version | toolchain +--------|---------- +``2.4.2`` | ``GCC/5.4.0-2.26`` +``2.4.2`` | ``GCCcore/7.3.0`` +``2.4.2`` | ``foss/2016a`` +``2.4.2`` | ``foss/2016b`` +``2.4.2`` | ``foss/2017b`` +``2.4.2`` | ``foss/2018a`` +``2.4.2`` | ``iccifort/2016.3.210-GCC-5.4.0-2.26`` +``2.4.2`` | ``intel/2016a`` +``2.4.2`` | ``intel/2016b`` +``2.4.2`` | ``intel/2017a`` +``2.4.2`` | ``intel/2017b`` +``2.4.2`` | ``intel/2018a`` +``2.4.2`` | ``iomkl/2018a`` +``2.6.1`` | ``GCCcore/8.2.0`` +``2.6.1`` | ``GCCcore/8.3.0`` +``2.6.1`` | ``GCCcore/9.3.0`` +``2.6.2`` | ``GCCcore/10.2.0`` +``2.7.0`` | ``GCCcore/10.3.0`` +``2.7.0`` | ``GCCcore/11.2.0`` +``2.7.1`` | ``GCCcore/11.3.0`` +``2.7.1`` | ``GCCcore/12.2.0`` +``2.7.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NOVOPlasty.md b/docs/version-specific/supported-software/n/NOVOPlasty.md new file mode 100644 index 000000000..427c96d63 --- /dev/null +++ b/docs/version-specific/supported-software/n/NOVOPlasty.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# NOVOPlasty + +NOVOPlasty is a de novo assembler and heteroplasmy/variance caller for short circular genomes. + +*homepage*: + +version | toolchain +--------|---------- +``3.7`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NRGLjubljana.md b/docs/version-specific/supported-software/n/NRGLjubljana.md new file mode 100644 index 000000000..cb3c6c43a --- /dev/null +++ b/docs/version-specific/supported-software/n/NRGLjubljana.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# NRGLjubljana + +NRG Ljubljana is an efficient implementation of the numerical renormalization group (NRG) technique for solving quantum impurity problems that arise as simplified models of magnetic impurities and as effective models in the dynamical mean field theory (DMFT) approach to bulk correlated materials. + +*homepage*: + +version | toolchain +--------|---------- +``2.4.3.23`` | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NSPR.md b/docs/version-specific/supported-software/n/NSPR.md new file mode 100644 index 000000000..d98e2c682 --- /dev/null +++ b/docs/version-specific/supported-software/n/NSPR.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# NSPR + +Netscape Portable Runtime (NSPR) provides a platform-neutral API for system level and libc-like functions. + +*homepage*: + +version | toolchain +--------|---------- +``4.20`` | ``GCCcore/6.4.0`` +``4.20`` | ``GCCcore/7.3.0`` +``4.21`` | ``GCCcore/8.2.0`` +``4.21`` | ``GCCcore/8.3.0`` +``4.25`` | ``GCCcore/9.3.0`` +``4.29`` | ``GCCcore/10.2.0`` +``4.30`` | ``GCCcore/10.3.0`` +``4.32`` | ``GCCcore/11.2.0`` +``4.34`` | ``GCCcore/11.3.0`` +``4.35`` | ``GCCcore/12.2.0`` +``4.35`` | ``GCCcore/12.3.0`` +``4.35`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NSS.md b/docs/version-specific/supported-software/n/NSS.md new file mode 100644 index 000000000..e0fcfff21 --- /dev/null +++ b/docs/version-specific/supported-software/n/NSS.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# NSS + +Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and server applications. + +*homepage*: + +version | toolchain +--------|---------- +``3.39`` | ``GCCcore/6.4.0`` +``3.39`` | ``GCCcore/7.3.0`` +``3.42.1`` | ``GCCcore/8.2.0`` +``3.45`` | ``GCCcore/8.3.0`` +``3.51`` | ``GCCcore/9.3.0`` +``3.57`` | ``GCCcore/10.2.0`` +``3.65`` | ``GCCcore/10.3.0`` +``3.69`` | ``GCCcore/11.2.0`` +``3.79`` | ``GCCcore/11.3.0`` +``3.85`` | ``GCCcore/12.2.0`` +``3.89.1`` | ``GCCcore/12.3.0`` +``3.94`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NTL.md b/docs/version-specific/supported-software/n/NTL.md new file mode 100644 index 000000000..c261c2c22 --- /dev/null +++ b/docs/version-specific/supported-software/n/NTL.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# NTL + +NTL is a high-performance, portable C++ library providing data structures and algorithms for manipulating signed, arbitrary length integers, and for vectors, matrices, and polynomials over the integers and over finite fields. + +*homepage*: + +version | toolchain +--------|---------- +``11.3.4`` | ``GCC/8.2.0-2.31.1`` +``11.5.1`` | ``GCC/11.2.0`` +``11.5.1`` | ``GCC/11.3.0`` +``11.5.1`` | ``GCC/12.2.0`` +``11.5.1`` | ``GCC/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NTPoly.md b/docs/version-specific/supported-software/n/NTPoly.md new file mode 100644 index 000000000..defa4dce8 --- /dev/null +++ b/docs/version-specific/supported-software/n/NTPoly.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# NTPoly + +is a massively parallel library for computing the functions of sparse, symmetric matrices based on polynomial expansions. For sufficiently sparse matrices, most of the matrix functions in NTPoly can be computed in linear time. + +*homepage*: + +version | toolchain +--------|---------- +``2.5.1`` | ``foss/2020b`` +``2.5.1`` | ``intel/2020b`` +``2.7.0`` | ``foss/2021a`` +``2.7.0`` | ``intel/2021a`` +``2.7.1`` | ``intel/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NVHPC.md b/docs/version-specific/supported-software/n/NVHPC.md new file mode 100644 index 000000000..f91a4b0a9 --- /dev/null +++ b/docs/version-specific/supported-software/n/NVHPC.md @@ -0,0 +1,32 @@ +--- +search: + boost: 0.5 +--- +# NVHPC + +C, C++ and Fortran compilers included with the NVIDIA HPC SDK (previously: PGI) + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20.11`` | | ``system`` +``20.7`` | | ``system`` +``20.9`` | | ``system`` +``21.11`` | | ``system`` +``21.2`` | | ``system`` +``21.3`` | | ``system`` +``21.5`` | | ``system`` +``21.7`` | | ``system`` +``21.9`` | | ``system`` +``22.11`` | ``-CUDA-11.7.0`` | ``system`` +``22.7`` | ``-CUDA-11.7.0`` | ``system`` +``22.9`` | ``-CUDA-11.7.0`` | ``system`` +``23.1`` | ``-CUDA-12.0.0`` | ``system`` +``23.7`` | ``-CUDA-12.1.1`` | ``system`` +``23.7`` | ``-CUDA-12.2.0`` | ``system`` +``24.1`` | ``-CUDA-12.3.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NVSHMEM.md b/docs/version-specific/supported-software/n/NVSHMEM.md new file mode 100644 index 000000000..cd26be319 --- /dev/null +++ b/docs/version-specific/supported-software/n/NVSHMEM.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# NVSHMEM + +NVSHMEM is a parallel programming interface based on OpenSHMEM that provides efficient and scalable communication for NVIDIA GPU clusters. NVSHMEM creates a global address space for data that spans the memory of multiple GPUs and can be accessed with fine-grained GPU-initiated operations, CPU-initiated operations, and operations on CUDA streams. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.4.1`` | ``-CUDA-11.4.1`` | ``gompi/2021b`` +``2.5.0`` | ``-CUDA-11.7.0`` | ``gompi/2022a`` +``2.7.0`` | ``-CUDA-11.7.0`` | ``gompi/2022a`` +``2.8.0`` | ``-CUDA-11.7.0`` | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NWChem.md b/docs/version-specific/supported-software/n/NWChem.md new file mode 100644 index 000000000..dc27a3eba --- /dev/null +++ b/docs/version-specific/supported-software/n/NWChem.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# NWChem + +NWChem aims to provide its users with computational chemistry tools that are scalable both in their ability to treat large scientific computational chemistry problems efficiently, and in their use of available parallel computing resources from high-performance parallel supercomputers to conventional workstation clusters. NWChem software can handle: biomolecules, nanostructures, and solid-state; from quantum to classical, and all combinations; Gaussian basis functions or plane-waves; scaling from one to thousands of processors; properties and relativity. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``6.6.revision27746`` | ``-2015-10-20-patches-20170814-Python-2.7.13`` | ``intel/2017a`` +``6.6.revision27746`` | ``-2015-10-20-Python-2.7.12`` | ``iomkl/2017a`` +``6.8.revision47`` | ``-2017-12-14-Python-2.7.14`` | ``intel/2017b`` +``6.8.revision47`` | ``-2017-12-14-Python-2.7.14`` | ``intel/2018a`` +``7.0.0`` | ``-Python-3.7.4`` | ``intel/2019b`` +``7.0.2`` | ``-Python-3.7.4`` | ``intel/2019b`` +``7.0.2`` | | ``intel/2021a`` +``7.0.2`` | | ``intel/2022a`` +``7.2.2`` | | ``intel/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NanoCaller.md b/docs/version-specific/supported-software/n/NanoCaller.md new file mode 100644 index 000000000..534bd5c91 --- /dev/null +++ b/docs/version-specific/supported-software/n/NanoCaller.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# NanoCaller + +NanoCaller is a computational method that integrates long reads in deep convolutional neural network for the detection of SNPs/indels from long-read sequencing data. + +*homepage*: + +version | toolchain +--------|---------- +``3.4.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NanoComp.md b/docs/version-specific/supported-software/n/NanoComp.md new file mode 100644 index 000000000..b1a8b8ec1 --- /dev/null +++ b/docs/version-specific/supported-software/n/NanoComp.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# NanoComp + +Comparing runs of Oxford Nanopore sequencing data and alignments + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.10.1`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.13.1`` | | ``intel/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NanoFilt.md b/docs/version-specific/supported-software/n/NanoFilt.md new file mode 100644 index 000000000..130e339ac --- /dev/null +++ b/docs/version-specific/supported-software/n/NanoFilt.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# NanoFilt + +Filtering and trimming of long read sequencing data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.5.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``2.6.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.6.0`` | ``-Python-3.7.4`` | ``intel/2019b`` +``2.6.0`` | ``-Python-3.8.2`` | ``intel/2020a`` +``2.8.0`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NanoLyse.md b/docs/version-specific/supported-software/n/NanoLyse.md new file mode 100644 index 000000000..65df19c47 --- /dev/null +++ b/docs/version-specific/supported-software/n/NanoLyse.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# NanoLyse + +Remove reads mapping to the lambda phage genome from a fastq file. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.1`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NanoPlot.md b/docs/version-specific/supported-software/n/NanoPlot.md new file mode 100644 index 000000000..55d66ab7e --- /dev/null +++ b/docs/version-specific/supported-software/n/NanoPlot.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# NanoPlot + +Plotting suite for long read sequencing data and alignments + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.28.4`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.33.0`` | | ``foss/2021a`` +``1.33.0`` | | ``intel/2020b`` +``1.42.0`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NanoStat.md b/docs/version-specific/supported-software/n/NanoStat.md new file mode 100644 index 000000000..34bea78fb --- /dev/null +++ b/docs/version-specific/supported-software/n/NanoStat.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# NanoStat + +Calculate various statistics from a long read sequencing dataset in fastq, bam or albacore sequencing summary format. + +*homepage*: + +version | toolchain +--------|---------- +``1.6.0`` | ``foss/2021a`` +``1.6.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NanopolishComp.md b/docs/version-specific/supported-software/n/NanopolishComp.md new file mode 100644 index 000000000..71acbea06 --- /dev/null +++ b/docs/version-specific/supported-software/n/NanopolishComp.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# NanopolishComp + +NanopolishComp is a Python3 package for downstream analyses of Nanopolish output files + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.6.11`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/Nek5000.md b/docs/version-specific/supported-software/n/Nek5000.md new file mode 100644 index 000000000..0025a5f02 --- /dev/null +++ b/docs/version-specific/supported-software/n/Nek5000.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Nek5000 + +a fast and scalable high-order solver for computational fluid dynamics + +*homepage*: + +version | toolchain +--------|---------- +``17.0`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/Nektar++.md b/docs/version-specific/supported-software/n/Nektar++.md new file mode 100644 index 000000000..82b068f70 --- /dev/null +++ b/docs/version-specific/supported-software/n/Nektar++.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Nektar++ + +Nektar++ is a tensor product based finite element package designed to allow one to construct efficient classical low polynomial order h-type solvers (where h is the size of the finite element) as well as higher p-order piecewise polynomial order solvers. + +*homepage*: + +version | toolchain +--------|---------- +``5.0.1`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/Net-core.md b/docs/version-specific/supported-software/n/Net-core.md new file mode 100644 index 000000000..2028f8805 --- /dev/null +++ b/docs/version-specific/supported-software/n/Net-core.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Net-core + +.NET Core is a free and open-source managed computer software framework for the Windows, Linux, and macOS operating systems .NET Core fully supports C# and F# and partially supports Visual Basic + +*homepage*: + +version | toolchain +--------|---------- +``2.1.8`` | ``system`` +``2.2.5`` | ``system`` +``3.0.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NetLogo.md b/docs/version-specific/supported-software/n/NetLogo.md new file mode 100644 index 000000000..e93141506 --- /dev/null +++ b/docs/version-specific/supported-software/n/NetLogo.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# NetLogo + +NetLogo is a multi-agent programmable modeling environment. It is used by tens of thousands of students, teachers and researchers worldwide. It also powers HubNet participatory simulations. It is authored by Uri Wilensky and developed at the CCL. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.3.1`` | ``-64`` | ``system`` +``6.0.4`` | ``-64`` | ``system`` +``6.2.0`` | ``-64`` | ``system`` +``6.2.2`` | ``-64`` | ``system`` +``6.3.0`` | ``-64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NetPIPE.md b/docs/version-specific/supported-software/n/NetPIPE.md new file mode 100644 index 000000000..3870403a2 --- /dev/null +++ b/docs/version-specific/supported-software/n/NetPIPE.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# NetPIPE + +NetPIPE is a protocol independent communication performance benchmark that visually represents the network performance under a variety of conditions. + +*homepage*: + +version | toolchain +--------|---------- +``5.1`` | ``intel/2018a`` +``5.1.4`` | ``gompi/2020b`` +``5.1.4`` | ``iimpi/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NetPyNE.md b/docs/version-specific/supported-software/n/NetPyNE.md new file mode 100644 index 000000000..494eb07ad --- /dev/null +++ b/docs/version-specific/supported-software/n/NetPyNE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# NetPyNE + +NetPyNE is an open-source Python package to facilitate the development, parallel simulation, analysis, and optimization of biological neuronal networks using the NEURON simulator. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.2.1`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NeuroKit.md b/docs/version-specific/supported-software/n/NeuroKit.md new file mode 100644 index 000000000..eb852498c --- /dev/null +++ b/docs/version-specific/supported-software/n/NeuroKit.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# NeuroKit + +NeuroKit is a Python module that provides high-level integrative functions with good and flexible defaults, allowing users to focus on what’s important. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.7`` | ``-Python-3.6.4`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NewHybrids.md b/docs/version-specific/supported-software/n/NewHybrids.md new file mode 100644 index 000000000..1da3c1f60 --- /dev/null +++ b/docs/version-specific/supported-software/n/NewHybrids.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# NewHybrids + +This implements a Gibbs sampler to estimate the posterior probability that genetically sampled individuals fall into each of a set of user-defined hybrid categories. + +*homepage*: + +version | toolchain +--------|---------- +``1.1_Beta3`` | ``GCC/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NextGenMap.md b/docs/version-specific/supported-software/n/NextGenMap.md new file mode 100644 index 000000000..ff929e59c --- /dev/null +++ b/docs/version-specific/supported-software/n/NextGenMap.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# NextGenMap + +NextGenMap is a flexible highly sensitive short read mapping tool that handles much higher mismatch rates than comparable algorithms while still outperforming them in terms of runtime. + +*homepage*: + +version | toolchain +--------|---------- +``0.5.5`` | ``GCC/11.2.0`` +``0.5.5`` | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/Nextflow.md b/docs/version-specific/supported-software/n/Nextflow.md new file mode 100644 index 000000000..e4329ade9 --- /dev/null +++ b/docs/version-specific/supported-software/n/Nextflow.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# Nextflow + +Nextflow is a reactive workflow framework and a programming DSL that eases writing computational pipelines with complex data + +*homepage*: + +version | toolchain +--------|---------- +``19.04.0`` | ``system`` +``19.07.0`` | ``system`` +``19.12.0`` | ``system`` +``20.01.0`` | ``system`` +``20.04.1`` | ``system`` +``20.10.0`` | ``system`` +``21.03.0`` | ``system`` +``21.08.0`` | ``system`` +``21.10.6`` | ``system`` +``22.04.0`` | ``system`` +``22.10.0`` | ``system`` +``22.10.1`` | ``system`` +``22.10.5`` | ``system`` +``22.10.6`` | ``system`` +``23.04.2`` | ``system`` +``23.10.0`` | ``system`` +``24.04.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NiBabel.md b/docs/version-specific/supported-software/n/NiBabel.md new file mode 100644 index 000000000..495fe24c8 --- /dev/null +++ b/docs/version-specific/supported-software/n/NiBabel.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# NiBabel + +NiBabel provides read/write access to some common medical and neuroimaging file formats, including: ANALYZE (plain, SPM99, SPM2 and later), GIFTI, NIfTI1, NIfTI2, MINC1, MINC2, MGH and ECAT as well as Philips PAR/REC. We can read and write Freesurfer geometry, and read Freesurfer morphometry and annotation files. There is some very limited support for DICOM. NiBabel is the successor of PyNIfTI. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.2`` | ``-Python-2.7.11-freetype-2.6.3`` | ``intel/2016a`` +``2.0.2`` | ``-Python-2.7.11`` | ``intel/2016a`` +``2.1.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``2.2.1`` | ``-Python-3.6.4`` | ``intel/2018a`` +``2.3.0`` | ``-Python-2.7.14`` | ``foss/2017b`` +``2.3.0`` | ``-Python-3.6.3`` | ``foss/2017b`` +``2.3.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``2.3.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.3.0`` | ``-Python-3.6.3`` | ``intel/2017b`` +``2.4.0`` | | ``foss/2019a`` +``2.4.0`` | | ``intel/2019a`` +``2.5.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``3.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``3.1.0`` | ``-Python-3.7.4`` | ``intel/2019b`` +``3.2.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``3.2.1`` | | ``foss/2020b`` +``3.2.1`` | | ``foss/2021a`` +``3.2.1`` | | ``fosscuda/2020b`` +``3.2.2`` | | ``foss/2021b`` +``4.0.2`` | | ``foss/2022a`` +``5.2.0`` | | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/Nilearn.md b/docs/version-specific/supported-software/n/Nilearn.md new file mode 100644 index 000000000..17aa290be --- /dev/null +++ b/docs/version-specific/supported-software/n/Nilearn.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# Nilearn + +Nilearn is a Python module for fast and easy statistical learning on NeuroImaging data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.3`` | | ``gfbf/2023a`` +``0.5.2`` | ``-Python-2.7.14`` | ``foss/2017b`` +``0.5.2`` | ``-Python-3.6.3`` | ``foss/2017b`` +``0.5.2`` | | ``foss/2019a`` +``0.5.2`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.5.2`` | ``-Python-3.6.3`` | ``intel/2017b`` +``0.5.2`` | | ``intel/2019a`` +``0.7.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.7.1`` | | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/Nim.md b/docs/version-specific/supported-software/n/Nim.md new file mode 100644 index 000000000..c8e187e15 --- /dev/null +++ b/docs/version-specific/supported-software/n/Nim.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# Nim + +Nim is a systems and applications programming language. + +*homepage*: + +version | toolchain +--------|---------- +``0.18.0`` | ``GCCcore/6.4.0`` +``0.19.2`` | ``GCCcore/7.3.0`` +``1.0.0`` | ``GCCcore/8.3.0`` +``1.4.6`` | ``GCCcore/10.2.0`` +``1.4.8`` | ``GCCcore/10.3.0`` +``1.6.6`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/Ninja.md b/docs/version-specific/supported-software/n/Ninja.md new file mode 100644 index 000000000..cb3ce3e70 --- /dev/null +++ b/docs/version-specific/supported-software/n/Ninja.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# Ninja + +Ninja is a small build system with a focus on speed. + +*homepage*: + +version | toolchain +--------|---------- +``1.10.0`` | ``GCCcore/9.3.0`` +``1.10.1`` | ``GCCcore/10.2.0`` +``1.10.2`` | ``GCCcore/10.3.0`` +``1.10.2`` | ``GCCcore/11.2.0`` +``1.10.2`` | ``GCCcore/11.3.0`` +``1.11.1`` | ``GCCcore/12.2.0`` +``1.11.1`` | ``GCCcore/12.3.0`` +``1.11.1`` | ``GCCcore/13.2.0`` +``1.12.1`` | ``GCCcore/13.3.0`` +``1.8.2`` | ``foss/2018a`` +``1.8.2`` | ``foss/2018b`` +``1.8.2`` | ``fosscuda/2018b`` +``1.8.2`` | ``intel/2017b`` +``1.8.2`` | ``intel/2018a`` +``1.9.0`` | ``GCCcore/8.2.0`` +``1.9.0`` | ``GCCcore/8.3.0`` +``1.9.0`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/Nipype.md b/docs/version-specific/supported-software/n/Nipype.md new file mode 100644 index 000000000..83298ab5a --- /dev/null +++ b/docs/version-specific/supported-software/n/Nipype.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Nipype + +Nipype is a Python project that provides a uniform interface to existing neuroimaging software and facilitates interaction between these packages within a single workflow. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.2`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.1.3`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.4.2`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.6.0`` | | ``foss/2020b`` +``1.8.5`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/Node-RED.md b/docs/version-specific/supported-software/n/Node-RED.md new file mode 100644 index 000000000..cbf10efb6 --- /dev/null +++ b/docs/version-specific/supported-software/n/Node-RED.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Node-RED + +Node-RED is a programming tool for wiring together hardware devices, APIs and online services in new and interesting ways. + +*homepage*: + +version | toolchain +--------|---------- +``0.16.2`` | ``foss/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/Normaliz.md b/docs/version-specific/supported-software/n/Normaliz.md new file mode 100644 index 000000000..6a54be457 --- /dev/null +++ b/docs/version-specific/supported-software/n/Normaliz.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Normaliz + +Normaliz is a open source tool for computations in affine monoids, vector configurations, rational polyhedra and rational cones. Normaliz now computes rational and algebraic polyhedra, i.e., polyhedra defined over real algebraic extensions of QQ. + +*homepage*: + +version | toolchain +--------|---------- +``3.10.1`` | ``gfbf/2022a`` +``3.6.3`` | ``intel/2018b`` +``3.7.4`` | ``gompi/2019a`` +``3.8.4`` | ``GCC/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/Nsight-Compute.md b/docs/version-specific/supported-software/n/Nsight-Compute.md new file mode 100644 index 000000000..c29647c1f --- /dev/null +++ b/docs/version-specific/supported-software/n/Nsight-Compute.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Nsight-Compute + +NVIDIA® Nsight™ Compute is an interactive kernel profiler for CUDA applications. It provides detailed performance metrics and API debugging via a user interface and command line tool. In addition, its baseline feature allows users to compare results within the tool. Nsight Compute provides a customizable and data-driven user interface and metric collection and can be extended with analysis scripts for post-processing results. + +*homepage*: + +version | toolchain +--------|---------- +``2020.3.0`` | ``system`` +``2021.2.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/Nsight-Systems.md b/docs/version-specific/supported-software/n/Nsight-Systems.md new file mode 100644 index 000000000..03f16adbe --- /dev/null +++ b/docs/version-specific/supported-software/n/Nsight-Systems.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Nsight-Systems + +NVIDIA® Nsight™ Systems is a system-wide performance analysis tool designed to visualize an application’s algorithm, help you select the largest opportunities to optimize, and tune to scale efficiently across any quantity of CPUs and GPUs in your computer; from laptops to DGX servers. + +*homepage*: + +version | toolchain +--------|---------- +``2020.5.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/NxTrim.md b/docs/version-specific/supported-software/n/NxTrim.md new file mode 100644 index 000000000..89d6bcd13 --- /dev/null +++ b/docs/version-specific/supported-software/n/NxTrim.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# NxTrim + +NxTrim is a software to remove Nextera Mate Pair junction adapters and categorise reads according to the orientation implied by the adapter location. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.3`` | ``foss/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/index.md b/docs/version-specific/supported-software/n/index.md new file mode 100644 index 000000000..e9f2dd632 --- /dev/null +++ b/docs/version-specific/supported-software/n/index.md @@ -0,0 +1,145 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (n) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - *n* - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [n2v](n2v.md) + * [NAG](NAG.md) + * [NAGfor](NAGfor.md) + * [NAMD](NAMD.md) + * [namedlist](namedlist.md) + * [nano](nano.md) + * [NanoCaller](NanoCaller.md) + * [NanoComp](NanoComp.md) + * [nanocompore](nanocompore.md) + * [NanoFilt](NanoFilt.md) + * [nanoflann](nanoflann.md) + * [nanoget](nanoget.md) + * [NanoLyse](NanoLyse.md) + * [nanomath](nanomath.md) + * [nanomax-analysis-utils](nanomax-analysis-utils.md) + * [nanonet](nanonet.md) + * [NanoPlot](NanoPlot.md) + * [nanopolish](nanopolish.md) + * [NanopolishComp](NanopolishComp.md) + * [NanoStat](NanoStat.md) + * [napari](napari.md) + * [NASM](NASM.md) + * [nauty](nauty.md) + * [nbclassic](nbclassic.md) + * [NBO](NBO.md) + * [NCBI-Toolkit](NCBI-Toolkit.md) + * [ncbi-vdb](ncbi-vdb.md) + * [NCCL](NCCL.md) + * [NCCL-tests](NCCL-tests.md) + * [ncdf4](ncdf4.md) + * [ncdu](ncdu.md) + * [NCIPLOT](NCIPLOT.md) + * [NCL](NCL.md) + * [NCO](NCO.md) + * [ncolor](ncolor.md) + * [ncompress](ncompress.md) + * [ncurses](ncurses.md) + * [ncview](ncview.md) + * [nd2reader](nd2reader.md) + * [ne](ne.md) + * [NECI](NECI.md) + * [NEdit](NEdit.md) + * [Nek5000](Nek5000.md) + * [Nektar++](Nektar++.md) + * [neon](neon.md) + * [neptune-client](neptune-client.md) + * [Net-core](Net-core.md) + * [netCDF](netCDF.md) + * [netCDF-C++](netCDF-C++.md) + * [netCDF-C++4](netCDF-C++4.md) + * [netCDF-Fortran](netCDF-Fortran.md) + * [netcdf4-python](netcdf4-python.md) + * [netloc](netloc.md) + * [NetLogo](NetLogo.md) + * [netMHC](netMHC.md) + * [netMHCII](netMHCII.md) + * [netMHCIIpan](netMHCIIpan.md) + * [netMHCpan](netMHCpan.md) + * [NetPIPE](NetPIPE.md) + * [NetPyNE](NetPyNE.md) + * [nettle](nettle.md) + * [networkTools](networkTools.md) + * [networkx](networkx.md) + * [NeuroKit](NeuroKit.md) + * [NEURON](NEURON.md) + * [NewHybrids](NewHybrids.md) + * [Nextflow](Nextflow.md) + * [NextGenMap](NextGenMap.md) + * [NEXUS-CL](NEXUS-CL.md) + * [nf-core](nf-core.md) + * [nf-core-mag](nf-core-mag.md) + * [NFFT](NFFT.md) + * [nghttp2](nghttp2.md) + * [nghttp3](nghttp3.md) + * [NGLess](NGLess.md) + * [nglview](nglview.md) + * [NGS](NGS.md) + * [NGS-Python](NGS-Python.md) + * [NGSadmix](NGSadmix.md) + * [NGSpeciesID](NGSpeciesID.md) + * [ngspice](ngspice.md) + * [ngtcp2](ngtcp2.md) + * [NiBabel](NiBabel.md) + * [nichenetr](nichenetr.md) + * [NIfTI](NIfTI.md) + * [nifti2dicom](nifti2dicom.md) + * [Nilearn](Nilearn.md) + * [Nim](Nim.md) + * [NIMBLE](NIMBLE.md) + * [Ninja](Ninja.md) + * [Nipype](Nipype.md) + * [NLMpy](NLMpy.md) + * [nlohmann_json](nlohmann_json.md) + * [NLopt](NLopt.md) + * [NLTK](NLTK.md) + * [nnU-Net](nnU-Net.md) + * [Node-RED](Node-RED.md) + * [nodejs](nodejs.md) + * [noise](noise.md) + * [Normaliz](Normaliz.md) + * [nose-parameterized](nose-parameterized.md) + * [nose3](nose3.md) + * [novaSTA](novaSTA.md) + * [novoalign](novoalign.md) + * [NOVOPlasty](NOVOPlasty.md) + * [npstat](npstat.md) + * [NRGLjubljana](NRGLjubljana.md) + * [Nsight-Compute](Nsight-Compute.md) + * [Nsight-Systems](Nsight-Systems.md) + * [NSPR](NSPR.md) + * [NSS](NSS.md) + * [nsync](nsync.md) + * [ntCard](ntCard.md) + * [ntEdit](ntEdit.md) + * [ntHits](ntHits.md) + * [NTL](NTL.md) + * [NTPoly](NTPoly.md) + * [num2words](num2words.md) + * [numactl](numactl.md) + * [numba](numba.md) + * [numdiff](numdiff.md) + * [numexpr](numexpr.md) + * [numpy](numpy.md) + * [NVHPC](NVHPC.md) + * [nvitop](nvitop.md) + * [nvofbf](nvofbf.md) + * [nvompi](nvompi.md) + * [NVSHMEM](NVSHMEM.md) + * [nvtop](nvtop.md) + * [NWChem](NWChem.md) + * [NxTrim](NxTrim.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - *n* - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/n2v.md b/docs/version-specific/supported-software/n/n2v.md new file mode 100644 index 000000000..013d07991 --- /dev/null +++ b/docs/version-specific/supported-software/n/n2v.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# n2v + +Noise2Void - Learning Denoising from Single Noisy Images The field of image denoising is currently dominated by discriminative deep learning methods that are trained on pairs of noisy input and clean target images. Recently it has been shown that such methods can also be trained without clean targets. Instead, independent pairs of noisy images can be used, in an approach known as NOISE2NOISE (N2N). Here, we introduce NOISE2VOID (N2V), a training scheme that takes this idea one step further. It does not require noisy image pairs, nor clean target images. Consequently, N2V allows us to train directly on the body of data to be denoised and can therefore be applied when other methods cannot. Especially interesting is the application to biomedical image data, where the acquisition of training targets, clean or noisy, is frequently not possible. We compare the performance of N2V to approaches that have either clean target images and/or noisy image pairs available. Intuitively, N2V cannot be expected to outperform methods that have more information available during training. Still, we observe that the denoising performance of NOISE2VOID drops in moderation and compares favorably to training-free denoising methods. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.2`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``0.3.2`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/namedlist.md b/docs/version-specific/supported-software/n/namedlist.md new file mode 100644 index 000000000..ebb7bca80 --- /dev/null +++ b/docs/version-specific/supported-software/n/namedlist.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# namedlist + +A Python object, similar to namedtuple, but for lists. + +*homepage*: + +version | toolchain +--------|---------- +``1.8`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nano.md b/docs/version-specific/supported-software/n/nano.md new file mode 100644 index 000000000..d5fd08556 --- /dev/null +++ b/docs/version-specific/supported-software/n/nano.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# nano + +a simple editor, inspired by Pico + +*homepage*: + +version | toolchain +--------|---------- +``6.4`` | ``GCCcore/11.3.0`` +``7.0`` | ``GCCcore/11.3.0`` +``7.1`` | ``GCCcore/12.2.0`` +``7.2`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nanocompore.md b/docs/version-specific/supported-software/n/nanocompore.md new file mode 100644 index 000000000..25033684c --- /dev/null +++ b/docs/version-specific/supported-software/n/nanocompore.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# nanocompore + +Nanocompore identifies differences in ONT nanopore sequencing raw signal corresponding to RNA modifications by comparing 2 samples + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.0rc3-2`` | ``-Python-3.8.2`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nanoflann.md b/docs/version-specific/supported-software/n/nanoflann.md new file mode 100644 index 000000000..c1f1283d7 --- /dev/null +++ b/docs/version-specific/supported-software/n/nanoflann.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# nanoflann + +nanoflann is a C++11 header-only library for building KD-Trees of datasets with different topologies. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.0`` | ``GCCcore/10.3.0`` +``1.5.0`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nanoget.md b/docs/version-specific/supported-software/n/nanoget.md new file mode 100644 index 000000000..e5df0c0ac --- /dev/null +++ b/docs/version-specific/supported-software/n/nanoget.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# nanoget + +Functions to extract information from Oxford Nanopore sequencing data and alignments + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.12.1`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.15.0`` | | ``intel/2020b`` +``1.18.1`` | | ``foss/2021a`` +``1.18.1`` | | ``foss/2022a`` +``1.18.1`` | | ``foss/2022b`` +``1.19.1`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nanomath.md b/docs/version-specific/supported-software/n/nanomath.md new file mode 100644 index 000000000..211382d10 --- /dev/null +++ b/docs/version-specific/supported-software/n/nanomath.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# nanomath + +A few simple math function for other Oxford Nanopore processing scripts + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.23.1`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.2.0`` | | ``intel/2020b`` +``1.2.1`` | | ``foss/2021a`` +``1.3.0`` | | ``foss/2022a`` +``1.3.0`` | | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nanomax-analysis-utils.md b/docs/version-specific/supported-software/n/nanomax-analysis-utils.md new file mode 100644 index 000000000..13c7a3724 --- /dev/null +++ b/docs/version-specific/supported-software/n/nanomax-analysis-utils.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# nanomax-analysis-utils + +A set of tools for handling and analysing data at the NanoMAX beamline. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.4`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.4`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``0.4.3`` | | ``foss/2020b`` +``0.4.3`` | | ``fosscuda/2020b`` +``0.4.4`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nanonet.md b/docs/version-specific/supported-software/n/nanonet.md new file mode 100644 index 000000000..0ae65e991 --- /dev/null +++ b/docs/version-specific/supported-software/n/nanonet.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# nanonet + +Nanonet provides recurrent neural network basecalling for Oxford Nanopore MinION data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.0`` | ``-Python-2.7.13`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nanopolish.md b/docs/version-specific/supported-software/n/nanopolish.md new file mode 100644 index 000000000..4112228ea --- /dev/null +++ b/docs/version-specific/supported-software/n/nanopolish.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# nanopolish + +Software package for signal-level analysis of Oxford Nanopore sequencing data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.2`` | ``-Python-2.7.15`` | ``foss/2018b`` +``0.10.2`` | ``-Python-2.7.15`` | ``intel/2018b`` +``0.13.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.13.2`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.13.3`` | | ``foss/2020b`` +``0.14.0`` | | ``foss/2022a`` +``0.9.2`` | | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/napari.md b/docs/version-specific/supported-software/n/napari.md new file mode 100644 index 000000000..9c1392d09 --- /dev/null +++ b/docs/version-specific/supported-software/n/napari.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# napari + +napari is a fast, interactive, multi-dimensional image viewer for Python. It's designed for browsing, annotating, and analyzing large multi-dimensional images. It's built on top of Qt (for the GUI), vispy (for performant GPU-based rendering), and the scientific Python stack (numpy, scipy). + +*homepage*: + +version | toolchain +--------|---------- +``0.4.15`` | ``foss/2021b`` +``0.4.18`` | ``foss/2022a`` +``0.4.18`` | ``foss/2023a`` +``0.4.19.post1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nauty.md b/docs/version-specific/supported-software/n/nauty.md new file mode 100644 index 000000000..ab776e3c4 --- /dev/null +++ b/docs/version-specific/supported-software/n/nauty.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# nauty + +nauty and Traces are programs for computing automorphism groups of graphs and digraphs. They can also produce a canonical label. + +*homepage*: + +version | toolchain +--------|---------- +``2.6r12`` | ``GCC/8.2.0-2.31.1`` +``2.7rc2`` | ``GCC/8.2.0-2.31.1`` +``2.7rc5`` | ``GCC/8.3.0`` +``2.8.6`` | ``GCC/11.3.0`` +``2.8.8`` | ``GCC/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nbclassic.md b/docs/version-specific/supported-software/n/nbclassic.md new file mode 100644 index 000000000..72a0fef27 --- /dev/null +++ b/docs/version-specific/supported-software/n/nbclassic.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# nbclassic + +NbClassic provides a backwards compatible Jupyter Notebook interface that you can install side-by-side with the latest versions: That way, you can fearlessly upgrade without worrying about your classic extensions and customizations breaking. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0`` | ``GCCcore/12.3.0`` +``1.0.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/ncbi-vdb.md b/docs/version-specific/supported-software/n/ncbi-vdb.md new file mode 100644 index 000000000..e1eebb95d --- /dev/null +++ b/docs/version-specific/supported-software/n/ncbi-vdb.md @@ -0,0 +1,36 @@ +--- +search: + boost: 0.5 +--- +# ncbi-vdb + +The SRA Toolkit and SDK from NCBI is a collection of tools and libraries for using data in the INSDC Sequence Read Archives. + +*homepage*: + +version | toolchain +--------|---------- +``2.10.4`` | ``gompi/2019b`` +``2.10.7`` | ``gompi/2020a`` +``2.10.9`` | ``gompi/2020b`` +``2.10.9`` | ``gompi/2021a`` +``2.11.2`` | ``gompi/2021b`` +``2.5.8-1`` | ``foss/2016b`` +``2.5.8-1`` | ``intel/2016a`` +``2.7.0`` | ``foss/2016b`` +``2.8.2`` | ``foss/2017b`` +``2.8.2`` | ``intel/2017a`` +``2.8.2`` | ``intel/2017b`` +``2.9.1-1`` | ``foss/2018a`` +``2.9.1-1`` | ``intel/2018a`` +``2.9.3`` | ``foss/2018b`` +``3.0.0`` | ``gompi/2021b`` +``3.0.0`` | ``gompi/2022a`` +``3.0.10`` | ``gompi/2023a`` +``3.0.2`` | ``gompi/2022a`` +``3.0.5`` | ``gompi/2021a`` +``3.0.5`` | ``gompi/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/ncdf4.md b/docs/version-specific/supported-software/n/ncdf4.md new file mode 100644 index 000000000..7e8618559 --- /dev/null +++ b/docs/version-specific/supported-software/n/ncdf4.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# ncdf4 + +ncdf4: Interface to Unidata netCDF (version 4 or earlier) format data files + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.16`` | ``-R-3.4.0`` | ``intel/2017a`` +``1.16`` | ``-R-3.4.3`` | ``intel/2017b`` +``1.16`` | ``-R-3.4.4`` | ``intel/2018a`` +``1.16.1`` | ``-R-3.5.1`` | ``foss/2018b`` +``1.16.1`` | ``-R-3.6.0`` | ``foss/2019a`` +``1.16.1`` | ``-R-3.5.1`` | ``intel/2018b`` +``1.17`` | | ``foss/2019b`` +``1.17`` | ``-R-4.0.0`` | ``foss/2020a`` +``1.17`` | ``-R-4.0.3`` | ``foss/2020b`` +``1.17`` | ``-R-4.1.0`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/ncdu.md b/docs/version-specific/supported-software/n/ncdu.md new file mode 100644 index 000000000..cfa38ff82 --- /dev/null +++ b/docs/version-specific/supported-software/n/ncdu.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# ncdu + +Ncdu is a disk usage analyzer with an ncurses interface. It is designed to find space hogs on a remote server where you don't have an entire graphical setup available, but it is a useful tool even on regular desktop systems. Ncdu aims to be fast, simple and easy to use, and should be able to run in any minimal POSIX-like environment with ncurses installed. + +*homepage*: + +version | toolchain +--------|---------- +``1.13`` | ``GCCcore/7.3.0`` +``1.14`` | ``GCCcore/7.3.0`` +``1.15.1`` | ``GCCcore/9.3.0`` +``1.16`` | ``GCC/10.3.0`` +``1.16`` | ``GCC/11.2.0`` +``1.17`` | ``GCC/11.3.0`` +``1.18`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/ncolor.md b/docs/version-specific/supported-software/n/ncolor.md new file mode 100644 index 000000000..7e934fa5b --- /dev/null +++ b/docs/version-specific/supported-software/n/ncolor.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ncolor + +Fast remapping of instance labels 1,2,3,...,M to a smaller set of repeating, disjoint labels, 1,2,...,N. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/ncompress.md b/docs/version-specific/supported-software/n/ncompress.md new file mode 100644 index 000000000..961658fab --- /dev/null +++ b/docs/version-specific/supported-software/n/ncompress.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ncompress + +Compress is a fast, simple LZW file compressor. Compress does not have the highest compression rate, but it is one of the fastest programs to compress data. Compress is the defacto standard in the UNIX community for compressing files. + +*homepage*: + +version | toolchain +--------|---------- +``4.2.4.4`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/ncurses.md b/docs/version-specific/supported-software/n/ncurses.md new file mode 100644 index 000000000..6a91f0e4b --- /dev/null +++ b/docs/version-specific/supported-software/n/ncurses.md @@ -0,0 +1,65 @@ +--- +search: + boost: 0.5 +--- +# ncurses + +The Ncurses (new curses) library is a free software emulation of curses in System V Release 4.0, and more. It uses Terminfo format, supports pads and color and multiple highlights and forms characters and function-key mapping, and has all the other SYSV-curses enhancements over BSD Curses. + +*homepage*: + +version | toolchain +--------|---------- +``5.9`` | ``GCC/4.8.1`` +``5.9`` | ``GCC/4.8.2`` +``5.9`` | ``GCC/4.8.3`` +``5.9`` | ``GCC/4.8.4`` +``5.9`` | ``GCC/4.9.2`` +``5.9`` | ``GNU/4.9.3-2.25`` +``5.9`` | ``gimkl/2.11.5`` +``5.9`` | ``system`` +``6.0`` | ``GCC/4.9.3-2.25`` +``6.0`` | ``GCC/5.4.0-2.26`` +``6.0`` | ``GCCcore/4.9.3`` +``6.0`` | ``GCCcore/5.3.0`` +``6.0`` | ``GCCcore/5.4.0`` +``6.0`` | ``GCCcore/6.2.0`` +``6.0`` | ``GCCcore/6.3.0`` +``6.0`` | ``GCCcore/6.4.0`` +``6.0`` | ``GNU/4.9.3-2.25`` +``6.0`` | ``foss/2016.04`` +``6.0`` | ``foss/2016a`` +``6.0`` | ``foss/2016b`` +``6.0`` | ``gimkl/2017a`` +``6.0`` | ``intel/2016.02-GCC-4.9`` +``6.0`` | ``intel/2016a`` +``6.0`` | ``intel/2016b`` +``6.0`` | ``iomkl/2016.07`` +``6.0`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``6.0`` | ``system`` +``6.1`` | ``GCCcore/6.4.0`` +``6.1`` | ``GCCcore/7.2.0`` +``6.1`` | ``GCCcore/7.3.0`` +``6.1`` | ``GCCcore/8.2.0`` +``6.1`` | ``GCCcore/8.3.0`` +``6.1`` | ``system`` +``6.2`` | ``FCC/4.5.0`` +``6.2`` | ``GCCcore/10.2.0`` +``6.2`` | ``GCCcore/10.3.0`` +``6.2`` | ``GCCcore/11.2.0`` +``6.2`` | ``GCCcore/9.3.0`` +``6.2`` | ``system`` +``6.3`` | ``GCCcore/11.3.0`` +``6.3`` | ``GCCcore/12.1.0`` +``6.3`` | ``GCCcore/12.2.0`` +``6.3`` | ``system`` +``6.4`` | ``GCCcore/12.3.0`` +``6.4`` | ``GCCcore/13.1.0`` +``6.4`` | ``GCCcore/13.2.0`` +``6.4`` | ``system`` +``6.5`` | ``GCCcore/13.3.0`` +``6.5`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/ncview.md b/docs/version-specific/supported-software/n/ncview.md new file mode 100644 index 000000000..d3890e7a9 --- /dev/null +++ b/docs/version-specific/supported-software/n/ncview.md @@ -0,0 +1,32 @@ +--- +search: + boost: 0.5 +--- +# ncview + +Ncview is a visual browser for netCDF format files. Typically you would use ncview to get a quick and easy, push-button look at your netCDF files. You can view simple movies of the data, view along various dimensions, take a look at the actual data values, change color maps, invert the data, etc. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.7`` | ``foss/2017b`` +``2.1.7`` | ``foss/2018b`` +``2.1.7`` | ``foss/2019b`` +``2.1.7`` | ``gompi/2019a`` +``2.1.7`` | ``intel/2016b`` +``2.1.7`` | ``intel/2017a`` +``2.1.7`` | ``intel/2017b`` +``2.1.7`` | ``intel/2018a`` +``2.1.7`` | ``intel/2018b`` +``2.1.7`` | ``intel/2019b`` +``2.1.7`` | ``iomkl/2018b`` +``2.1.8`` | ``gompi/2020a`` +``2.1.8`` | ``gompi/2021a`` +``2.1.8`` | ``gompi/2021b`` +``2.1.8`` | ``gompi/2022a`` +``2.1.8`` | ``gompi/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nd2reader.md b/docs/version-specific/supported-software/n/nd2reader.md new file mode 100644 index 000000000..1095df8b5 --- /dev/null +++ b/docs/version-specific/supported-software/n/nd2reader.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# nd2reader + +nd2reader is a pure-Python package that reads images produced by NIS Elements 4.0+. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.6`` | ``-Python-2.7.14`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/ne.md b/docs/version-specific/supported-software/n/ne.md new file mode 100644 index 000000000..d77ffe638 --- /dev/null +++ b/docs/version-specific/supported-software/n/ne.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ne + +ne is a free (GPL'd) text editor based on the POSIX standard that runs (we hope) on almost any UN*X machine. ne is easy to use for the beginner, but powerful and fully configurable for the wizard, and most sparing in its resource usage. + +*homepage*: + +version | toolchain +--------|---------- +``3.0.1`` | ``gimkl/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/neon.md b/docs/version-specific/supported-software/n/neon.md new file mode 100644 index 000000000..f323b7c06 --- /dev/null +++ b/docs/version-specific/supported-software/n/neon.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# neon + +neon is an HTTP/1.1 and WebDAV client library, with a C interface. + +*homepage*: + +version | toolchain +--------|---------- +``0.31.2`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/neptune-client.md b/docs/version-specific/supported-software/n/neptune-client.md new file mode 100644 index 000000000..55d905b8b --- /dev/null +++ b/docs/version-specific/supported-software/n/neptune-client.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# neptune-client + +Neptune is an experiment tracking hub that brings organization and collaboration to your data science team. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.5`` | | ``foss/2020b`` +``0.16.2`` | | ``foss/2021a`` +``0.16.2`` | | ``foss/2022a`` +``0.4.129`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/netCDF-C++.md b/docs/version-specific/supported-software/n/netCDF-C++.md new file mode 100644 index 000000000..3aaf70ba4 --- /dev/null +++ b/docs/version-specific/supported-software/n/netCDF-C++.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# netCDF-C++ + +NetCDF (network Common Data Form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data. + +*homepage*: + +version | toolchain +--------|---------- +``4.2`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/netCDF-C++4.md b/docs/version-specific/supported-software/n/netCDF-C++4.md new file mode 100644 index 000000000..6e09a73f4 --- /dev/null +++ b/docs/version-specific/supported-software/n/netCDF-C++4.md @@ -0,0 +1,42 @@ +--- +search: + boost: 0.5 +--- +# netCDF-C++4 + +NetCDF (network Common Data Form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.3.0`` | | ``foss/2018b`` +``4.3.0`` | | ``gompi/2019a`` +``4.3.0`` | | ``iimpi/2019a`` +``4.3.0`` | | ``intel/2016a`` +``4.3.0`` | | ``intel/2016b`` +``4.3.0`` | ``-HDF5-1.8.18`` | ``intel/2017a`` +``4.3.0`` | | ``intel/2017a`` +``4.3.0`` | ``-HDF5-1.8.19`` | ``intel/2017b`` +``4.3.0`` | | ``intel/2018a`` +``4.3.0`` | | ``intel/2018b`` +``4.3.0`` | | ``iomkl/2018b`` +``4.3.1`` | | ``gompi/2019b`` +``4.3.1`` | | ``gompi/2020a`` +``4.3.1`` | | ``gompi/2020b`` +``4.3.1`` | | ``gompi/2021a`` +``4.3.1`` | | ``gompi/2021b`` +``4.3.1`` | | ``gompi/2022a`` +``4.3.1`` | | ``gompi/2023a`` +``4.3.1`` | | ``gompi/2023b`` +``4.3.1`` | | ``iimpi/2019b`` +``4.3.1`` | | ``iimpi/2020a`` +``4.3.1`` | | ``iimpi/2020b`` +``4.3.1`` | | ``iimpi/2021a`` +``4.3.1`` | | ``iimpi/2021b`` +``4.3.1`` | | ``iimpi/2022a`` +``4.3.1`` | | ``iimpi/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/netCDF-Fortran.md b/docs/version-specific/supported-software/n/netCDF-Fortran.md new file mode 100644 index 000000000..e20b10e7d --- /dev/null +++ b/docs/version-specific/supported-software/n/netCDF-Fortran.md @@ -0,0 +1,64 @@ +--- +search: + boost: 0.5 +--- +# netCDF-Fortran + +NetCDF (network Common Data Form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.4.1`` | | ``foss/2016b`` +``4.4.1`` | | ``intel/2016b`` +``4.4.2`` | | ``intel/2016.02-GCC-4.9`` +``4.4.3`` | | ``foss/2016a`` +``4.4.3`` | | ``intel/2016a`` +``4.4.4`` | | ``PGI/18.4-GCC-6.4.0-2.28`` +``4.4.4`` | | ``foss/2016b`` +``4.4.4`` | ``-HDF5-1.8.19`` | ``foss/2017b`` +``4.4.4`` | | ``foss/2017b`` +``4.4.4`` | | ``foss/2018a`` +``4.4.4`` | | ``foss/2018b`` +``4.4.4`` | | ``fosscuda/2017b`` +``4.4.4`` | | ``fosscuda/2018b`` +``4.4.4`` | | ``intel/2016a`` +``4.4.4`` | | ``intel/2016b`` +``4.4.4`` | ``-HDF5-1.8.18`` | ``intel/2017a`` +``4.4.4`` | | ``intel/2017a`` +``4.4.4`` | ``-HDF5-1.8.19`` | ``intel/2017b`` +``4.4.4`` | | ``intel/2017b`` +``4.4.4`` | | ``intel/2018a`` +``4.4.4`` | | ``intel/2018b`` +``4.4.4`` | | ``intelcuda/2017b`` +``4.4.4`` | | ``iomkl/2016.07`` +``4.4.4`` | | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``4.4.4`` | | ``iomkl/2018b`` +``4.4.5`` | | ``gompi/2019a`` +``4.4.5`` | | ``iimpi/2019a`` +``4.5.2`` | | ``gompi/2019b`` +``4.5.2`` | | ``gompi/2020a`` +``4.5.2`` | | ``gompic/2019b`` +``4.5.2`` | | ``gompic/2020a`` +``4.5.2`` | | ``iimpi/2019b`` +``4.5.2`` | | ``iimpi/2020a`` +``4.5.2`` | | ``iimpic/2019b`` +``4.5.3`` | | ``gompi/2020b`` +``4.5.3`` | | ``gompi/2021a`` +``4.5.3`` | | ``gompi/2021b`` +``4.5.3`` | | ``gompic/2020b`` +``4.5.3`` | | ``iimpi/2020b`` +``4.5.3`` | | ``iimpi/2021a`` +``4.5.3`` | | ``iimpi/2021b`` +``4.6.0`` | | ``gompi/2022a`` +``4.6.0`` | | ``gompi/2022b`` +``4.6.0`` | | ``iimpi/2022a`` +``4.6.1`` | | ``gompi/2023a`` +``4.6.1`` | | ``gompi/2023b`` +``4.6.1`` | | ``iimpi/2023a`` +``4.6.1`` | | ``iimpi/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/netCDF.md b/docs/version-specific/supported-software/n/netCDF.md new file mode 100644 index 000000000..de35516ff --- /dev/null +++ b/docs/version-specific/supported-software/n/netCDF.md @@ -0,0 +1,78 @@ +--- +search: + boost: 0.5 +--- +# netCDF + +NetCDF (network Common Data Form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.3.3.1`` | | ``foss/2016a`` +``4.3.3.1`` | | ``intel/2016.02-GCC-4.9`` +``4.3.3.1`` | | ``intel/2016a`` +``4.4.0`` | | ``foss/2016a`` +``4.4.0`` | | ``intel/2016a`` +``4.4.0`` | | ``iomkl/2016.07`` +``4.4.0`` | | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``4.4.1`` | | ``foss/2016a`` +``4.4.1`` | | ``foss/2016b`` +``4.4.1`` | | ``intel/2016a`` +``4.4.1`` | | ``intel/2016b`` +``4.4.1.1`` | | ``foss/2016b`` +``4.4.1.1`` | ``-HDF5-1.10.1`` | ``foss/2017a`` +``4.4.1.1`` | ``-HDF5-1.8.19`` | ``foss/2017a`` +``4.4.1.1`` | ``-HDF5-1.8.19`` | ``foss/2017b`` +``4.4.1.1`` | | ``foss/2017b`` +``4.4.1.1`` | | ``fosscuda/2017b`` +``4.4.1.1`` | | ``intel/2016b`` +``4.4.1.1`` | ``-HDF5-1.10.1`` | ``intel/2017a`` +``4.4.1.1`` | ``-HDF5-1.8.18`` | ``intel/2017a`` +``4.4.1.1`` | | ``intel/2017a`` +``4.4.1.1`` | ``-HDF5-1.8.19`` | ``intel/2017b`` +``4.4.1.1`` | | ``intel/2017b`` +``4.4.1.1`` | | ``intelcuda/2017b`` +``4.5.0`` | | ``foss/2017b`` +``4.5.0`` | | ``intel/2017b`` +``4.5.0`` | | ``intel/2018.00`` +``4.5.0`` | | ``intel/2018.01`` +``4.6.0`` | | ``foss/2018a`` +``4.6.0`` | | ``intel/2018a`` +``4.6.0`` | | ``iomkl/2018a`` +``4.6.1`` | | ``PGI/18.4-GCC-6.4.0-2.28`` +``4.6.1`` | | ``foss/2018b`` +``4.6.1`` | | ``fosscuda/2018b`` +``4.6.1`` | | ``intel/2018b`` +``4.6.1`` | | ``iomkl/2018b`` +``4.6.2`` | | ``gompi/2019a`` +``4.6.2`` | | ``iimpi/2019a`` +``4.7.1`` | | ``gompi/2019b`` +``4.7.1`` | | ``gompic/2019b`` +``4.7.1`` | | ``iimpi/2019b`` +``4.7.1`` | | ``iimpic/2019b`` +``4.7.4`` | | ``gompi/2020a`` +``4.7.4`` | | ``gompi/2020b`` +``4.7.4`` | | ``gompic/2020a`` +``4.7.4`` | | ``gompic/2020b`` +``4.7.4`` | | ``iimpi/2020a`` +``4.7.4`` | | ``iimpi/2020b`` +``4.7.4`` | | ``iimpic/2020b`` +``4.7.4`` | | ``iompi/2020a`` +``4.8.0`` | | ``gompi/2021a`` +``4.8.0`` | | ``iimpi/2021a`` +``4.8.1`` | | ``gompi/2021b`` +``4.8.1`` | | ``iimpi/2021b`` +``4.9.0`` | | ``gompi/2022a`` +``4.9.0`` | | ``gompi/2022b`` +``4.9.0`` | | ``iimpi/2022a`` +``4.9.0`` | | ``iimpi/2022b`` +``4.9.2`` | | ``gompi/2023a`` +``4.9.2`` | | ``gompi/2023b`` +``4.9.2`` | | ``iimpi/2023a`` +``4.9.2`` | | ``iimpi/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/netMHC.md b/docs/version-specific/supported-software/n/netMHC.md new file mode 100644 index 000000000..0bea7f3b6 --- /dev/null +++ b/docs/version-specific/supported-software/n/netMHC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# netMHC + +NetMHC 4.0 predicts binding of peptides to a number of different HLA alleles using artificial neural networks (ANN). + +*homepage*: + +version | toolchain +--------|---------- +``4.0a`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/netMHCII.md b/docs/version-specific/supported-software/n/netMHCII.md new file mode 100644 index 000000000..85f61578f --- /dev/null +++ b/docs/version-specific/supported-software/n/netMHCII.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# netMHCII + +NetMHCII 2.3 server predicts binding of peptides to HLA-DR, HLA-DQ, HLA-DP and mouse MHC class II alleles using articial neuron networks. Predictions can be obtained for 25 HLA-DR alleles, 20 HLA-DQ, 9 HLA-DP, and 7 mouse H2 class II alleles. + +*homepage*: + +version | toolchain +--------|---------- +``2.3`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/netMHCIIpan.md b/docs/version-specific/supported-software/n/netMHCIIpan.md new file mode 100644 index 000000000..329d60852 --- /dev/null +++ b/docs/version-specific/supported-software/n/netMHCIIpan.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# netMHCIIpan + +The NetMHCIIpan software predicts binding of peptides to MHC class II molecules. The predictions are available for the three human MHC class II isotypes HLA-DR, HLA-DP and HLA-DQ, as well as mouse molecules (H-2). + +*homepage*: + +version | toolchain +--------|---------- +``3.2`` | ``GCCcore/7.3.0`` +``3.2`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/netMHCpan.md b/docs/version-specific/supported-software/n/netMHCpan.md new file mode 100644 index 000000000..f6eeefbd2 --- /dev/null +++ b/docs/version-specific/supported-software/n/netMHCpan.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# netMHCpan + +The NetMHCpan software predicts binding of peptides to any known MHC molecule using artificial neural networks (ANNs). + +*homepage*: + +version | toolchain +--------|---------- +``4.0a`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/netcdf4-python.md b/docs/version-specific/supported-software/n/netcdf4-python.md new file mode 100644 index 000000000..a27443e74 --- /dev/null +++ b/docs/version-specific/supported-software/n/netcdf4-python.md @@ -0,0 +1,43 @@ +--- +search: + boost: 0.5 +--- +# netcdf4-python + +Python/numpy interface to netCDF. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.9`` | ``-Python-2.7.13`` | ``intel/2017a`` +``1.3.1`` | ``-Python-3.6.3-HDF5-1.8.19`` | ``intel/2017b`` +``1.3.1`` | ``-Python-3.6.3`` | ``intel/2017b`` +``1.4.0`` | ``-Python-3.6.2-HDF5-1.8.19`` | ``foss/2017b`` +``1.4.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.4.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.4.1`` | ``-Python-2.7.15`` | ``intel/2018b`` +``1.4.1`` | ``-Python-3.6.6`` | ``intel/2018b`` +``1.4.2`` | ``-Python-3.6.4`` | ``foss/2018a`` +``1.4.3`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.5.2`` | | ``intel/2019a`` +``1.5.3`` | ``-Python-2.7.16`` | ``foss/2019b`` +``1.5.3`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.5.3`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.5.3`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.5.3`` | ``-Python-3.8.2`` | ``intel/2020a`` +``1.5.5.1`` | | ``foss/2020b`` +``1.5.5.1`` | | ``fosscuda/2020b`` +``1.5.5.1`` | | ``intel/2020b`` +``1.5.7`` | | ``foss/2021a`` +``1.5.7`` | | ``foss/2021b`` +``1.5.7`` | | ``intel/2021b`` +``1.6.1`` | | ``foss/2022a`` +``1.6.1`` | | ``intel/2022a`` +``1.6.3`` | | ``foss/2022b`` +``1.6.4`` | | ``foss/2023a`` +``1.6.5`` | | ``foss/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/netloc.md b/docs/version-specific/supported-software/n/netloc.md new file mode 100644 index 000000000..4cec1cb0f --- /dev/null +++ b/docs/version-specific/supported-software/n/netloc.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# netloc + +The Portable Network Locality (netloc) software package provides network topology discovery tools, and an abstract representation of those networks topologies for a range of network types and configurations. It is provided as a companion to the Portable Hardware Locality (hwloc) package. + +*homepage*: + +version | toolchain +--------|---------- +``0.5`` | ``GCC/4.8.3`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nettle.md b/docs/version-specific/supported-software/n/nettle.md new file mode 100644 index 000000000..8736595e4 --- /dev/null +++ b/docs/version-specific/supported-software/n/nettle.md @@ -0,0 +1,43 @@ +--- +search: + boost: 0.5 +--- +# nettle + +Nettle is a cryptographic library that is designed to fit easily in more or less any context: In crypto toolkits for object-oriented languages (C++, Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel space. + +*homepage*: + +version | toolchain +--------|---------- +``3.1.1`` | ``GNU/4.9.3-2.25`` +``3.1.1`` | ``foss/2016a`` +``3.1.1`` | ``intel/2016a`` +``3.2`` | ``GCCcore/5.4.0`` +``3.2`` | ``foss/2016b`` +``3.2`` | ``intel/2016b`` +``3.3`` | ``GCCcore/6.3.0`` +``3.3`` | ``GCCcore/6.4.0`` +``3.3`` | ``intel/2017a`` +``3.4`` | ``GCCcore/6.4.0`` +``3.4`` | ``GCCcore/7.3.0`` +``3.4`` | ``foss/2018a`` +``3.4`` | ``foss/2018b`` +``3.4`` | ``fosscuda/2018b`` +``3.4`` | ``intel/2018a`` +``3.4`` | ``intel/2018b`` +``3.4`` | ``iomkl/2018a`` +``3.4.1`` | ``GCCcore/8.2.0`` +``3.5.1`` | ``GCCcore/8.3.0`` +``3.6`` | ``GCCcore/10.2.0`` +``3.6`` | ``GCCcore/9.3.0`` +``3.7.2`` | ``GCCcore/10.3.0`` +``3.7.3`` | ``GCCcore/11.2.0`` +``3.8`` | ``GCCcore/11.3.0`` +``3.8.1`` | ``GCCcore/12.2.0`` +``3.9.1`` | ``GCCcore/12.3.0`` +``3.9.1`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/networkTools.md b/docs/version-specific/supported-software/n/networkTools.md new file mode 100644 index 000000000..18dcce3b3 --- /dev/null +++ b/docs/version-specific/supported-software/n/networkTools.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# networkTools + +Dynamical Network Analysis is a method of characterizing allosteric signalling through biomolecular complexes. + +*homepage*: + +version | toolchain +--------|---------- +``2`` | ``GCC/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/networkx.md b/docs/version-specific/supported-software/n/networkx.md new file mode 100644 index 000000000..c1b5a26b2 --- /dev/null +++ b/docs/version-specific/supported-software/n/networkx.md @@ -0,0 +1,54 @@ +--- +search: + boost: 0.5 +--- +# networkx + +NetworkX is a Python package for the creation, manipulation, and study of the structure, dynamics, and functions of complex networks. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.11`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.11`` | ``-Python-3.5.1`` | ``foss/2016a`` +``1.11`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.2`` | ``-Python-2.7.15`` | ``foss/2018b`` +``2.2`` | ``-Python-3.6.6`` | ``foss/2018b`` +``2.2`` | ``-Python-2.7.15`` | ``foss/2019a`` +``2.2`` | ``-Python-2.7.16`` | ``foss/2019b`` +``2.2`` | ``-Python-2.7.15`` | ``intel/2018b`` +``2.2`` | ``-Python-3.6.6`` | ``intel/2018b`` +``2.3`` | ``-Python-3.7.2`` | ``foss/2019a`` +``2.3`` | ``-Python-3.7.2`` | ``intel/2019a`` +``2.4`` | ``-Python-3.7.2`` | ``foss/2019a`` +``2.4`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.4`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2.4`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``2.4`` | ``-Python-3.8.2`` | ``fosscuda/2020a`` +``2.4`` | ``-Python-3.7.2`` | ``intel/2019a`` +``2.4`` | ``-Python-3.7.4`` | ``intel/2019b`` +``2.4`` | ``-Python-3.8.2`` | ``intel/2020a`` +``2.4`` | ``-Python-3.7.4`` | ``intelcuda/2019b`` +``2.5`` | | ``foss/2020b`` +``2.5`` | | ``fosscuda/2020b`` +``2.5`` | | ``intel/2020b`` +``2.5`` | | ``intelcuda/2020b`` +``2.5.1`` | | ``foss/2021a`` +``2.6.2`` | | ``foss/2020b`` +``2.6.3`` | | ``foss/2021a`` +``2.6.3`` | | ``foss/2021b`` +``2.6.3`` | | ``intel/2021b`` +``2.8.4`` | | ``foss/2022a`` +``2.8.4`` | | ``intel/2022a`` +``2.8.8`` | | ``gfbf/2022b`` +``3.0`` | | ``gfbf/2022b`` +``3.1`` | | ``gfbf/2023a`` +``3.2.1`` | | ``gfbf/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nf-core-mag.md b/docs/version-specific/supported-software/n/nf-core-mag.md new file mode 100644 index 000000000..aea691d7e --- /dev/null +++ b/docs/version-specific/supported-software/n/nf-core-mag.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# nf-core-mag + +The Nextflow pipeline 'mag' ported to EasyBuild/EESSI. + +*homepage*: + +version | toolchain +--------|---------- +``20221110`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nf-core.md b/docs/version-specific/supported-software/n/nf-core.md new file mode 100644 index 000000000..051ba35d6 --- /dev/null +++ b/docs/version-specific/supported-software/n/nf-core.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# nf-core + +Python package with helper tools for the nf-core community. + +*homepage*: + +version | toolchain +--------|---------- +``2.10`` | ``foss/2022b`` +``2.13.1`` | ``foss/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nghttp2.md b/docs/version-specific/supported-software/n/nghttp2.md new file mode 100644 index 000000000..1d11ffd9f --- /dev/null +++ b/docs/version-specific/supported-software/n/nghttp2.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# nghttp2 + +This is an implementation of the Hypertext Transfer Protocol version 2 in C. The framing layer of HTTP/2 is implemented as a reusable C library. On top of that, we have implemented an HTTP/2 client, server and proxy. We have also developed load test and benchmarking tools for HTTP/2. An HPACK encoder and decoder are available as a public API. + +*homepage*: + +version | toolchain +--------|---------- +``1.48.0`` | ``GCC/11.2.0`` +``1.48.0`` | ``GCC/11.3.0`` +``1.58.0`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nghttp3.md b/docs/version-specific/supported-software/n/nghttp3.md new file mode 100644 index 000000000..a78bae804 --- /dev/null +++ b/docs/version-specific/supported-software/n/nghttp3.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# nghttp3 + +nghttp3 is an implementation of RFC 9114 HTTP/3 mapping over QUIC and RFC 9204 QPACK in C. It does not depend on any particular QUIC transport implementation. + +*homepage*: + +version | toolchain +--------|---------- +``0.6.0`` | ``GCCcore/11.2.0`` +``0.6.0`` | ``GCCcore/11.3.0`` +``1.3.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nglview.md b/docs/version-specific/supported-software/n/nglview.md new file mode 100644 index 000000000..38f8c340b --- /dev/null +++ b/docs/version-specific/supported-software/n/nglview.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# nglview + +IPython widget to interactively view molecular structures and trajectories. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.7.0`` | ``-Python-3.7.2`` | ``intel/2019a`` +``2.7.7`` | ``-Python-3.8.2`` | ``intel/2020a`` +``3.0.3`` | | ``foss/2021a`` +``3.0.3`` | | ``foss/2022a`` +``3.1.2`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/ngspice.md b/docs/version-specific/supported-software/n/ngspice.md new file mode 100644 index 000000000..900576deb --- /dev/null +++ b/docs/version-specific/supported-software/n/ngspice.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ngspice + +Ngspice is a mixed-level/mixed-signal circuit simulator. Its code is based on three open source software packages: Spice3f5, Cider1b1 and Xspice. + +*homepage*: + +version | toolchain +--------|---------- +``31`` | ``foss/2019b`` +``39`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/ngtcp2.md b/docs/version-specific/supported-software/n/ngtcp2.md new file mode 100644 index 000000000..70392f31b --- /dev/null +++ b/docs/version-specific/supported-software/n/ngtcp2.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# ngtcp2 + +'Call it TCP/2. One More Time.' ngtcp2 project is an effort to implement RFC9000 QUIC protocol. + +*homepage*: + +version | toolchain +--------|---------- +``0.7.0`` | ``GCC/11.2.0`` +``0.7.0`` | ``GCC/11.3.0`` +``1.2.0`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nichenetr.md b/docs/version-specific/supported-software/n/nichenetr.md new file mode 100644 index 000000000..23c0a6e0b --- /dev/null +++ b/docs/version-specific/supported-software/n/nichenetr.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# nichenetr + +R implementation of the NicheNet method, to predict active ligand-target links between interacting cells + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.1-20230223`` | ``-R-4.2.1`` | ``foss/2022a`` +``2.0.4`` | ``-R-4.2.2`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nifti2dicom.md b/docs/version-specific/supported-software/n/nifti2dicom.md new file mode 100644 index 000000000..fb5bd71ee --- /dev/null +++ b/docs/version-specific/supported-software/n/nifti2dicom.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# nifti2dicom + +Nifti2Dicom is a conversion tool that converts 3D NIfTI files (and other formats supported by ITK, including Analyze, MetaImage Nrrd and VTK) to DICOM. Unlike other conversion tools, it can import a DICOM file that is used to import the patient and study DICOM tags, and allows you to edit the accession number and other DICOM tags, in order to create a valid DICOM that can be imported in a PACS. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.11`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nlohmann_json.md b/docs/version-specific/supported-software/n/nlohmann_json.md new file mode 100644 index 000000000..aa7689367 --- /dev/null +++ b/docs/version-specific/supported-software/n/nlohmann_json.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# nlohmann_json + +JSON for Modern C++ + +*homepage*: + +version | toolchain +--------|---------- +``3.10.0`` | ``GCCcore/10.3.0`` +``3.10.4`` | ``GCCcore/11.2.0`` +``3.10.5`` | ``GCCcore/11.3.0`` +``3.11.2`` | ``GCCcore/12.2.0`` +``3.11.2`` | ``GCCcore/12.3.0`` +``3.11.3`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nnU-Net.md b/docs/version-specific/supported-software/n/nnU-Net.md new file mode 100644 index 000000000..9dab643bb --- /dev/null +++ b/docs/version-specific/supported-software/n/nnU-Net.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# nnU-Net + +nnU-Net is the first segmentation method that is designed to deal with the dataset diversity found in the domain It condenses and automates the keys decisions for designing a successful segmentation pipeline for any given dataset. + +*homepage*: + +version | toolchain +--------|---------- +``1.7.0`` | ``foss/2020b`` +``1.7.0`` | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nodejs.md b/docs/version-specific/supported-software/n/nodejs.md new file mode 100644 index 000000000..3bb5c2862 --- /dev/null +++ b/docs/version-specific/supported-software/n/nodejs.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# nodejs + +Node.js is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices. + +*homepage*: + +version | toolchain +--------|---------- +``10.15.1`` | ``foss/2018b`` +``10.15.3`` | ``GCCcore/8.2.0`` +``12.16.1`` | ``GCCcore/7.3.0`` +``12.16.1`` | ``GCCcore/8.3.0`` +``12.16.1`` | ``GCCcore/9.3.0`` +``12.19.0`` | ``GCCcore/10.2.0`` +``14.17.0`` | ``GCCcore/10.3.0`` +``14.17.2`` | ``GCCcore/10.3.0`` +``14.17.6`` | ``GCCcore/11.2.0`` +``16.15.1`` | ``GCCcore/11.3.0`` +``18.12.1`` | ``GCCcore/12.2.0`` +``18.17.1`` | ``GCCcore/12.3.0`` +``20.13.1`` | ``GCCcore/13.3.0`` +``20.9.0`` | ``GCCcore/13.2.0`` +``4.4.7`` | ``foss/2016a`` +``6.10.3`` | ``foss/2017a`` +``8.9.4`` | ``foss/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/noise.md b/docs/version-specific/supported-software/n/noise.md new file mode 100644 index 000000000..6460e1a5c --- /dev/null +++ b/docs/version-specific/supported-software/n/noise.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# noise + +Native-code and shader implementations of Perlin noise for Python + +*homepage*: + +version | toolchain +--------|---------- +``1.2.2`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nose-parameterized.md b/docs/version-specific/supported-software/n/nose-parameterized.md new file mode 100644 index 000000000..04e770f6b --- /dev/null +++ b/docs/version-specific/supported-software/n/nose-parameterized.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# nose-parameterized + +Parameterized testing with any Python test framework. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.5.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``0.5.0`` | ``-Python-3.5.1`` | ``foss/2016a`` +``0.5.0`` | ``-Python-3.5.2`` | ``intel/2016b`` +``0.6.0`` | ``-Python-3.6.1`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nose3.md b/docs/version-specific/supported-software/n/nose3.md new file mode 100644 index 000000000..ebce30f94 --- /dev/null +++ b/docs/version-specific/supported-software/n/nose3.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# nose3 + +Nose extends unittest to make testing easier. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.8`` | ``GCCcore/11.3.0`` +``1.3.8`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/novaSTA.md b/docs/version-specific/supported-software/n/novaSTA.md new file mode 100644 index 000000000..36b620cc3 --- /dev/null +++ b/docs/version-specific/supported-software/n/novaSTA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# novaSTA + +C++ version of subtomogram averaging (SA) scripts from TOM/AV3 package https://doi.org/10.1073/pnas.0409178102. Both CPU and GPU parallelization is supported although the latter performs significantly worse in terms of processing time (the code is not well optimized) and is thus not recommended for larger datasets. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/novoalign.md b/docs/version-specific/supported-software/n/novoalign.md new file mode 100644 index 000000000..ea2f6caff --- /dev/null +++ b/docs/version-specific/supported-software/n/novoalign.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# novoalign + +Map short reads onto a reference genome from Illumina, Ion Torrent, and 454 next generation sequencing platforms + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.09.00`` | | ``system`` +``3.09.01`` | ``-R-3.5.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/npstat.md b/docs/version-specific/supported-software/n/npstat.md new file mode 100644 index 000000000..285db7a73 --- /dev/null +++ b/docs/version-specific/supported-software/n/npstat.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# npstat + +npstat implements some population genetics tests and estimators that can be applied to pooled sequences from Next Generation Sequencing experiments. + +*homepage*: + +version | toolchain +--------|---------- +``0.99`` | ``foss/2016a`` +``0.99`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nsync.md b/docs/version-specific/supported-software/n/nsync.md new file mode 100644 index 000000000..ace5c0e56 --- /dev/null +++ b/docs/version-specific/supported-software/n/nsync.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# nsync + +nsync is a C library that exports various synchronization primitives, such as mutexes + +*homepage*: + +version | toolchain +--------|---------- +``1.24.0`` | ``GCCcore/10.2.0`` +``1.24.0`` | ``GCCcore/10.3.0`` +``1.24.0`` | ``GCCcore/11.2.0`` +``1.24.0`` | ``GCCcore/8.3.0`` +``1.24.0`` | ``GCCcore/9.3.0`` +``1.25.0`` | ``GCCcore/11.3.0`` +``1.26.0`` | ``GCCcore/12.2.0`` +``1.26.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/ntCard.md b/docs/version-specific/supported-software/n/ntCard.md new file mode 100644 index 000000000..057bf3014 --- /dev/null +++ b/docs/version-specific/supported-software/n/ntCard.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# ntCard + +ntCard is a streaming algorithm for estimating the frequencies of k-mers in genomics datasets. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.1`` | ``GCC/11.2.0`` +``1.2.1`` | ``GCC/8.3.0`` +``1.2.2`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/ntEdit.md b/docs/version-specific/supported-software/n/ntEdit.md new file mode 100644 index 000000000..54a791412 --- /dev/null +++ b/docs/version-specific/supported-software/n/ntEdit.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ntEdit + +ntEdit is a fast and scalable genomics application for polishing genome assembly drafts. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.1`` | ``iccifort/2018.3.222-GCC-7.3.0-2.30`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/ntHits.md b/docs/version-specific/supported-software/n/ntHits.md new file mode 100644 index 000000000..cc241acc6 --- /dev/null +++ b/docs/version-specific/supported-software/n/ntHits.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ntHits + +ntHits is a method for identifying repeats in high-throughput DNA sequencing data. + +*homepage*: + +version | toolchain +--------|---------- +``0.0.1`` | ``iccifort/2018.3.222-GCC-7.3.0-2.30`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/num2words.md b/docs/version-specific/supported-software/n/num2words.md new file mode 100644 index 000000000..825258159 --- /dev/null +++ b/docs/version-specific/supported-software/n/num2words.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# num2words + +Modules to convert numbers to words. 42 --> forty-two + +*homepage*: + +version | toolchain +--------|---------- +``0.5.10`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/numactl.md b/docs/version-specific/supported-software/n/numactl.md new file mode 100644 index 000000000..f4ad2a855 --- /dev/null +++ b/docs/version-specific/supported-software/n/numactl.md @@ -0,0 +1,54 @@ +--- +search: + boost: 0.5 +--- +# numactl + +The numactl program allows you to run your application program on specific cpu's and memory nodes. It does this by supplying a NUMA memory policy to the operating system before running your program. The libnuma library provides convenient ways for you to add NUMA memory policies into your own program. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.10`` | ``GCC/4.8.4`` +``2.0.10`` | ``GCC/4.9.2`` +``2.0.10`` | ``GNU/4.9.2-2.25`` +``2.0.10`` | ``GNU/4.9.3-2.25`` +``2.0.11`` | ``GCC/4.9.3-2.25`` +``2.0.11`` | ``GCC/4.9.3`` +``2.0.11`` | ``GCC/5.2.0`` +``2.0.11`` | ``GCC/5.3.0-2.26`` +``2.0.11`` | ``GCC/5.4.0-2.26`` +``2.0.11`` | ``GCC/6.1.0-2.27`` +``2.0.11`` | ``GCC/6.2.0-2.27`` +``2.0.11`` | ``GCC/6.3.0-2.27`` +``2.0.11`` | ``GCCcore/4.9.2`` +``2.0.11`` | ``GCCcore/4.9.3`` +``2.0.11`` | ``GCCcore/5.3.0`` +``2.0.11`` | ``GCCcore/5.4.0`` +``2.0.11`` | ``GCCcore/6.3.0`` +``2.0.11`` | ``GCCcore/6.4.0`` +``2.0.11`` | ``GCCcore/7.2.0`` +``2.0.11`` | ``GCCcore/7.3.0`` +``2.0.11`` | ``foss/2016a`` +``2.0.11`` | ``iccifort/2016.3.210-GCC-4.9.3-2.25`` +``2.0.11`` | ``iccifort/2016.3.210-GCC-5.4.0-2.26`` +``2.0.11`` | ``intel/2016a`` +``2.0.11`` | ``intel/2016b`` +``2.0.12`` | ``GCCcore/8.2.0`` +``2.0.12`` | ``GCCcore/8.3.0`` +``2.0.13`` | ``GCCcore/10.2.0`` +``2.0.13`` | ``GCCcore/9.2.0`` +``2.0.13`` | ``GCCcore/9.3.0`` +``2.0.14`` | ``GCCcore/10.3.0`` +``2.0.14`` | ``GCCcore/11.2.0`` +``2.0.14`` | ``GCCcore/11.3.0`` +``2.0.16`` | ``GCCcore/12.2.0`` +``2.0.16`` | ``GCCcore/12.3.0`` +``2.0.16`` | ``GCCcore/13.2.0`` +``2.0.18`` | ``GCCcore/13.3.0`` +``2.0.9`` | ``GCC/4.8.3`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/numba.md b/docs/version-specific/supported-software/n/numba.md new file mode 100644 index 000000000..27e79ff88 --- /dev/null +++ b/docs/version-specific/supported-software/n/numba.md @@ -0,0 +1,46 @@ +--- +search: + boost: 0.5 +--- +# numba + +Numba is an Open Source NumPy-aware optimizing compiler for Python sponsored by Continuum Analytics, Inc. It uses the remarkable LLVM compiler infrastructure to compile Python syntax to machine code. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.24.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``0.24.0`` | ``-Python-3.5.1`` | ``intel/2016a`` +``0.26.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``0.32.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``0.37.0`` | ``-Python-2.7.14`` | ``foss/2018a`` +``0.37.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``0.37.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.37.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``0.39.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.43.1`` | | ``intel/2019a`` +``0.46.0`` | | ``foss/2019a`` +``0.47.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.47.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``0.50.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.50.0`` | ``-Python-3.8.2`` | ``intel/2020a`` +``0.50.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.52.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.52.0`` | | ``foss/2020b`` +``0.52.0`` | | ``fosscuda/2020b`` +``0.52.0`` | | ``intel/2020b`` +``0.53.1`` | | ``foss/2020b`` +``0.53.1`` | | ``foss/2021a`` +``0.53.1`` | | ``fosscuda/2020b`` +``0.54.1`` | ``-CUDA-11.4.1`` | ``foss/2021b`` +``0.54.1`` | | ``foss/2021b`` +``0.54.1`` | | ``intel/2021b`` +``0.56.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.56.4`` | | ``foss/2022a`` +``0.58.1`` | | ``foss/2022b`` +``0.58.1`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/numdiff.md b/docs/version-specific/supported-software/n/numdiff.md new file mode 100644 index 000000000..eb54ad4ef --- /dev/null +++ b/docs/version-specific/supported-software/n/numdiff.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# numdiff + +Numdiff (which I will also write numdiff) is a little program that can be used to compare putatively similar files line by line and field by field, ignoring small numeric differences or/and different numeric formats. Equivalently, Numdiff is a program with the capability to appropriately compare files containing numerical fields (and not only). + +*homepage*: + +version | toolchain +--------|---------- +``5.9.0`` | ``GCCcore/10.2.0`` +``5.9.0`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/numexpr.md b/docs/version-specific/supported-software/n/numexpr.md new file mode 100644 index 000000000..8bc548f61 --- /dev/null +++ b/docs/version-specific/supported-software/n/numexpr.md @@ -0,0 +1,41 @@ +--- +search: + boost: 0.5 +--- +# numexpr + +The numexpr package evaluates multiple-operator array expressions many times faster than NumPy can. It accepts the expression as a string, analyzes it, rewrites it more efficiently, and compiles it on the fly into code for its internal virtual machine (VM). Due to its integrated just-in-time (JIT) compiler, it does not require a compiler at runtime. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.5.2`` | ``-Python-2.7.11`` | ``intel/2016a`` +``2.6.1`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2.6.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2.6.1`` | ``-Python-3.5.2`` | ``intel/2016b`` +``2.6.4`` | ``-Python-3.5.1`` | ``foss/2016a`` +``2.6.4`` | ``-Python-2.7.13`` | ``foss/2017a`` +``2.6.4`` | ``-Python-3.6.4`` | ``foss/2018a`` +``2.6.4`` | ``-Python-3.6.1`` | ``intel/2017a`` +``2.6.4`` | ``-Python-3.6.3`` | ``intel/2017b`` +``2.6.4`` | ``-Python-2.7.14`` | ``intel/2018a`` +``2.6.4`` | ``-Python-3.6.4`` | ``intel/2018a`` +``2.6.5`` | ``-Python-2.7.15`` | ``foss/2018b`` +``2.6.5`` | ``-Python-3.6.6`` | ``foss/2018b`` +``2.6.5`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``2.6.5`` | ``-Python-2.7.15`` | ``intel/2018b`` +``2.6.5`` | ``-Python-3.6.6`` | ``intel/2018b`` +``2.7.0`` | | ``intel/2019a`` +``2.7.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.7.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2.7.1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``2.7.1`` | ``-Python-2.7.16`` | ``intel/2019b`` +``2.7.1`` | ``-Python-3.8.2`` | ``intel/2020a`` +``2.8.1`` | | ``foss/2021a`` +``2.8.1`` | | ``intel/2021a`` +``2.8.4`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/numpy.md b/docs/version-specific/supported-software/n/numpy.md new file mode 100644 index 000000000..aa79534de --- /dev/null +++ b/docs/version-specific/supported-software/n/numpy.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# numpy + +NumPy is the fundamental package for scientific computing with Python. It contains among other things: a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran code, useful linear algebra, Fourier transform, and random number capabilities. Besides its obvious scientific uses, NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.10.4`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.11.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.12.1`` | ``-Python-3.5.2`` | ``intel/2016b`` +``1.13.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``1.13.1`` | ``-Python-3.6.1`` | ``intel/2017a`` +``1.8.2`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.8.2`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.9.2`` | ``-Python-2.7.12`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nvitop.md b/docs/version-specific/supported-software/n/nvitop.md new file mode 100644 index 000000000..054298414 --- /dev/null +++ b/docs/version-specific/supported-software/n/nvitop.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# nvitop + +An interactive NVIDIA-GPU process viewer and beyond, the one-stop solution for GPU process management. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.2`` | ``-CUDA-12.3.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nvofbf.md b/docs/version-specific/supported-software/n/nvofbf.md new file mode 100644 index 000000000..2f0443825 --- /dev/null +++ b/docs/version-specific/supported-software/n/nvofbf.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# nvofbf + +NVHPC based toolchain, including OpenMPI for MPI support, OpenBLAS (via FlexiBLAS for BLAS and LAPACK support), FFTW and ScaLAPACK. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``2022.07`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nvompi.md b/docs/version-specific/supported-software/n/nvompi.md new file mode 100644 index 000000000..5184b793f --- /dev/null +++ b/docs/version-specific/supported-software/n/nvompi.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# nvompi + +NVHPC based compiler toolchain, including OpenMPI for MPI support. + +*homepage*: <(none)> + +version | toolchain +--------|---------- +``2022.07`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/n/nvtop.md b/docs/version-specific/supported-software/n/nvtop.md new file mode 100644 index 000000000..5fb4158b4 --- /dev/null +++ b/docs/version-specific/supported-software/n/nvtop.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# nvtop + +htop-like GPU usage monitor + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0`` | ``fosscuda/2018b`` +``1.1.0`` | ``fosscuda/2019b`` +``1.2.1`` | ``GCCcore/10.2.0`` +``1.2.1`` | ``GCCcore/10.3.0`` +``1.2.2`` | ``GCCcore/10.2.0`` +``1.2.2`` | ``GCCcore/10.3.0`` +``2.0.2`` | ``GCCcore/11.3.0`` +``3.0.1`` | ``GCCcore/12.2.0`` +``3.1.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OBITools.md b/docs/version-specific/supported-software/o/OBITools.md new file mode 100644 index 000000000..b1e9a75d6 --- /dev/null +++ b/docs/version-specific/supported-software/o/OBITools.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# OBITools + +OBITools is a set of python programs developed to simplify the manipulation of sequence files. They were mainly designed to for analyzing Next Generation Sequencer outputs (454 or Illumina) in the context of DNA Metabarcoding. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.13`` | ``-Python-2.7.15`` | ``foss/2019a`` +``1.2.9`` | ``-Python-2.7.11`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OBITools3.md b/docs/version-specific/supported-software/o/OBITools3.md new file mode 100644 index 000000000..bf7248127 --- /dev/null +++ b/docs/version-specific/supported-software/o/OBITools3.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# OBITools3 + +A package for the management of analyses and data in DNA metabarcoding. + +*homepage*: + +version | toolchain +--------|---------- +``3.0.1b26`` | ``GCCcore/12.3.0`` +``3.0.1b8`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OCNet.md b/docs/version-specific/supported-software/o/OCNet.md new file mode 100644 index 000000000..677457747 --- /dev/null +++ b/docs/version-specific/supported-software/o/OCNet.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OCNet + +Generate and analyze Optimal Channel Networks (OCNs): oriented spanning trees reproducing all scaling features characteristic of real, natural river networks. As such, they can be used in a variety of numerical experiments in the fields of hydrology, ecology and epidemiology. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.0`` | ``-R-3.6.0`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OCaml.md b/docs/version-specific/supported-software/o/OCaml.md new file mode 100644 index 000000000..cd624f159 --- /dev/null +++ b/docs/version-specific/supported-software/o/OCaml.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# OCaml + +OCaml is a general purpose industrial-strength programming language with an emphasis on expressiveness and safety. Developed for more than 20 years at Inria it benefits from one of the most advanced type systems and supports functional, imperative and object-oriented styles of programming. + +*homepage*: + +version | toolchain +--------|---------- +``4.02.3`` | ``foss/2016a`` +``4.07.1`` | ``foss/2018b`` +``4.14.0`` | ``GCC/11.3.0`` +``5.1.1`` | ``GCC/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OGDF.md b/docs/version-specific/supported-software/o/OGDF.md new file mode 100644 index 000000000..9fc3f292f --- /dev/null +++ b/docs/version-specific/supported-software/o/OGDF.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OGDF + +OGDF is a self-contained C++ library for graph algorithms, in particular for (but not restricted to) automatic graph drawing. It offers sophisticated algorithms and data structures to use within your own applications or scientific projects. + +*homepage*: + +version | toolchain +--------|---------- +``dogwood-202202`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OMA.md b/docs/version-specific/supported-software/o/OMA.md new file mode 100644 index 000000000..4e8f4e7de --- /dev/null +++ b/docs/version-specific/supported-software/o/OMA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OMA + +The OMA ('Orthologous MAtrix') project is a method and database for the inference of orthologs among complete genomes + +*homepage*: + +version | toolchain +--------|---------- +``2.1.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OMERO.insight.md b/docs/version-specific/supported-software/o/OMERO.insight.md new file mode 100644 index 000000000..e276da141 --- /dev/null +++ b/docs/version-specific/supported-software/o/OMERO.insight.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OMERO.insight + +The OMERO.insight Project is a sub-project of the Open Microscopy Environment Project, OME that focuses on delivering a client for the visualization and manipulation of both image data and metadata maintained at an OMERO server site. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.8.3`` | ``-Java-11`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OMERO.py.md b/docs/version-specific/supported-software/o/OMERO.py.md new file mode 100644 index 000000000..36da0d7dd --- /dev/null +++ b/docs/version-specific/supported-software/o/OMERO.py.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OMERO.py + +OMERO.py provides Python bindings to the OMERO.blitz server as well as a pluggable command-line interface. + +*homepage*: + +version | toolchain +--------|---------- +``5.17.0`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/ONNX-Runtime.md b/docs/version-specific/supported-software/o/ONNX-Runtime.md new file mode 100644 index 000000000..e517b5706 --- /dev/null +++ b/docs/version-specific/supported-software/o/ONNX-Runtime.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# ONNX-Runtime + +ONNX Runtime inference can enable faster customer experiences and lower costs, supporting models from deep learning frameworks such as PyTorch and TensorFlow/Keras as well as classical machine learning libraries such as scikit-learn, LightGBM, XGBoost, etc. ONNX Runtime is compatible with different hardware, drivers, and operating systems, and provides optimal performance by leveraging hardware accelerators where applicable alongside graph optimizations and transforms. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.10.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``1.10.0`` | | ``foss/2021a`` +``1.16.3`` | | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/ONNX.md b/docs/version-specific/supported-software/o/ONNX.md new file mode 100644 index 000000000..a954915e0 --- /dev/null +++ b/docs/version-specific/supported-software/o/ONNX.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# ONNX + +Open Neural Network Exchange (ONNX) is an open ecosystem that empowers AI developers to choose the right tools as their project evolves. ONNX provides an open source format for AI models, both deep learning and traditional ML. It defines an extensible computation graph model, as well as definitions of built-in operators and standard data types. Currently we focus on the capabilities needed for inferencing (scoring). + +*homepage*: + +version | toolchain +--------|---------- +``1.11.0`` | ``foss/2021a`` +``1.15.0`` | ``foss/2022b`` +``1.15.0`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OOMPA.md b/docs/version-specific/supported-software/o/OOMPA.md new file mode 100644 index 000000000..6ea9abd02 --- /dev/null +++ b/docs/version-specific/supported-software/o/OOMPA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OOMPA + +OOMPA is a suite of R packages for the analysis of gene expression (RNA), proteomics profiling, and other high throughput molecular biology data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.1.2`` | ``-R-3.3.1`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OPARI2.md b/docs/version-specific/supported-software/o/OPARI2.md new file mode 100644 index 000000000..f2b543df5 --- /dev/null +++ b/docs/version-specific/supported-software/o/OPARI2.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# OPARI2 + +OPARI2, the successor of Forschungszentrum Juelich's OPARI, is a source-to-source instrumentation tool for OpenMP and hybrid codes. It surrounds OpenMP directives and runtime library calls with calls to the POMP2 measurement interface. + +*homepage*: + +version | toolchain +--------|---------- +``2.0`` | ``foss/2016a`` +``2.0.5`` | ``GCCcore/8.2.0`` +``2.0.5`` | ``GCCcore/8.3.0`` +``2.0.5`` | ``GCCcore/9.3.0`` +``2.0.6`` | ``GCCcore/10.2.0`` +``2.0.6`` | ``GCCcore/10.3.0`` +``2.0.7`` | ``GCCcore/11.2.0`` +``2.0.7`` | ``GCCcore/11.3.0`` +``2.0.7`` | ``GCCcore/12.2.0`` +``2.0.7`` | ``GCCcore/12.3.0`` +``2.0.8`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OPERA-MS.md b/docs/version-specific/supported-software/o/OPERA-MS.md new file mode 100644 index 000000000..493bdc506 --- /dev/null +++ b/docs/version-specific/supported-software/o/OPERA-MS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OPERA-MS + +OPERA-MS is a hybrid metagenomic assembler which combines the advantages of short and long-read technologies to provide high quality assemblies, addressing issues of low contiguity for short-read only assemblies, and low base-pair quality for long-read only assemblies. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.9.0-20200802`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OPERA.md b/docs/version-specific/supported-software/o/OPERA.md new file mode 100644 index 000000000..76745209e --- /dev/null +++ b/docs/version-specific/supported-software/o/OPERA.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# OPERA + +An optimal genome scaffolding program + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.6`` | ``-Perl-5.28.0`` | ``foss/2018b`` +``2.0.6`` | ``-Perl-5.28.0`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OR-Tools.md b/docs/version-specific/supported-software/o/OR-Tools.md new file mode 100644 index 000000000..30325ef8c --- /dev/null +++ b/docs/version-specific/supported-software/o/OR-Tools.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OR-Tools + +Google Optimization Tools (a.k.a., OR-Tools) is an open-source, fast and portable software suite for solving combinatorial optimization problems. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``7.1`` | ``-Python-3.7.2`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/ORCA.md b/docs/version-specific/supported-software/o/ORCA.md new file mode 100644 index 000000000..ddb83e536 --- /dev/null +++ b/docs/version-specific/supported-software/o/ORCA.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# ORCA + +ORCA is a flexible, efficient and easy-to-use general purpose tool for quantum chemistry with specific emphasis on spectroscopic properties of open-shell molecules. It features a wide variety of standard quantum chemical methods ranging from semiempirical methods to DFT to single- and multireference correlated ab initio methods. It can also treat environmental and relativistic effects. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3_0_2-linux_x86-64`` | ``-OpenMPI-1.8.1`` | ``system`` +``4.0.0.2`` | ``-OpenMPI-2.0.2`` | ``system`` +``4.0.1`` | ``-OpenMPI-2.0.2`` | ``system`` +``4.1.0`` | ``-OpenMPI-3.1.3`` | ``system`` +``4.2.0`` | | ``gompi/2019b`` +``4.2.1`` | | ``gompi/2019b`` +``5.0.0`` | ``-static`` | ``gompi/2021a`` +``5.0.0`` | | ``gompi/2021a`` +``5.0.1`` | ``-static`` | ``gompi/2021a`` +``5.0.1`` | | ``gompi/2021a`` +``5.0.2`` | ``-static`` | ``gompi/2021a`` +``5.0.2`` | | ``gompi/2021a`` +``5.0.2`` | ``-static`` | ``gompi/2021b`` +``5.0.2`` | | ``gompi/2021b`` +``5.0.3`` | | ``gompi/2021b`` +``5.0.4`` | | ``gompi/2022a`` +``5.0.4`` | | ``gompi/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/ORFfinder.md b/docs/version-specific/supported-software/o/ORFfinder.md new file mode 100644 index 000000000..4d0e60e51 --- /dev/null +++ b/docs/version-specific/supported-software/o/ORFfinder.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ORFfinder + +ORF finder searches for open reading frames (ORFs) in the DNA sequence you enter. The program returns the range of each ORF, along with its protein translation. Use ORF finder to search newly sequenced DNA for potential protein encoding segments, verify predicted protein using newly developed SMART BLAST or regular BLASTP. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.3`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OSPRay.md b/docs/version-specific/supported-software/o/OSPRay.md new file mode 100644 index 000000000..2fb21a00c --- /dev/null +++ b/docs/version-specific/supported-software/o/OSPRay.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OSPRay + +Open, Scalable, and Portable Ray Tracing Engine + +*homepage*: + +version | toolchain +--------|---------- +``2.5.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OSU-Micro-Benchmarks.md b/docs/version-specific/supported-software/o/OSU-Micro-Benchmarks.md new file mode 100644 index 000000000..912d60068 --- /dev/null +++ b/docs/version-specific/supported-software/o/OSU-Micro-Benchmarks.md @@ -0,0 +1,57 @@ +--- +search: + boost: 0.5 +--- +# OSU-Micro-Benchmarks + +OSU Micro-Benchmarks + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.3.2`` | | ``foss/2016a`` +``5.3.2`` | | ``foss/2017a`` +``5.6.2`` | | ``gompi/2019a`` +``5.6.3`` | | ``gompi/2019b`` +``5.6.3`` | | ``gompi/2020a`` +``5.6.3`` | | ``gompi/2020b`` +``5.6.3`` | | ``gompic/2019b`` +``5.6.3`` | | ``gompic/2020a`` +``5.6.3`` | | ``iimpi/2019a`` +``5.6.3`` | | ``iimpi/2019b`` +``5.6.3`` | | ``iimpi/2020a`` +``5.6.3`` | | ``iimpi/2020b`` +``5.6.3`` | | ``iimpic/2019b`` +``5.6.3`` | | ``iimpic/2020a`` +``5.7`` | | ``gompi/2020b`` +``5.7`` | | ``gompic/2020b`` +``5.7`` | | ``iimpi/2020b`` +``5.7.1`` | | ``ffmpi/4.5.0`` +``5.7.1`` | ``-CUDA-11.3.1`` | ``gompi/2021a`` +``5.7.1`` | | ``gompi/2021a`` +``5.7.1`` | | ``gompi/2021b`` +``5.7.1`` | | ``iimpi/2021a`` +``5.7.1`` | | ``iompi/2021a`` +``5.8`` | | ``iimpi/2021b`` +``5.9`` | ``-CUDA-11.3.1`` | ``gompi/2021a`` +``5.9`` | ``-CUDA-11.4.1`` | ``gompi/2021b`` +``5.9`` | ``-ROCm-4.5.0`` | ``gompi/2021b`` +``5.9`` | | ``gompi/2022.05`` +``5.9`` | ``-CUDA-11.7.0`` | ``gompi/2022a`` +``5.9`` | | ``gompi/2022a`` +``5.9`` | | ``iimpi/2022a`` +``6.2`` | | ``gompi/2022.10`` +``6.2`` | ``-CUDA-12.0.0`` | ``gompi/2022b`` +``6.2`` | | ``gompi/2022b`` +``6.2`` | | ``iimpi/2022b`` +``7.1-1`` | | ``gompi/2023a`` +``7.1-1`` | | ``iimpi/2023a`` +``7.2`` | | ``gompi/2023.09`` +``7.2`` | ``-CUDA-12.1.1`` | ``gompi/2023a`` +``7.2`` | | ``gompi/2023b`` +``7.4`` | | ``gompi/2024.05`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OTF2.md b/docs/version-specific/supported-software/o/OTF2.md new file mode 100644 index 000000000..36d3583dc --- /dev/null +++ b/docs/version-specific/supported-software/o/OTF2.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# OTF2 + +The Open Trace Format 2 is a highly scalable, memory efficient event trace data format plus support library. It is the new standard trace format for Scalasca, Vampir, and TAU and is open for other tools. + +*homepage*: + +version | toolchain +--------|---------- +``2.0`` | ``foss/2016a`` +``2.0`` | ``foss/2017a`` +``2.2`` | ``GCCcore/8.2.0`` +``2.2`` | ``GCCcore/8.3.0`` +``2.2`` | ``GCCcore/9.3.0`` +``2.3`` | ``GCCcore/10.2.0`` +``2.3`` | ``GCCcore/10.3.0`` +``3.0`` | ``GCCcore/11.3.0`` +``3.0.2`` | ``GCCcore/11.2.0`` +``3.0.2`` | ``GCCcore/11.3.0`` +``3.0.3`` | ``GCCcore/12.2.0`` +``3.0.3`` | ``GCCcore/12.3.0`` +``3.0.3`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OVITO.md b/docs/version-specific/supported-software/o/OVITO.md new file mode 100644 index 000000000..8655e3571 --- /dev/null +++ b/docs/version-specific/supported-software/o/OVITO.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OVITO + +OVITO is a scientific visualization and data analysis solution for atomistic and other particle-based models. It helps scientists gain meaningful and quick insights from numerical simulation results. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.7.11`` | ``-basic`` | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/Oases.md b/docs/version-specific/supported-software/o/Oases.md new file mode 100644 index 000000000..96844bd85 --- /dev/null +++ b/docs/version-specific/supported-software/o/Oases.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Oases + +Oases is a de novo transcriptome assembler designed to produce transcripts from short read sequencing technologies, such as Illumina, SOLiD, or 454 in the absence of any genomic assembly. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.08`` | | ``foss/2016b`` +``0.2.08`` | ``-kmer_101`` | ``intel/2017b`` +``20180312`` | | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/Octave.md b/docs/version-specific/supported-software/o/Octave.md new file mode 100644 index 000000000..dc4531a52 --- /dev/null +++ b/docs/version-specific/supported-software/o/Octave.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# Octave + +GNU Octave is a high-level interpreted language, primarily intended for numerical computations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.0.0`` | | ``foss/2016a`` +``4.0.3`` | | ``intel/2016b`` +``4.2.1`` | | ``foss/2018a`` +``4.2.1`` | | ``intel/2016b`` +``4.2.1`` | ``-mt`` | ``intel/2017a`` +``4.2.1`` | | ``intel/2017a`` +``4.2.2`` | | ``foss/2018a`` +``4.4.1`` | | ``foss/2018b`` +``5.1.0`` | | ``foss/2019a`` +``5.1.0`` | | ``foss/2019b`` +``6.2.0`` | | ``foss/2020b`` +``7.1.0`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/Octopus-vcf.md b/docs/version-specific/supported-software/o/Octopus-vcf.md new file mode 100644 index 000000000..5bb9dcf4e --- /dev/null +++ b/docs/version-specific/supported-software/o/Octopus-vcf.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Octopus-vcf + +Octopus is a mapping-based variant caller that implements several calling models within a unified haplotype-aware framework. Octopus takes inspiration from particle filtering by constructing a tree of haplotypes and dynamically pruning and extending the tree based on haplotype posterior probabilities in a sequential manner. This allows octopus to implicitly consider all possible haplotypes at a given loci in reasonable time. + +*homepage*: + +version | toolchain +--------|---------- +``0.7.1`` | ``foss/2020b`` +``0.7.2`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OmegaFold.md b/docs/version-specific/supported-software/o/OmegaFold.md new file mode 100644 index 000000000..1214d0d4e --- /dev/null +++ b/docs/version-specific/supported-software/o/OmegaFold.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OmegaFold + +OmegaFold: High-resolution de novo Structure Prediction from Primary Sequence + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/Omnipose.md b/docs/version-specific/supported-software/o/Omnipose.md new file mode 100644 index 000000000..f6e5e726f --- /dev/null +++ b/docs/version-specific/supported-software/o/Omnipose.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Omnipose + +Omnipose is a general image segmentation tool that builds on Cellpose in a number of ways described in our paper. It works for both 2D and 3D images and on any imaging modality or cell shape, so long as you train it on representative images. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.4.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.4.4`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/Open-Data-Cube-Core.md b/docs/version-specific/supported-software/o/Open-Data-Cube-Core.md new file mode 100644 index 000000000..dca053952 --- /dev/null +++ b/docs/version-specific/supported-software/o/Open-Data-Cube-Core.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Open-Data-Cube-Core + +The Open Data Cube Core provides an integrated gridded data analysis environment for decades of analysis ready earth observation satellite and related data from multiple satellite and other acquisition systems. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.8.3`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenAI-Gym.md b/docs/version-specific/supported-software/o/OpenAI-Gym.md new file mode 100644 index 000000000..03dbb667e --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenAI-Gym.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# OpenAI-Gym + +A toolkit for developing and comparing reinforcement learning algorithms. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.17.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.21.0`` | | ``foss/2021b`` +``0.26.2`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenBLAS.md b/docs/version-specific/supported-software/o/OpenBLAS.md new file mode 100644 index 000000000..ed15986ac --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenBLAS.md @@ -0,0 +1,57 @@ +--- +search: + boost: 0.5 +--- +# OpenBLAS + +OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.12`` | ``-LAPACK-3.5.0`` | ``GCC/4.9.2`` +``0.2.13`` | ``-LAPACK-3.5.0`` | ``GCC/4.8.4`` +``0.2.13`` | ``-LAPACK-3.5.0`` | ``GCC/4.9.2`` +``0.2.14`` | ``-LAPACK-3.5.0`` | ``GNU/4.9.2-2.25`` +``0.2.14`` | ``-LAPACK-3.5.0`` | ``GNU/4.9.3-2.25`` +``0.2.15`` | ``-LAPACK-3.6.0`` | ``GCC/4.9.3-2.25`` +``0.2.18`` | ``-LAPACK-3.6.0`` | ``GCC/4.9.4-2.25`` +``0.2.18`` | ``-LAPACK-3.6.0`` | ``GCC/5.3.0-2.26`` +``0.2.18`` | ``-LAPACK-3.6.0`` | ``GCC/5.4.0-2.26`` +``0.2.18`` | ``-LAPACK-3.6.1`` | ``GCC/5.4.0-2.26`` +``0.2.18`` | ``-LAPACK-3.6.1`` | ``gompi/2016.07`` +``0.2.19`` | ``-LAPACK-3.7.0`` | ``GCC/5.4.0-2.26`` +``0.2.19`` | ``-LAPACK-3.7.0`` | ``GCC/6.3.0-2.27`` +``0.2.19`` | ``-LAPACK-3.6.1`` | ``gompi/2016.09`` +``0.2.20`` | | ``GCC/5.4.0-2.26`` +``0.2.20`` | | ``GCC/6.4.0-2.28`` +``0.2.20`` | | ``GCC/7.2.0-2.29`` +``0.2.9`` | ``-LAPACK-3.5.0`` | ``GCC/4.8.3`` +``0.3.0`` | | ``GCC/6.4.0-2.28`` +``0.3.0`` | | ``GCC/7.3.0-2.30`` +``0.3.1`` | | ``GCC/7.3.0-2.30`` +``0.3.12`` | | ``GCC/10.2.0`` +``0.3.15`` | | ``GCC/10.3.0`` +``0.3.17`` | | ``GCC/10.3.0`` +``0.3.17`` | | ``GCC/11.2.0`` +``0.3.18`` | | ``GCC/11.2.0`` +``0.3.20`` | | ``GCC/11.2.0`` +``0.3.20`` | ``-int8`` | ``GCC/11.3.0`` +``0.3.20`` | | ``GCC/11.3.0`` +``0.3.20`` | | ``NVHPC/22.7-CUDA-11.7.0`` +``0.3.21`` | | ``GCC/12.2.0`` +``0.3.23`` | | ``GCC/12.3.0`` +``0.3.24`` | | ``GCC/13.2.0`` +``0.3.27`` | | ``GCC/13.3.0`` +``0.3.3`` | | ``GCC/8.2.0-2.31.1`` +``0.3.4`` | | ``GCC/8.2.0-2.31.1`` +``0.3.5`` | | ``GCC/8.2.0-2.31.1`` +``0.3.6`` | | ``GCC/8.3.0-2.32`` +``0.3.7`` | | ``GCC/8.3.0`` +``0.3.8`` | | ``GCC/9.2.0`` +``0.3.9`` | | ``GCC/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenBabel.md b/docs/version-specific/supported-software/o/OpenBabel.md new file mode 100644 index 000000000..75484e452 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenBabel.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# OpenBabel + +Open Babel is a chemical toolbox designed to speak the many languages of chemical data. It's an open, collaborative project allowing anyone to search, convert, analyze, or store data from molecular modeling, chemistry, solid-state materials, biochemistry, or related areas. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.3.2`` | ``-Python-2.7.11`` | ``foss/2016a`` +``2.4.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.4.1`` | ``-Python-2.7.15`` | ``intel/2018b`` +``2.4.1`` | ``-Python-3.6.6`` | ``intel/2018b`` +``2.4.1`` | ``-Python-3.7.2`` | ``intel/2019a`` +``3.0.0`` | ``-Python-3.7.4`` | ``gompi/2019b`` +``3.1.1`` | ``-Python-3.7.4`` | ``gompi/2019b`` +``3.1.1`` | | ``gompi/2021a`` +``3.1.1`` | | ``gompi/2022a`` +``3.1.1`` | | ``gompi/2023a`` +``3.1.1`` | ``-Python-3.8.2`` | ``iimpi/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenCV.md b/docs/version-specific/supported-software/o/OpenCV.md new file mode 100644 index 000000000..128957fd8 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenCV.md @@ -0,0 +1,54 @@ +--- +search: + boost: 0.5 +--- +# OpenCV + +OpenCV (Open Source Computer Vision Library) is an open source computer vision and machine learning software library. OpenCV was built to provide a common infrastructure for computer vision applications and to accelerate the use of machine perception in the commercial products. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.4.12`` | | ``intel/2016a`` +``3.1.0`` | | ``foss/2016a`` +``3.1.0`` | | ``foss/2016b`` +``3.1.0`` | | ``intel/2016a`` +``3.1.0`` | | ``intel/2016b`` +``3.3.0`` | ``-Python-2.7.14`` | ``foss/2017b`` +``3.3.0`` | ``-Python-3.6.3`` | ``foss/2017b`` +``3.3.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``3.3.0`` | ``-Python-3.6.1`` | ``intel/2017a`` +``3.3.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``3.3.0`` | ``-Python-3.6.3`` | ``intel/2017b`` +``3.4.1`` | ``-Python-2.7.14`` | ``foss/2018a`` +``3.4.1`` | ``-Python-3.6.4-contrib`` | ``foss/2018a`` +``3.4.1`` | ``-Python-3.6.4`` | ``foss/2018a`` +``3.4.1`` | ``-Python-2.7.14`` | ``intel/2018a`` +``3.4.1`` | ``-Python-3.6.4`` | ``intel/2018a`` +``3.4.5`` | ``-Python-2.7.15`` | ``foss/2018b`` +``3.4.7`` | ``-Python-2.7.15`` | ``foss/2019a`` +``3.4.7`` | ``-Python-3.7.2`` | ``foss/2019a`` +``3.4.7`` | ``-Python-2.7.15`` | ``fosscuda/2019a`` +``3.4.7`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` +``4.0.1`` | ``-Python-2.7.15`` | ``foss/2018b`` +``4.0.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``4.2.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``4.2.0`` | ``-Python-3.8.2-contrib`` | ``foss/2020a`` +``4.2.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``4.2.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``4.5.1`` | ``-contrib`` | ``foss/2020b`` +``4.5.1`` | ``-contrib`` | ``fosscuda/2020b`` +``4.5.3`` | ``-CUDA-11.3.1-contrib`` | ``foss/2021a`` +``4.5.3`` | ``-contrib`` | ``foss/2021a`` +``4.5.5`` | ``-CUDA-11.4.1-contrib`` | ``foss/2021b`` +``4.5.5`` | ``-contrib`` | ``foss/2021b`` +``4.6.0`` | ``-CUDA-11.7.0-contrib`` | ``foss/2022a`` +``4.6.0`` | ``-contrib`` | ``foss/2022a`` +``4.8.0`` | ``-contrib`` | ``foss/2022b`` +``4.8.1`` | ``-CUDA-12.1.1-contrib`` | ``foss/2023a`` +``4.8.1`` | ``-contrib`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenCensus-python.md b/docs/version-specific/supported-software/o/OpenCensus-python.md new file mode 100644 index 000000000..8f3bf0d24 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenCensus-python.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OpenCensus-python + +OpenCensus for Python. OpenCensus provides a framework to measure a server's resource usage and collect performance stats. This repository contains Python related utilities and supporting software needed by OpenCensus. + +*homepage*: + +version | toolchain +--------|---------- +``0.8.0`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenCoarrays.md b/docs/version-specific/supported-software/o/OpenCoarrays.md new file mode 100644 index 000000000..2b3976a11 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenCoarrays.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# OpenCoarrays + +OpenCoarrays is an open-source software project that supports the coarray Fortran (CAF) parallel programming features of the Fortran 2008 standard and several features proposed for Fortran 2015 in the draft Technical Specification TS 18508 Additional Parallel Features in Fortran. + +*homepage*: + +version | toolchain +--------|---------- +``1.9.0`` | ``gompi/2017a`` +``2.2.0`` | ``gompi/2018b`` +``2.8.0`` | ``gompi/2019b`` +``2.9.2`` | ``gompi/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenColorIO.md b/docs/version-specific/supported-software/o/OpenColorIO.md new file mode 100644 index 000000000..810ae73a7 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenColorIO.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OpenColorIO + +OpenColorIO (OCIO) is a complete color management solution geared towards motion picture production with an emphasis on visual effects and computer animation. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenEXR.md b/docs/version-specific/supported-software/o/OpenEXR.md new file mode 100644 index 000000000..d5b687f7b --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenEXR.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# OpenEXR + +OpenEXR is a high dynamic-range (HDR) image file format developed by Industrial Light & Magic for use in computer imaging applications + +*homepage*: + +version | toolchain +--------|---------- +``2.2.0`` | ``intel/2016b`` +``2.2.0`` | ``intel/2017a`` +``2.3.0`` | ``foss/2018b`` +``2.3.0`` | ``intel/2018b`` +``2.4.0`` | ``GCCcore/8.3.0`` +``2.4.1`` | ``GCCcore/9.3.0`` +``2.5.5`` | ``GCCcore/10.2.0`` +``3.0.1`` | ``GCCcore/10.3.0`` +``3.1.1`` | ``GCCcore/11.2.0`` +``3.1.5`` | ``GCCcore/11.3.0`` +``3.1.5`` | ``GCCcore/12.2.0`` +``3.1.7`` | ``GCCcore/12.3.0`` +``3.2.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenFAST.md b/docs/version-specific/supported-software/o/OpenFAST.md new file mode 100644 index 000000000..4f074ccd5 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenFAST.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OpenFAST + +OpenFAST is a wind turbine simulation tool which builds on FAST v8. FAST.Farm extends the capability of OpenFAST to simulate multi-turbine wind farms + +*homepage*: + +version | toolchain +--------|---------- +``3.0.0`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenFOAM-Extend.md b/docs/version-specific/supported-software/o/OpenFOAM-Extend.md new file mode 100644 index 000000000..c2ff81ca5 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenFOAM-Extend.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# OpenFOAM-Extend + +OpenFOAM is a free, open source CFD software package. OpenFOAM has an extensive range of features to solve anything from complex fluid flows involving chemical reactions, turbulence and heat transfer, to solid dynamics and electromagnetics. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.1`` | | ``gimkl/2.11.5`` +``3.2`` | | ``gimkl/2.11.5`` +``3.2`` | | ``intel/2016a`` +``4.0`` | | ``intel/2017a`` +``4.0`` | ``-Python-2.7.16`` | ``intel/2019b`` +``4.1-20191120`` | ``-Python-2.7.16`` | ``intel/2019b`` +``4.1-20200408`` | ``-Python-2.7.16`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenFOAM.md b/docs/version-specific/supported-software/o/OpenFOAM.md new file mode 100644 index 000000000..9ceb50608 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenFOAM.md @@ -0,0 +1,76 @@ +--- +search: + boost: 0.5 +--- +# OpenFOAM + +OpenFOAM is a free, open source CFD software package. OpenFOAM has an extensive range of features to solve anything from complex fluid flows involving chemical reactions, turbulence and heat transfer, to solid dynamics and electromagnetics. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``10`` | ``-20230119`` | ``foss/2022a`` +``10`` | | ``foss/2022a`` +``10`` | | ``foss/2023a`` +``11`` | | ``foss/2022a`` +``11`` | | ``foss/2023a`` +``2.2.2`` | | ``intel/2016a`` +``2.2.2`` | | ``intel/2017a`` +``2.2.2`` | | ``intel/2018a`` +``2.2.x`` | | ``intel/2019a`` +``2.3.1`` | | ``intel/2017a`` +``2.3.1`` | | ``intel/2019b`` +``2.4.0`` | | ``intel/2017a`` +``2.4.0`` | | ``intel/2019a`` +``3.0.0`` | | ``foss/2016a`` +``3.0.1`` | | ``intel/2016b`` +``3.0.1`` | | ``intel/2018a`` +``4.0`` | | ``foss/2016b`` +``4.0`` | | ``intel/2016b`` +``4.1`` | | ``foss/2016b`` +``4.1`` | | ``intel/2017a`` +``4.x-20170904`` | | ``intel/2016b`` +``5.0-20180108`` | | ``foss/2018a`` +``5.0-20180108`` | | ``intel/2017b`` +``5.0-20180108`` | | ``intel/2018a`` +``5.0-20180606`` | | ``foss/2019b`` +``5.0`` | | ``foss/2017b`` +``5.0`` | | ``intel/2017a`` +``5.0`` | | ``intel/2017b`` +``6`` | | ``foss/2018b`` +``6`` | | ``foss/2019b`` +``6`` | | ``intel/2018a`` +``7`` | ``-20200508`` | ``foss/2019b`` +``7`` | | ``foss/2019b`` +``7`` | ``-20200508-int64`` | ``foss/2022a`` +``7`` | ``-20200508`` | ``foss/2022a`` +``8`` | | ``foss/2020a`` +``8`` | ``-20210316`` | ``foss/2020b`` +``8`` | | ``foss/2020b`` +``9`` | | ``foss/2021a`` +``9`` | | ``intel/2021a`` +``v1606+`` | | ``foss/2018b`` +``v1612+`` | | ``foss/2018b`` +``v1712`` | | ``foss/2017b`` +``v1712`` | | ``intel/2017b`` +``v1806`` | | ``foss/2018b`` +``v1812`` | | ``foss/2018b`` +``v1906`` | | ``foss/2019b`` +``v1912`` | | ``foss/2019b`` +``v1912`` | | ``intel/2019b`` +``v2006`` | | ``foss/2020a`` +``v2006`` | | ``intel/2020a`` +``v2012`` | | ``foss/2020a`` +``v2106`` | | ``foss/2021a`` +``v2112`` | | ``foss/2020b`` +``v2112`` | | ``foss/2021b`` +``v2112`` | | ``foss/2022a`` +``v2206`` | ``-int64`` | ``foss/2022a`` +``v2206`` | | ``foss/2022a`` +``v2306`` | | ``foss/2022b`` +``v2312`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenFace.md b/docs/version-specific/supported-software/o/OpenFace.md new file mode 100644 index 000000000..00156295c --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenFace.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# OpenFace + +OpenFace – a state-of-the art tool intended for facial landmark detection, head pose estimation, facial action unit recognition, and eye-gaze estimation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``2.2.0`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenFold.md b/docs/version-specific/supported-software/o/OpenFold.md new file mode 100644 index 000000000..a36d408cb --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenFold.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# OpenFold + +A faithful PyTorch reproduction of DeepMind's AlphaFold 2 + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``1.0.1`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``1.0.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenForceField.md b/docs/version-specific/supported-software/o/OpenForceField.md new file mode 100644 index 000000000..e74613a96 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenForceField.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OpenForceField + +Simulation and Parameter Estimation in Geophysics - A python package for simulation and gradient based parameter estimation in the context of geophysical applications. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7.0`` | ``-Python-3.8.2`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenImageIO.md b/docs/version-specific/supported-software/o/OpenImageIO.md new file mode 100644 index 000000000..c3ba28786 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenImageIO.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# OpenImageIO + +OpenImageIO is a library for reading and writing images, and a bunch of related classes, utilities, and applications. + +*homepage*: + +version | toolchain +--------|---------- +``1.6.17`` | ``intel/2016b`` +``1.7.17`` | ``intel/2017a`` +``1.8.16`` | ``foss/2018b`` +``1.8.16`` | ``intel/2018b`` +``2.0.12`` | ``gompi/2019b`` +``2.0.12`` | ``iimpi/2019b`` +``2.1.12.0`` | ``gompi/2020a`` +``2.1.12.0`` | ``iimpi/2020a`` +``2.3.17.0`` | ``GCC/11.3.0`` +``2.4.14.0`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenJPEG.md b/docs/version-specific/supported-software/o/OpenJPEG.md new file mode 100644 index 000000000..e5b66ff36 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenJPEG.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# OpenJPEG + +OpenJPEG is an open-source JPEG 2000 codec written in C language. It has been developed in order to promote the use of JPEG 2000, a still-image compression standard from the Joint Photographic Experts Group (JPEG). Since may 2015, it is officially recognized by ISO/IEC and ITU-T as a JPEG 2000 Reference Software. + +*homepage*: + +version | toolchain +--------|---------- +``2.1`` | ``GCCcore/6.4.0`` +``2.3.0`` | ``GCCcore/6.4.0`` +``2.3.0`` | ``GCCcore/7.3.0`` +``2.3.1`` | ``GCCcore/8.2.0`` +``2.3.1`` | ``GCCcore/8.3.0`` +``2.4.0`` | ``GCCcore/10.2.0`` +``2.4.0`` | ``GCCcore/10.3.0`` +``2.4.0`` | ``GCCcore/11.2.0`` +``2.4.0`` | ``GCCcore/9.3.0`` +``2.5.0`` | ``GCCcore/11.3.0`` +``2.5.0`` | ``GCCcore/12.2.0`` +``2.5.0`` | ``GCCcore/12.3.0`` +``2.5.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenKIM-API.md b/docs/version-specific/supported-software/o/OpenKIM-API.md new file mode 100644 index 000000000..d63e2c983 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenKIM-API.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# OpenKIM-API + +Open Knowledgebase of Interatomic Models. OpenKIM is an API and a collection of interatomic models (potentials) for atomistic simulations. It is a library that can be used by simulation programs to get access to the models in the OpenKIM database. This EasyBuild only installs the API, the models have to be installed by the user by running kim-api-collections-management install user MODELNAME or kim-api-collections-management install user OpenKIM to install them all. + +*homepage*: + +version | toolchain +--------|---------- +``1.9.2`` | ``foss/2016b`` +``1.9.2`` | ``foss/2017b`` +``1.9.7`` | ``foss/2018b`` +``1.9.7`` | ``intel/2018b`` +``1.9.7`` | ``iomkl/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenMEEG.md b/docs/version-specific/supported-software/o/OpenMEEG.md new file mode 100644 index 000000000..1ba9974f4 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenMEEG.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OpenMEEG + +The OpenMEEG software is a C++ package for solving the forward problems of electroencephalography (EEG) and magnetoencephalography (MEG). + +*homepage*: + +version | toolchain +--------|---------- +``2.5.7`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenMM-PLUMED.md b/docs/version-specific/supported-software/o/OpenMM-PLUMED.md new file mode 100644 index 000000000..3fabcdba6 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenMM-PLUMED.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OpenMM-PLUMED + +This project provides a connection between OpenMM and PLUMED. It allows you to bias or analyze an OpenMM simulation based on collective variables. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0`` | ``-Python-3.8.2`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenMM.md b/docs/version-specific/supported-software/o/OpenMM.md new file mode 100644 index 000000000..53fd85c69 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenMM.md @@ -0,0 +1,39 @@ +--- +search: + boost: 0.5 +--- +# OpenMM + +OpenMM is a toolkit for molecular simulation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``7.1.1`` | ``-Python-3.6.3`` | ``intel/2017b`` +``7.4.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``7.4.1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``7.4.1`` | ``-Python-3.7.4`` | ``intel/2019b`` +``7.4.2`` | ``-Python-3.8.2`` | ``intel/2020a`` +``7.5.0`` | | ``foss/2020b`` +``7.5.0`` | ``-Python-3.8.2`` | ``fosscuda/2020a`` +``7.5.0`` | | ``fosscuda/2020b`` +``7.5.0`` | ``-Python-3.8.2`` | ``intel/2020a`` +``7.5.0`` | | ``intel/2020b`` +``7.5.1`` | | ``foss/2020b`` +``7.5.1`` | ``-CUDA-11.3.1-DeepMind-patch`` | ``foss/2021a`` +``7.5.1`` | ``-DeepMind-patch`` | ``foss/2021a`` +``7.5.1`` | ``-CUDA-11.4.1-DeepMind-patch`` | ``foss/2021b`` +``7.5.1`` | ``-DeepMind-patch`` | ``foss/2021b`` +``7.5.1`` | | ``fosscuda/2020b`` +``7.7.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``7.7.0`` | | ``foss/2021a`` +``7.7.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``7.7.0`` | | ``foss/2022a`` +``8.0.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``8.0.0`` | | ``foss/2022a`` +``8.0.0`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenMMTools.md b/docs/version-specific/supported-software/o/OpenMMTools.md new file mode 100644 index 000000000..5c127753b --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenMMTools.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OpenMMTools + +A batteries-included toolkit for the GPU-accelerated OpenMM molecular simulation engine. openmmtools is a Python library layer that sits on top of OpenMM to provide access to a variety of useful tools for building full-featured molecular simulation packages. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.20.0`` | ``-Python-3.8.2`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenMPI.md b/docs/version-specific/supported-software/o/OpenMPI.md new file mode 100644 index 000000000..f2650e12d --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenMPI.md @@ -0,0 +1,98 @@ +--- +search: + boost: 0.5 +--- +# OpenMPI + +The Open MPI Project is an open source MPI-2 implementation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.10.1`` | | ``GCC/4.9.3-2.25`` +``1.10.2`` | | ``GCC/4.9.3-2.25`` +``1.10.2`` | | ``GCC/5.3.0-2.26`` +``1.10.2`` | | ``GCC/6.1.0-2.27`` +``1.10.2`` | | ``PGI/16.3-GCC-4.9.3-2.25`` +``1.10.2`` | | ``PGI/16.4-GCC-5.3.0-2.26`` +``1.10.3`` | | ``GCC/5.4.0-2.26`` +``1.10.3`` | | ``GCC/6.1.0-2.27`` +``1.10.3`` | | ``iccifort/2016.3.210-GCC-5.4.0-2.26`` +``1.10.4`` | | ``PGI/16.7-GCC-5.4.0-2.26`` +``1.10.4`` | | ``iccifort/2016.3.210-GCC-4.9.3-2.25`` +``1.6.5`` | ``-no-OFED`` | ``GCC/4.8.1`` +``1.6.5`` | | ``GCC/4.8.1`` +``1.6.5`` | ``-no-OFED`` | ``GCC/4.8.2`` +``1.6.5`` | | ``GCC/4.8.2`` +``1.6.5`` | | ``GCC/4.8.3`` +``1.7.3`` | | ``GCC/4.8.2`` +``1.8.1`` | | ``GCC/4.8.3`` +``1.8.3`` | | ``GCC/4.9.2`` +``1.8.4`` | | ``GCC/4.8.4`` +``1.8.4`` | | ``GCC/4.9.2`` +``1.8.5`` | | ``GNU/4.9.2-2.25`` +``1.8.6`` | | ``GNU/4.9.3-2.25`` +``1.8.8`` | | ``GNU/4.9.3-2.25`` +``2.0.0`` | | ``GCC/5.2.0`` +``2.0.1`` | | ``GCC/6.2.0-2.27`` +``2.0.1`` | | ``iccifort/2017.1.132-GCC-5.4.0-2.26`` +``2.0.2`` | ``-opa`` | ``GCC/6.3.0-2.27`` +``2.0.2`` | | ``GCC/6.3.0-2.27`` +``2.0.2`` | | ``iccifort/2017.1.132-GCC-6.3.0-2.27`` +``2.1.0`` | | ``GCC/6.3.0-2.28`` +``2.1.1`` | | ``GCC/6.4.0-2.28`` +``2.1.1`` | | ``gcccuda/2017b`` +``2.1.1`` | | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` +``2.1.2`` | | ``GCC/6.4.0-2.28`` +``2.1.2`` | | ``gcccuda/2018a`` +``2.1.2`` | | ``iccifort/2018.1.163-GCC-6.4.0-2.28`` +``2.1.3`` | | ``iccifort/2018.2.199-GCC-6.4.0-2.28`` +``3.0.0`` | | ``GCC/7.2.0-2.29`` +``3.1.0`` | | ``GCC/7.3.0-2.30`` +``3.1.1`` | | ``GCC/7.3.0-2.30`` +``3.1.1`` | | ``gcccuda/2018b`` +``3.1.1`` | | ``iccifort/2018.3.222-GCC-7.3.0-2.30`` +``3.1.2`` | | ``GCC/8.2.0-2.31.1`` +``3.1.3`` | | ``GCC/8.2.0-2.31.1`` +``3.1.3`` | | ``gcccuda/2019a`` +``3.1.3`` | | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``3.1.4`` | | ``GCC/8.3.0-2.32`` +``3.1.4`` | | ``GCC/8.3.0`` +``3.1.4`` | | ``gcccuda/2019b`` +``3.1.4`` | | ``iccifort/2019.5.281`` +``4.0.0`` | ``-hpcx`` | ``GCC/8.2.0-2.31.1`` +``4.0.0`` | | ``GCC/8.2.0-2.31.1`` +``4.0.1`` | | ``GCC/8.3.0-2.32`` +``4.0.2`` | | ``GCC/9.2.0-2.32`` +``4.0.3`` | | ``GCC/9.3.0`` +``4.0.3`` | | ``gcccuda/2020a`` +``4.0.3`` | | ``iccifort/2020.1.217`` +``4.0.3`` | | ``iccifortcuda/2020a`` +``4.0.5`` | | ``GCC/10.2.0`` +``4.0.5`` | | ``GCC/9.3.0`` +``4.0.5`` | ``-CUDA-11.2.1`` | ``NVHPC/21.2`` +``4.0.5`` | | ``gcccuda/2020b`` +``4.0.5`` | | ``iccifort/2020.4.304`` +``4.0.6`` | | ``GCC/10.3.0`` +``4.0.7`` | | ``GCC/10.3.0`` +``4.1.0`` | | ``GCC/10.2.0`` +``4.1.1`` | | ``GCC/10.3.0`` +``4.1.1`` | | ``GCC/11.2.0`` +``4.1.1`` | | ``intel-compilers/2021.2.0`` +``4.1.1`` | | ``intel-compilers/2021.4.0`` +``4.1.2`` | | ``GCC/10.2.0`` +``4.1.2`` | | ``GCC/11.2.0`` +``4.1.4`` | | ``GCC/11.3.0`` +``4.1.4`` | | ``GCC/12.2.0`` +``4.1.4`` | | ``NVHPC/22.7-CUDA-11.7.0`` +``4.1.5`` | | ``GCC/12.2.0`` +``4.1.5`` | | ``GCC/12.3.0`` +``4.1.5`` | | ``intel-compilers/2023.1.0`` +``4.1.6`` | | ``GCC/13.2.0`` +``5.0.3`` | | ``GCC/13.3.0`` +``system`` | | ``GCC/system-2.29`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenMS.md b/docs/version-specific/supported-software/o/OpenMS.md new file mode 100644 index 000000000..3e6c3ed0c --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenMS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OpenMS + +As part of the deNBI Center for integrative Bioinformatics, OpenMS offers an open-source software C++ library (+ python bindings) for LC/MS data management and analyses. It provides an infrastructure for the rapid development of mass spectrometry related software as well as a rich toolset built on top of it. + +*homepage*: + +version | toolchain +--------|---------- +``2.4.0`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenMolcas.md b/docs/version-specific/supported-software/o/OpenMolcas.md new file mode 100644 index 000000000..ba905c846 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenMolcas.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# OpenMolcas + +OpenMolcas is a quantum chemistry software package + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``18.09`` | ``-Python-3.6.6`` | ``intel/2018b`` +``20.10`` | ``-Python-3.8.2-noGA`` | ``intel/2020a`` +``20.10`` | ``-Python-3.8.2`` | ``intel/2020a`` +``21.06`` | | ``intel/2021a`` +``21.06`` | | ``iomkl/2021a`` +``22.06`` | | ``intel/2022a`` +``22.10`` | ``-noGA`` | ``intel/2022a`` +``22.10`` | | ``intel/2022a`` +``23.06`` | | ``intel/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenNLP.md b/docs/version-specific/supported-software/o/OpenNLP.md new file mode 100644 index 000000000..71a4aac92 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenNLP.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OpenNLP + +The Apache OpenNLP library is a machine learning based toolkit for the processing of natural language text. + +*homepage*: + +version | toolchain +--------|---------- +``1.8.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenPGM.md b/docs/version-specific/supported-software/o/OpenPGM.md new file mode 100644 index 000000000..05d8530d2 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenPGM.md @@ -0,0 +1,34 @@ +--- +search: + boost: 0.5 +--- +# OpenPGM + +OpenPGM is an open source implementation of the Pragmatic General Multicast (PGM) specification in RFC 3208 available at www.ietf.org. PGM is a reliable and scalable multicast protocol that enables receivers to detect loss, request retransmission of lost data, or notify an application of unrecoverable loss. PGM is a receiver-reliable protocol, which means the receiver is responsible for ensuring all data is received, absolving the sender of reception responsibility. + +*homepage*: + +version | toolchain +--------|---------- +``5.2.122`` | ``GCCcore/10.2.0`` +``5.2.122`` | ``GCCcore/10.3.0`` +``5.2.122`` | ``GCCcore/11.2.0`` +``5.2.122`` | ``GCCcore/11.3.0`` +``5.2.122`` | ``GCCcore/12.2.0`` +``5.2.122`` | ``GCCcore/12.3.0`` +``5.2.122`` | ``GCCcore/13.2.0`` +``5.2.122`` | ``GCCcore/6.4.0`` +``5.2.122`` | ``GCCcore/7.3.0`` +``5.2.122`` | ``GCCcore/8.2.0`` +``5.2.122`` | ``GCCcore/8.3.0`` +``5.2.122`` | ``GCCcore/9.3.0`` +``5.2.122`` | ``foss/2016a`` +``5.2.122`` | ``foss/2016b`` +``5.2.122`` | ``foss/2017a`` +``5.2.122`` | ``intel/2016a`` +``5.2.122`` | ``intel/2016b`` +``5.2.122`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenPIV.md b/docs/version-specific/supported-software/o/OpenPIV.md new file mode 100644 index 000000000..33ed5bc9c --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenPIV.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OpenPIV + +OpenPIV is an open source Particle Image Velocimetry analysis software + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.21.8`` | ``-Python-3.7.4`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenRefine.md b/docs/version-specific/supported-software/o/OpenRefine.md new file mode 100644 index 000000000..4b8710d19 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenRefine.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# OpenRefine + +OpenRefine is a power tool that allows you to load data, understand it, clean it up, reconcile it, and augment it with data coming from the web. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.7`` | ``-Java-1.8.0_144`` | ``system`` +``3.4.1`` | ``-Java-11`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenSSL.md b/docs/version-specific/supported-software/o/OpenSSL.md new file mode 100644 index 000000000..6f1ee1d61 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenSSL.md @@ -0,0 +1,38 @@ +--- +search: + boost: 0.5 +--- +# OpenSSL + +The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured, and Open Source toolchain implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well as a full-strength general purpose cryptography library. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.1f`` | ``GCC/4.8.2`` +``1.0.1k`` | ``GCC/4.9.2`` +``1.0.1s`` | ``foss/2016a`` +``1.0.1s`` | ``intel/2016a`` +``1.0.2g`` | ``GCCcore/4.9.3`` +``1.0.2h`` | ``foss/2016.04`` +``1.0.2h`` | ``iomkl/2016.07`` +``1.0.2h`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``1.0`` | ``system`` +``1.1.0c`` | ``GCC/5.4.0-2.26`` +``1.1.0e`` | ``intel/2016b`` +``1.1.0h`` | ``GCCcore/7.3.0`` +``1.1.1b`` | ``GCCcore/8.2.0`` +``1.1.1d`` | ``GCCcore/8.3.0`` +``1.1.1e`` | ``GCCcore/9.3.0`` +``1.1.1h`` | ``GCCcore/10.2.0`` +``1.1.1k`` | ``GCCcore/10.3.0`` +``1.1.1k`` | ``GCCcore/11.2.0`` +``1.1.1n`` | ``GCCcore/11.3.0`` +``1.1.1q`` | ``GCCcore/10.3.0`` +``1.1`` | ``system`` +``3`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenSceneGraph.md b/docs/version-specific/supported-software/o/OpenSceneGraph.md new file mode 100644 index 000000000..4ae4bb725 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenSceneGraph.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# OpenSceneGraph + +The OpenSceneGraph is an open source high performance 3D graphics toolkit, used by application developers in fields such as visual simulation, games, virtual reality, scientific visualization and modelling. Written entirely in Standard C++ and OpenGL it runs on all Windows platforms, OSX, GNU/Linux, IRIX, Solaris, HP-Ux, AIX and FreeBSD operating systems. The OpenSceneGraph is now well established as the world leading scene graph technology, used widely in the vis-sim, space, scientific, oil-gas, games and virtual reality industries. + +*homepage*: + +version | toolchain +--------|---------- +``3.6.5`` | ``foss/2021a`` +``3.6.5`` | ``foss/2021b`` +``3.6.5`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenSees.md b/docs/version-specific/supported-software/o/OpenSees.md new file mode 100644 index 000000000..301a04998 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenSees.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# OpenSees + +Open System for Earthquake Engineering Simulation + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.2.0`` | ``-Python-3.8.2-parallel`` | ``intel/2020a`` +``3.2.0`` | ``-Python-3.8.2`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenSlide-Java.md b/docs/version-specific/supported-software/o/OpenSlide-Java.md new file mode 100644 index 000000000..7d9b9bf48 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenSlide-Java.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OpenSlide-Java + +This is a Java binding to OpenSlide. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.12.4`` | ``-Java-17`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenSlide.md b/docs/version-specific/supported-software/o/OpenSlide.md new file mode 100644 index 000000000..662b5d220 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenSlide.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# OpenSlide + +OpenSlide is a C library that provides a simple interface to read whole-slide images (also known as virtual slides). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.4.1`` | ``-largefiles`` | ``GCCcore/10.3.0`` +``3.4.1`` | | ``GCCcore/11.2.0`` +``3.4.1`` | ``-largefiles`` | ``GCCcore/11.3.0`` +``3.4.1`` | ``-largefiles`` | ``GCCcore/12.3.0`` +``3.4.1`` | ``-largefiles`` | ``GCCcore/8.2.0`` +``3.4.1`` | | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OpenStackClient.md b/docs/version-specific/supported-software/o/OpenStackClient.md new file mode 100644 index 000000000..4a446ca05 --- /dev/null +++ b/docs/version-specific/supported-software/o/OpenStackClient.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# OpenStackClient + +OpenStackClient (aka OSC) is a command-line client for OpenStack that brings the command set for Compute, Identity, Image, Network, Object Store and Block Storage APIs together in a single shell with a uniform command structure. + +*homepage*: + +version | toolchain +--------|---------- +``5.5.0`` | ``GCCcore/10.2.0`` +``5.8.0`` | ``GCCcore/11.2.0`` +``6.0.0`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OptaDOS.md b/docs/version-specific/supported-software/o/OptaDOS.md new file mode 100644 index 000000000..dae588c86 --- /dev/null +++ b/docs/version-specific/supported-software/o/OptaDOS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# OptaDOS + +OptaDOS is a program for calculating core-electron and low-loss electron energy loss spectra (EELS) and optical spectra along with total-, projected- and joint-density of electronic states (DOS) from single-particle eigenenergies and dipole transition coefficients. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.380`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/Optax.md b/docs/version-specific/supported-software/o/Optax.md new file mode 100644 index 000000000..a332a5fa0 --- /dev/null +++ b/docs/version-specific/supported-software/o/Optax.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Optax + +Optax is a gradient processing and optimization library for JAX. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.7`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.1.7`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OptiType.md b/docs/version-specific/supported-software/o/OptiType.md new file mode 100644 index 000000000..9dc02d080 --- /dev/null +++ b/docs/version-specific/supported-software/o/OptiType.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# OptiType + +OptiType is a novel HLA genotyping algorithm based on integer linear programming, capable of producing accurate 4-digit HLA genotyping predictions from NGS data by simultaneously selecting all major and minor HLA Class I alleles. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.2`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.3.2`` | ``-Python-3.6.6`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OptiX.md b/docs/version-specific/supported-software/o/OptiX.md new file mode 100644 index 000000000..f64ec1e24 --- /dev/null +++ b/docs/version-specific/supported-software/o/OptiX.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# OptiX + +OptiX is NVIDIA SDK for easy ray tracing performance. It provides a simple framework for accessing the GPU’s massive ray tracing power using state-of-the-art GPU algorithms. + +*homepage*: + +version | toolchain +--------|---------- +``3.8.0`` | ``GNU/4.9.3-2.25`` +``3.9.0`` | ``GNU/4.9.3-2.25`` +``6.5.0`` | ``system`` +``7.2.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/Optuna.md b/docs/version-specific/supported-software/o/Optuna.md new file mode 100644 index 000000000..16685e757 --- /dev/null +++ b/docs/version-specific/supported-software/o/Optuna.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Optuna + +Optuna is an automatic hyperparameter optimization software framework, particularly designed for machine learning. It features an imperative, define-by-run style user API. Thanks to our define-by-run API, the code written with Optuna enjoys high modularity, and the user of Optuna can dynamically construct the search spaces for the hyperparameters. + +*homepage*: + +version | toolchain +--------|---------- +``2.10.0`` | ``foss/2021b`` +``2.9.1`` | ``foss/2021a`` +``3.1.0`` | ``foss/2022a`` +``3.5.0`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OrfM.md b/docs/version-specific/supported-software/o/OrfM.md new file mode 100644 index 000000000..b17258b44 --- /dev/null +++ b/docs/version-specific/supported-software/o/OrfM.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# OrfM + +A simple and not slow open reading frame (ORF) caller. No bells or whistles like frameshift detection, just a straightforward goal of returning a FASTA file of open reading frames over a certain length from a FASTA/Q file of nucleotide sequences. + +*homepage*: + +version | toolchain +--------|---------- +``0.6.1`` | ``foss/2016b`` +``0.7.1`` | ``GCC/12.3.0`` +``0.7.1`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OrthoFinder.md b/docs/version-specific/supported-software/o/OrthoFinder.md new file mode 100644 index 000000000..5f3c2142b --- /dev/null +++ b/docs/version-specific/supported-software/o/OrthoFinder.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# OrthoFinder + +OrthoFinder is a fast, accurate and comprehensive platform for comparative genomics + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.7`` | ``-Python-2.7.14`` | ``intel/2018a`` +``2.3.11`` | ``-Python-3.7.4`` | ``intel/2019b`` +``2.3.3`` | ``-Python-2.7.15`` | ``intel/2018b`` +``2.3.8`` | ``-Python-2.7.16`` | ``foss/2019b`` +``2.5.2`` | | ``foss/2020b`` +``2.5.4`` | | ``foss/2020b`` +``2.5.5`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/OrthoMCL.md b/docs/version-specific/supported-software/o/OrthoMCL.md new file mode 100644 index 000000000..edad604c7 --- /dev/null +++ b/docs/version-specific/supported-software/o/OrthoMCL.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# OrthoMCL + +OrthoMCL is a genome-scale algorithm for grouping orthologous protein sequences. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4`` | ``-Perl-5.24.0`` | ``intel/2016b`` +``2.0.9`` | ``-Perl-5.24.0`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/Osi.md b/docs/version-specific/supported-software/o/Osi.md new file mode 100644 index 000000000..a76bdfe8f --- /dev/null +++ b/docs/version-specific/supported-software/o/Osi.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# Osi + +Osi (Open Solver Interface) provides an abstract base class to a generic linear programming (LP) solver, along with derived classes for specific solvers. Many applications may be able to use the Osi to insulate themselves from a specific LP solver. That is, programs written to the OSI standard may be linked to any solver with an OSI interface and should produce correct results. The OSI has been significantly extended compared to its first incarnation. Currently, the OSI supports linear programming solvers and has rudimentary support for integer programming. + +*homepage*: + +version | toolchain +--------|---------- +``0.108.5`` | ``GCCcore/7.3.0`` +``0.108.5`` | ``foss/2018b`` +``0.108.6`` | ``GCC/10.3.0`` +``0.108.6`` | ``GCCcore/10.2.0`` +``0.108.7`` | ``GCC/11.2.0`` +``0.108.8`` | ``GCC/12.2.0`` +``0.108.9`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/index.md b/docs/version-specific/supported-software/o/index.md new file mode 100644 index 000000000..cd61ee466 --- /dev/null +++ b/docs/version-specific/supported-software/o/index.md @@ -0,0 +1,102 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (o) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - *o* - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [Oases](Oases.md) + * [OBITools](OBITools.md) + * [OBITools3](OBITools3.md) + * [OCaml](OCaml.md) + * [ocamlbuild](ocamlbuild.md) + * [occt](occt.md) + * [oceanspy](oceanspy.md) + * [OCNet](OCNet.md) + * [Octave](Octave.md) + * [Octopus-vcf](Octopus-vcf.md) + * [OGDF](OGDF.md) + * [olaFlow](olaFlow.md) + * [olego](olego.md) + * [OMA](OMA.md) + * [OmegaFold](OmegaFold.md) + * [OMERO.insight](OMERO.insight.md) + * [OMERO.py](OMERO.py.md) + * [Omnipose](Omnipose.md) + * [onedrive](onedrive.md) + * [ONNX](ONNX.md) + * [ONNX-Runtime](ONNX-Runtime.md) + * [ont-fast5-api](ont-fast5-api.md) + * [ont-guppy](ont-guppy.md) + * [ont-remora](ont-remora.md) + * [OOMPA](OOMPA.md) + * [OPARI2](OPARI2.md) + * [Open-Data-Cube-Core](Open-Data-Cube-Core.md) + * [OpenAI-Gym](OpenAI-Gym.md) + * [OpenBabel](OpenBabel.md) + * [OpenBLAS](OpenBLAS.md) + * [openCARP](openCARP.md) + * [OpenCensus-python](OpenCensus-python.md) + * [OpenCoarrays](OpenCoarrays.md) + * [OpenColorIO](OpenColorIO.md) + * [OpenCV](OpenCV.md) + * [OpenEXR](OpenEXR.md) + * [OpenFace](OpenFace.md) + * [OpenFAST](OpenFAST.md) + * [OpenFOAM](OpenFOAM.md) + * [OpenFOAM-Extend](OpenFOAM-Extend.md) + * [OpenFold](OpenFold.md) + * [OpenForceField](OpenForceField.md) + * [OpenImageIO](OpenImageIO.md) + * [OpenJPEG](OpenJPEG.md) + * [OpenKIM-API](OpenKIM-API.md) + * [openkim-models](openkim-models.md) + * [OpenMEEG](OpenMEEG.md) + * [OpenMM](OpenMM.md) + * [OpenMM-PLUMED](OpenMM-PLUMED.md) + * [OpenMMTools](OpenMMTools.md) + * [OpenMolcas](OpenMolcas.md) + * [OpenMPI](OpenMPI.md) + * [OpenMS](OpenMS.md) + * [OpenNLP](OpenNLP.md) + * [OpenPGM](OpenPGM.md) + * [OpenPIV](OpenPIV.md) + * [openpyxl](openpyxl.md) + * [OpenRefine](OpenRefine.md) + * [OpenSceneGraph](OpenSceneGraph.md) + * [OpenSees](OpenSees.md) + * [OpenSlide](OpenSlide.md) + * [OpenSlide-Java](OpenSlide-Java.md) + * [openslide-python](openslide-python.md) + * [OpenSSL](OpenSSL.md) + * [OpenStackClient](OpenStackClient.md) + * [OPERA](OPERA.md) + * [OPERA-MS](OPERA-MS.md) + * [OptaDOS](OptaDOS.md) + * [Optax](Optax.md) + * [optiSLang](optiSLang.md) + * [OptiType](OptiType.md) + * [OptiX](OptiX.md) + * [Optuna](Optuna.md) + * [OR-Tools](OR-Tools.md) + * [ORCA](ORCA.md) + * [ORFfinder](ORFfinder.md) + * [OrfM](OrfM.md) + * [orthAgogue](orthAgogue.md) + * [OrthoFinder](OrthoFinder.md) + * [OrthoMCL](OrthoMCL.md) + * [Osi](Osi.md) + * [OSPRay](OSPRay.md) + * [OSU-Micro-Benchmarks](OSU-Micro-Benchmarks.md) + * [OTF2](OTF2.md) + * [OVITO](OVITO.md) + * [ownCloud](ownCloud.md) + * [oxDNA](oxDNA.md) + * [oxford_asl](oxford_asl.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - *o* - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/ocamlbuild.md b/docs/version-specific/supported-software/o/ocamlbuild.md new file mode 100644 index 000000000..4bd903489 --- /dev/null +++ b/docs/version-specific/supported-software/o/ocamlbuild.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ocamlbuild + +OCamlbuild is a generic build tool, that has built-in rules for building OCaml library and programs. + +*homepage*: + +version | toolchain +--------|---------- +``0.14.3`` | ``GCC/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/occt.md b/docs/version-specific/supported-software/o/occt.md new file mode 100644 index 000000000..1d7ea73aa --- /dev/null +++ b/docs/version-specific/supported-software/o/occt.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# occt + +Open CASCADE Technology (OCCT) is an object-oriented C++ class library designed for rapid production of sophisticated domain-specific CAD/CAM/CAE applications. + +*homepage*: + +version | toolchain +--------|---------- +``7.3.0p4`` | ``foss/2019b`` +``7.5.0p1`` | ``foss/2021a`` +``7.5.0p1`` | ``foss/2022a`` +``7.8.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/oceanspy.md b/docs/version-specific/supported-software/o/oceanspy.md new file mode 100644 index 000000000..955852843 --- /dev/null +++ b/docs/version-specific/supported-software/o/oceanspy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# oceanspy + +OceanSpy - A Python package to facilitate ocean model data analysis and visualization. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/olaFlow.md b/docs/version-specific/supported-software/o/olaFlow.md new file mode 100644 index 000000000..42e067514 --- /dev/null +++ b/docs/version-specific/supported-software/o/olaFlow.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# olaFlow + +olaFlow CFD Suite is a free and open source project committed to bringing the latest advances for the simulation of wave dynamics to the OpenFOAM® and FOAM-extend communities. + +*homepage*: + +version | toolchain +--------|---------- +``20210820`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/olego.md b/docs/version-specific/supported-software/o/olego.md new file mode 100644 index 000000000..d5021957e --- /dev/null +++ b/docs/version-specific/supported-software/o/olego.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# olego + +OLego is a program specifically designed for de novo spliced mapping of mRNA-seq reads. OLego adopts a seed-and-extend scheme, and does not rely on a separate external mapper. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.9`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/onedrive.md b/docs/version-specific/supported-software/o/onedrive.md new file mode 100644 index 000000000..ee4561b7a --- /dev/null +++ b/docs/version-specific/supported-software/o/onedrive.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# onedrive + +A free Microsoft OneDrive Client which supports OneDrive Personal, OneDrive for Business, OneDrive for Office365 and SharePoint. + +*homepage*: + +version | toolchain +--------|---------- +``2.4.11`` | ``GCCcore/10.2.0`` +``2.4.21`` | ``GCCcore/11.3.0`` +``2.4.25`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/ont-fast5-api.md b/docs/version-specific/supported-software/o/ont-fast5-api.md new file mode 100644 index 000000000..ceff8516c --- /dev/null +++ b/docs/version-specific/supported-software/o/ont-fast5-api.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# ont-fast5-api + +ont_fast5_api is a simple interface to HDF5 files of the Oxford Nanopore .fast5 file format. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.3.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``3.3.0`` | | ``foss/2020b`` +``3.3.0`` | | ``fosscuda/2020b`` +``4.0.0`` | | ``foss/2021a`` +``4.0.2`` | | ``foss/2021a`` +``4.0.2`` | | ``foss/2021b`` +``4.1.1`` | | ``foss/2022a`` +``4.1.1`` | | ``foss/2022b`` +``4.1.2`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/ont-guppy.md b/docs/version-specific/supported-software/o/ont-guppy.md new file mode 100644 index 000000000..162a84c4f --- /dev/null +++ b/docs/version-specific/supported-software/o/ont-guppy.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# ont-guppy + +Guppy is a bioinformatics toolkit that enables real-time basecalling and several post-processing features that works on Oxford Nanopore Technologies™ sequencing platforms. For Research Use Only + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``6.4.6`` | ``-CUDA-11.7.0`` | ``system`` +``6.4.6`` | | ``system`` +``6.4.8`` | ``-CUDA-11.7.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/ont-remora.md b/docs/version-specific/supported-software/o/ont-remora.md new file mode 100644 index 000000000..dbb884a57 --- /dev/null +++ b/docs/version-specific/supported-software/o/ont-remora.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# ont-remora + +Methylation/modified base calling separated from basecalling. Remora primarily provides an API to call modified bases for basecaller programs such as Bonito. Remora also provides the tools to prepare datasets, train modified base models and run simple inference. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.2`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``0.1.2`` | | ``foss/2021a`` +``1.0.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``1.0.0`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/openCARP.md b/docs/version-specific/supported-software/o/openCARP.md new file mode 100644 index 000000000..2bc954f1c --- /dev/null +++ b/docs/version-specific/supported-software/o/openCARP.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# openCARP + +openCARP is an open cardiac electrophysiology simulator for in-silico experiments. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.2`` | ``-Python-3.8.2`` | ``foss/2020a`` +``6.0`` | | ``foss/2020b`` +``8.2`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/openkim-models.md b/docs/version-specific/supported-software/o/openkim-models.md new file mode 100644 index 000000000..fd393411e --- /dev/null +++ b/docs/version-specific/supported-software/o/openkim-models.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# openkim-models + +Open Knowledgebase of Interatomic Models. OpenKIM is an API and a collection of interatomic models (potentials) for atomistic simulations. It is a library that can be used by simulation programs to get access to the models in the OpenKIM database. This EasyBuild installs the models. The API itself is in the kim-api package. + +*homepage*: + +version | toolchain +--------|---------- +``20190725`` | ``GCC/10.2.0`` +``20190725`` | ``foss/2019a`` +``20190725`` | ``foss/2019b`` +``20190725`` | ``intel/2019a`` +``20190725`` | ``intel/2019b`` +``20210128`` | ``GCC/10.2.0`` +``20210811`` | ``GCC/12.3.0`` +``20210811`` | ``intel-compilers/2023.1.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/openpyxl.md b/docs/version-specific/supported-software/o/openpyxl.md new file mode 100644 index 000000000..4ba1ba8cf --- /dev/null +++ b/docs/version-specific/supported-software/o/openpyxl.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# openpyxl + +A Python library to read/write Excel 2010 xlsx/xlsm files + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.6.2`` | | ``GCCcore/8.2.0`` +``2.6.4`` | ``-Python-2.7.16`` | ``GCCcore/8.3.0`` +``3.0.10`` | | ``GCCcore/11.3.0`` +``3.0.3`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``3.0.7`` | | ``GCCcore/10.2.0`` +``3.0.7`` | | ``GCCcore/10.3.0`` +``3.0.9`` | | ``GCCcore/11.2.0`` +``3.1.2`` | | ``GCCcore/12.2.0`` +``3.1.2`` | | ``GCCcore/12.3.0`` +``3.1.2`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/openslide-python.md b/docs/version-specific/supported-software/o/openslide-python.md new file mode 100644 index 000000000..3cedd6d5d --- /dev/null +++ b/docs/version-specific/supported-software/o/openslide-python.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# openslide-python + +OpenSlide Python is a Python interface to the OpenSlide library. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``GCCcore/8.2.0`` +``1.1.2`` | ``GCCcore/10.3.0`` +``1.1.2`` | ``GCCcore/11.2.0`` +``1.2.0`` | ``GCCcore/11.3.0`` +``1.3.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/optiSLang.md b/docs/version-specific/supported-software/o/optiSLang.md new file mode 100644 index 000000000..23ddb34d7 --- /dev/null +++ b/docs/version-specific/supported-software/o/optiSLang.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# optiSLang + +Ansys optiSLang is a constantly evolving, leading-edge answer to the challenges posed by CAE-based Robust Design Optimization (RDO). Its state-of-the-art algorithms efficiently and automatically search for the most robust design configuration, eliminating the slow, manual process that used to define RDO. + +*homepage*: + +version | toolchain +--------|---------- +``2024R1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/orthAgogue.md b/docs/version-specific/supported-software/o/orthAgogue.md new file mode 100644 index 000000000..1cfa46926 --- /dev/null +++ b/docs/version-specific/supported-software/o/orthAgogue.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# orthAgogue + +orthAgogue: a tool for high speed estimation of homology relations within and between species in massive data sets. orthAgogue is easy to use and offers flexibility through a range of optional parameters. + +*homepage*: + +version | toolchain +--------|---------- +``20141105`` | ``gompi/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/ownCloud.md b/docs/version-specific/supported-software/o/ownCloud.md new file mode 100644 index 000000000..3c97d732f --- /dev/null +++ b/docs/version-specific/supported-software/o/ownCloud.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ownCloud + +The ownCloud Desktop Client is a tool to synchronize files from ownCloud Server with your computer. + +*homepage*: + +version | toolchain +--------|---------- +``2.4.3`` | ``foss/2018b`` +``2.5.4`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/oxDNA.md b/docs/version-specific/supported-software/o/oxDNA.md new file mode 100644 index 000000000..74fd5be7f --- /dev/null +++ b/docs/version-specific/supported-software/o/oxDNA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# oxDNA + +oxDNA is a simulation code that was initially conceived as an implementation of the coarse-grained DNA model introduced by T. E. Ouldridge, J. P. K. Doye and A. A. Louis. It has been since reworked and it is now an extensible simulation+analysis framework. It natively supports DNA, RNA, Lennard-Jones and patchy particle simulations of different kinds on both single CPU cores and NVIDIA GPUs. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.5.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/o/oxford_asl.md b/docs/version-specific/supported-software/o/oxford_asl.md new file mode 100644 index 000000000..7e2184b44 --- /dev/null +++ b/docs/version-specific/supported-software/o/oxford_asl.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# oxford_asl + +A command line tool for quantification of perfusion from ASL data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.9.6`` | ``-centos7-Python-2.7.13`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PAGAN2.md b/docs/version-specific/supported-software/p/PAGAN2.md new file mode 100644 index 000000000..eacb2634f --- /dev/null +++ b/docs/version-specific/supported-software/p/PAGAN2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PAGAN2 + +PAGAN2 is a general-purpose method for the alignment of DNA, codon and amino-acid sequences as graphs. It aligns sequences either with pileup or, when related by a tree, using phylogeny-aware progressive alignment algorithm. In both cases it uses graphs to describe the uncertainty in the presence of characters at certain sequence positions. PAGAN2 is largely compatible with PAGAN but implements new algorithms for alignment anchoring and memory handling. As a result, PAGAN2 can align sequences of several hundreds of kilobases in length. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.53_20230824`` | ``-linux64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PAL2NAL.md b/docs/version-specific/supported-software/p/PAL2NAL.md new file mode 100644 index 000000000..4e2a6a18a --- /dev/null +++ b/docs/version-specific/supported-software/p/PAL2NAL.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PAL2NAL + +PAL2NAL is a program that converts a multiple sequence alignment of proteins and the corresponding DNA (or mRNA) sequences into a codon alignment. The program automatically assigns the corresponding codon sequence even if the input DNA sequence has mismatches with the input protein sequence, or contains UTRs, polyA tails. It can also deal with frame shifts in the input alignment, which is suitable for the analysis of pseudogenes. The resulting codon alignment can further be subjected to the calculation of synonymous (d_S) and non-synonymous (d_N) subs- titution rates. + +*homepage*: + +version | toolchain +--------|---------- +``14`` | ``GCCcore/10.2.0`` +``14`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PALEOMIX.md b/docs/version-specific/supported-software/p/PALEOMIX.md new file mode 100644 index 000000000..c872d77b3 --- /dev/null +++ b/docs/version-specific/supported-software/p/PALEOMIX.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PALEOMIX + +The PALEOMIX pipelines are a set of pipelines and tools designed to aid the rapid processing of High-Throughput Sequencing (HTS) data. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.7`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PAML.md b/docs/version-specific/supported-software/p/PAML.md new file mode 100644 index 000000000..2e889efc8 --- /dev/null +++ b/docs/version-specific/supported-software/p/PAML.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# PAML + +PAML is a package of programs for phylogenetic analyses of DNA or protein sequences using maximum likelihood. + +*homepage*: + +version | toolchain +--------|---------- +``4.10.5`` | ``GCCcore/11.3.0`` +``4.9i`` | ``GCC/6.4.0-2.28`` +``4.9i`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` +``4.9j`` | ``GCCcore/10.2.0`` +``4.9j`` | ``GCCcore/10.3.0`` +``4.9j`` | ``GCCcore/11.2.0`` +``4.9j`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PANDAseq.md b/docs/version-specific/supported-software/p/PANDAseq.md new file mode 100644 index 000000000..088b8affe --- /dev/null +++ b/docs/version-specific/supported-software/p/PANDAseq.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# PANDAseq + +PANDASEQ is a program to align Illumina reads, optionally with PCR primers embedded in the sequence, and reconstruct an overlapping sequence. + +*homepage*: + +version | toolchain +--------|---------- +``2.10`` | ``GCC/5.4.0-2.26`` +``2.10`` | ``iccifort/2016.3.210-GCC-5.4.0-2.26`` +``2.11`` | ``foss/2017b`` +``2.11`` | ``intel/2017b`` +``2.11`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PAPI.md b/docs/version-specific/supported-software/p/PAPI.md new file mode 100644 index 000000000..b44a52967 --- /dev/null +++ b/docs/version-specific/supported-software/p/PAPI.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# PAPI + +PAPI provides the tool designer and application engineer with a consistent interface and methodology for use of the performance counter hardware found in most major microprocessors. PAPI enables software engineers to see, in near real time, the relation between software performance and processor events. In addition Component PAPI provides access to a collection of components that expose performance measurement opportunites across the hardware and software stack. + +*homepage*: + +version | toolchain +--------|---------- +``5.4.3`` | ``foss/2016a`` +``5.5.1`` | ``GCCcore/6.3.0`` +``5.5.1`` | ``GCCcore/6.4.0`` +``5.6.0`` | ``GCCcore/6.4.0`` +``5.7.0`` | ``GCCcore/7.3.0`` +``5.7.0`` | ``GCCcore/8.2.0`` +``6.0.0`` | ``GCCcore/10.2.0`` +``6.0.0`` | ``GCCcore/8.3.0`` +``6.0.0`` | ``GCCcore/9.3.0`` +``6.0.0.1`` | ``GCCcore/10.3.0`` +``6.0.0.1`` | ``GCCcore/11.2.0`` +``7.0.0`` | ``GCCcore/11.3.0`` +``7.0.1`` | ``GCCcore/12.2.0`` +``7.0.1`` | ``GCCcore/12.3.0`` +``7.1.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PARI-GP.md b/docs/version-specific/supported-software/p/PARI-GP.md new file mode 100644 index 000000000..03b0b4cc3 --- /dev/null +++ b/docs/version-specific/supported-software/p/PARI-GP.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# PARI-GP + +PARI/GP is a widely used computer algebra system designed for fast computations in number theory (factorizations, algebraic number theory, elliptic curves...), but also contains a large number of other useful functions to compute with mathematical entities such as matrices, polynomials, power series, algebraic numbers etc., and a lot of transcendental functions. PARI is also available as a C library to allow for faster computations. + +*homepage*: + +version | toolchain +--------|---------- +``2.15.4`` | ``GCCcore/11.3.0`` +``2.15.5`` | ``GCCcore/13.2.0`` +``2.7.6`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PASA.md b/docs/version-specific/supported-software/p/PASA.md new file mode 100644 index 000000000..4034ca212 --- /dev/null +++ b/docs/version-specific/supported-software/p/PASA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PASA + +PASA, acronym for Program to Assemble Spliced Alignments (and pronounced 'pass-uh'), is a eukaryotic genome annotation tool that exploits spliced alignments of expressed transcript sequences to automatically model gene structures, and to maintain gene structure annotation consistent with the most recently available experimental sequence data. PASA also identifies and classifies all splicing variations supported by the transcript alignments. + +*homepage*: + +version | toolchain +--------|---------- +``2.5.3`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PAUP.md b/docs/version-specific/supported-software/p/PAUP.md new file mode 100644 index 000000000..ef7cc8d5c --- /dev/null +++ b/docs/version-specific/supported-software/p/PAUP.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PAUP + +PAUP* (Phylogenetic Analysis Using Parsimony *and other methods) is a computational phylogenetics program for inferring evolutionary trees. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.0a166`` | ``-centos64`` | ``system`` +``4.0a168`` | ``-centos64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PBSuite.md b/docs/version-specific/supported-software/p/PBSuite.md new file mode 100644 index 000000000..7afe20bb2 --- /dev/null +++ b/docs/version-specific/supported-software/p/PBSuite.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PBSuite + +PBJelly is a highly automated pipeline that aligns long sequencing reads (such as PacBio RS reads or long 454 reads in fasta format) to high-confidence draft assembles. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``15.8.24`` | ``-Python-2.7.12`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PBZIP2.md b/docs/version-specific/supported-software/p/PBZIP2.md new file mode 100644 index 000000000..17c9a23a6 --- /dev/null +++ b/docs/version-specific/supported-software/p/PBZIP2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PBZIP2 + +PBZIP2 is a parallel implementation of the bzip2 block-sorting file compressor that uses pthreads and achieves near-linear speedup on SMP machines. The output of this version is fully compatible with bzip2 v1.0.2 or newer (ie: anything compressed with pbzip2 can be decompressed with bzip2). PBZIP2 should work on any system that has a pthreads compatible C++ compiler (such as gcc). It has been tested on: Linux, Windows (cygwin & MinGW), Solaris, Tru64/OSF1, HP-UX, OS/2, OSX, and Irix. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.13`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PCAngsd.md b/docs/version-specific/supported-software/p/PCAngsd.md new file mode 100644 index 000000000..e0b9961b6 --- /dev/null +++ b/docs/version-specific/supported-software/p/PCAngsd.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PCAngsd + +PCAngsd, which estimates the covariance matrix for low depth NGS data in an iterative procedure based on genotype likelihoods and is able to perform multiple population genetic analyses in heterogeneous populations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.97`` | ``-Python-2.7.14`` | ``foss/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PCC.md b/docs/version-specific/supported-software/p/PCC.md new file mode 100644 index 000000000..f89711aaf --- /dev/null +++ b/docs/version-specific/supported-software/p/PCC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PCC + +The compiler is based on the original Portable C Compiler by S. C. Johnson, written in the late 70's. About 50% of the frontend code and 80% of the backend code has been modified. + +*homepage*: + +version | toolchain +--------|---------- +``20131024`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PCL.md b/docs/version-specific/supported-software/p/PCL.md new file mode 100644 index 000000000..72fa3e047 --- /dev/null +++ b/docs/version-specific/supported-software/p/PCL.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PCL + +The Point Cloud Library (PCL) is a standalone, large scale, open project for 2D/3D image and point cloud processing. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.7.2`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.8.1`` | ``-Python-2.7.14`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PCMSolver.md b/docs/version-specific/supported-software/p/PCMSolver.md new file mode 100644 index 000000000..74ba078a9 --- /dev/null +++ b/docs/version-specific/supported-software/p/PCMSolver.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# PCMSolver + +An API for the Polarizable Continuum Model. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.4`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.2.3`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.2.3`` | ``-Python-3.7.2`` | ``gompi/2019a`` +``1.2.3`` | ``-Python-3.7.4`` | ``iimpi/2019b`` +``1.2.3`` | | ``iimpi/2020b`` +``20160205`` | ``-Python-2.7.11`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PCRE.md b/docs/version-specific/supported-software/p/PCRE.md new file mode 100644 index 000000000..acfb6077b --- /dev/null +++ b/docs/version-specific/supported-software/p/PCRE.md @@ -0,0 +1,42 @@ +--- +search: + boost: 0.5 +--- +# PCRE + +The PCRE library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5. + +*homepage*: + +version | toolchain +--------|---------- +``8.38`` | ``foss/2016a`` +``8.38`` | ``foss/2016b`` +``8.38`` | ``gimkl/2.11.5`` +``8.38`` | ``intel/2016a`` +``8.38`` | ``intel/2016b`` +``8.39`` | ``GCCcore/5.4.0`` +``8.39`` | ``foss/2016b`` +``8.39`` | ``intel/2016b`` +``8.40`` | ``GCCcore/6.3.0`` +``8.40`` | ``gimkl/2017a`` +``8.40`` | ``intel/2016b`` +``8.40`` | ``intel/2017a`` +``8.41`` | ``GCCcore/6.3.0`` +``8.41`` | ``GCCcore/6.4.0`` +``8.41`` | ``GCCcore/7.3.0`` +``8.42`` | ``GCCcore/6.4.0`` +``8.43`` | ``GCCcore/8.2.0`` +``8.43`` | ``GCCcore/8.3.0`` +``8.44`` | ``GCCcore/10.2.0`` +``8.44`` | ``GCCcore/10.3.0`` +``8.44`` | ``GCCcore/9.3.0`` +``8.45`` | ``GCCcore/11.2.0`` +``8.45`` | ``GCCcore/11.3.0`` +``8.45`` | ``GCCcore/12.2.0`` +``8.45`` | ``GCCcore/12.3.0`` +``8.45`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PCRE2.md b/docs/version-specific/supported-software/p/PCRE2.md new file mode 100644 index 000000000..4ec1e38f6 --- /dev/null +++ b/docs/version-specific/supported-software/p/PCRE2.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# PCRE2 + +The PCRE library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5. + +*homepage*: + +version | toolchain +--------|---------- +``10.21`` | ``foss/2016a`` +``10.31`` | ``foss/2018b`` +``10.33`` | ``GCCcore/8.2.0`` +``10.33`` | ``GCCcore/8.3.0`` +``10.34`` | ``GCCcore/9.3.0`` +``10.35`` | ``GCCcore/10.2.0`` +``10.36`` | ``GCCcore/10.3.0`` +``10.37`` | ``GCCcore/11.2.0`` +``10.40`` | ``GCCcore/11.3.0`` +``10.40`` | ``GCCcore/12.2.0`` +``10.42`` | ``GCCcore/12.3.0`` +``10.42`` | ``GCCcore/13.2.0`` +``10.43`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PCRaster.md b/docs/version-specific/supported-software/p/PCRaster.md new file mode 100644 index 000000000..270c3b5f4 --- /dev/null +++ b/docs/version-specific/supported-software/p/PCRaster.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PCRaster + +PCRaster Is a collection of software targeted at the development and deployment of spatio-temporal environmental models. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.1.0`` | ``-Python-2.7.14`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PDM.md b/docs/version-specific/supported-software/p/PDM.md new file mode 100644 index 000000000..390a4da05 --- /dev/null +++ b/docs/version-specific/supported-software/p/PDM.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PDM + +A modern Python package and dependency manager supporting the latest PEP standards. + +*homepage*: + +version | toolchain +--------|---------- +``2.12.4`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PDT.md b/docs/version-specific/supported-software/p/PDT.md new file mode 100644 index 000000000..2fa9ff3c5 --- /dev/null +++ b/docs/version-specific/supported-software/p/PDT.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# PDT + +Program Database Toolkit (PDT) is a framework for analyzing source code written in several programming languages and for making rich program knowledge accessible to developers of static and dynamic analysis tools. PDT implements a standard program representation, the program database (PDB), that can be accessed in a uniform way through a class library supporting common PDB operations. + +*homepage*: + +version | toolchain +--------|---------- +``3.22`` | ``foss/2016a`` +``3.25`` | ``GCCcore/10.2.0`` +``3.25`` | ``GCCcore/8.2.0`` +``3.25`` | ``GCCcore/8.3.0`` +``3.25.1`` | ``GCCcore/10.3.0`` +``3.25.1`` | ``GCCcore/11.2.0`` +``3.25.1`` | ``GCCcore/11.3.0`` +``3.25.1`` | ``GCCcore/12.2.0`` +``3.25.1`` | ``GCCcore/12.3.0`` +``3.25.1`` | ``GCCcore/9.3.0`` +``3.25.2`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PEAR.md b/docs/version-specific/supported-software/p/PEAR.md new file mode 100644 index 000000000..280610e2c --- /dev/null +++ b/docs/version-specific/supported-software/p/PEAR.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# PEAR + +PEAR is an ultrafast, memory-efficient and highly accurate pair-end read merger. It is fully parallelized and can run with as low as just a few kilobytes of memory. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.10`` | ``GCC/6.4.0-2.28`` +``0.9.10`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` +``0.9.11`` | ``GCC/10.3.0`` +``0.9.11`` | ``GCC/11.2.0`` +``0.9.11`` | ``GCC/11.3.0`` +``0.9.11`` | ``GCCcore/7.3.0`` +``0.9.11`` | ``GCCcore/9.3.0`` +``0.9.11`` | ``foss/2018a`` +``0.9.8`` | ``foss/2016b`` +``0.9.8`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PEPT.md b/docs/version-specific/supported-software/p/PEPT.md new file mode 100644 index 000000000..6f7acf098 --- /dev/null +++ b/docs/version-specific/supported-software/p/PEPT.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PEPT + +A Python library that integrates all the tools necessary to perform research using Positron Emission Particle Tracking (PEPT). The library includes algorithms for the location, identification and tracking of particles, in addition to tools for visualisation and analysis, and utilities allowing the realistic simulation of PEPT data. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.1`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PEST++.md b/docs/version-specific/supported-software/p/PEST++.md new file mode 100644 index 000000000..f0d8ea82a --- /dev/null +++ b/docs/version-specific/supported-software/p/PEST++.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PEST++ + +PEST++ is a software suite aimed at supporting complex numerical models in the decision-support context. Much focus has been devoted to supporting environmental models (groundwater, surface water, etc) but these tools are readily applicable to any computer model. + +*homepage*: + +version | toolchain +--------|---------- +``5.0.5`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PETSc.md b/docs/version-specific/supported-software/p/PETSc.md new file mode 100644 index 000000000..ae363a8ab --- /dev/null +++ b/docs/version-specific/supported-software/p/PETSc.md @@ -0,0 +1,39 @@ +--- +search: + boost: 0.5 +--- +# PETSc + +PETSc, pronounced PET-see (the S is silent), is a suite of data structures and routines for the scalable (parallel) solution of scientific applications modeled by partial differential equations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.11.0`` | ``-downloaded-deps`` | ``foss/2018b`` +``3.11.1`` | ``-Python-3.7.2`` | ``foss/2019a`` +``3.11.1`` | ``-Python-3.7.2`` | ``intel/2019a`` +``3.12.4`` | ``-Python-3.7.4`` | ``foss/2019b`` +``3.12.4`` | ``-Python-3.8.2`` | ``foss/2020a`` +``3.12.4`` | ``-Python-2.7.16`` | ``intel/2019b`` +``3.12.4`` | ``-Python-3.7.4`` | ``intel/2019b`` +``3.12.4`` | ``-Python-3.8.2`` | ``intel/2020a`` +``3.14.4`` | | ``foss/2020b`` +``3.14.4`` | | ``intel/2020b`` +``3.15.1`` | | ``foss/2021a`` +``3.15.1`` | | ``intel/2021a`` +``3.17.4`` | | ``foss/2022a`` +``3.18.4`` | | ``intel/2021b`` +``3.19.2`` | | ``foss/2022b`` +``3.20.3`` | | ``foss/2023a`` +``3.7.2`` | ``-Python-2.7.11`` | ``intel/2016a`` +``3.7.3`` | ``-Python-2.7.11`` | ``foss/2016a`` +``3.7.5`` | ``-downloaded-deps`` | ``intel/2016b`` +``3.8.3`` | ``-downloaded-deps`` | ``foss/2017b`` +``3.9.1`` | ``-downloaded-deps`` | ``foss/2018a`` +``3.9.3`` | | ``foss/2018a`` +``3.9.3`` | | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PFFT.md b/docs/version-specific/supported-software/p/PFFT.md new file mode 100644 index 000000000..b34ce655b --- /dev/null +++ b/docs/version-specific/supported-software/p/PFFT.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PFFT + +PFFT is a software library for computing massively parallel, fast Fourier transformations on distributed memory architectures. PFFT can be understood as a generalization of FFTW-MPI to multidimensional data decomposition. The library is written in C and MPI. A Fortran interface is also available. Support for hybrid parallelization based on OpenMP and MPI is under development. + +*homepage*: + +version | toolchain +--------|---------- +``20181230`` | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PGDSpider.md b/docs/version-specific/supported-software/p/PGDSpider.md new file mode 100644 index 000000000..6ca7f8959 --- /dev/null +++ b/docs/version-specific/supported-software/p/PGDSpider.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PGDSpider + +An automated data conversion tool for connecting population genetics and genomics programs + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.0.3`` | ``-Java-1.7.0_80`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PGI.md b/docs/version-specific/supported-software/p/PGI.md new file mode 100644 index 000000000..3a598c62c --- /dev/null +++ b/docs/version-specific/supported-software/p/PGI.md @@ -0,0 +1,36 @@ +--- +search: + boost: 0.5 +--- +# PGI + +C, C++ and Fortran compilers from The Portland Group - PGI + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``15.10`` | ``-GCC-4.9.3-2.25`` | ``system`` +``15.7`` | ``-GNU-4.9.2-2.25`` | ``system`` +``15.7`` | ``-GNU-4.9.3-2.25`` | ``system`` +``16.1`` | ``-CDK-GCC-4.9.2-2.25`` | ``system`` +``16.10`` | ``-GCC-5.4.0-2.26`` | ``system`` +``16.3`` | ``-GCC-4.9.3-2.25`` | ``system`` +``16.4`` | ``-GCC-5.3.0-2.26`` | ``system`` +``16.7`` | ``-GCC-5.4.0-2.26`` | ``system`` +``17.1`` | ``-GCC-6.3.0-2.27`` | ``system`` +``17.10`` | ``-GCC-6.4.0-2.28`` | ``system`` +``17.3`` | ``-GCC-6.3.0-2.28`` | ``system`` +``17.4`` | ``-GCC-6.4.0-2.28`` | ``system`` +``18.1`` | ``-GCC-7.2.0-2.29`` | ``system`` +``18.10`` | ``-GCC-6.4.0-2.28`` | ``system`` +``18.4`` | ``-GCC-6.4.0-2.28`` | ``system`` +``18.7`` | ``-GCC-7.3.0-2.30`` | ``system`` +``19.1`` | ``-GCC-8.2.0-2.31.1`` | ``system`` +``19.10`` | ``-GCC-8.3.0-2.32`` | ``system`` +``19.4`` | ``-GCC-8.2.0-2.31.1`` | ``system`` +``19.7`` | ``-GCC-8.3.0-2.32`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PGPLOT.md b/docs/version-specific/supported-software/p/PGPLOT.md new file mode 100644 index 000000000..ab5007dbd --- /dev/null +++ b/docs/version-specific/supported-software/p/PGPLOT.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# PGPLOT + +The PGPLOT Graphics Subroutine Library is a Fortran- or C-callable, device-independent graphics package for making simple scientific graphs. It is intended for making graphical images of publication quality with minimum effort on the part of the user. For most applications, the program can be device-independent, and the output can be directed to the appropriate device at run time. + +*homepage*: + +version | toolchain +--------|---------- +``5.2.2`` | ``GCCcore/11.2.0`` +``5.2.2`` | ``GCCcore/11.3.0`` +``5.2.2`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PHANOTATE.md b/docs/version-specific/supported-software/p/PHANOTATE.md new file mode 100644 index 000000000..a872d70a4 --- /dev/null +++ b/docs/version-specific/supported-software/p/PHANOTATE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PHANOTATE + +PHANOTATE: a tool to annotate phage genomes + +*homepage*: + +version | toolchain +--------|---------- +``20190724`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PHASE.md b/docs/version-specific/supported-software/p/PHASE.md new file mode 100644 index 000000000..323525250 --- /dev/null +++ b/docs/version-specific/supported-software/p/PHASE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PHASE + +The program PHASE implements a Bayesian statistical method for reconstructing haplotypes from population genotype data. Documentation: http://stephenslab.uchicago.edu/assets/software/phase/instruct2.1.pdf + +*homepage*: + +version | toolchain +--------|---------- +``2.1.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PHAST.md b/docs/version-specific/supported-software/p/PHAST.md new file mode 100644 index 000000000..d62468a94 --- /dev/null +++ b/docs/version-specific/supported-software/p/PHAST.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# PHAST + +PHAST is a freely available software package for comparative and evolutionary genomics. + +*homepage*: + +version | toolchain +--------|---------- +``1.4`` | ``intel/2017a`` +``1.5`` | ``GCC/6.4.0-2.28`` +``1.5`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PHLAT.md b/docs/version-specific/supported-software/p/PHLAT.md new file mode 100644 index 000000000..2e07a2304 --- /dev/null +++ b/docs/version-specific/supported-software/p/PHLAT.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PHLAT + +PHLAT is a bioinformatics algorithm that offers HLA typing at four-digit resolution (or higher) using genome-wide transcriptome and exome sequencing data over a wide range of read lengths and sequencing depths. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1`` | ``-Python-2.7.15`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PHYLIP.md b/docs/version-specific/supported-software/p/PHYLIP.md new file mode 100644 index 000000000..f4039ba4b --- /dev/null +++ b/docs/version-specific/supported-software/p/PHYLIP.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# PHYLIP + +PHYLIP is a free package of programs for inferring phylogenies. + +*homepage*: + +version | toolchain +--------|---------- +``3.696`` | ``foss/2016a`` +``3.696`` | ``intel/2016a`` +``3.697`` | ``GCC/12.3.0`` +``3.697`` | ``GCC/6.4.0-2.28`` +``3.697`` | ``GCC/9.3.0`` +``3.697`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PICI-LIGGGHTS.md b/docs/version-specific/supported-software/p/PICI-LIGGGHTS.md new file mode 100644 index 000000000..ee777ad80 --- /dev/null +++ b/docs/version-specific/supported-software/p/PICI-LIGGGHTS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PICI-LIGGGHTS + +UoB Positron Imaging Centre's Improved LIGGGHTS distribution with an emphasis on the Python interface. + +*homepage*: + +version | toolchain +--------|---------- +``3.8.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PICRUSt2.md b/docs/version-specific/supported-software/p/PICRUSt2.md new file mode 100644 index 000000000..5a5630bca --- /dev/null +++ b/docs/version-specific/supported-software/p/PICRUSt2.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PICRUSt2 + +PICRUSt2 (Phylogenetic Investigation of Communities by Reconstruction of Unobserved States) is a software for predicting functional abundances based only on marker gene sequences. + +*homepage*: + +version | toolchain +--------|---------- +``2.5.2`` | ``foss/2022a`` +``2.5.2`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PIL.md b/docs/version-specific/supported-software/p/PIL.md new file mode 100644 index 000000000..1ac49dc74 --- /dev/null +++ b/docs/version-specific/supported-software/p/PIL.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# PIL + +The Python Imaging Library (PIL) adds image processing capabilities to your Python interpreter. This library supports many file formats, and provides powerful image processing and graphics capabilities. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.7`` | ``-Python-2.7.12`` | ``foss/2016b`` +``1.1.7`` | ``-Python-2.7.15`` | ``foss/2019a`` +``1.1.7`` | ``-Python-2.7.11-freetype-2.6.3`` | ``intel/2016a`` +``1.1.7`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.1.7`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.1.7`` | ``-Python-2.7.13`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PIMS.md b/docs/version-specific/supported-software/p/PIMS.md new file mode 100644 index 000000000..92420f8a9 --- /dev/null +++ b/docs/version-specific/supported-software/p/PIMS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PIMS + +PIMS is a lazy-loading interface to sequential data with numpy-like slicing. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.4.1`` | ``-Python-2.7.14`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PIPITS.md b/docs/version-specific/supported-software/p/PIPITS.md new file mode 100644 index 000000000..eb9d7a476 --- /dev/null +++ b/docs/version-specific/supported-software/p/PIPITS.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# PIPITS + +An automated pipeline for analyses of fungal internal transcribed spacer (ITS) sequences from the Illumina sequencing platform. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.7`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2.8`` | | ``foss/2021a`` +``3.0`` | | ``foss/2021a`` +``3.0`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PIRATE.md b/docs/version-specific/supported-software/p/PIRATE.md new file mode 100644 index 000000000..7d4fbf409 --- /dev/null +++ b/docs/version-specific/supported-software/p/PIRATE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PIRATE + +A toolbox for pangenome analysis and threshold evaluation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.5`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PLAMS.md b/docs/version-specific/supported-software/p/PLAMS.md new file mode 100644 index 000000000..a38131f95 --- /dev/null +++ b/docs/version-specific/supported-software/p/PLAMS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PLAMS + +The Python Library for Automating Molecular Simulation (PLAMS) is powerful and flexible Python tool interfaced to the Amsterdam Modeling Suite engines ADF, BAND, DFTB, MOPAC, ReaxFF, and UFF. + +*homepage*: + +version | toolchain +--------|---------- +``1.5.1`` | ``intel/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PLAST.md b/docs/version-specific/supported-software/p/PLAST.md new file mode 100644 index 000000000..8a908b780 --- /dev/null +++ b/docs/version-specific/supported-software/p/PLAST.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PLAST + +PLAST is a parallel alignment search tool for comparing large protein banks + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.3.1`` | ``-Java-1.8.0_92`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PLINK.md b/docs/version-specific/supported-software/p/PLINK.md new file mode 100644 index 000000000..2b02d53f6 --- /dev/null +++ b/docs/version-specific/supported-software/p/PLINK.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# PLINK + +PLINK is a free, open-source whole genome association analysis toolset, designed to perform a range of basic, large-scale analyses in a computationally efficient manner. The focus of PLINK is purely on analysis of genotype/phenotype data, so there is no support for steps prior to this (e.g. study design and planning, generating genotype or CNV calls from raw data). Through integration with gPLINK and Haploview, there is some support for the subsequent visualization, annotation and storage of results. + +*homepage*: + +version | toolchain +--------|---------- +``1.07`` | ``foss/2016a`` +``1.07`` | ``foss/2016b`` +``1.07-x86_64`` | ``system`` +``1.9b5`` | ``golf/2020a`` +``1.9b_4.1-x86_64`` | ``system`` +``1.9b_6.17-x86_64`` | ``system`` +``1.9b_6.21-x86_64`` | ``system`` +``2.00-alpha1-x86_64`` | ``system`` +``2.00-alpha2-x86_64`` | ``system`` +``2.00-alpha2-x86_64_avx2`` | ``system`` +``2.00a2.3`` | ``GCC/10.3.0`` +``2.00a2.3`` | ``GCC/11.2.0`` +``2.00a2.3_x86_64`` | ``system`` +``2.00a3.1`` | ``GCC/11.2.0`` +``2.00a3.6`` | ``GCC/11.3.0`` +``2.00a3.7`` | ``foss/2022a`` +``2.00a3.7`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PLINKSEQ.md b/docs/version-specific/supported-software/p/PLINKSEQ.md new file mode 100644 index 000000000..2b204164b --- /dev/null +++ b/docs/version-specific/supported-software/p/PLINKSEQ.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PLINKSEQ + +PLINK/SEQ is an open-source C/C++ library for working with human genetic variation data. The specific focus is to provide a platform for analytic tool development for variation data from large-scale resequencing and genotyping projects, particularly whole-exome and whole-genome studies. It is independent of (but designed to be complementary to) the existing PLINK package. + +*homepage*: + +version | toolchain +--------|---------- +``0.10`` | ``GCC/6.4.0-2.28`` +``0.10`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PLUMED.md b/docs/version-specific/supported-software/p/PLUMED.md new file mode 100644 index 000000000..002603b94 --- /dev/null +++ b/docs/version-specific/supported-software/p/PLUMED.md @@ -0,0 +1,54 @@ +--- +search: + boost: 0.5 +--- +# PLUMED + +PLUMED is an open source library for free energy calculations in molecular systems which works together with some of the most popular molecular dynamics engines. Free energy calculations can be performed as a function of many order parameters with a particular focus on biological problems, using state of the art methods such as metadynamics, umbrella sampling and Jarzynski-equation based steered MD. The software, written in C++, can be easily interfaced with both fortran and C/C++ codes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.2`` | | ``intel/2016a`` +``2.2.3`` | | ``foss/2016b`` +``2.2.3`` | | ``intel/2016b`` +``2.3.0`` | | ``foss/2016b`` +``2.3.0`` | | ``foss/2017a`` +``2.3.0`` | | ``intel/2016b`` +``2.3.4`` | | ``intel/2017b`` +``2.4.0`` | | ``foss/2018a`` +``2.4.0`` | | ``intel/2017b`` +``2.4.0`` | ``-PathCV`` | ``intel/2018a`` +``2.4.0`` | | ``intel/2018a`` +``2.4.1`` | | ``iomkl/2018a`` +``2.4.2`` | | ``foss/2018b`` +``2.4.2`` | | ``intel/2018b`` +``2.5.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``2.5.0`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``2.5.0`` | | ``intel/2018b`` +``2.5.1`` | | ``foss/2019a`` +``2.5.1`` | ``-PathCV`` | ``intel/2018b`` +``2.5.1`` | | ``intel/2018b`` +``2.5.2`` | ``-Python-3.7.2`` | ``intel/2019a`` +``2.5.3`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.5.3`` | ``-Python-3.7.4`` | ``intel/2019b`` +``2.5.4`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.5.4`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``2.5b`` | ``-Python-2.7.14`` | ``intel/2018a`` +``2.6.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2.6.0`` | ``-Python-3.8.2`` | ``intel/2020a`` +``2.6.2`` | | ``foss/2020b`` +``2.6.2`` | | ``intel/2020b`` +``2.7.0`` | | ``foss/2020b`` +``2.7.2`` | | ``foss/2021a`` +``2.7.2`` | | ``intel/2021a`` +``2.7.3`` | | ``foss/2021b`` +``2.8.0`` | | ``foss/2021b`` +``2.8.1`` | | ``foss/2022a`` +``2.9.0`` | | ``foss/2022b`` +``2.9.0`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PLY.md b/docs/version-specific/supported-software/p/PLY.md new file mode 100644 index 000000000..1c2a272ec --- /dev/null +++ b/docs/version-specific/supported-software/p/PLY.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# PLY + +PLY is yet another implementation of lex and yacc for Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.11`` | | ``GCCcore/12.2.0`` +``3.11`` | | ``GCCcore/12.3.0`` +``3.11`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``3.11`` | ``-Python-3.6.4`` | ``foss/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PLplot.md b/docs/version-specific/supported-software/p/PLplot.md new file mode 100644 index 000000000..836cbc2b7 --- /dev/null +++ b/docs/version-specific/supported-software/p/PLplot.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PLplot + +PLplot is a cross-platform software package for creating scientific plots whose (UTF-8) plot symbols and text are limited in practice only by what Unicode-aware system fonts are installed on a user's computer. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.11.1`` | ``-Java-1.7.0_80-Python-2.7.11`` | ``foss/2016a`` +``5.11.1`` | ``-Java-1.7.0_80-Python-2.7.12`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PMIx.md b/docs/version-specific/supported-software/p/PMIx.md new file mode 100644 index 000000000..bdc247021 --- /dev/null +++ b/docs/version-specific/supported-software/p/PMIx.md @@ -0,0 +1,41 @@ +--- +search: + boost: 0.5 +--- +# PMIx + +Process Management for Exascale Environments PMI Exascale (PMIx) represents an attempt to resolve these questions by providing an extended version of the PMI standard specifically designed to support clusters up to and including exascale sizes. The overall objective of the project is not to branch the existing pseudo-standard definitions - in fact, PMIx fully supports both of the existing PMI-1 and PMI-2 APIs - but rather to (a) augment and extend those APIs to eliminate some current restrictions that impact scalability, and (b) provide a reference implementation of the PMI-server that demonstrates the desired level of scalability. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.5`` | ``GCCcore/6.4.0`` +``2.1.3`` | ``GCCcore/7.2.0`` +``2.1.3`` | ``GCCcore/7.3.0`` +``2.2.1`` | ``GCCcore/7.2.0`` +``2.2.1`` | ``GCCcore/7.3.0`` +``2.2.1`` | ``GCCcore/8.2.0`` +``2.2.3`` | ``GCCcore/7.2.0`` +``2.2.3`` | ``GCCcore/7.3.0`` +``3.0.1`` | ``GCCcore/6.4.0`` +``3.0.1`` | ``GCCcore/7.3.0`` +``3.0.2`` | ``GCCcore/8.2.0`` +``3.0.2`` | ``GCCcore/8.3.0`` +``3.1.1`` | ``GCCcore/6.4.0`` +``3.1.1`` | ``GCCcore/7.3.0`` +``3.1.1`` | ``GCCcore/8.2.0`` +``3.1.4`` | ``GCCcore/8.3.0`` +``3.1.5`` | ``GCCcore/10.2.0`` +``3.1.5`` | ``GCCcore/9.3.0`` +``3.2.3`` | ``GCCcore/10.3.0`` +``4.1.0`` | ``GCCcore/11.2.0`` +``4.1.2`` | ``GCCcore/11.3.0`` +``4.2.2`` | ``GCCcore/12.2.0`` +``4.2.4`` | ``GCCcore/12.3.0`` +``4.2.6`` | ``GCCcore/13.2.0`` +``5.0.2`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/POT.md b/docs/version-specific/supported-software/p/POT.md new file mode 100644 index 000000000..1866a2ddc --- /dev/null +++ b/docs/version-specific/supported-software/p/POT.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# POT + +POT (Python Optimal Transport) is a Python library provide several solvers for optimization problems related to Optimal Transport for signal, image processing and machine learning. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.5.1`` | ``-Python-3.6.6`` | ``intel/2018b`` +``0.9.0`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/POV-Ray.md b/docs/version-specific/supported-software/p/POV-Ray.md new file mode 100644 index 000000000..3d23e7c03 --- /dev/null +++ b/docs/version-specific/supported-software/p/POV-Ray.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# POV-Ray + +The Persistence of Vision Raytracer, or POV-Ray, is a ray tracing program which generates images from a text-based scene description, and is available for a variety of computer platforms. POV-Ray is a high-quality, Free Software tool for creating stunning three-dimensional graphics. The source code is available for those wanting to do their own ports. + +*homepage*: + +version | toolchain +--------|---------- +``3.7.0.0`` | ``intel/2016b`` +``3.7.0.10`` | ``GCC/11.3.0`` +``3.7.0.10`` | ``GCC/12.3.0`` +``3.7.0.7`` | ``foss/2017b`` +``3.7.0.7`` | ``foss/2018b`` +``3.7.0.7`` | ``intel/2017b`` +``3.7.0.7`` | ``intel/2018a`` +``3.7.0.7`` | ``intel/2018b`` +``3.7.0.8`` | ``GCC/10.2.0`` +``3.7.0.8`` | ``iccifort/2020.4.304`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PPanGGOLiN.md b/docs/version-specific/supported-software/p/PPanGGOLiN.md new file mode 100644 index 000000000..dbe318c3a --- /dev/null +++ b/docs/version-specific/supported-software/p/PPanGGOLiN.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PPanGGOLiN + +PPanGGOLiN is a software suite used to create and manipulate prokaryotic pangenomes from a set of either genomic DNA sequences or provided genome annotations. It is designed to scale up to tens of thousands of genomes. It has the specificity to partition the pangenome using a statistical approach rather than using fixed thresholds which gives it the ability to work with low-quality data such as Metagenomic Assembled Genomes (MAGs) or Single-cell Amplified Genomes (SAGs) thus taking advantage of large scale environmental studies and letting users study the pangenome of uncultivable species. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.136`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PPfold.md b/docs/version-specific/supported-software/p/PPfold.md new file mode 100644 index 000000000..52fd9bf65 --- /dev/null +++ b/docs/version-specific/supported-software/p/PPfold.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PPfold + +PPfold is a new implementation of pfold, written in Java 6.0. It can predict the consensus secondary structure of RNA alignments through a stochastic context-free grammar coupled to an evolutionary model. It can also use data from chemical probing experiments to predict RNA secondary structure. PPfold is multithreaded, and can solve the structure of much longer alignments than pfold. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.1.1`` | ``-Java-1.8.0_66`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PRANK.md b/docs/version-specific/supported-software/p/PRANK.md new file mode 100644 index 000000000..df317855f --- /dev/null +++ b/docs/version-specific/supported-software/p/PRANK.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# PRANK + +PRANK is a probabilistic multiple alignment program for DNA, codon and amino-acid sequences. PRANK is based on a novel algorithm that treats insertions correctly and avoids over-estimation of the number of deletion events. + +*homepage*: + +version | toolchain +--------|---------- +``170427`` | ``GCC/10.2.0`` +``170427`` | ``GCC/10.3.0`` +``170427`` | ``GCC/11.2.0`` +``170427`` | ``GCC/11.3.0`` +``170427`` | ``GCC/12.3.0`` +``170427`` | ``GCC/9.3.0`` +``170427`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PRC.md b/docs/version-specific/supported-software/p/PRC.md new file mode 100644 index 000000000..f79377efd --- /dev/null +++ b/docs/version-specific/supported-software/p/PRC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PRC + +PRC is a stand-alone program for aligning and scoring two profile hidden Markov models. This can be used to detect remote relationships between profiles more effectively than by doing simple profile-sequence comparisons. PRC takes into account all transition and emission probabilities in both hidden Markov models. + +*homepage*: + +version | toolchain +--------|---------- +``1.5.6`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PREQUAL.md b/docs/version-specific/supported-software/p/PREQUAL.md new file mode 100644 index 000000000..7e60e6270 --- /dev/null +++ b/docs/version-specific/supported-software/p/PREQUAL.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PREQUAL + +A program to identify and mask regions with non-homologous adjacent characters in FASTA files. + +*homepage*: + +version | toolchain +--------|---------- +``1.02`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PRINSEQ.md b/docs/version-specific/supported-software/p/PRINSEQ.md new file mode 100644 index 000000000..2c814d2c3 --- /dev/null +++ b/docs/version-specific/supported-software/p/PRINSEQ.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# PRINSEQ + +A bioinformatics tool to PRe-process and show INformation of SEQuence data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.20.4`` | ``-Perl-5.28.0`` | ``foss/2018b`` +``0.20.4`` | ``-Perl-5.32.0`` | ``foss/2020b`` +``0.20.4`` | ``-Perl-5.34.0`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PRISMS-PF.md b/docs/version-specific/supported-software/p/PRISMS-PF.md new file mode 100644 index 000000000..ffbb290be --- /dev/null +++ b/docs/version-specific/supported-software/p/PRISMS-PF.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# PRISMS-PF + +PRISMS-PF is a powerful, massively parallel finite element code for conducting phase field and other related simulations of microstructural evolution. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.1`` | ``foss/2019a`` +``2.1.1`` | ``intel/2019a`` +``2.2`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PROJ.md b/docs/version-specific/supported-software/p/PROJ.md new file mode 100644 index 000000000..2077d30c1 --- /dev/null +++ b/docs/version-specific/supported-software/p/PROJ.md @@ -0,0 +1,41 @@ +--- +search: + boost: 0.5 +--- +# PROJ + +Program proj is a standard Unix filter function which converts geographic longitude and latitude coordinates into cartesian coordinates + +*homepage*: + +version | toolchain +--------|---------- +``4.9.2`` | ``foss/2016a`` +``4.9.2`` | ``foss/2016b`` +``4.9.2`` | ``intel/2016a`` +``4.9.2`` | ``intel/2016b`` +``4.9.3`` | ``foss/2016b`` +``4.9.3`` | ``foss/2017b`` +``4.9.3`` | ``intel/2016b`` +``4.9.3`` | ``intel/2017a`` +``4.9.3`` | ``intel/2017b`` +``5.0.0`` | ``foss/2018a`` +``5.0.0`` | ``foss/2018b`` +``5.0.0`` | ``intel/2018a`` +``5.0.0`` | ``intel/2018b`` +``5.0.0`` | ``iomkl/2018a`` +``6.0.0`` | ``GCCcore/8.2.0`` +``6.2.1`` | ``GCCcore/8.3.0`` +``6.3.1`` | ``GCCcore/10.3.0`` +``7.0.0`` | ``GCCcore/9.3.0`` +``7.2.1`` | ``GCCcore/10.2.0`` +``8.0.1`` | ``GCCcore/10.3.0`` +``8.1.0`` | ``GCCcore/11.2.0`` +``9.0.0`` | ``GCCcore/11.3.0`` +``9.1.1`` | ``GCCcore/12.2.0`` +``9.2.0`` | ``GCCcore/12.3.0`` +``9.3.1`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PRRTE.md b/docs/version-specific/supported-software/p/PRRTE.md new file mode 100644 index 000000000..7a8569cfe --- /dev/null +++ b/docs/version-specific/supported-software/p/PRRTE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PRRTE + +PRRTE is the PMIx Reference RunTime Environment + +*homepage*: + +version | toolchain +--------|---------- +``3.0.5`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PRSice.md b/docs/version-specific/supported-software/p/PRSice.md new file mode 100644 index 000000000..c19c2aecb --- /dev/null +++ b/docs/version-specific/supported-software/p/PRSice.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# PRSice + +PRSice (pronounced 'precise') is a Polygenic Risk Score software for calculating, applying, evaluating and plotting the results of polygenic risk scores (PRS) analyses. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.12`` | ``GCCcore/8.3.0`` +``2.3.1`` | ``GCCcore/9.3.0`` +``2.3.3`` | ``GCCcore/10.3.0`` +``2.3.3`` | ``GCCcore/9.3.0`` +``2.3.5`` | ``GCCcore/11.3.0`` +``2.3.5`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PSASS.md b/docs/version-specific/supported-software/p/PSASS.md new file mode 100644 index 000000000..3536f7d6c --- /dev/null +++ b/docs/version-specific/supported-software/p/PSASS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PSASS + +PSASS (Pooled Sequencing Analysis for Sex Signal) is a software to compare pooled sequencing datasets from two groups (usually two sexes). Results from PSASS can be easily visualized using the sgtr R package. PSASS is integrated in a Snakemake workflow to perform all required steps starting from a genome and reads files. + +*homepage*: + +version | toolchain +--------|---------- +``3.1.0`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PSI.md b/docs/version-specific/supported-software/p/PSI.md new file mode 100644 index 000000000..ec54ee4d7 --- /dev/null +++ b/docs/version-specific/supported-software/p/PSI.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PSI + +PSI4 is an open-source suite of ab initio quantum chemistry programs designed for efficient, high-accuracy simulations of a variety of molecular properties. We can routinely perform computations with more than 2500 basis functions running serially or in parallel. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.0b6-20160201`` | ``-mt-Python-2.7.11`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PSI4.md b/docs/version-specific/supported-software/p/PSI4.md new file mode 100644 index 000000000..95de497bd --- /dev/null +++ b/docs/version-specific/supported-software/p/PSI4.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# PSI4 + +PSI4 is an open-source suite of ab initio quantum chemistry programs designed for efficient, high-accuracy simulations of a variety of molecular properties. We can routinely perform computations with more than 2500 basis functions running serially or in parallel. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.0`` | ``-mt-Python-2.7.11`` | ``intel/2016a`` +``1.2.1`` | ``-Python-2.7.15-maxam8`` | ``intel/2018b`` +``1.2.1`` | ``-Python-2.7.15`` | ``intel/2018b`` +``1.3.1`` | ``-Python-3.7.2`` | ``foss/2019a`` +``1.3.2`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.7`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PSIPRED.md b/docs/version-specific/supported-software/p/PSIPRED.md new file mode 100644 index 000000000..045a6d73a --- /dev/null +++ b/docs/version-specific/supported-software/p/PSIPRED.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PSIPRED + +Accurate protein secondary structure prediction + +*homepage*: + +version | toolchain +--------|---------- +``4.02`` | ``GCC/12.3.0`` +``4.02`` | ``GCC/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PSM2.md b/docs/version-specific/supported-software/p/PSM2.md new file mode 100644 index 000000000..6f1fdb0ea --- /dev/null +++ b/docs/version-specific/supported-software/p/PSM2.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# PSM2 + +Low-level user-space communications interface for the Intel(R) OPA family of products. + +*homepage*: + +version | toolchain +--------|---------- +``12.0.1`` | ``GCCcore/10.3.0`` +``12.0.1`` | ``GCCcore/11.2.0`` +``12.0.1`` | ``GCCcore/11.3.0`` +``12.0.1`` | ``GCCcore/12.2.0`` +``12.0.1`` | ``GCCcore/12.3.0`` +``12.0.1`` | ``GCCcore/13.2.0`` +``12.0.1`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PSORTb.md b/docs/version-specific/supported-software/p/PSORTb.md new file mode 100644 index 000000000..1ef0772c5 --- /dev/null +++ b/docs/version-specific/supported-software/p/PSORTb.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PSORTb + +PSORTb v3.0.4 is the most precise bacterial localization prediction tool available. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.4`` | ``-Perl-5.22.1`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PSolver.md b/docs/version-specific/supported-software/p/PSolver.md new file mode 100644 index 000000000..e53804ef6 --- /dev/null +++ b/docs/version-specific/supported-software/p/PSolver.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# PSolver + +Poisson Solver from the BigDFT code compiled as a standalone library. + +*homepage*: + +version | toolchain +--------|---------- +``1.7.6`` | ``foss/2017b`` +``1.7.6`` | ``foss/2018a`` +``1.7.6`` | ``foss/2018b`` +``1.7.6`` | ``intel/2017b`` +``1.7.6`` | ``intel/2018a`` +``1.7.6`` | ``intel/2018b`` +``1.8.3`` | ``foss/2020b`` +``1.8.3`` | ``foss/2021a`` +``1.8.3`` | ``foss/2021b`` +``1.8.3`` | ``intel/2020b`` +``1.8.3`` | ``intel/2021a`` +``1.8.3`` | ``intel/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PTESFinder.md b/docs/version-specific/supported-software/p/PTESFinder.md new file mode 100644 index 000000000..e8875aba5 --- /dev/null +++ b/docs/version-specific/supported-software/p/PTESFinder.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PTESFinder + +Post-Transcriptional Exon Shuffling (PTES) Identification Pipeline + +*homepage*: + +version | toolchain +--------|---------- +``1`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PYPOWER.md b/docs/version-specific/supported-software/p/PYPOWER.md new file mode 100644 index 000000000..904b50bc4 --- /dev/null +++ b/docs/version-specific/supported-software/p/PYPOWER.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PYPOWER + +PYPOWER is a power flow and Optimal Power Flow (OPF) solver. It is a port of MATPOWER to the Python programming language. + +*homepage*: + +version | toolchain +--------|---------- +``5.1.15`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PYTHIA.md b/docs/version-specific/supported-software/p/PYTHIA.md new file mode 100644 index 000000000..4f22c4095 --- /dev/null +++ b/docs/version-specific/supported-software/p/PYTHIA.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PYTHIA + +PYTHIA is a standard tool for the generation of events in high-energy collisions, comprising a coherent set of physics models for the evolution from a few-body hard process to a complex multiparticle final state. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``8.226`` | ``-Python-2.7.13`` | ``intel/2017a`` +``8.309`` | | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PaStiX.md b/docs/version-specific/supported-software/p/PaStiX.md new file mode 100644 index 000000000..e87ac570e --- /dev/null +++ b/docs/version-specific/supported-software/p/PaStiX.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PaStiX + +PaStiX (Parallel Sparse matriX package) is a scientific library that provides a high performance parallel solver for very large sparse linear systems based on direct methods. + +*homepage*: + +version | toolchain +--------|---------- +``5.2.3`` | ``foss/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Pandoc.md b/docs/version-specific/supported-software/p/Pandoc.md new file mode 100644 index 000000000..d361e6e51 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pandoc.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Pandoc + +If you need to convert files from one markup format into another, pandoc is your swiss-army knife + +*homepage*: + +version | toolchain +--------|---------- +``2.1.3`` | ``system`` +``2.10`` | ``system`` +``2.13`` | ``system`` +``2.5`` | ``system`` +``3.1.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Panedr.md b/docs/version-specific/supported-software/p/Panedr.md new file mode 100644 index 000000000..7202e852d --- /dev/null +++ b/docs/version-specific/supported-software/p/Panedr.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Panedr + +Panedr uses the Pyedr library to read a Gromacs EDR binary energy XDR file and returns its contents as a pandas dataframe. + +*homepage*: + +version | toolchain +--------|---------- +``0.7.0`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Pango.md b/docs/version-specific/supported-software/p/Pango.md new file mode 100644 index 000000000..27a6f2661 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pango.md @@ -0,0 +1,42 @@ +--- +search: + boost: 0.5 +--- +# Pango + +Pango is a library for laying out and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in the context of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. + +*homepage*: + +version | toolchain +--------|---------- +``1.39.0`` | ``foss/2016a`` +``1.39.0`` | ``intel/2016a`` +``1.40.1`` | ``foss/2016a`` +``1.40.1`` | ``intel/2016a`` +``1.40.12`` | ``intel/2017a`` +``1.40.14`` | ``foss/2017b`` +``1.40.14`` | ``intel/2017b`` +``1.40.3`` | ``foss/2016b`` +``1.40.3`` | ``intel/2016b`` +``1.40.5`` | ``intel/2017a`` +``1.41.0`` | ``foss/2017b`` +``1.41.0`` | ``intel/2017b`` +``1.41.1`` | ``foss/2018a`` +``1.41.1`` | ``intel/2018a`` +``1.42.4`` | ``foss/2018b`` +``1.42.4`` | ``fosscuda/2018b`` +``1.43.0`` | ``GCCcore/8.2.0`` +``1.44.7`` | ``GCCcore/8.3.0`` +``1.44.7`` | ``GCCcore/9.3.0`` +``1.47.0`` | ``GCCcore/10.2.0`` +``1.48.5`` | ``GCCcore/10.3.0`` +``1.48.8`` | ``GCCcore/11.2.0`` +``1.50.12`` | ``GCCcore/12.2.0`` +``1.50.14`` | ``GCCcore/12.3.0`` +``1.50.7`` | ``GCCcore/11.3.0`` +``1.51.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/ParMETIS.md b/docs/version-specific/supported-software/p/ParMETIS.md new file mode 100644 index 000000000..fd13f73fc --- /dev/null +++ b/docs/version-specific/supported-software/p/ParMETIS.md @@ -0,0 +1,44 @@ +--- +search: + boost: 0.5 +--- +# ParMETIS + +ParMETIS is an MPI-based parallel library that implements a variety of algorithms for partitioning unstructured graphs, meshes, and for computing fill-reducing orderings of sparse matrices. ParMETIS extends the functionality provided by METIS and includes routines that are especially suited for parallel AMR computations and large scale numerical simulations. The algorithms implemented in ParMETIS are based on the parallel multilevel k-way graph-partitioning, adaptive repartitioning, and parallel multi-constrained partitioning schemes. + +*homepage*: + +version | toolchain +--------|---------- +``4.0.3`` | ``foss/2016a`` +``4.0.3`` | ``foss/2016b`` +``4.0.3`` | ``foss/2017a`` +``4.0.3`` | ``foss/2017b`` +``4.0.3`` | ``foss/2018a`` +``4.0.3`` | ``foss/2018b`` +``4.0.3`` | ``gimkl/2.11.5`` +``4.0.3`` | ``gompi/2019a`` +``4.0.3`` | ``gompi/2019b`` +``4.0.3`` | ``gompi/2020a`` +``4.0.3`` | ``gompi/2020b`` +``4.0.3`` | ``gompi/2021a`` +``4.0.3`` | ``gompi/2021b`` +``4.0.3`` | ``gompi/2022a`` +``4.0.3`` | ``gompi/2022b`` +``4.0.3`` | ``gompi/2023a`` +``4.0.3`` | ``iimpi/2019a`` +``4.0.3`` | ``iimpi/2019b`` +``4.0.3`` | ``iimpi/2020a`` +``4.0.3`` | ``iimpi/2020b`` +``4.0.3`` | ``iimpi/2021a`` +``4.0.3`` | ``iimpi/2021b`` +``4.0.3`` | ``intel/2016a`` +``4.0.3`` | ``intel/2016b`` +``4.0.3`` | ``intel/2017a`` +``4.0.3`` | ``intel/2017b`` +``4.0.3`` | ``intel/2018a`` +``4.0.3`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/ParMGridGen.md b/docs/version-specific/supported-software/p/ParMGridGen.md new file mode 100644 index 000000000..1b64bc3e5 --- /dev/null +++ b/docs/version-specific/supported-software/p/ParMGridGen.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# ParMGridGen + +ParMGridGen is an MPI-based parallel library that is based on the serial package MGridGen, that implements (serial) algorithms for obtaining a sequence of successive coarse grids that are well-suited for geometric multigrid methods. + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``gimkl/2.11.5`` +``1.0`` | ``gompi/2019b`` +``1.0`` | ``gompi/2020a`` +``1.0`` | ``iimpi/2019b`` +``1.0`` | ``iimpi/2020a`` +``1.0`` | ``intel/2016a`` +``1.0`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/ParaView.md b/docs/version-specific/supported-software/p/ParaView.md new file mode 100644 index 000000000..05d0d4a31 --- /dev/null +++ b/docs/version-specific/supported-software/p/ParaView.md @@ -0,0 +1,47 @@ +--- +search: + boost: 0.5 +--- +# ParaView + +ParaView is a scientific parallel visualizer. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.4.0`` | | ``foss/2016a`` +``4.4.0`` | ``-mpi`` | ``gimkl/2.11.5`` +``4.4.0`` | | ``intel/2016a`` +``5.1.2`` | ``-mpi`` | ``foss/2016b`` +``5.1.2`` | ``-mpi`` | ``intel/2016b`` +``5.10.1`` | ``-mpi`` | ``foss/2022a`` +``5.11.0`` | ``-mpi`` | ``foss/2022b`` +``5.11.1`` | ``-mpi`` | ``foss/2022a`` +``5.11.1`` | ``-CUDA-12.2.0`` | ``foss/2022b`` +``5.11.1`` | | ``foss/2022b`` +``5.11.2`` | | ``foss/2023a`` +``5.12.0`` | | ``foss/2023b`` +``5.2.0`` | ``-mpi`` | ``foss/2016b`` +``5.2.0`` | ``-mpi`` | ``intel/2017a`` +``5.3.0`` | ``-mpi`` | ``foss/2016b`` +``5.4.1`` | ``-mpi`` | ``foss/2017b`` +``5.4.1`` | ``-mpi`` | ``foss/2018a`` +``5.4.1`` | ``-mpi`` | ``foss/2018b`` +``5.4.1`` | ``-Python-2.7.16-mpi`` | ``foss/2019b`` +``5.4.1`` | ``-mpi`` | ``intel/2017a`` +``5.4.1`` | ``-mpi`` | ``intel/2017b`` +``5.4.1`` | ``-mpi`` | ``intel/2018a`` +``5.5.2`` | ``-Python-2.7.15-mpi`` | ``foss/2018b`` +``5.6.2`` | ``-Python-3.7.4-mpi`` | ``foss/2019b`` +``5.6.2`` | ``-Python-3.7.4-mpi`` | ``intel/2019b`` +``5.8.0`` | ``-Python-3.8.2-mpi`` | ``foss/2020a`` +``5.8.0`` | ``-Python-3.8.2-mpi`` | ``intel/2020a`` +``5.8.1`` | ``-mpi`` | ``foss/2020b`` +``5.9.1`` | ``-mpi`` | ``foss/2021a`` +``5.9.1`` | ``-mpi`` | ``foss/2021b`` +``5.9.1`` | ``-mpi`` | ``intel/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Parallel-Hashmap.md b/docs/version-specific/supported-software/p/Parallel-Hashmap.md new file mode 100644 index 000000000..130efe0ea --- /dev/null +++ b/docs/version-specific/supported-software/p/Parallel-Hashmap.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Parallel-Hashmap + +Parallel Hashmap is built on a modified version of Abseil's flat_hash_map. Parallel Hashmap has lower space requirements, is nearly as fast as the underlying flat_hash_map, and can be used from multiple threads with high levels of concurrency. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.12`` | ``GCCcore/12.3.0`` +``1.33`` | ``GCCcore/10.3.0`` +``1.36`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/ParallelIO.md b/docs/version-specific/supported-software/p/ParallelIO.md new file mode 100644 index 000000000..54b185261 --- /dev/null +++ b/docs/version-specific/supported-software/p/ParallelIO.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# ParallelIO + +A high-level Parallel I/O Library for structured grid applications + +*homepage*: + +version | toolchain +--------|---------- +``2.2.2a`` | ``intel/2017a`` +``2.5.10`` | ``gompi/2022a`` +``2.5.10`` | ``iimpi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Paraver.md b/docs/version-specific/supported-software/p/Paraver.md new file mode 100644 index 000000000..fce55147d --- /dev/null +++ b/docs/version-specific/supported-software/p/Paraver.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Paraver + +A very powerful performance visualization and analysis tool based on traces that can be used to analyse any information that is expressed on its input trace format. Traces for parallel MPI, OpenMP and other programs can be genereated with Extrae. + +*homepage*: + +version | toolchain +--------|---------- +``4.11.1`` | ``foss/2022a`` +``4.8.1`` | ``foss/2019a`` +``4.9.2`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Parcels.md b/docs/version-specific/supported-software/p/Parcels.md new file mode 100644 index 000000000..6079e5e1a --- /dev/null +++ b/docs/version-specific/supported-software/p/Parcels.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Parcels + +Parcels (Probably A Really Computationally Efficient Lagrangian Simulator) is a set of Python classes and methods to create customisable particle tracking simulations using output from Ocean Circulation models. Parcels can be used to track passive and active particulates such as water, plankton, plastic and fish. + +*homepage*: + +version | toolchain +--------|---------- +``2.4.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/ParmEd.md b/docs/version-specific/supported-software/p/ParmEd.md new file mode 100644 index 000000000..923ffa28d --- /dev/null +++ b/docs/version-specific/supported-software/p/ParmEd.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# ParmEd + +ParmEd is a general tool for aiding in investigations of biomolecular systems using popular molecular simulation packages, like Amber, CHARMM, and OpenMM written in Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.7.3`` | ``-Python-3.6.3`` | ``intel/2017b`` +``3.2.0`` | ``-Python-3.7.4`` | ``intel/2019b`` +``3.2.0`` | ``-Python-3.8.2`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Parsl.md b/docs/version-specific/supported-software/p/Parsl.md new file mode 100644 index 000000000..292555d3d --- /dev/null +++ b/docs/version-specific/supported-software/p/Parsl.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Parsl + +Parsl extends parallelism in Python beyond a single computer. You can use Parsl just like Python's parallel executors but across multiple cores and nodes. However, the real power of Parsl is in expressing multi-step workflows of functions. Parsl lets you chain functions together and will launch each function as inputs and computing resources are available. + +*homepage*: + +version | toolchain +--------|---------- +``2023.7.17`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PartitionFinder.md b/docs/version-specific/supported-software/p/PartitionFinder.md new file mode 100644 index 000000000..7be13b738 --- /dev/null +++ b/docs/version-specific/supported-software/p/PartitionFinder.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PartitionFinder + +PartitionFinder 2 is a Python program for simultaneously choosing partitioning schemes and models of molecular evolution for phylogenetic analyses of DNA, protein, and morphological data. You can PartitionFinder 2 before running a phylogenetic analysis, in order to decide how to divide up your sequence data into separate blocks before analysis, and to simultaneously perform model selection on each of those blocks. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.1`` | ``-Python-2.7.18`` | ``foss/2020b`` +``2.1.1`` | ``-Python-2.7.16`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PennCNV.md b/docs/version-specific/supported-software/p/PennCNV.md new file mode 100644 index 000000000..945f65855 --- /dev/null +++ b/docs/version-specific/supported-software/p/PennCNV.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PennCNV + +A free software tool for Copy Number Variation (CNV) detection from SNP genotyping arrays. Currently it can handle signal intensity data from Illumina and Affymetrix arrays. With appropriate preparation of file format, it can also handle other types of SNP arrays and oligonucleotide arrays. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.5`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Percolator.md b/docs/version-specific/supported-software/p/Percolator.md new file mode 100644 index 000000000..9a0473699 --- /dev/null +++ b/docs/version-specific/supported-software/p/Percolator.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Percolator + +Semi-supervised learning for peptide identification from shotgun proteomics datasets + +*homepage*: + +version | toolchain +--------|---------- +``3.4`` | ``gompi/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Perl-bundle-CPAN.md b/docs/version-specific/supported-software/p/Perl-bundle-CPAN.md new file mode 100644 index 000000000..0b9ad7406 --- /dev/null +++ b/docs/version-specific/supported-software/p/Perl-bundle-CPAN.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Perl-bundle-CPAN + +A set of common packages from CPAN + +*homepage*: + +version | toolchain +--------|---------- +``5.36.1`` | ``GCCcore/12.3.0`` +``5.38.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Perl.md b/docs/version-specific/supported-software/p/Perl.md new file mode 100644 index 000000000..0ec442d00 --- /dev/null +++ b/docs/version-specific/supported-software/p/Perl.md @@ -0,0 +1,68 @@ +--- +search: + boost: 0.5 +--- +# Perl + +Larry Wall's Practical Extraction and Report Language + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.20.1`` | ``-bare`` | ``GCC/4.8.2`` +``5.20.1`` | ``-bare`` | ``GCC/4.9.2`` +``5.20.2`` | ``-bare`` | ``GCC/4.9.2`` +``5.20.3`` | | ``foss/2016a`` +``5.20.3`` | | ``intel/2016a`` +``5.22.0`` | ``-bare`` | ``GCC/4.9.2`` +``5.22.1`` | ``-bare`` | ``foss/2016a`` +``5.22.1`` | | ``foss/2016a`` +``5.22.1`` | | ``foss/2016b`` +``5.22.1`` | ``-bare`` | ``intel/2016a`` +``5.22.1`` | | ``intel/2016a`` +``5.22.2`` | | ``intel/2016a`` +``5.24.0`` | | ``GCC/5.4.0-2.26`` +``5.24.0`` | | ``GCCcore/4.9.3`` +``5.24.0`` | | ``GCCcore/5.4.0`` +``5.24.0`` | ``-bare`` | ``foss/2016b`` +``5.24.0`` | | ``foss/2016b`` +``5.24.0`` | | ``intel/2016b`` +``5.24.1`` | | ``GCCcore/6.3.0`` +``5.24.1`` | | ``foss/2017a`` +``5.24.1`` | | ``intel/2017a`` +``5.26.0`` | | ``GCCcore/6.4.0`` +``5.26.0`` | | ``foss/2017b`` +``5.26.0`` | | ``intel/2017b`` +``5.26.0`` | | ``intel/2018.00`` +``5.26.0`` | | ``intel/2018.01`` +``5.26.1`` | | ``GCCcore/6.4.0`` +``5.26.1`` | ``-bare`` | ``foss/2018a`` +``5.26.1`` | | ``foss/2018a`` +``5.28.0`` | | ``GCCcore/7.3.0`` +``5.28.1`` | | ``GCCcore/8.2.0`` +``5.30.0`` | ``-minimal`` | ``GCCcore/8.3.0`` +``5.30.0`` | | ``GCCcore/8.3.0`` +``5.30.2`` | ``-minimal`` | ``GCCcore/9.3.0`` +``5.30.2`` | | ``GCCcore/9.3.0`` +``5.32.0`` | ``-minimal`` | ``GCCcore/10.2.0`` +``5.32.0`` | | ``GCCcore/10.2.0`` +``5.32.1`` | | ``FCC/4.5.0`` +``5.32.1`` | ``-minimal`` | ``GCCcore/10.3.0`` +``5.32.1`` | | ``GCCcore/10.3.0`` +``5.34.0`` | ``-minimal`` | ``GCCcore/11.2.0`` +``5.34.0`` | | ``GCCcore/11.2.0`` +``5.34.1`` | ``-minimal`` | ``GCCcore/11.3.0`` +``5.34.1`` | | ``GCCcore/11.3.0`` +``5.36.0`` | | ``GCCcore/12.1.0`` +``5.36.0`` | ``-minimal`` | ``GCCcore/12.2.0`` +``5.36.0`` | | ``GCCcore/12.2.0`` +``5.36.1`` | | ``GCCcore/12.3.0`` +``5.36.1`` | | ``GCCcore/13.1.0`` +``5.38.0`` | | ``GCCcore/13.2.0`` +``5.38.0`` | | ``system`` +``5.38.2`` | | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Perl4-CoreLibs.md b/docs/version-specific/supported-software/p/Perl4-CoreLibs.md new file mode 100644 index 000000000..820c40ce7 --- /dev/null +++ b/docs/version-specific/supported-software/p/Perl4-CoreLibs.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Perl4-CoreLibs + +Libraries historically supplied with Perl 4 + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.003`` | ``-Perl-5.24.1`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Perseus.md b/docs/version-specific/supported-software/p/Perseus.md new file mode 100644 index 000000000..e3db4d138 --- /dev/null +++ b/docs/version-specific/supported-software/p/Perseus.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Perseus + +The Perseus software platform supports biological and biomedical researchers in interpreting protein quantification, interaction and post-translational modification data. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.7.0`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PfamScan.md b/docs/version-specific/supported-software/p/PfamScan.md new file mode 100644 index 000000000..1bc099af5 --- /dev/null +++ b/docs/version-specific/supported-software/p/PfamScan.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PfamScan + +PfamScan is used to search a FASTA sequence against a library of Pfam HMM. + +*homepage*: + +version | toolchain +--------|---------- +``1.6`` | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Phantompeakqualtools.md b/docs/version-specific/supported-software/p/Phantompeakqualtools.md new file mode 100644 index 000000000..a4a41bf19 --- /dev/null +++ b/docs/version-specific/supported-software/p/Phantompeakqualtools.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Phantompeakqualtools + +It computes informative enrichment and quality measures for ChIP-seq/DNase-seq/FAIRE-seq/MNase-seq data. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.2`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PheWAS.md b/docs/version-specific/supported-software/p/PheWAS.md new file mode 100644 index 000000000..8b5bd38b0 --- /dev/null +++ b/docs/version-specific/supported-software/p/PheWAS.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# PheWAS + +Provides an accessible R interface to the phenome wide association study. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.12`` | ``-R-3.3.3`` | ``foss/2016b`` +``0.12`` | ``-R-3.3.3`` | ``intel/2016b`` +``0.99.5-2`` | ``-R-3.6.0`` | ``foss/2019a`` +``0.99.5-2`` | ``-R-3.6.0`` | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PheWeb.md b/docs/version-specific/supported-software/p/PheWeb.md new file mode 100644 index 000000000..d6e21ce6e --- /dev/null +++ b/docs/version-specific/supported-software/p/PheWeb.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PheWeb + +A tool for building PheWAS websites from association files + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.20`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Phenoflow.md b/docs/version-specific/supported-software/p/Phenoflow.md new file mode 100644 index 000000000..26706fcae --- /dev/null +++ b/docs/version-specific/supported-software/p/Phenoflow.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Phenoflow + +R package offering functionality for the advanced analysis of microbial flow cytometry data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.2-20200917`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PhiPack.md b/docs/version-specific/supported-software/p/PhiPack.md new file mode 100644 index 000000000..d80558b4e --- /dev/null +++ b/docs/version-specific/supported-software/p/PhiPack.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PhiPack + +The PhiPack software package implements (in C) a few tests for recombination and can produce refined incompatibility matrices as well. + +*homepage*: + +version | toolchain +--------|---------- +``2016.06.14`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Philosopher.md b/docs/version-specific/supported-software/p/Philosopher.md new file mode 100644 index 000000000..c6be8e5fa --- /dev/null +++ b/docs/version-specific/supported-software/p/Philosopher.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Philosopher + +Philosopher is a fast, easy-to-use, scalable, and versatile data analysis software for mass spectrometry-based proteomics. Philosopher is dependency-free and can analyze both traditional database searches and open searches for post-translational modification (PTM) discovery. + +*homepage*: + +version | toolchain +--------|---------- +``5.0.0`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PhyML.md b/docs/version-specific/supported-software/p/PhyML.md new file mode 100644 index 000000000..670145efc --- /dev/null +++ b/docs/version-specific/supported-software/p/PhyML.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# PhyML + +Phylogenetic estimation using (Maximum) Likelihood + +*homepage*: + +version | toolchain +--------|---------- +``3.3.20190321`` | ``foss/2018b`` +``3.3.20200621`` | ``foss/2020b`` +``3.3.20220408`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PhyloBayes-MPI.md b/docs/version-specific/supported-software/p/PhyloBayes-MPI.md new file mode 100644 index 000000000..3c51d1f9d --- /dev/null +++ b/docs/version-specific/supported-software/p/PhyloBayes-MPI.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PhyloBayes-MPI + +A Bayesian software for phylogenetic reconstruction using mixture models + +*homepage*: + +version | toolchain +--------|---------- +``20161021`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PhyloPhlAn.md b/docs/version-specific/supported-software/p/PhyloPhlAn.md new file mode 100644 index 000000000..48d5d565c --- /dev/null +++ b/docs/version-specific/supported-software/p/PhyloPhlAn.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# PhyloPhlAn + +PhyloPhlAn is an integrated pipeline for large-scale phylogenetic profiling of genomes and metagenomes. PhyloPhlAn is an accurate, rapid, and easy-to-use method for large-scale microbial genome characterization and phylogenetic analysis at multiple levels of resolution. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``3.0.2`` | | ``foss/2021a`` +``3.0.3`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PileOMeth.md b/docs/version-specific/supported-software/p/PileOMeth.md new file mode 100644 index 000000000..3ab253abb --- /dev/null +++ b/docs/version-specific/supported-software/p/PileOMeth.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PileOMeth + +PileOMeth processes a coordinate-sorted and indexed BAM or CRAM file containing some form of BS-seq alignments. PileOMeth extracts per-base methylation metrics from them. PileOMeth requires an indexed fasta file containing the reference genome as well. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.11`` | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Pillow-SIMD.md b/docs/version-specific/supported-software/p/Pillow-SIMD.md new file mode 100644 index 000000000..ad8dddcd2 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pillow-SIMD.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# Pillow-SIMD + +Pillow is the 'friendly PIL fork' by Alex Clark and Contributors. PIL is the Python Imaging Library by Fredrik Lundh and Contributors. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.0.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``5.0.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``5.3.0.post0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``5.3.0.post0`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``5.3.0.post0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``6.0.x.post0`` | | ``GCCcore/8.2.0`` +``6.0.x.post0`` | | ``GCCcore/8.3.0`` +``7.1.2`` | | ``GCCcore/10.2.0`` +``7.1.2`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``8.2.0`` | | ``GCCcore/10.3.0`` +``8.3.1`` | | ``GCCcore/11.2.0`` +``8.3.2`` | | ``GCCcore/11.2.0`` +``9.2.0`` | | ``GCCcore/11.3.0`` +``9.5.0`` | | ``GCCcore/12.2.0`` +``9.5.0`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Pillow.md b/docs/version-specific/supported-software/p/Pillow.md new file mode 100644 index 000000000..bb8067fab --- /dev/null +++ b/docs/version-specific/supported-software/p/Pillow.md @@ -0,0 +1,55 @@ +--- +search: + boost: 0.5 +--- +# Pillow + +Pillow is the 'friendly PIL fork' by Alex Clark and Contributors. PIL is the Python Imaging Library by Fredrik Lundh and Contributors. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``10.0.0`` | | ``GCCcore/12.3.0`` +``10.2.0`` | | ``GCCcore/13.2.0`` +``3.2.0`` | ``-Python-2.7.11-freetype-2.6.3`` | ``foss/2016a`` +``3.2.0`` | ``-Python-2.7.11-freetype-2.6.3`` | ``intel/2016a`` +``3.2.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``3.4.2`` | ``-Python-3.5.2`` | ``foss/2016b`` +``3.4.2`` | ``-Python-2.7.12`` | ``intel/2016b`` +``3.4.2`` | ``-Python-3.5.2-freetype-2.6.5`` | ``intel/2016b`` +``3.4.2`` | ``-Python-3.5.2`` | ``intel/2016b`` +``4.1.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``4.1.1`` | ``-Python-3.6.1`` | ``intel/2017a`` +``4.2.1`` | ``-Python-3.6.1`` | ``intel/2017a`` +``4.3.0`` | ``-Python-3.6.3`` | ``foss/2017b`` +``4.3.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``4.3.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``5.0.0`` | ``-Python-2.7.14`` | ``foss/2017b`` +``5.0.0`` | ``-Python-3.6.3`` | ``foss/2017b`` +``5.0.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``5.0.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``5.0.0`` | ``-Python-3.6.3`` | ``intel/2017b`` +``5.0.0`` | ``-Python-2.7.14`` | ``intel/2018a`` +``5.0.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``5.3.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``5.3.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``5.3.0`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``5.3.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``6.0.0`` | | ``GCCcore/8.2.0`` +``6.2.1`` | | ``GCCcore/8.3.0`` +``6.2.2`` | ``-Python-2.7.18`` | ``foss/2020b`` +``7.0.0`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``8.0.1`` | | ``GCCcore/10.2.0`` +``8.2.0`` | | ``GCCcore/10.3.0`` +``8.3.1`` | | ``GCCcore/11.2.0`` +``8.3.2`` | | ``GCCcore/11.2.0`` +``9.1.0`` | | ``GCCcore/10.3.0`` +``9.1.1`` | | ``GCCcore/11.2.0`` +``9.1.1`` | | ``GCCcore/11.3.0`` +``9.2.0`` | | ``GCCcore/10.2.0`` +``9.4.0`` | | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Pilon.md b/docs/version-specific/supported-software/p/Pilon.md new file mode 100644 index 000000000..98ccadc07 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pilon.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Pilon + +Pilon is an automated genome assembly improvement and variant detection tool + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.22`` | ``-Java-1.8.0_162`` | ``system`` +``1.22`` | ``-Java-1.8`` | ``system`` +``1.23`` | ``-Java-1.8`` | ``system`` +``1.23`` | ``-Java-11`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Pindel.md b/docs/version-specific/supported-software/p/Pindel.md new file mode 100644 index 000000000..8f3fa1786 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pindel.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Pindel + +Pindel can detect breakpoints of large deletions, medium sized insertions, inversions, tandem duplications and other structural variants at single-based resolution from next-gen sequence data. It uses a pattern growth approach to identify the breakpoints of these variants from paired-end short reads. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.5b8`` | ``foss/2016b`` +``0.2.5b9-20170508`` | ``GCC/11.2.0`` +``0.2.5b9-20170508`` | ``GCC/11.3.0`` +``0.2.5b9-20170508`` | ``GCC/6.4.0-2.28`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Pingouin.md b/docs/version-specific/supported-software/p/Pingouin.md new file mode 100644 index 000000000..27b8c968b --- /dev/null +++ b/docs/version-specific/supported-software/p/Pingouin.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Pingouin + +Pingouin is an open-source statistical package written in Python 3 and based mostly on Pandas and NumPy. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.8`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Pint.md b/docs/version-specific/supported-software/p/Pint.md new file mode 100644 index 000000000..7525a699a --- /dev/null +++ b/docs/version-specific/supported-software/p/Pint.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Pint + +Pint is a Python package to define, operate and manipulate physical quantities: the product of a numerical value and a unit of measurement. It allows arithmetic operations between them and conversions from and to different units. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.14`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``0.19.2`` | | ``GCCcore/11.2.0`` +``0.20.1`` | | ``GCCcore/10.3.0`` +``0.22`` | | ``GCCcore/11.3.0`` +``0.23`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Pisces.md b/docs/version-specific/supported-software/p/Pisces.md new file mode 100644 index 000000000..af07958af --- /dev/null +++ b/docs/version-specific/supported-software/p/Pisces.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Pisces + +Somatic and germline variant caller for amplicon data. Recommended caller for tumor-only workflows. + +*homepage*: + +version | toolchain +--------|---------- +``5.2.7.47`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PlaScope.md b/docs/version-specific/supported-software/p/PlaScope.md new file mode 100644 index 000000000..c54746444 --- /dev/null +++ b/docs/version-specific/supported-software/p/PlaScope.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PlaScope + +Plasmid exploration of bacterial genomes + +*homepage*: + +version | toolchain +--------|---------- +``1.3.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PlasmaPy.md b/docs/version-specific/supported-software/p/PlasmaPy.md new file mode 100644 index 000000000..cd7b784a1 --- /dev/null +++ b/docs/version-specific/supported-software/p/PlasmaPy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PlasmaPy + +Open source Python ecosystem for plasma research and education + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.1`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Platanus.md b/docs/version-specific/supported-software/p/Platanus.md new file mode 100644 index 000000000..4497b8b34 --- /dev/null +++ b/docs/version-specific/supported-software/p/Platanus.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Platanus + +PLATform for Assembling NUcleotide Sequences + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.1`` | ``-linux-x86_64`` | ``system`` +``1.2.4`` | | ``foss/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Platypus-Opt.md b/docs/version-specific/supported-software/p/Platypus-Opt.md new file mode 100644 index 000000000..f53b5c96a --- /dev/null +++ b/docs/version-specific/supported-software/p/Platypus-Opt.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Platypus-Opt + +Platypus is a framework for evolutionary computing in Python with a focus on multiobjective evolutionary algorithms (MOEAs). + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Platypus.md b/docs/version-specific/supported-software/p/Platypus.md new file mode 100644 index 000000000..0672589e5 --- /dev/null +++ b/docs/version-specific/supported-software/p/Platypus.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Platypus + +Platypus is a tool designed for efficient and accurate variant-detection in high-throughput sequencing data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8.1`` | ``-Python-2.7.11`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Ploticus.md b/docs/version-specific/supported-software/p/Ploticus.md new file mode 100644 index 000000000..3cd622ce4 --- /dev/null +++ b/docs/version-specific/supported-software/p/Ploticus.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Ploticus + +Ploticus is a free GPL software utility that can produce various types of plots and graphs + +*homepage*: + +version | toolchain +--------|---------- +``2.42`` | ``GCCcore/7.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PnetCDF.md b/docs/version-specific/supported-software/p/PnetCDF.md new file mode 100644 index 000000000..e9423d22d --- /dev/null +++ b/docs/version-specific/supported-software/p/PnetCDF.md @@ -0,0 +1,34 @@ +--- +search: + boost: 0.5 +--- +# PnetCDF + +Parallel netCDF: A Parallel I/O Library for NetCDF File Access + +*homepage*: + +version | toolchain +--------|---------- +``1.10.0`` | ``foss/2018b`` +``1.10.0`` | ``intel/2018b`` +``1.12.1`` | ``gompi/2019b`` +``1.12.1`` | ``gompi/2020a`` +``1.12.1`` | ``gompic/2019b`` +``1.12.1`` | ``gompic/2020a`` +``1.12.1`` | ``iimpi/2020a`` +``1.12.2`` | ``gompi/2020b`` +``1.12.2`` | ``gompi/2021a`` +``1.12.2`` | ``gompic/2020b`` +``1.12.2`` | ``iimpi/2021a`` +``1.12.3`` | ``gompi/2021b`` +``1.12.3`` | ``gompi/2022a`` +``1.12.3`` | ``gompi/2023a`` +``1.12.3`` | ``iimpi/2022a`` +``1.13.0`` | ``iimpi/2023a`` +``1.8.1`` | ``intel/2017a`` +``1.9.0`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Porechop.md b/docs/version-specific/supported-software/p/Porechop.md new file mode 100644 index 000000000..fa9ecc7bb --- /dev/null +++ b/docs/version-specific/supported-software/p/Porechop.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Porechop + +Porechop is a tool for finding and removing adapters from Oxford Nanopore reads. Adapters on the ends of reads are trimmed off, and when a read has an adapter in its middle, it is treated as chimeric and chopped into separate reads. Porechop performs thorough alignments to effectively find adapters, even at low sequence identity + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.3`` | ``-Python-3.5.2`` | ``foss/2016b`` +``0.2.4`` | | ``GCCcore/10.3.0`` +``0.2.4`` | | ``GCCcore/11.2.0`` +``0.2.4`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.2.4`` | ``-Python-3.7.4`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PortAudio.md b/docs/version-specific/supported-software/p/PortAudio.md new file mode 100644 index 000000000..6ba789a4e --- /dev/null +++ b/docs/version-specific/supported-software/p/PortAudio.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PortAudio + +PortAudio is a free, cross-platform, open-source, audio I/O library. It lets you write simple audio programs in 'C' or C++ that will compile and run on many platforms including Windows, Macintosh OS X, and Unix (OSS/ALSA). It is intended to promote the exchange of audio software between developers on different platforms. Many applications use PortAudio for Audio I/O. + +*homepage*: + +version | toolchain +--------|---------- +``19.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PortMidi.md b/docs/version-specific/supported-software/p/PortMidi.md new file mode 100644 index 000000000..9f75c0450 --- /dev/null +++ b/docs/version-specific/supported-software/p/PortMidi.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PortMidi + +PortMidi is a library for software developers. It supports real-time input and output of MIDI data using a system-independent interface. PortMidi runs on Windows (using MME), Macintosh (using CoreMIDI), and Linux (using ALSA). + +*homepage*: + +version | toolchain +--------|---------- +``2.0.4`` | ``GCCcore/11.3.0`` +``2.0.4`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Portcullis.md b/docs/version-specific/supported-software/p/Portcullis.md new file mode 100644 index 000000000..1d21c9ad6 --- /dev/null +++ b/docs/version-specific/supported-software/p/Portcullis.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Portcullis + +Portcullis stands for PORTable CULLing of Invalid Splice junctions from pre-aligned RNA-seq data. It is known that RNAseq mapping tools generate many invalid junction predictions, particularly in deep datasets with high coverage over splice sites. In order to address this, instead for creating a new RNAseq mapper, with a focus on SJ accuracy we created a tool that takes in a BAM file generated by an RNAseq mapper of the user's own choice (e.g. Tophat2, Gsnap, STAR2 or HISAT2) as input (i.e. it's portable). It then, analyses and quantifies all splice junctions in the file before, filtering (culling) those which are unlikely to be genuine. Portcullis output's junctions in a variety of formats making it suitable for downstream analysis (such as differential splicing analysis and gene modelling) without additional work. Portcullis can also filter the original BAM file removing alignments associated with bad junctions. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.2`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PostgreSQL.md b/docs/version-specific/supported-software/p/PostgreSQL.md new file mode 100644 index 000000000..1be6be855 --- /dev/null +++ b/docs/version-specific/supported-software/p/PostgreSQL.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# PostgreSQL + +PostgreSQL is a powerful, open source object-relational database system. It is fully ACID compliant, has full support for foreign keys, joins, views, triggers, and stored procedures (in multiple languages). It includes most SQL:2008 data types, including INTEGER, NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERVAL, and TIMESTAMP. It also supports storage of binary large objects, including pictures, sounds, or video. It has native programming interfaces for C/C++, Java, .Net, Perl, Python, Ruby, Tcl, ODBC, among others, and exceptional documentation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``10.2`` | ``-Python-2.7.14`` | ``intel/2018a`` +``10.3`` | ``-Python-2.7.14`` | ``foss/2017b`` +``10.3`` | ``-Python-2.7.14`` | ``foss/2018a`` +``10.3`` | | ``foss/2018b`` +``10.3`` | ``-Python-2.7.14`` | ``intel/2017b`` +``10.3`` | ``-Python-2.7.14`` | ``intel/2018a`` +``11.3`` | ``-Python-2.7.15`` | ``GCCcore/8.2.0`` +``11.3`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` +``12.4`` | | ``GCCcore/9.3.0`` +``13.2`` | | ``GCCcore/10.2.0`` +``13.3`` | | ``GCCcore/10.3.0`` +``13.4`` | | ``GCCcore/11.2.0`` +``14.4`` | | ``GCCcore/11.3.0`` +``15.2`` | | ``GCCcore/12.2.0`` +``16.1`` | | ``GCCcore/12.3.0`` +``16.1`` | | ``GCCcore/13.2.0`` +``9.4.7`` | ``-Python-2.7.11`` | ``intel/2016a`` +``9.5.2`` | ``-Python-2.7.11`` | ``intel/2016a`` +``9.6.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``9.6.2`` | ``-Python-2.7.12`` | ``foss/2016b`` +``9.6.2`` | ``-Python-2.7.12`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Postgres-XL.md b/docs/version-specific/supported-software/p/Postgres-XL.md new file mode 100644 index 000000000..d42fd6551 --- /dev/null +++ b/docs/version-specific/supported-software/p/Postgres-XL.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Postgres-XL + +Postgres-XL is a horizontally scalable open source SQL database cluster, flexible enough to handle varying database workloads: + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``9.5r1`` | ``-Python-2.7.11`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Primer3.md b/docs/version-specific/supported-software/p/Primer3.md new file mode 100644 index 000000000..9e465246f --- /dev/null +++ b/docs/version-specific/supported-software/p/Primer3.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Primer3 + +Primer3 is a widely used program for designing PCR primers (PCR = 'Polymerase Chain Reaction'). PCR is an essential and ubiquitous tool in genetics and molecular biology. Primer3 can also design hybridization probes and sequencing primers. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.7`` | ``intel/2017b`` +``2.4.0`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``2.4.0`` | ``intel/2018b`` +``2.5.0`` | ``GCC/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/ProBiS.md b/docs/version-specific/supported-software/p/ProBiS.md new file mode 100644 index 000000000..587326a8b --- /dev/null +++ b/docs/version-specific/supported-software/p/ProBiS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ProBiS + +ProBiS algorithm aligns and superimposes complete protein surfaces, surface motifs, or protein binding sites. + +*homepage*: + +version | toolchain +--------|---------- +``20230403`` | ``gompi/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/ProFit.md b/docs/version-specific/supported-software/p/ProFit.md new file mode 100644 index 000000000..fc755e96e --- /dev/null +++ b/docs/version-specific/supported-software/p/ProFit.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ProFit + +ProFit (pronounced Pro-Fit, not profit!) is designed to be the ultimate program for performing least squares fits of two or more protein structures. It performs a very simple and basic function, but allows as much flexibility as possible in performing this procedure. Thus one can specify subsets of atoms to be considered, specify zones to be fitted by number, sequence, or by sequence alignment. + +*homepage*: + +version | toolchain +--------|---------- +``3.3`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/ProbABEL.md b/docs/version-specific/supported-software/p/ProbABEL.md new file mode 100644 index 000000000..bf8d8156d --- /dev/null +++ b/docs/version-specific/supported-software/p/ProbABEL.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ProbABEL + +Tool for genome-wide association analysis of imputed genetic data. + +*homepage*: + +version | toolchain +--------|---------- +``0.5.0`` | ``GCCcore/9.3.0`` +``0.5.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/ProjectQ.md b/docs/version-specific/supported-software/p/ProjectQ.md new file mode 100644 index 000000000..f47a8ca3e --- /dev/null +++ b/docs/version-specific/supported-software/p/ProjectQ.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ProjectQ + +An open source software framework for quantum computing + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.4.2`` | ``-Python-3.6.6`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/ProtHint.md b/docs/version-specific/supported-software/p/ProtHint.md new file mode 100644 index 000000000..11508eadb --- /dev/null +++ b/docs/version-specific/supported-software/p/ProtHint.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ProtHint + +ProtHint is a pipeline for predicting and scoring hints (in the form of introns, start and stop codons) in the genome of interest by mapping and spliced aligning predicted genes to a database of reference protein sequences. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.4.0`` | ``-Python-3.7.2`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``2.4.0`` | ``-Python-3.7.4`` | ``iccifort/2019.5.281`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/ProteinMPNN.md b/docs/version-specific/supported-software/p/ProteinMPNN.md new file mode 100644 index 000000000..9595f51cb --- /dev/null +++ b/docs/version-specific/supported-software/p/ProteinMPNN.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ProteinMPNN + +A deep learning based protein sequence design method is described that is widely applicable to current design challenges and shows outstanding performance in both in silico and experimental tests. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.1-20230627`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Proteinortho.md b/docs/version-specific/supported-software/p/Proteinortho.md new file mode 100644 index 000000000..a05819767 --- /dev/null +++ b/docs/version-specific/supported-software/p/Proteinortho.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Proteinortho + +Proteinortho is a tool to detect orthologous genes within different species. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.16b`` | ``-Python-3.6.4-Perl-5.26.1`` | ``foss/2018a`` +``6.2.3`` | | ``gompi/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PsiCLASS.md b/docs/version-specific/supported-software/p/PsiCLASS.md new file mode 100644 index 000000000..7aa4de1d1 --- /dev/null +++ b/docs/version-specific/supported-software/p/PsiCLASS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PsiCLASS + +PsiCLASS is a reference-based transcriptome assembler for single or multiple RNA-seq samples. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.3`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PuLP.md b/docs/version-specific/supported-software/p/PuLP.md new file mode 100644 index 000000000..1dbd43137 --- /dev/null +++ b/docs/version-specific/supported-software/p/PuLP.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# PuLP + +PuLP is an LP modeler written in Python. PuLP can generate MPS or LP files and call GLPK, COIN-OR CLP/CBC, CPLEX, GUROBI, MOSEK, XPRESS, CHOCO, MIPCL, SCIP to solve linear problems. + +*homepage*: + +version | toolchain +--------|---------- +``2.5.1`` | ``foss/2021a`` +``2.7.0`` | ``foss/2022b`` +``2.8.0`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyAEDT.md b/docs/version-specific/supported-software/p/PyAEDT.md new file mode 100644 index 000000000..863a329a6 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyAEDT.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyAEDT + +PyAEDT is a Python library that interacts directly with the Ansys Electronics Desktop (AEDT) API, enabling straightforward and efficient automation in your workflow. + +*homepage*: + +version | toolchain +--------|---------- +``0.8.7`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyAMG.md b/docs/version-specific/supported-software/p/PyAMG.md new file mode 100644 index 000000000..0bbb75794 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyAMG.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# PyAMG + +PyAMG is a library of Algebraic Multigrid (AMG) solvers with a convenient Python interface. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.1`` | ``-Python-2.7.11`` | ``intel/2016a`` +``4.0.0`` | | ``foss/2020b`` +``4.0.0`` | | ``intel/2020b`` +``4.2.3`` | | ``foss/2021a`` +``5.1.0`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyAPS3.md b/docs/version-specific/supported-software/p/PyAPS3.md new file mode 100644 index 000000000..cc5795abf --- /dev/null +++ b/docs/version-specific/supported-software/p/PyAPS3.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyAPS3 + +Python 3 Atmospheric Phase Screen + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20190407`` | ``-Python-3.7.2`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyAV.md b/docs/version-specific/supported-software/p/PyAV.md new file mode 100644 index 000000000..8c6a9e356 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyAV.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyAV + +PyAV is a Pythonic binding for FFmpeg. We aim to provide all of the power and control of the underlying library, but manage the gritty details as much as possible. + +*homepage*: + +version | toolchain +--------|---------- +``10.0.0`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyBerny.md b/docs/version-specific/supported-software/p/PyBerny.md new file mode 100644 index 000000000..6a5db2509 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyBerny.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# PyBerny + +PyBerny is an optimizer of molecular geometries with respect to the total energy, using nuclear gradient information. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.6.2`` | ``-Python-3.8.2`` | ``intel/2020a`` +``0.6.3`` | | ``foss/2022a`` +``0.6.3`` | | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyBioLib.md b/docs/version-specific/supported-software/p/PyBioLib.md new file mode 100644 index 000000000..2afdb6ada --- /dev/null +++ b/docs/version-specific/supported-software/p/PyBioLib.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyBioLib + +PyBioLib is a Python package for running BioLib applications from Python scripts and the command line. BioLib is a library of biological data science applications. Applications on BioLib range from small bioinformatics utilities to state-of-the-art machine learning algorithms for predicting characteristics of biological molecules. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.988`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyCUDA.md b/docs/version-specific/supported-software/p/PyCUDA.md new file mode 100644 index 000000000..385a4fafc --- /dev/null +++ b/docs/version-specific/supported-software/p/PyCUDA.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# PyCUDA + +PyCUDA lets you access Nvidia’s CUDA parallel computation API from Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2016.1.2`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2017.1.1`` | ``-CUDA-9.0.176-Python-2.7.14`` | ``foss/2017b`` +``2017.1.1`` | ``-Python-2.7.14`` | ``intel/2018a`` +``2018.1`` | ``-Python-3.6.4-CUDA-9.1.85`` | ``intel/2018a`` +``2019.1.2`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``2019.1.2`` | ``-Python-3.7.4`` | ``intelcuda/2019b`` +``2020.1`` | | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyCairo.md b/docs/version-specific/supported-software/p/PyCairo.md new file mode 100644 index 000000000..7cdc20702 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyCairo.md @@ -0,0 +1,32 @@ +--- +search: + boost: 0.5 +--- +# PyCairo + +Python bindings for the cairo library + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.10.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.16.1`` | ``-Python-3.6.3`` | ``foss/2017b`` +``1.16.2`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.18.0`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` +``1.18.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.18.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.18.0`` | ``-Python-2.7.14`` | ``intel/2018a`` +``1.18.2`` | | ``GCCcore/8.3.0`` +``1.18.2`` | | ``GCCcore/9.3.0`` +``1.20.0`` | | ``GCCcore/10.2.0`` +``1.20.1`` | | ``GCCcore/10.3.0`` +``1.20.1`` | | ``GCCcore/11.2.0`` +``1.21.0`` | | ``GCCcore/11.3.0`` +``1.24.0`` | | ``GCCcore/12.2.0`` +``1.25.0`` | | ``GCCcore/12.3.0`` +``1.25.1`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyCalib.md b/docs/version-specific/supported-software/p/PyCalib.md new file mode 100644 index 000000000..f606dc057 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyCalib.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PyCalib + +Python library for classifier calibration + +*homepage*: + +version | toolchain +--------|---------- +``0.1.0.dev0`` | ``foss/2021b`` +``20230531`` | ``gfbf/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyCharm.md b/docs/version-specific/supported-software/p/PyCharm.md new file mode 100644 index 000000000..c94b5eec1 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyCharm.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# PyCharm + +PyCharm Community Edition: Python IDE for Professional Developers + +*homepage*: + +version | toolchain +--------|---------- +``2017.2.3`` | ``system`` +``2019.3.1`` | ``system`` +``2021.1.1`` | ``system`` +``2022.2.2`` | ``system`` +``2022.3.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyCheMPS2.md b/docs/version-specific/supported-software/p/PyCheMPS2.md new file mode 100644 index 000000000..e7b90cf3f --- /dev/null +++ b/docs/version-specific/supported-software/p/PyCheMPS2.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PyCheMPS2 + +PyCheMPS2 is a python interface to CheMPS2, for compilation without MPI. CheMPS2 is a scientific library which contains a spin-adapted implementation of the density matrix renormalization group (DMRG) for ab initio quantum chemistry. + +*homepage*: + +version | toolchain +--------|---------- +``1.8.12`` | ``foss/2022a`` +``1.8.12`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyCifRW.md b/docs/version-specific/supported-software/p/PyCifRW.md new file mode 100644 index 000000000..e24e7aaf4 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyCifRW.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyCifRW + +PyCIFRW provides support for reading and writing CIF (Crystallographic Information Format) files using Python. + +*homepage*: + +version | toolchain +--------|---------- +``4.4.2`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyClone.md b/docs/version-specific/supported-software/p/PyClone.md new file mode 100644 index 000000000..0cbfc39a6 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyClone.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyClone + +PyClone is a Python package that wraps rclone and provides a threaded interface for an installation at the host or container level. + +*homepage*: + +version | toolchain +--------|---------- +``2020.9b2`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyCogent.md b/docs/version-specific/supported-software/p/PyCogent.md new file mode 100644 index 000000000..2fb2e707a --- /dev/null +++ b/docs/version-specific/supported-software/p/PyCogent.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# PyCogent + +PyCogent is a software library for genomic biology. It is a fully integrated and thoroughly tested framework for: controlling third-party applications; devising workflows; querying databases; conducting novel probabilistic analyses of biological sequence evolution; and generating publication quality graphics. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5.3`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.9`` | ``-Python-2.7.12`` | ``foss/2016b`` +``1.9`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.9`` | ``-Python-2.7.12`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyDamage.md b/docs/version-specific/supported-software/p/PyDamage.md new file mode 100644 index 000000000..10205a418 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyDamage.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyDamage + +Pydamage, is a Python software to automate the process of contig damage identification and estimation. After modelling the ancient DNA damage using the C to T transitions, Pydamage uses a likelihood ratio test to discriminate between truly ancient, and modern contigs originating from sample contamination. + +*homepage*: + +version | toolchain +--------|---------- +``0.70`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyDatastream.md b/docs/version-specific/supported-software/p/PyDatastream.md new file mode 100644 index 000000000..25f458bb8 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyDatastream.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyDatastream + +Lightweight SOAP client + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.5.1`` | ``-Python-3.6.4`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyEVTK.md b/docs/version-specific/supported-software/p/PyEVTK.md new file mode 100644 index 000000000..b2ce6c96a --- /dev/null +++ b/docs/version-specific/supported-software/p/PyEVTK.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PyEVTK + +PyEVTK (Python Export VTK) exports data to binary VTK files for visualization/analysis with packages like Paraview, VisIt, and Mayavii. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.1`` | ``foss/2021b`` +``2.0.0`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyEXR.md b/docs/version-specific/supported-software/p/PyEXR.md new file mode 100644 index 000000000..024eb2a2d --- /dev/null +++ b/docs/version-specific/supported-software/p/PyEXR.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyEXR + +A simple EXR IO-library for Python that simplifies the use of OpenEXR. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.10`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyFFmpeg.md b/docs/version-specific/supported-software/p/PyFFmpeg.md new file mode 100644 index 000000000..c256f4c49 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyFFmpeg.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PyFFmpeg + +Python FFmpeg wrapper + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1beta`` | ``-Python-2.7.10`` | ``gimkl/2.11.5`` +``2.1beta`` | ``-Python-2.7.11`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyFMI.md b/docs/version-specific/supported-software/p/PyFMI.md new file mode 100644 index 000000000..940a4100f --- /dev/null +++ b/docs/version-specific/supported-software/p/PyFMI.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyFMI + +PyFMI is a package for loading and interacting with Functional Mock-Up Units (FMUs), which are compiled dynamic models compliant with the Functional Mock-Up Interface (FMI) + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.4.0`` | ``-Python-2.7.15`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyFR.md b/docs/version-specific/supported-software/p/PyFR.md new file mode 100644 index 000000000..86f353f81 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyFR.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PyFR + +PyFR is an open-source Python based framework for solving advection-diffusion type problems on streaming architectures using the Flux Reconstruction approach of Huynh. The framework is designed to solve a range of governing systems on mixed unstructured grids containing various element types. It is also designed to target a range of hardware platforms via use of an in-built domain specific language derived from the Mako templating engine. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.7.6`` | ``-Python-3.6.4-CUDA-9.1.85`` | ``intel/2018a`` +``1.9.0`` | ``-Python-3.7.4`` | ``intelcuda/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyFoam.md b/docs/version-specific/supported-software/p/PyFoam.md new file mode 100644 index 000000000..549bf4603 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyFoam.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyFoam + +A Python library to control OpenFOAM-runs and manipulate OpenFOAM-data. + +*homepage*: + +version | toolchain +--------|---------- +``2020.5`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyFrag.md b/docs/version-specific/supported-software/p/PyFrag.md new file mode 100644 index 000000000..408495273 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyFrag.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PyFrag + +PyFrag 2019 resolves three main challenges associated with the automatized computational exploration of reaction mechanisms: 1) the management of multiple parallel calculations to automatically find a reaction path; 2) the monitoring of the entire computational process along with the extraction and plotting of relevant information from large amounts of data; and 3) the analysis and presentation of these data in a clear and informative way. This module provides the Activation Strain Analysis (ASA) Module of PyFrag 2019 + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2019-20220216`` | ``-ASA`` | ``intel/2020b`` +``2023-dev.20240220`` | ``-ASA`` | ``intel/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyGEOS.md b/docs/version-specific/supported-software/p/PyGEOS.md new file mode 100644 index 000000000..ed9abf832 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyGEOS.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# PyGEOS + +PyGEOS is a C/Python library with vectorized geometry functions. The geometry operations are done in the open-source geometry library GEOS. PyGEOS wraps these operations in NumPy ufuncs providing a performance improvement when operating on arrays of geometries. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.2`` | | ``intel/2020b`` +``0.14`` | | ``gfbf/2022b`` +``0.14`` | | ``gfbf/2023a`` +``0.7.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.8`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyGObject.md b/docs/version-specific/supported-software/p/PyGObject.md new file mode 100644 index 000000000..98be185b0 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyGObject.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# PyGObject + +Python Bindings for GLib/GObject/GIO/GTK+ + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.28.6`` | ``-Python-2.7.11`` | ``intel/2016a`` +``2.28.6`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.28.7`` | ``-Python-2.7.15`` | ``foss/2018b`` +``2.28.7`` | ``-Python-2.7.14`` | ``intel/2018a`` +``3.34.0`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` +``3.34.0`` | ``-Python-2.7.16`` | ``GCCcore/8.3.0`` +``3.34.0`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``3.42.1`` | | ``GCCcore/11.3.0`` +``3.44.1`` | | ``GCCcore/12.2.0`` +``3.46.0`` | | ``GCCcore/12.3.0`` +``3.46.0`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyGTK.md b/docs/version-specific/supported-software/p/PyGTK.md new file mode 100644 index 000000000..9b91e64d6 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyGTK.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# PyGTK + +PyGTK lets you to easily create programs with a graphical user interface using the Python programming language. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.24.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``2.24.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``2.24.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.24.0`` | ``-Python-2.7.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyGTS.md b/docs/version-specific/supported-software/p/PyGTS.md new file mode 100644 index 000000000..dff7942ee --- /dev/null +++ b/docs/version-specific/supported-software/p/PyGTS.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# PyGTS + +PyGTS is a python package used to construct, manipulate, and perform computations on triangulated surfaces. It is a hand-crafted and pythonic binding for the GNU Triangulated Surface (GTS) Library. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.1`` | ``-Python-2.7.11`` | ``foss/2016a`` +``0.3.1`` | ``-Python-2.7.12`` | ``foss/2016b`` +``0.3.1`` | ``-Python-2.7.11`` | ``intel/2016a`` +``0.3.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.3.1`` | ``-Python-2.7.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyGWAS.md b/docs/version-specific/supported-software/p/PyGWAS.md new file mode 100644 index 000000000..24adb418b --- /dev/null +++ b/docs/version-specific/supported-software/p/PyGWAS.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# PyGWAS + +PyGWAS is a library for running Genome Wide Association studies. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.3.1`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.4.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.5.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.6.1`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.6.1`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.7.1`` | ``-Python-2.7.13`` | ``foss/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyHMMER.md b/docs/version-specific/supported-software/p/PyHMMER.md new file mode 100644 index 000000000..d12b0f113 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyHMMER.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyHMMER + +HMMER is a biological sequence analysis tool that uses profile hidden Markov models to search for sequence homologs. HMMER3 is developed and maintained by the Eddy/Rivas Laboratory at Harvard University. pyhmmer is a Python package, implemented using the Cython language, that provides bindings to HMMER3. It directly interacts with the HMMER internals, which has the following advantages over CLI wrappers (like hmmer-py) + +*homepage*: + +version | toolchain +--------|---------- +``0.10.6`` | ``gompi/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyImageJ.md b/docs/version-specific/supported-software/p/PyImageJ.md new file mode 100644 index 000000000..6b8cf400f --- /dev/null +++ b/docs/version-specific/supported-software/p/PyImageJ.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyImageJ + +PyImageJ provides a set of wrapper functions for integration between ImageJ2 and Python. It also supports the original ImageJ API and data structures. A major advantage of this approach is the ability to combine ImageJ and ImageJ2 with other tools available from the Python software ecosystem, including NumPy, SciPy, scikit-image, CellProfiler, OpenCV, ITK and many more. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.1`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyInstaller.md b/docs/version-specific/supported-software/p/PyInstaller.md new file mode 100644 index 000000000..7c0a14786 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyInstaller.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyInstaller + +PyInstaller bundles a Python application and all its dependencies into a single package. The user can run the packaged app without installing a Python interpreter or any modules. + +*homepage*: + +version | toolchain +--------|---------- +``6.3.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyMC.md b/docs/version-specific/supported-software/p/PyMC.md new file mode 100644 index 000000000..8f9fa74e1 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyMC.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# PyMC + +PyMC is a probabilistic programming library for Python that allows users to build Bayesian models with a simple Python API and fit them using Markov chain Monte Carlo (MCMC) methods. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.8`` | ``foss/2021b`` +``2.3.8`` | ``intel/2021b`` +``5.9.0`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyMC3.md b/docs/version-specific/supported-software/p/PyMC3.md new file mode 100644 index 000000000..6ad06b3ab --- /dev/null +++ b/docs/version-specific/supported-software/p/PyMC3.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# PyMC3 + +Probabilistic Programming in Python: Bayesian Modeling and Probabilistic Machine Learning with Theano + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.11.1`` | | ``foss/2021b`` +``3.11.1`` | | ``fosscuda/2020b`` +``3.11.1`` | | ``intel/2020b`` +``3.11.1`` | | ``intel/2021b`` +``3.8`` | ``-Python-3.7.4`` | ``foss/2019b`` +``3.8`` | ``-Python-3.7.4`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyMOL.md b/docs/version-specific/supported-software/p/PyMOL.md new file mode 100644 index 000000000..0ef8a28ae --- /dev/null +++ b/docs/version-specific/supported-software/p/PyMOL.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyMOL + +PyMOL is a Python-enhanced molecular graphics tool. It excels at 3D visualization of proteins, small molecules, density, surfaces, and trajectories. It also includes molecular editing, ray tracing, and movies. Open Source PyMOL is free to everyone! + +*homepage*: + +version | toolchain +--------|---------- +``2.5.0`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyNAST.md b/docs/version-specific/supported-software/p/PyNAST.md new file mode 100644 index 000000000..119803952 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyNAST.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# PyNAST + +PyNAST is a reimplementation of the NAST sequence aligner, which has become a popular tool for adding new 16s rRNA sequences to existing 16s rRNA alignments. This reimplementation is more flexible, faster, and easier to install and maintain than the original NAST implementation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.2`` | ``-Python-2.7.12`` | ``foss/2016b`` +``1.2.2`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.2.2`` | ``-Python-2.7.12`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyOD.md b/docs/version-specific/supported-software/p/PyOD.md new file mode 100644 index 000000000..1ebb1f664 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyOD.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PyOD + +PyOD is a comprehensive and scalable Python toolkit for detecting outlying objects in multivariate data. + +*homepage*: + +version | toolchain +--------|---------- +``0.8.7`` | ``foss/2020b`` +``0.8.7`` | ``intel/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyOpenCL.md b/docs/version-specific/supported-software/p/PyOpenCL.md new file mode 100644 index 000000000..33c269253 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyOpenCL.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# PyOpenCL + +PyOpenCL lets you access GPUs and other massively parallel compute devices from Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2020.2.2`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``2021.1.2`` | | ``foss/2020b`` +``2021.1.2`` | | ``fosscuda/2020b`` +``2021.1.2`` | | ``intel/2020b`` +``2021.2.13`` | ``-CUDA-11.4.1`` | ``foss/2021b`` +``2021.2.13`` | | ``foss/2021b`` +``2023.1.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``2023.1.4`` | | ``foss/2022a`` +``2023.1.4`` | ``-CUDA-12.1.1`` | ``foss/2023a`` +``2023.1.4`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyOpenGL.md b/docs/version-specific/supported-software/p/PyOpenGL.md new file mode 100644 index 000000000..772446ffd --- /dev/null +++ b/docs/version-specific/supported-software/p/PyOpenGL.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# PyOpenGL + +PyOpenGL is the most common cross platform Python binding to OpenGL and related APIs. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.1.1a1`` | | ``GCCcore/8.2.0`` +``3.1.1a1`` | ``-Python-2.7.12`` | ``foss/2016b`` +``3.1.1a1`` | ``-Python-2.7.14`` | ``foss/2018a`` +``3.1.1a1`` | ``-Python-2.7.11`` | ``intel/2016a`` +``3.1.1a1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``3.1.3b2`` | ``-Python-2.7.15`` | ``foss/2018b`` +``3.1.3b2`` | ``-Python-2.7.14`` | ``intel/2018a`` +``3.1.5`` | | ``GCCcore/10.2.0`` +``3.1.5`` | | ``GCCcore/10.3.0`` +``3.1.5`` | | ``GCCcore/8.3.0`` +``3.1.6`` | | ``GCCcore/11.2.0`` +``3.1.6`` | | ``GCCcore/11.3.0`` +``3.1.7`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyPSA.md b/docs/version-specific/supported-software/p/PyPSA.md new file mode 100644 index 000000000..8d9d47305 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyPSA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyPSA + +PyPSA is an open source toolbox for simulating and optimising modern power systems that include features such as conventional generators with unit commitment, variable wind and solar generation, storage units, coupling to other energy sectors, and mixed alternating and direct current networks. PyPSA is designed to scale well with large networks and long time series. + +*homepage*: + +version | toolchain +--------|---------- +``0.17.1`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyPy.md b/docs/version-specific/supported-software/p/PyPy.md new file mode 100644 index 000000000..29ee7d548 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyPy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyPy + +A fast, compliant alternative implementation of Python + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``7.3.12`` | ``-3.10`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyQt-builder.md b/docs/version-specific/supported-software/p/PyQt-builder.md new file mode 100644 index 000000000..8c0d56b88 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyQt-builder.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyQt-builder + +PyQt-builder is the PEP 517 compliant build system for PyQt and projects that extend PyQt. It extends the SIP build system and uses Qt’s qmake to perform the actual compilation and installation of extension modules. + +*homepage*: + +version | toolchain +--------|---------- +``1.15.4`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyQt.md b/docs/version-specific/supported-software/p/PyQt.md new file mode 100644 index 000000000..9ec781725 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyQt.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# PyQt + +PyQt is a set of Python v2 and v3 bindings for Digia's Qt application framework. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.11.4`` | ``-Python-2.7.11`` | ``intel/2016a`` +``4.11.4`` | ``-Python-2.7.12`` | ``intel/2016b`` +``4.12`` | ``-Python-2.7.12`` | ``foss/2016b`` +``4.12`` | ``-Python-2.7.12`` | ``intel/2016b`` +``4.12`` | ``-Python-2.7.13`` | ``intel/2017a`` +``4.12.1`` | ``-Python-2.7.14`` | ``foss/2018a`` +``4.12.3`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyQt5.md b/docs/version-specific/supported-software/p/PyQt5.md new file mode 100644 index 000000000..cbc16d5a4 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyQt5.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# PyQt5 + +PyQt5 is a set of Python bindings for v5 of the Qt application framework from The Qt Company. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.11.3`` | ``-Python-3.6.6`` | ``foss/2018b`` +``5.11.3`` | ``-Python-3.6.6`` | ``intel/2018b`` +``5.12.1`` | ``-Python-2.7.15`` | ``GCCcore/8.2.0`` +``5.12.1`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` +``5.13.2`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``5.15.1`` | | ``GCCcore/10.2.0`` +``5.15.1`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``5.15.10`` | | ``GCCcore/12.3.0`` +``5.15.4`` | | ``GCCcore/10.2.0`` +``5.15.4`` | | ``GCCcore/10.3.0`` +``5.15.4`` | | ``GCCcore/11.2.0`` +``5.15.5`` | | ``GCCcore/11.3.0`` +``5.15.7`` | | ``GCCcore/12.2.0`` +``5.7`` | ``-Python-2.7.11`` | ``foss/2016a`` +``5.7.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``5.8.2`` | ``-Python-2.7.13`` | ``intel/2017a`` +``5.9.2`` | ``-Python-2.7.14`` | ``foss/2017b`` +``5.9.2`` | ``-Python-3.6.4`` | ``foss/2018a`` +``5.9.2`` | ``-Python-2.7.14`` | ``intel/2017b`` +``5.9.2`` | ``-Python-2.7.14`` | ``intel/2018a`` +``5.9.2`` | ``-Python-3.6.4`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyQtGraph.md b/docs/version-specific/supported-software/p/PyQtGraph.md new file mode 100644 index 000000000..04b3e14e7 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyQtGraph.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# PyQtGraph + +PyQtGraph is a pure-python graphics and GUI library built on PyQt4/PySide and numpy. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.10.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``0.10.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``0.10.0`` | ``-Python-3.7.2`` | ``intel/2019a`` +``0.11.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.11.1`` | | ``foss/2020b`` +``0.11.1`` | | ``fosscuda/2020b`` +``0.12.3`` | | ``foss/2021a`` +``0.13.3`` | | ``foss/2022a`` +``0.13.7`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyRETIS.md b/docs/version-specific/supported-software/p/PyRETIS.md new file mode 100644 index 000000000..ddc00316c --- /dev/null +++ b/docs/version-specific/supported-software/p/PyRETIS.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# PyRETIS + +PyRETIS is a Python library for rare event molecular simulations with emphasis on methods based on transition interface sampling and replica exchange transition interface sampling. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``2.5.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2.5.0`` | | ``foss/2020b`` +``2.5.0`` | ``-Python-3.8.2`` | ``intel/2020a`` +``2.5.0`` | | ``intel/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyRe.md b/docs/version-specific/supported-software/p/PyRe.md new file mode 100644 index 000000000..1aaa54d44 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyRe.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PyRe + +PyRe (Python Reliability) is a Python module for structural reliability analysis. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.0.3-20190221`` | ``-Python-3.7.4`` | ``foss/2019b`` +``5.0.3-20190221`` | ``-Python-3.7.4`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyRosetta.md b/docs/version-specific/supported-software/p/PyRosetta.md new file mode 100644 index 000000000..eadf29720 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyRosetta.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyRosetta + +PyRosetta is an interactive Python-based interface to the powerful Rosetta molecular modeling suite. It enables users to design their own custom molecular modeling algorithms using Rosetta sampling methods and energy functions. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.release-292`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PySAT.md b/docs/version-specific/supported-software/p/PySAT.md new file mode 100644 index 000000000..1d8502067 --- /dev/null +++ b/docs/version-specific/supported-software/p/PySAT.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PySAT + +PySAT is a Python toolkit, which aims at providing a simple and unified interface to a number of state-of-art Boolean satisfiability (SAT) solvers as well as to a variety of cardinality and pseudo-Boolean encodings. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.6.dev11`` | ``-Python-3.8.2`` | ``GCC/9.3.0`` +``0.1.7.dev1`` | | ``GCC/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PySCF.md b/docs/version-specific/supported-software/p/PySCF.md new file mode 100644 index 000000000..e02f4068d --- /dev/null +++ b/docs/version-specific/supported-software/p/PySCF.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# PySCF + +PySCF is an open-source collection of electronic structure modules powered by Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.6.3`` | ``-Python-3.7.2`` | ``foss/2019a`` +``1.7.6`` | | ``foss/2020b`` +``1.7.6`` | | ``foss/2021a`` +``1.7.6`` | | ``gomkl/2021a`` +``2.1.1`` | | ``foss/2022a`` +``2.4.0`` | | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PySINDy.md b/docs/version-specific/supported-software/p/PySINDy.md new file mode 100644 index 000000000..3a8406a8f --- /dev/null +++ b/docs/version-specific/supported-software/p/PySINDy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PySINDy + +" PySINDy is a sparse regression package with several implementations for the Sparse Identification of Nonlinear Dynamical systems (SINDy) method introduced in Brunton et al. (2016a), including the unified optimization approach of Champion et al. (2019), SINDy with control from Brunton et al. (2016b), Trapping SINDy from Kaptanoglu et al. (2021), SINDy-PI from Kaheman et al. (2020), PDE-FIND from Rudy et al. (2017), and so on. A comprehensive literature review is given in de Silva et al. (2020) and Kaptanoglu, de Silva et al. (2021). + +*homepage*: + +version | toolchain +--------|---------- +``1.7.3`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PySide2.md b/docs/version-specific/supported-software/p/PySide2.md new file mode 100644 index 000000000..b1be44523 --- /dev/null +++ b/docs/version-specific/supported-software/p/PySide2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PySide2 + +PySide2 is the official Python module from the Qt for Python project, which provides access to the complete Qt 5.12+ framework. + +*homepage*: + +version | toolchain +--------|---------- +``5.14.2.3`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyStan.md b/docs/version-specific/supported-software/p/PyStan.md new file mode 100644 index 000000000..aa3697638 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyStan.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# PyStan + +Python interface to Stan, a package for Bayesian inference using the No-U-Turn sampler, a variant of Hamiltonian Monte Carlo. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.19.0.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``2.19.1.1`` | | ``foss/2020b`` +``2.19.1.1`` | | ``intel/2020b`` +``3.5.0`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyTables.md b/docs/version-specific/supported-software/p/PyTables.md new file mode 100644 index 000000000..8103660b8 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyTables.md @@ -0,0 +1,48 @@ +--- +search: + boost: 0.5 +--- +# PyTables + +PyTables is a package for managing hierarchical datasets and designed to efficiently and easily cope with extremely large amounts of data. PyTables is built on top of the HDF5 library, using the Python language and the NumPy package. It features an object-oriented interface that, combined with C extensions for the performance-critical parts of the code (generated using Cython), makes it a fast, yet extremely easy to use tool for interactively browse, process and search very large amounts of data. One important feature of PyTables is that it optimizes memory and disk resources so that data takes much less space (specially if on-flight compression is used) than other solutions such as relational or object oriented databases. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.2.2`` | ``-Python-2.7.12`` | ``foss/2016b`` +``3.2.3.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``3.3.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``3.3.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``3.3.0`` | ``-Python-3.5.2`` | ``intel/2016b`` +``3.4.2`` | ``-Python-2.7.13`` | ``foss/2017a`` +``3.4.2`` | ``-Python-3.6.4`` | ``foss/2018a`` +``3.4.2`` | ``-Python-3.6.1`` | ``intel/2017a`` +``3.4.2`` | ``-Python-3.6.3`` | ``intel/2017b`` +``3.4.2`` | ``-Python-3.6.4`` | ``intel/2018a`` +``3.4.4`` | ``-Python-3.5.1`` | ``foss/2016a`` +``3.4.4`` | ``-Python-2.7.15`` | ``foss/2018b`` +``3.4.4`` | ``-Python-3.6.6`` | ``foss/2018b`` +``3.4.4`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``3.4.4`` | ``-Python-3.6.6`` | ``intel/2018b`` +``3.5.2`` | ``-Python-2.7.18`` | ``foss/2020b`` +``3.5.2`` | ``-Python-2.7.14`` | ``intel/2018a`` +``3.5.2`` | | ``intel/2019a`` +``3.5.2`` | ``-Python-2.7.16`` | ``intel/2019b`` +``3.6.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``3.6.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``3.6.1`` | | ``foss/2020b`` +``3.6.1`` | | ``foss/2021a`` +``3.6.1`` | | ``foss/2021b`` +``3.6.1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``3.6.1`` | | ``fosscuda/2020b`` +``3.6.1`` | ``-Python-3.8.2`` | ``intel/2020a`` +``3.6.1`` | | ``intel/2020b`` +``3.8.0`` | | ``foss/2022a`` +``3.8.0`` | | ``foss/2022b`` +``3.8.0`` | | ``foss/2023a`` +``3.9.2`` | | ``foss/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyTensor.md b/docs/version-specific/supported-software/p/PyTensor.md new file mode 100644 index 000000000..1d411fd98 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyTensor.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyTensor + +Optimizing compiler for evaluating mathematical expressions on CPUs and GPUs + +*homepage*: + +version | toolchain +--------|---------- +``2.17.1`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyTorch-Geometric.md b/docs/version-specific/supported-software/p/PyTorch-Geometric.md new file mode 100644 index 000000000..b7db777d9 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyTorch-Geometric.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# PyTorch-Geometric + +PyTorch Geometric (PyG) is a geometric deep learning extension library for PyTorch. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.2`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.4.2`` | ``-Python-3.7.4-PyTorch-1.4.0`` | ``foss/2019b`` +``1.6.3`` | | ``foss/2020b`` +``1.6.3`` | ``-Python-3.7.4-PyTorch-1.8.1`` | ``fosscuda/2019b`` +``1.6.3`` | | ``fosscuda/2020b`` +``2.0.1`` | ``-PyTorch-1.9.0`` | ``fosscuda/2020b`` +``2.1.0`` | ``-PyTorch-1.12.1-CUDA-11.3.1`` | ``foss/2021a`` +``2.1.0`` | ``-PyTorch-1.12.0-CUDA-11.7.0`` | ``foss/2022a`` +``2.1.0`` | ``-PyTorch-1.12.0`` | ``foss/2022a`` +``2.5.0`` | ``-PyTorch-2.1.2-CUDA-12.1.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyTorch-Ignite.md b/docs/version-specific/supported-software/p/PyTorch-Ignite.md new file mode 100644 index 000000000..9011183a4 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyTorch-Ignite.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# PyTorch-Ignite + +Ignite is a high-level library to help with training and evaluating neural networks in PyTorch flexibly and transparently. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.4.12`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.4.12`` | | ``foss/2022a`` +``0.4.13`` | | ``foss/2023a`` +``0.4.9`` | ``-CUDA-11.3.1`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyTorch-Image-Models.md b/docs/version-specific/supported-software/p/PyTorch-Image-Models.md new file mode 100644 index 000000000..5658247db --- /dev/null +++ b/docs/version-specific/supported-software/p/PyTorch-Image-Models.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PyTorch-Image-Models + +PyTorch Image Models (timm) is a collection of image models, layers, utilities, optimizers, schedulers, data-loaders / augmentations, and reference training / validation scripts that aim to pull together a wide variety of SOTA models with ability to reproduce ImageNet training results. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.9.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.9.2`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyTorch-Lightning.md b/docs/version-specific/supported-software/p/PyTorch-Lightning.md new file mode 100644 index 000000000..8a12604c9 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyTorch-Lightning.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# PyTorch-Lightning + +PyTorch Lightning is the lightweight PyTorch wrapper for ML researchers. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5.9`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``1.5.9`` | | ``foss/2021a`` +``1.7.7`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``1.7.7`` | | ``foss/2022a`` +``1.8.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``1.8.4`` | | ``foss/2022a`` +``2.1.2`` | | ``foss/2022b`` +``2.2.1`` | ``-CUDA-12.1.1`` | ``foss/2023a`` +``2.2.1`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyTorch-bundle.md b/docs/version-specific/supported-software/p/PyTorch-bundle.md new file mode 100644 index 000000000..089677467 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyTorch-bundle.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# PyTorch-bundle + +PyTorch with compatible versions of official Torch extensions. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.12.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``1.13.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``2.1.2`` | ``-CUDA-12.1.1`` | ``foss/2023a`` +``2.1.2`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyTorch.md b/docs/version-specific/supported-software/p/PyTorch.md new file mode 100644 index 000000000..af8cf090e --- /dev/null +++ b/docs/version-specific/supported-software/p/PyTorch.md @@ -0,0 +1,67 @@ +--- +search: + boost: 0.5 +--- +# PyTorch + +Tensors and Dynamic neural networks in Python with strong GPU acceleration. PyTorch is a deep learning framework that puts Python first. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.1`` | ``-Python-3.6.4-CUDA-9.1.85`` | ``foss/2018a`` +``0.3.1`` | ``-Python-2.7.14`` | ``fosscuda/2017b`` +``0.3.1`` | ``-Python-3.6.3`` | ``fosscuda/2017b`` +``0.3.1`` | ``-Python-3.6.4`` | ``intel/2018a`` +``0.4.1`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.0.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.0.1`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``1.1.0`` | ``-Python-3.7.2`` | ``foss/2019a`` +``1.10.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``1.10.0`` | | ``foss/2021a`` +``1.10.0`` | | ``fosscuda/2020b`` +``1.11.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``1.12.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``1.12.0`` | | ``foss/2022a`` +``1.12.1`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``1.12.1`` | | ``foss/2021a`` +``1.12.1`` | ``-CUDA-11.5.2`` | ``foss/2021b`` +``1.12.1`` | | ``foss/2021b`` +``1.12.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``1.12.1`` | | ``foss/2022a`` +``1.13.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``1.13.1`` | | ``foss/2022a`` +``1.13.1`` | ``-CUDA-11.7.0`` | ``foss/2022b`` +``1.13.1`` | | ``foss/2022b`` +``1.2.0`` | ``-Python-3.7.2`` | ``foss/2019a`` +``1.2.0`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` +``1.3.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.3.1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``1.3.1`` | | ``fosscuda/2020b`` +``1.4.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.4.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``1.6.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.6.0`` | ``-Python-3.7.4-imkl`` | ``fosscuda/2019b`` +``1.6.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``1.7.1`` | | ``foss/2020b`` +``1.7.1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``1.7.1`` | ``-Python-3.8.2`` | ``fosscuda/2020a`` +``1.7.1`` | | ``fosscuda/2020b`` +``1.8.1`` | | ``foss/2020b`` +``1.8.1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``1.8.1`` | | ``fosscuda/2020b`` +``1.9.0`` | | ``foss/2020b`` +``1.9.0`` | ``-imkl`` | ``fosscuda/2020b`` +``1.9.0`` | | ``fosscuda/2020b`` +``2.0.1`` | | ``foss/2022a`` +``2.0.1`` | | ``foss/2022b`` +``2.1.2`` | | ``foss/2022a`` +``2.1.2`` | | ``foss/2022b`` +``2.1.2`` | ``-CUDA-12.1.1`` | ``foss/2023a`` +``2.1.2`` | | ``foss/2023a`` +``2.1.2`` | | ``foss/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyTorch3D.md b/docs/version-specific/supported-software/p/PyTorch3D.md new file mode 100644 index 000000000..86b3a1fbd --- /dev/null +++ b/docs/version-specific/supported-software/p/PyTorch3D.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyTorch3D + +PyTorch3D is FAIR's library of reusable components for deep learning with 3D data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.4.0`` | ``-PyTorch-1.7.1`` | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyTorchVideo.md b/docs/version-specific/supported-software/p/PyTorchVideo.md new file mode 100644 index 000000000..986f1c307 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyTorchVideo.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PyTorchVideo + +PyTorchVideo is a deeplearning library with a focus on video understanding work. PytorchVideo provides reusable, modular and efficient components needed to accelerate the video understanding research. PyTorchVideo is developed using PyTorch and supports different deeplearning video components like video models, video datasets, and video-specific transforms. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.5`` | ``-PyTorch-1.12.0-CUDA-11.7.0`` | ``foss/2022a`` +``0.1.5`` | ``-PyTorch-1.12.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyVCF.md b/docs/version-specific/supported-software/p/PyVCF.md new file mode 100644 index 000000000..6ed7bf8fd --- /dev/null +++ b/docs/version-specific/supported-software/p/PyVCF.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyVCF + +A Variant Call Format reader for Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.6.8`` | ``-Python-2.7.16`` | ``GCC/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyVCF3.md b/docs/version-specific/supported-software/p/PyVCF3.md new file mode 100644 index 000000000..36dc2dcb3 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyVCF3.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyVCF3 + +A VCFv4.0 and 4.1 parser for Python. The intent of this module is to mimic the csv module in the Python stdlib, as opposed to more flexible serialization formats like JSON or YAML. vcf will attempt to parse the content of each record based on the data types specified in the meta-information lines -- specifically the ##INFO and ##FORMAT lines. If these lines are missing or incomplete, it will check against the reserved types mentioned in the spec. Failing that, it will just return strings. PyVCF3 has been created because the Official PyVCF repository is no longer maintained and do not accept any pull requests. This fork is for python 3 only and has been published on pyPI as PyVCF3. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.3`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyVista.md b/docs/version-specific/supported-software/p/PyVista.md new file mode 100644 index 000000000..2c50d429c --- /dev/null +++ b/docs/version-specific/supported-software/p/PyVista.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# PyVista + +3D plotting and mesh analysis through a streamlined interface for the Visualization Toolkit (VTK) + +*homepage*: + +version | toolchain +--------|---------- +``0.43.8`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyWBGT.md b/docs/version-specific/supported-software/p/PyWBGT.md new file mode 100644 index 000000000..3e118d78a --- /dev/null +++ b/docs/version-specific/supported-software/p/PyWBGT.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PyWBGT + +Cython source code for estimating wet bulb globe temperature (WBGT) from datasets of standard meterological measurements using models developed by Liljegren et al (2008) + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0`` | ``foss/2021b`` +``1.0.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyWavelets.md b/docs/version-specific/supported-software/p/PyWavelets.md new file mode 100644 index 000000000..531b68a49 --- /dev/null +++ b/docs/version-specific/supported-software/p/PyWavelets.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# PyWavelets + +PyWavelets is open source wavelet transform software for Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.1`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.1.1`` | | ``intelcuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyYAML.md b/docs/version-specific/supported-software/p/PyYAML.md new file mode 100644 index 000000000..e15d7be3d --- /dev/null +++ b/docs/version-specific/supported-software/p/PyYAML.md @@ -0,0 +1,50 @@ +--- +search: + boost: 0.5 +--- +# PyYAML + +PyYAML is a YAML parser and emitter for the Python programming language. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.11`` | ``-Python-2.7.11`` | ``intel/2016a`` +``3.12`` | ``-Python-2.7.12`` | ``foss/2016b`` +``3.12`` | ``-Python-2.7.14`` | ``foss/2017b`` +``3.12`` | ``-Python-3.6.3`` | ``foss/2017b`` +``3.12`` | ``-Python-2.7.14`` | ``foss/2018a`` +``3.12`` | ``-Python-3.6.4`` | ``foss/2018a`` +``3.12`` | ``-Python-2.7.14`` | ``fosscuda/2017b`` +``3.12`` | ``-Python-3.6.3`` | ``fosscuda/2017b`` +``3.12`` | ``-Python-2.7.12`` | ``intel/2016b`` +``3.12`` | ``-Python-3.5.2`` | ``intel/2016b`` +``3.12`` | ``-Python-2.7.13`` | ``intel/2017a`` +``3.12`` | ``-Python-3.6.1`` | ``intel/2017a`` +``3.12`` | ``-Python-2.7.14`` | ``intel/2017b`` +``3.12`` | ``-Python-3.6.3`` | ``intel/2017b`` +``3.12`` | ``-Python-2.7.14`` | ``intel/2018a`` +``3.12`` | ``-Python-3.6.4`` | ``intel/2018a`` +``3.12`` | | ``system`` +``3.13`` | ``-Python-3.6.6`` | ``foss/2018b`` +``3.13`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``3.13`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``3.13`` | ``-Python-2.7.15`` | ``intel/2018b`` +``3.13`` | ``-Python-3.6.6`` | ``intel/2018b`` +``3.13`` | | ``system`` +``5.1`` | | ``GCCcore/8.2.0`` +``5.1.2`` | | ``GCCcore/8.3.0`` +``5.3`` | | ``GCCcore/9.3.0`` +``5.3.1`` | | ``GCCcore/10.2.0`` +``5.4.1`` | | ``GCCcore/10.3.0`` +``5.4.1`` | ``-Python-2.7.18`` | ``GCCcore/11.2.0`` +``5.4.1`` | | ``GCCcore/11.2.0`` +``6.0`` | | ``GCCcore/11.3.0`` +``6.0`` | | ``GCCcore/12.2.0`` +``6.0`` | | ``GCCcore/12.3.0`` +``6.0.1`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PyZMQ.md b/docs/version-specific/supported-software/p/PyZMQ.md new file mode 100644 index 000000000..e19ea7f1a --- /dev/null +++ b/docs/version-specific/supported-software/p/PyZMQ.md @@ -0,0 +1,38 @@ +--- +search: + boost: 0.5 +--- +# PyZMQ + +Python bindings for ZeroMQ + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``15.2.0`` | ``-Python-2.7.11-zmq4`` | ``foss/2016a`` +``15.2.0`` | ``-Python-2.7.11-zmq4`` | ``intel/2016a`` +``15.2.0`` | ``-Python-3.5.1-zmq4`` | ``intel/2016a`` +``15.3.0`` | ``-Python-2.7.11-zmq4`` | ``foss/2016a`` +``15.3.0`` | ``-Python-3.5.1-zmq4`` | ``foss/2016a`` +``15.4.0`` | ``-Python-2.7.12-zmq4`` | ``intel/2016b`` +``15.4.0`` | ``-Python-3.5.2-zmq4`` | ``intel/2016b`` +``16.0.2`` | ``-Python-2.7.12-zmq4`` | ``foss/2016b`` +``16.0.2`` | ``-Python-3.5.2-zmq4`` | ``foss/2016b`` +``16.0.2`` | ``-Python-2.7.13-zmq4`` | ``foss/2017a`` +``16.0.2`` | ``-Python-2.7.12-zmq4`` | ``intel/2016b`` +``16.0.2`` | ``-Python-3.5.2-zmq4`` | ``intel/2016b`` +``16.0.2`` | ``-Python-2.7.13-zmq4`` | ``intel/2017a`` +``16.0.3`` | ``-Python-2.7.14-zmq4`` | ``intel/2017b`` +``17.0.0`` | ``-Python-2.7.14-zmq4`` | ``foss/2018a`` +``17.0.0`` | ``-Python-3.6.4-zmq4`` | ``foss/2018a`` +``18.1.1`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``22.3.0`` | | ``GCCcore/10.3.0`` +``24.0.1`` | | ``GCCcore/11.3.0`` +``25.1.0`` | | ``GCCcore/12.2.0`` +``25.1.1`` | | ``GCCcore/12.3.0`` +``25.1.2`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/PycURL.md b/docs/version-specific/supported-software/p/PycURL.md new file mode 100644 index 000000000..c6c8c3386 --- /dev/null +++ b/docs/version-specific/supported-software/p/PycURL.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# PycURL + +PycURL is a Python interface to libcurl. PycURL can be used to fetch objects identified by a URL from a Python program, similar to the urllib Python module. PycURL is mature, very fast, and supports a lot of features. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``7.43.0.5`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``7.45.2`` | | ``GCCcore/11.3.0`` +``7.45.2`` | | ``GCCcore/12.2.0`` +``7.45.2`` | | ``GCCcore/12.3.0`` +``7.45.3`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Pychopper.md b/docs/version-specific/supported-software/p/Pychopper.md new file mode 100644 index 000000000..64b4ac6bc --- /dev/null +++ b/docs/version-specific/supported-software/p/Pychopper.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Pychopper + +A tool to identify, orient, trim and rescue full length cDNA reads. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.3.1`` | ``-Python-3.7.4`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Pygments.md b/docs/version-specific/supported-software/p/Pygments.md new file mode 100644 index 000000000..27cf2a194 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pygments.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Pygments + +Generic syntax highlighter suitable for use in code hosting, forums, wikis or other applications that need to prettify source code. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.3`` | ``-Python-2.7.11`` | ``foss/2016a`` +``2.1.3`` | ``-Python-3.5.1`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Pyke3.md b/docs/version-specific/supported-software/p/Pyke3.md new file mode 100644 index 000000000..a414a3450 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pyke3.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Pyke3 + +Pyke introduces a form of Logic Programming (inspired by Prolog) to the Python community by providing a knowledge-based inference engine (expert system) written in 100% Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.1`` | ``-Python-3.6.6`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Pylint.md b/docs/version-specific/supported-software/p/Pylint.md new file mode 100644 index 000000000..bb3a523e8 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pylint.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# Pylint + +Pylint is a tool that checks for errors in Python code, tries to enforce a coding standard and looks for code smells. It can also look for certain type errors, it can recommend suggestions about how particular blocks can be refactored and can offer you details about the code's complexity. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.9.3`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.9.3`` | ``-Python-2.7.15`` | ``intel/2018b`` +``1.9.3`` | ``-Python-2.7.15`` | ``iomkl/2018b`` +``1.9.5`` | ``-Python-2.7.15`` | ``GCCcore/8.2.0`` +``1.9.5`` | ``-Python-2.7.16`` | ``GCCcore/8.3.0`` +``2.17.4`` | | ``GCCcore/12.2.0`` +``2.7.4`` | | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Pyomo.md b/docs/version-specific/supported-software/p/Pyomo.md new file mode 100644 index 000000000..44c7a5d32 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pyomo.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# Pyomo + +Pyomo is a Python-based open-source software package that supports a diverse set of optimization capabilities for formulating and analyzing optimization models. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.5.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``5.5.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``6.0.1`` | | ``foss/2020b`` +``6.0.1`` | | ``foss/2021a`` +``6.4.2`` | | ``foss/2022a`` +``6.5.0`` | | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Pyro4.md b/docs/version-specific/supported-software/p/Pyro4.md new file mode 100644 index 000000000..d9f966470 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pyro4.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Pyro4 + +Pyro means PYthon Remote Objects. It is a library that enables you to build applications in which objects can talk to eachother over the network, with minimal programming effort. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.47`` | ``-Python-2.7.11`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Pysam.md b/docs/version-specific/supported-software/p/Pysam.md new file mode 100644 index 000000000..b324cdc3b --- /dev/null +++ b/docs/version-specific/supported-software/p/Pysam.md @@ -0,0 +1,57 @@ +--- +search: + boost: 0.5 +--- +# Pysam + +Pysam is a python module for reading and manipulating Samfiles. It's a lightweight wrapper of the samtools C-API. Pysam also includes an interface for tabix. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``0.10.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.12.0.1`` | ``-Python-2.7.13`` | ``intel/2017a`` +``0.12.0.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.12.0.1`` | ``-Python-3.6.3`` | ``intel/2017b`` +``0.13`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.13.0`` | ``-Python-3.6.3`` | ``intel/2017b`` +``0.14`` | ``-Python-2.7.14`` | ``foss/2017b`` +``0.14`` | ``-Python-3.6.3`` | ``foss/2017b`` +``0.14`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.14`` | ``-Python-3.6.3`` | ``intel/2017b`` +``0.14`` | ``-Python-3.6.4`` | ``intel/2018a`` +``0.14.1`` | ``-Python-2.7.14`` | ``foss/2018a`` +``0.14.1`` | ``-Python-3.6.4`` | ``foss/2018a`` +``0.14.1`` | ``-Python-2.7.14`` | ``intel/2018a`` +``0.14.1`` | ``-Python-3.6.4`` | ``intel/2018a`` +``0.15.1`` | ``-Python-2.7.15`` | ``foss/2018b`` +``0.15.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.15.1`` | ``-Python-2.7.15`` | ``intel/2018b`` +``0.15.1`` | ``-Python-3.6.6`` | ``intel/2018b`` +``0.15.2`` | | ``GCC/8.2.0-2.31.1`` +``0.15.2`` | | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``0.15.3`` | | ``GCC/8.3.0`` +``0.15.3`` | | ``iccifort/2019.5.281`` +``0.16.0.1`` | ``-Python-2.7.18`` | ``GCC/10.2.0`` +``0.16.0.1`` | | ``GCC/10.2.0`` +``0.16.0.1`` | | ``GCC/10.3.0`` +``0.16.0.1`` | | ``GCC/8.3.0`` +``0.16.0.1`` | | ``GCC/9.3.0`` +``0.16.0.1`` | | ``iccifort/2020.1.217`` +``0.16.0.1`` | | ``iccifort/2020.4.304`` +``0.17.0`` | ``-Python-2.7.18`` | ``GCC/11.2.0`` +``0.17.0`` | | ``GCC/11.2.0`` +``0.18.0`` | | ``GCC/11.2.0`` +``0.19.1`` | | ``GCC/11.3.0`` +``0.20.0`` | | ``GCC/11.3.0`` +``0.21.0`` | | ``GCC/12.2.0`` +``0.22.0`` | | ``GCC/12.3.0`` +``0.22.0`` | | ``GCC/13.2.0`` +``0.8.4`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.9.1.4`` | ``-Python-2.7.12`` | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Pysolar.md b/docs/version-specific/supported-software/p/Pysolar.md new file mode 100644 index 000000000..681c1be21 --- /dev/null +++ b/docs/version-specific/supported-software/p/Pysolar.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Pysolar + +Pysolar is a collection of Python libraries for simulating the irradiation of any point on earth by the sun. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7`` | ``-Python-3.6.3`` | ``intel/2017b`` +``0.7`` | ``-Python-3.6.4`` | ``intel/2018a`` +``0.8`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` +``0.8`` | ``-Python-3.6.6`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Python-bundle-PyPI.md b/docs/version-specific/supported-software/p/Python-bundle-PyPI.md new file mode 100644 index 000000000..0f8cbe8b3 --- /dev/null +++ b/docs/version-specific/supported-software/p/Python-bundle-PyPI.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Python-bundle-PyPI + +Bundle of Python packages from PyPI + +*homepage*: + +version | toolchain +--------|---------- +``2023.06`` | ``GCCcore/12.3.0`` +``2023.10`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Python-bundle.md b/docs/version-specific/supported-software/p/Python-bundle.md new file mode 100644 index 000000000..5491146c5 --- /dev/null +++ b/docs/version-specific/supported-software/p/Python-bundle.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Python-bundle + +Python distribution with a number of widely used extensions incl. NumPy, SciPy, Matplotlib, JupyterLab, MPI4PY, ... + +*homepage*: + +version | toolchain +--------|---------- +``3.10.4`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/Python.md b/docs/version-specific/supported-software/p/Python.md new file mode 100644 index 000000000..508b39127 --- /dev/null +++ b/docs/version-specific/supported-software/p/Python.md @@ -0,0 +1,115 @@ +--- +search: + boost: 0.5 +--- +# Python + +Python is a programming language that lets you work more quickly and integrate your systems more effectively. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.7.10`` | ``-bare`` | ``GCC/4.9.3-2.25`` +``2.7.10`` | ``-bare`` | ``GNU/4.9.3-2.25`` +``2.7.10`` | | ``gimkl/2.11.5`` +``2.7.11`` | ``-bare`` | ``GCC/4.9.3-2.25`` +``2.7.11`` | | ``foss/2016a`` +``2.7.11`` | | ``gimkl/2.11.5`` +``2.7.11`` | | ``intel/2016.02-GCC-4.9`` +``2.7.11`` | ``-libX11-1.6.3`` | ``intel/2016a`` +``2.7.11`` | | ``intel/2016a`` +``2.7.11`` | | ``iomkl/2016.07`` +``2.7.11`` | | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``2.7.12`` | ``-bare`` | ``GCC/5.4.0-2.26`` +``2.7.12`` | ``-bare`` | ``GCCcore/4.9.3`` +``2.7.12`` | | ``foss/2016b`` +``2.7.12`` | ``-bare`` | ``iccifort/2016.3.210-GCC-5.4.0-2.26`` +``2.7.12`` | | ``intel/2016b`` +``2.7.12`` | | ``iomkl/2017a`` +``2.7.13`` | ``-bare`` | ``GCCcore/6.3.0`` +``2.7.13`` | | ``foss/2017a`` +``2.7.13`` | | ``intel/2017a`` +``2.7.14`` | ``-bare`` | ``GCCcore/6.4.0`` +``2.7.14`` | | ``foss/2017b`` +``2.7.14`` | | ``foss/2018a`` +``2.7.14`` | | ``fosscuda/2017b`` +``2.7.14`` | | ``fosscuda/2018a`` +``2.7.14`` | | ``intel/2017b`` +``2.7.14`` | | ``intel/2018.01`` +``2.7.14`` | | ``intel/2018a`` +``2.7.14`` | | ``intelcuda/2017b`` +``2.7.14`` | | ``iomkl/2018a`` +``2.7.15`` | ``-bare`` | ``GCCcore/7.2.0`` +``2.7.15`` | ``-bare`` | ``GCCcore/7.3.0`` +``2.7.15`` | ``-bare`` | ``GCCcore/8.2.0`` +``2.7.15`` | | ``GCCcore/8.2.0`` +``2.7.15`` | | ``foss/2018b`` +``2.7.15`` | | ``fosscuda/2018b`` +``2.7.15`` | | ``intel/2018b`` +``2.7.15`` | | ``iomkl/2018b`` +``2.7.16`` | ``-bare`` | ``GCCcore/8.3.0`` +``2.7.16`` | | ``GCCcore/8.3.0`` +``2.7.18`` | | ``GCCcore/10.2.0`` +``2.7.18`` | ``-bare`` | ``GCCcore/10.3.0`` +``2.7.18`` | ``-bare`` | ``GCCcore/11.2.0`` +``2.7.18`` | | ``GCCcore/11.2.0`` +``2.7.18`` | ``-bare`` | ``GCCcore/11.3.0`` +``2.7.18`` | ``-bare`` | ``GCCcore/12.2.0`` +``2.7.18`` | | ``GCCcore/12.3.0`` +``2.7.18`` | ``-bare`` | ``GCCcore/9.3.0`` +``2.7.18`` | | ``GCCcore/9.3.0`` +``2.7.9`` | ``-bare`` | ``GCC/4.8.4`` +``2.7.9`` | ``-bare`` | ``GCC/4.9.2`` +``3.10.4`` | ``-bare`` | ``GCCcore/11.3.0`` +``3.10.4`` | | ``GCCcore/11.3.0`` +``3.10.8`` | ``-bare`` | ``GCCcore/12.2.0`` +``3.10.8`` | | ``GCCcore/12.2.0`` +``3.11.2`` | ``-bare`` | ``GCCcore/12.2.0`` +``3.11.3`` | | ``GCCcore/12.3.0`` +``3.11.5`` | | ``GCCcore/13.2.0`` +``3.12.3`` | | ``GCCcore/13.3.0`` +``3.5.1`` | | ``foss/2016a`` +``3.5.1`` | | ``intel/2016a`` +``3.5.2`` | ``-bare`` | ``GCC/5.4.0-2.26`` +``3.5.2`` | | ``foss/2016.04`` +``3.5.2`` | | ``foss/2016b`` +``3.5.2`` | ``-bare`` | ``iccifort/2016.3.210-GCC-5.4.0-2.26`` +``3.5.2`` | | ``intel/2016b`` +``3.6.1`` | | ``foss/2017a`` +``3.6.1`` | | ``intel/2017a`` +``3.6.2`` | | ``foss/2017b`` +``3.6.2`` | | ``intel/2017b`` +``3.6.2`` | | ``intel/2018.00`` +``3.6.3`` | | ``foss/2017b`` +``3.6.3`` | | ``fosscuda/2017b`` +``3.6.3`` | | ``intel/2017b`` +``3.6.3`` | | ``intel/2018.01`` +``3.6.3`` | | ``intelcuda/2017b`` +``3.6.4`` | | ``foss/2017a`` +``3.6.4`` | | ``foss/2018a`` +``3.6.4`` | | ``fosscuda/2018a`` +``3.6.4`` | | ``golf/2018a`` +``3.6.4`` | | ``iimkl/2018a`` +``3.6.4`` | | ``intel/2018a`` +``3.6.4`` | | ``iomkl/2018.02`` +``3.6.4`` | | ``iomkl/2018a`` +``3.6.6`` | | ``foss/2018b`` +``3.6.6`` | | ``fosscuda/2018b`` +``3.6.6`` | | ``intel/2018b`` +``3.6.6`` | | ``iomkl/2018b`` +``3.7.0`` | | ``foss/2018b`` +``3.7.0`` | | ``intel/2018b`` +``3.7.0`` | | ``iomkl/2018b`` +``3.7.2`` | | ``GCCcore/8.2.0`` +``3.7.4`` | | ``GCCcore/8.3.0`` +``3.8.2`` | | ``GCCcore/9.3.0`` +``3.8.6`` | | ``GCCcore/10.2.0`` +``3.9.5`` | ``-bare`` | ``GCCcore/10.3.0`` +``3.9.5`` | | ``GCCcore/10.3.0`` +``3.9.6`` | ``-bare`` | ``GCCcore/11.2.0`` +``3.9.6`` | | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/index.md b/docs/version-specific/supported-software/p/index.md new file mode 100644 index 000000000..7ca3438cb --- /dev/null +++ b/docs/version-specific/supported-software/p/index.md @@ -0,0 +1,450 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (p) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - *p* - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [p11-kit](p11-kit.md) + * [p4-phylogenetics](p4-phylogenetics.md) + * [p4est](p4est.md) + * [p4vasp](p4vasp.md) + * [p7zip](p7zip.md) + * [packmol](packmol.md) + * [PAGAN2](PAGAN2.md) + * [pagmo](pagmo.md) + * [pairsnp](pairsnp.md) + * [PAL2NAL](PAL2NAL.md) + * [paladin](paladin.md) + * [PALEOMIX](PALEOMIX.md) + * [PAML](PAML.md) + * [panaroo](panaroo.md) + * [pandapower](pandapower.md) + * [pandas](pandas.md) + * [pandas-datareader](pandas-datareader.md) + * [PANDAseq](PANDAseq.md) + * [Pandoc](Pandoc.md) + * [Panedr](Panedr.md) + * [Pango](Pango.md) + * [pangolin](pangolin.md) + * [panito](panito.md) + * [PAPI](PAPI.md) + * [parallel](parallel.md) + * [parallel-fastq-dump](parallel-fastq-dump.md) + * [Parallel-Hashmap](Parallel-Hashmap.md) + * [ParallelIO](ParallelIO.md) + * [parameterized](parameterized.md) + * [paramiko](paramiko.md) + * [parasail](parasail.md) + * [Paraver](Paraver.md) + * [ParaView](ParaView.md) + * [Parcels](Parcels.md) + * [PARI-GP](PARI-GP.md) + * [ParmEd](ParmEd.md) + * [ParMETIS](ParMETIS.md) + * [ParMGridGen](ParMGridGen.md) + * [Parsl](Parsl.md) + * [PartitionFinder](PartitionFinder.md) + * [PASA](PASA.md) + * [pasta](pasta.md) + * [PaStiX](PaStiX.md) + * [pastml](pastml.md) + * [patch](patch.md) + * [patchelf](patchelf.md) + * [path.py](path.py.md) + * [PAUP](PAUP.md) + * [pauvre](pauvre.md) + * [pbbam](pbbam.md) + * [pbcopper](pbcopper.md) + * [pbdagcon](pbdagcon.md) + * [pbipa](pbipa.md) + * [pblat](pblat.md) + * [pbmm2](pbmm2.md) + * [pbs_python](pbs_python.md) + * [PBSuite](PBSuite.md) + * [PBZIP2](PBZIP2.md) + * [PCAngsd](PCAngsd.md) + * [PCC](PCC.md) + * [PCL](PCL.md) + * [PCMSolver](PCMSolver.md) + * [PCRaster](PCRaster.md) + * [PCRE](PCRE.md) + * [PCRE2](PCRE2.md) + * [pdf2docx](pdf2docx.md) + * [PDM](PDM.md) + * [pdsh](pdsh.md) + * [PDT](PDT.md) + * [peakdetect](peakdetect.md) + * [PEAR](PEAR.md) + * [PennCNV](PennCNV.md) + * [PEPT](PEPT.md) + * [Percolator](Percolator.md) + * [Perl](Perl.md) + * [perl-app-cpanminus](perl-app-cpanminus.md) + * [Perl-bundle-CPAN](Perl-bundle-CPAN.md) + * [Perl4-CoreLibs](Perl4-CoreLibs.md) + * [Perseus](Perseus.md) + * [PEST++](PEST++.md) + * [PETSc](PETSc.md) + * [petsc4py](petsc4py.md) + * [PfamScan](PfamScan.md) + * [PFFT](PFFT.md) + * [pfind](pfind.md) + * [pftoolsV3](pftoolsV3.md) + * [pFUnit](pFUnit.md) + * [PGDSpider](PGDSpider.md) + * [PGI](PGI.md) + * [PGPLOT](PGPLOT.md) + * [PHANOTATE](PHANOTATE.md) + * [Phantompeakqualtools](Phantompeakqualtools.md) + * [PHASE](PHASE.md) + * [PHAST](PHAST.md) + * [Phenoflow](Phenoflow.md) + * [PheWAS](PheWAS.md) + * [PheWeb](PheWeb.md) + * [Philosopher](Philosopher.md) + * [PhiPack](PhiPack.md) + * [PHLAT](PHLAT.md) + * [phonemizer](phonemizer.md) + * [phono3py](phono3py.md) + * [phonopy](phonopy.md) + * [photontorch](photontorch.md) + * [phototonic](phototonic.md) + * [PHYLIP](PHYLIP.md) + * [PhyloBayes-MPI](PhyloBayes-MPI.md) + * [phylokit](phylokit.md) + * [phylonaut](phylonaut.md) + * [PhyloPhlAn](PhyloPhlAn.md) + * [phyluce](phyluce.md) + * [PhyML](PhyML.md) + * [phyx](phyx.md) + * [picard](picard.md) + * [PICI-LIGGGHTS](PICI-LIGGGHTS.md) + * [PICRUSt2](PICRUSt2.md) + * [pigz](pigz.md) + * [PIL](PIL.md) + * [PileOMeth](PileOMeth.md) + * [Pillow](Pillow.md) + * [Pillow-SIMD](Pillow-SIMD.md) + * [Pilon](Pilon.md) + * [PIMS](PIMS.md) + * [Pindel](Pindel.md) + * [Pingouin](Pingouin.md) + * [Pint](Pint.md) + * [pip](pip.md) + * [PIPITS](PIPITS.md) + * [PIRATE](PIRATE.md) + * [pIRS](pIRS.md) + * [Pisces](Pisces.md) + * [piSvM](piSvM.md) + * [piSvM-JSC](piSvM-JSC.md) + * [pixman](pixman.md) + * [pizzly](pizzly.md) + * [pkg-config](pkg-config.md) + * [pkgconf](pkgconf.md) + * [pkgconfig](pkgconfig.md) + * [PLAMS](PLAMS.md) + * [planarity](planarity.md) + * [plantcv](plantcv.md) + * [plantri](plantri.md) + * [PlaScope](PlaScope.md) + * [PlasmaPy](PlasmaPy.md) + * [PLAST](PLAST.md) + * [Platanus](Platanus.md) + * [Platypus](Platypus.md) + * [Platypus-Opt](Platypus-Opt.md) + * [plc](plc.md) + * [PLINK](PLINK.md) + * [plinkliftover](plinkliftover.md) + * [plinkQC](plinkQC.md) + * [PLINKSEQ](PLINKSEQ.md) + * [plmc](plmc.md) + * [plot1cell](plot1cell.md) + * [Ploticus](Ploticus.md) + * [plotly](plotly.md) + * [plotly-orca](plotly-orca.md) + * [plotly.py](plotly.py.md) + * [plotutils](plotutils.md) + * [PLplot](PLplot.md) + * [PLUMED](PLUMED.md) + * [PLY](PLY.md) + * [PMIx](PMIx.md) + * [pmt](pmt.md) + * [pmx](pmx.md) + * [PnetCDF](PnetCDF.md) + * [pocl](pocl.md) + * [pod5-file-format](pod5-file-format.md) + * [poetry](poetry.md) + * [polars](polars.md) + * [polymake](polymake.md) + * [pomkl](pomkl.md) + * [pompi](pompi.md) + * [poppler](poppler.md) + * [poppunk](poppunk.md) + * [popscle](popscle.md) + * [popt](popt.md) + * [Porechop](Porechop.md) + * [porefoam](porefoam.md) + * [poretools](poretools.md) + * [PortAudio](PortAudio.md) + * [Portcullis](Portcullis.md) + * [PortMidi](PortMidi.md) + * [Postgres-XL](Postgres-XL.md) + * [PostgreSQL](PostgreSQL.md) + * [POT](POT.md) + * [POV-Ray](POV-Ray.md) + * [powerlaw](powerlaw.md) + * [pp-sketchlib](pp-sketchlib.md) + * [PPanGGOLiN](PPanGGOLiN.md) + * [PPfold](PPfold.md) + * [ppl](ppl.md) + * [pplacer](pplacer.md) + * [pplpy](pplpy.md) + * [PRANK](PRANK.md) + * [PRC](PRC.md) + * [preCICE](preCICE.md) + * [premailer](premailer.md) + * [PREQUAL](PREQUAL.md) + * [preseq](preseq.md) + * [presto](presto.md) + * [pretty-yaml](pretty-yaml.md) + * [primecount](primecount.md) + * [primecountpy](primecountpy.md) + * [Primer3](Primer3.md) + * [PRINSEQ](PRINSEQ.md) + * [printproto](printproto.md) + * [PRISMS-PF](PRISMS-PF.md) + * [ProbABEL](ProbABEL.md) + * [ProBiS](ProBiS.md) + * [prodigal](prodigal.md) + * [ProFit](ProFit.md) + * [PROJ](PROJ.md) + * [ProjectQ](ProjectQ.md) + * [prokka](prokka.md) + * [prompt-toolkit](prompt-toolkit.md) + * [proovread](proovread.md) + * [propy](propy.md) + * [ProteinMPNN](ProteinMPNN.md) + * [Proteinortho](Proteinortho.md) + * [ProtHint](ProtHint.md) + * [protobuf](protobuf.md) + * [protobuf-python](protobuf-python.md) + * [protozero](protozero.md) + * [PRRTE](PRRTE.md) + * [PRSice](PRSice.md) + * [PSASS](PSASS.md) + * [pscom](pscom.md) + * [PSI](PSI.md) + * [PSI4](PSI4.md) + * [PsiCLASS](PsiCLASS.md) + * [PSIPRED](PSIPRED.md) + * [PSM2](PSM2.md) + * [psmc](psmc.md) + * [psmpi](psmpi.md) + * [psmpi2](psmpi2.md) + * [PSolver](PSolver.md) + * [PSORTb](PSORTb.md) + * [psrecord](psrecord.md) + * [pstoedit](pstoedit.md) + * [psutil](psutil.md) + * [psycopg](psycopg.md) + * [psycopg2](psycopg2.md) + * [ptemcee](ptemcee.md) + * [PTESFinder](PTESFinder.md) + * [pubtcrs](pubtcrs.md) + * [pugixml](pugixml.md) + * [pullseq](pullseq.md) + * [PuLP](PuLP.md) + * [purge_dups](purge_dups.md) + * [pv](pv.md) + * [py](py.md) + * [py-aiger](py-aiger.md) + * [py-aiger-bdd](py-aiger-bdd.md) + * [py-c3d](py-c3d.md) + * [py-cpuinfo](py-cpuinfo.md) + * [py3Dmol](py3Dmol.md) + * [pyABC](pyABC.md) + * [PyAEDT](PyAEDT.md) + * [PyAMG](PyAMG.md) + * [PyAPS3](PyAPS3.md) + * [PyAV](PyAV.md) + * [pybedtools](pybedtools.md) + * [PyBerny](PyBerny.md) + * [pyBigWig](pyBigWig.md) + * [pybind11](pybind11.md) + * [pybind11-stubgen](pybind11-stubgen.md) + * [pybinding](pybinding.md) + * [PyBioLib](PyBioLib.md) + * [PyCairo](PyCairo.md) + * [PyCalib](PyCalib.md) + * [pyccel](pyccel.md) + * [PyCharm](PyCharm.md) + * [PyCheMPS2](PyCheMPS2.md) + * [Pychopper](Pychopper.md) + * [PyCifRW](PyCifRW.md) + * [PyClone](PyClone.md) + * [pycma](pycma.md) + * [pycocotools](pycocotools.md) + * [pycodestyle](pycodestyle.md) + * [PyCogent](PyCogent.md) + * [pycoQC](pycoQC.md) + * [pycubescd](pycubescd.md) + * [PyCUDA](PyCUDA.md) + * [PycURL](PycURL.md) + * [PyDamage](PyDamage.md) + * [pydantic](pydantic.md) + * [PyDatastream](PyDatastream.md) + * [pydicom](pydicom.md) + * [pydicom-seg](pydicom-seg.md) + * [pydlpoly](pydlpoly.md) + * [pydot](pydot.md) + * [pyEGA3](pyEGA3.md) + * [pyenchant](pyenchant.md) + * [PyEVTK](PyEVTK.md) + * [PyEXR](PyEXR.md) + * [pyFAI](pyFAI.md) + * [pyfaidx](pyfaidx.md) + * [pyfasta](pyfasta.md) + * [PyFFmpeg](PyFFmpeg.md) + * [pyFFTW](pyFFTW.md) + * [pyfits](pyfits.md) + * [PyFMI](PyFMI.md) + * [PyFoam](PyFoam.md) + * [PyFR](PyFR.md) + * [PyFrag](PyFrag.md) + * [pyGAM](pyGAM.md) + * [pygame](pygame.md) + * [pygccxml](pygccxml.md) + * [pyGenomeTracks](pyGenomeTracks.md) + * [PyGEOS](PyGEOS.md) + * [pyGIMLi](pyGIMLi.md) + * [Pygments](Pygments.md) + * [pygmo](pygmo.md) + * [PyGObject](PyGObject.md) + * [pygraphviz](pygraphviz.md) + * [pygrib](pygrib.md) + * [PyGTK](PyGTK.md) + * [PyGTS](PyGTS.md) + * [PyGWAS](PyGWAS.md) + * [pyhdf](pyhdf.md) + * [PyHMMER](PyHMMER.md) + * [PyImageJ](PyImageJ.md) + * [PyInstaller](PyInstaller.md) + * [pyiron](pyiron.md) + * [Pyke3](Pyke3.md) + * [pylift](pylift.md) + * [Pylint](Pylint.md) + * [pylipid](pylipid.md) + * [pyMannKendall](pyMannKendall.md) + * [pymatgen](pymatgen.md) + * [pymatgen-db](pymatgen-db.md) + * [pymbar](pymbar.md) + * [PyMC](PyMC.md) + * [PyMC3](PyMC3.md) + * [pymca](pymca.md) + * [pymemcache](pymemcache.md) + * [PyMOL](PyMOL.md) + * [PyNAST](PyNAST.md) + * [pyobjcryst](pyobjcryst.md) + * [PyOD](PyOD.md) + * [pyodbc](pyodbc.md) + * [Pyomo](Pyomo.md) + * [PyOpenCL](PyOpenCL.md) + * [PyOpenGL](PyOpenGL.md) + * [pyparsing](pyparsing.md) + * [pyperf](pyperf.md) + * [pyplusplus](pyplusplus.md) + * [pypmt](pypmt.md) + * [PYPOWER](PYPOWER.md) + * [pyproj](pyproj.md) + * [PyPSA](PyPSA.md) + * [PyPy](PyPy.md) + * [pyqstem](pyqstem.md) + * [PyQt](PyQt.md) + * [PyQt-builder](PyQt-builder.md) + * [PyQt5](PyQt5.md) + * [PyQtGraph](PyQtGraph.md) + * [pyradiomics](pyradiomics.md) + * [PyRe](PyRe.md) + * [PyRETIS](PyRETIS.md) + * [pyringe](pyringe.md) + * [pyro-api](pyro-api.md) + * [pyro-ppl](pyro-ppl.md) + * [Pyro4](Pyro4.md) + * [PyRosetta](PyRosetta.md) + * [Pysam](Pysam.md) + * [pysamstats](pysamstats.md) + * [PySAT](PySAT.md) + * [pyScaf](pyScaf.md) + * [pySCENIC](pySCENIC.md) + * [PySCF](PySCF.md) + * [pyseer](pyseer.md) + * [pysheds](pysheds.md) + * [pyshp](pyshp.md) + * [PySide2](PySide2.md) + * [PySINDy](PySINDy.md) + * [pyslim](pyslim.md) + * [pysndfx](pysndfx.md) + * [Pysolar](Pysolar.md) + * [pyspoa](pyspoa.md) + * [pysqlite](pysqlite.md) + * [PyStan](PyStan.md) + * [pysteps](pysteps.md) + * [pystran](pystran.md) + * [PyTables](PyTables.md) + * [PyTensor](PyTensor.md) + * [pytesseract](pytesseract.md) + * [pytest](pytest.md) + * [pytest-benchmark](pytest-benchmark.md) + * [pytest-cpp](pytest-cpp.md) + * [pytest-flakefinder](pytest-flakefinder.md) + * [pytest-rerunfailures](pytest-rerunfailures.md) + * [pytest-shard](pytest-shard.md) + * [pytest-workflow](pytest-workflow.md) + * [pytest-xdist](pytest-xdist.md) + * [pythermalcomfort](pythermalcomfort.md) + * [PYTHIA](PYTHIA.md) + * [Python](Python.md) + * [Python-bundle](Python-bundle.md) + * [Python-bundle-PyPI](Python-bundle-PyPI.md) + * [python-casacore](python-casacore.md) + * [python-docx](python-docx.md) + * [python-hl7](python-hl7.md) + * [python-igraph](python-igraph.md) + * [python-irodsclient](python-irodsclient.md) + * [python-isal](python-isal.md) + * [python-Levenshtein](python-Levenshtein.md) + * [python-libsbml](python-libsbml.md) + * [python-louvain](python-louvain.md) + * [python-mujoco](python-mujoco.md) + * [python-parasail](python-parasail.md) + * [python-telegram-bot](python-telegram-bot.md) + * [python-weka-wrapper3](python-weka-wrapper3.md) + * [python-xxhash](python-xxhash.md) + * [pythran](pythran.md) + * [PyTorch](PyTorch.md) + * [pytorch-3dunet](pytorch-3dunet.md) + * [PyTorch-bundle](PyTorch-bundle.md) + * [pytorch-CycleGAN-pix2pix](pytorch-CycleGAN-pix2pix.md) + * [PyTorch-Geometric](PyTorch-Geometric.md) + * [PyTorch-Ignite](PyTorch-Ignite.md) + * [PyTorch-Image-Models](PyTorch-Image-Models.md) + * [PyTorch-Lightning](PyTorch-Lightning.md) + * [PyTorch3D](PyTorch3D.md) + * [PyTorchVideo](PyTorchVideo.md) + * [PyVCF](PyVCF.md) + * [PyVCF3](PyVCF3.md) + * [PyVista](PyVista.md) + * [pyWannier90](pyWannier90.md) + * [PyWavelets](PyWavelets.md) + * [PyWBGT](PyWBGT.md) + * [pyXDF](pyXDF.md) + * [PyYAML](PyYAML.md) + * [PyZMQ](PyZMQ.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - *p* - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/p11-kit.md b/docs/version-specific/supported-software/p/p11-kit.md new file mode 100644 index 000000000..3d333d9dd --- /dev/null +++ b/docs/version-specific/supported-software/p/p11-kit.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# p11-kit + +Provides a way to load and enumerate PKCS#11 modules. Provides a standard configuration setup for installing PKCS#11 modules in such a way that they're discoverable. Also solves problems with coordinating the use of PKCS#11 by different components or libraries living in the same process. + +*homepage*: + +version | toolchain +--------|---------- +``0.23.2`` | ``GCCcore/5.4.0`` +``0.23.2`` | ``GNU/4.9.3-2.25`` +``0.23.2`` | ``foss/2016a`` +``0.23.2`` | ``intel/2016a`` +``0.24.0`` | ``GCCcore/10.3.0`` +``0.24.1`` | ``GCCcore/11.2.0`` +``0.24.1`` | ``GCCcore/11.3.0`` +``0.25.3`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/p4-phylogenetics.md b/docs/version-specific/supported-software/p/p4-phylogenetics.md new file mode 100644 index 000000000..e447253d7 --- /dev/null +++ b/docs/version-specific/supported-software/p/p4-phylogenetics.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# p4-phylogenetics + +A Python phyloinformatic toolkit, and an implementation of tree-heterogeneous models of evolution. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4-20210322`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/p4est.md b/docs/version-specific/supported-software/p/p4est.md new file mode 100644 index 000000000..ba92d0919 --- /dev/null +++ b/docs/version-specific/supported-software/p/p4est.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# p4est + +p4est is a C library to manage a collection (a forest) of multiple connected adaptive quadtrees or octrees in parallel. + +*homepage*: + +version | toolchain +--------|---------- +``2.2`` | ``foss/2019a`` +``2.2`` | ``intel/2019a`` +``2.8`` | ``foss/2021a`` +``2.8.6`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/p4vasp.md b/docs/version-specific/supported-software/p/p4vasp.md new file mode 100644 index 000000000..01999ee02 --- /dev/null +++ b/docs/version-specific/supported-software/p/p4vasp.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# p4vasp + +Visualization suite for VASP + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.29`` | ``-Python-2.7.11`` | ``intel/2016a`` +``0.3.30`` | ``-Python-2.7.15`` | ``foss/2018b`` +``0.3.30`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.3.30`` | ``-Python-2.7.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/p7zip.md b/docs/version-specific/supported-software/p/p7zip.md new file mode 100644 index 000000000..5ebc24c6b --- /dev/null +++ b/docs/version-specific/supported-software/p/p7zip.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# p7zip + +p7zip is a quick port of 7z.exe and 7za.exe (command line version of 7zip) for Unix. 7-Zip is a file archiver with highest compression ratio. + +*homepage*: + +version | toolchain +--------|---------- +``16.02`` | ``GCC/6.4.0-2.28`` +``16.02`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` +``16.02`` | ``intel/2018a`` +``17.03`` | ``GCCcore/10.2.0`` +``17.04`` | ``GCCcore/10.3.0`` +``17.04`` | ``GCCcore/11.2.0`` +``17.04`` | ``GCCcore/11.3.0`` +``17.04`` | ``GCCcore/12.3.0`` +``9.38.1`` | ``GCC/4.9.2`` +``9.38.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pFUnit.md b/docs/version-specific/supported-software/p/pFUnit.md new file mode 100644 index 000000000..3d6cfc3dc --- /dev/null +++ b/docs/version-specific/supported-software/p/pFUnit.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# pFUnit + +pFUnit is a unit testing framework enabling JUnit-like testing of serial and MPI-parallel software written in Fortran. + +*homepage*: + +version | toolchain +--------|---------- +``3.2.9`` | ``gompi/2018b`` +``4.2.0`` | ``gompi/2020b`` +``4.2.0`` | ``iimpi/2021a`` +``4.7.3`` | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pIRS.md b/docs/version-specific/supported-software/p/pIRS.md new file mode 100644 index 000000000..d7ca66bdd --- /dev/null +++ b/docs/version-specific/supported-software/p/pIRS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pIRS + +pIRS (profile based Illumina pair-end Reads Simulator) is a program for simulating paired-end reads from a reference genome. It is optimized for simulating reads similar to those generated from the Illumina platform. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.2`` | ``gompi/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/packmol.md b/docs/version-specific/supported-software/p/packmol.md new file mode 100644 index 000000000..1ee1db50a --- /dev/null +++ b/docs/version-specific/supported-software/p/packmol.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# packmol + +Packing Optimization for Molecular Dynamics Simulations + +*homepage*: + +version | toolchain +--------|---------- +``16.103`` | ``intel/2016a`` +``18.013`` | ``foss/2018a`` +``18.013`` | ``intel/2018a`` +``20.2.2`` | ``GCC/10.2.0`` +``v20.2.2`` | ``iccifort/2020.1.217`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pagmo.md b/docs/version-specific/supported-software/p/pagmo.md new file mode 100644 index 000000000..44a5bd7fa --- /dev/null +++ b/docs/version-specific/supported-software/p/pagmo.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# pagmo + +pagmo is a C++ scientific library for massively parallel optimization. + +*homepage*: + +version | toolchain +--------|---------- +``2.17.0`` | ``foss/2020b`` +``2.18.0`` | ``foss/2021a`` +``2.18.0`` | ``foss/2021b`` +``2.18.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pairsnp.md b/docs/version-specific/supported-software/p/pairsnp.md new file mode 100644 index 000000000..9fbef0f41 --- /dev/null +++ b/docs/version-specific/supported-software/p/pairsnp.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pairsnp + +A set of scripts for very quickly obtaining pairwise SNP distance matrices from multiple sequence alignments using sparse matrix libraries to improve performance. + +*homepage*: + +version | toolchain +--------|---------- +``0.0.7`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/paladin.md b/docs/version-specific/supported-software/p/paladin.md new file mode 100644 index 000000000..d790d6240 --- /dev/null +++ b/docs/version-specific/supported-software/p/paladin.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# paladin + +Protein ALignment And Detection INterface PALADIN is a protein sequence alignment tool designed for the accurate functional characterization of metagenomes. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.6`` | ``GCCcore/10.3.0`` +``1.4.6`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/panaroo.md b/docs/version-specific/supported-software/p/panaroo.md new file mode 100644 index 000000000..85288580d --- /dev/null +++ b/docs/version-specific/supported-software/p/panaroo.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# panaroo + +A pangenome analysis pipeline. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.8`` | ``foss/2020b`` +``1.2.9`` | ``foss/2021a`` +``1.3.2`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pandapower.md b/docs/version-specific/supported-software/p/pandapower.md new file mode 100644 index 000000000..92c9e594f --- /dev/null +++ b/docs/version-specific/supported-software/p/pandapower.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pandapower + +An easy to use open source tool for power system modeling, analysis and optimization with a high degree of automation + +*homepage*: + +version | toolchain +--------|---------- +``2.7.0`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pandas-datareader.md b/docs/version-specific/supported-software/p/pandas-datareader.md new file mode 100644 index 000000000..46e70da9a --- /dev/null +++ b/docs/version-specific/supported-software/p/pandas-datareader.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pandas-datareader + +Up to date remote data access for pandas, works for multiple versions of pandas. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7.0`` | ``-Python-3.6.4`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pandas.md b/docs/version-specific/supported-software/p/pandas.md new file mode 100644 index 000000000..c22c26013 --- /dev/null +++ b/docs/version-specific/supported-software/p/pandas.md @@ -0,0 +1,32 @@ +--- +search: + boost: 0.5 +--- +# pandas + +pandas is an open source, BSD-licensed library providing high-performance, easy-to-use data structures and data analysis tools for the Python programming language. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.18.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``0.18.0`` | ``-Python-3.5.1`` | ``foss/2016a`` +``0.18.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``0.18.0`` | ``-Python-3.5.1`` | ``intel/2016a`` +``0.18.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.18.1`` | ``-Python-3.5.2`` | ``intel/2016b`` +``0.19.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``0.19.0`` | ``-Python-3.5.2`` | ``foss/2016b`` +``0.19.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.19.0`` | ``-Python-3.5.2`` | ``intel/2016b`` +``0.19.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.19.1`` | ``-Python-3.5.2`` | ``intel/2016b`` +``0.20.1`` | ``-Python-3.6.1`` | ``intel/2017a`` +``0.21.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``0.21.0`` | ``-Python-3.6.3`` | ``intel/2017b`` +``1.1.2`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pangolin.md b/docs/version-specific/supported-software/p/pangolin.md new file mode 100644 index 000000000..416afdfba --- /dev/null +++ b/docs/version-specific/supported-software/p/pangolin.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# pangolin + +Software package for assigning SARS-CoV-2 genome sequences to global lineages. This module also contains the faToVcf tool + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.1.11`` | | ``foss/2020b`` +``3.1.16`` | ``-pangoLEARN-2021-10-18`` | ``foss/2021b`` +``3.1.16`` | ``-pangoLEARN-2021-11-25`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/panito.md b/docs/version-specific/supported-software/p/panito.md new file mode 100644 index 000000000..4558cd663 --- /dev/null +++ b/docs/version-specific/supported-software/p/panito.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# panito + +Calculate genome wide average nucleotide identity (gwANI) for a multiFASTA alignment. + +*homepage*: + +version | toolchain +--------|---------- +``0.0.1`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/parallel-fastq-dump.md b/docs/version-specific/supported-software/p/parallel-fastq-dump.md new file mode 100644 index 000000000..7bdf89be8 --- /dev/null +++ b/docs/version-specific/supported-software/p/parallel-fastq-dump.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# parallel-fastq-dump + +parallel fastq-dump wrapper + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.6.5`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` +``0.6.6`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``0.6.7`` | | ``gompi/2020b`` +``0.6.7`` | | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/parallel.md b/docs/version-specific/supported-software/p/parallel.md new file mode 100644 index 000000000..1cd547f63 --- /dev/null +++ b/docs/version-specific/supported-software/p/parallel.md @@ -0,0 +1,39 @@ +--- +search: + boost: 0.5 +--- +# parallel + +parallel: Build and execute shell commands in parallel + +*homepage*: + +version | toolchain +--------|---------- +``20141122`` | ``GCC/4.9.2`` +``20150322`` | ``GCC/4.9.2`` +``20150822`` | ``GCC/4.9.2`` +``20160622`` | ``foss/2016a`` +``20170822`` | ``intel/2017a`` +``20171022`` | ``intel/2017b`` +``20171122`` | ``foss/2017b`` +``20171122`` | ``intel/2017b`` +``20180422`` | ``intel/2018a`` +``20180822`` | ``foss/2018b`` +``20181222`` | ``intel/2018b`` +``20190222`` | ``GCCcore/7.3.0`` +``20190622`` | ``GCCcore/8.2.0`` +``20190922`` | ``GCCcore/8.3.0`` +``20200422`` | ``GCCcore/9.3.0`` +``20200522`` | ``GCCcore/9.3.0`` +``20210322`` | ``GCCcore/10.2.0`` +``20210622`` | ``GCCcore/10.3.0`` +``20210722`` | ``GCCcore/11.2.0`` +``20220722`` | ``GCCcore/11.3.0`` +``20230722`` | ``GCCcore/12.2.0`` +``20230722`` | ``GCCcore/12.3.0`` +``20240322`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/parameterized.md b/docs/version-specific/supported-software/p/parameterized.md new file mode 100644 index 000000000..e7625af4b --- /dev/null +++ b/docs/version-specific/supported-software/p/parameterized.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# parameterized + +Parameterized testing with any Python test framework + +*homepage*: + +version | toolchain +--------|---------- +``0.8.1`` | ``GCCcore/10.3.0`` +``0.9.0`` | ``GCCcore/11.3.0`` +``0.9.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/paramiko.md b/docs/version-specific/supported-software/p/paramiko.md new file mode 100644 index 000000000..67eb78a46 --- /dev/null +++ b/docs/version-specific/supported-software/p/paramiko.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# paramiko + +Paramiko is a pure-Python (3.6+) implementation of the SSHv2 protocol, providing both client and server functionality. It provides the foundation for the high-level SSH library Fabric, which is what we recommend you use for common client use-cases such as running remote shell commands or transferring files. + +*homepage*: + +version | toolchain +--------|---------- +``3.2.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/parasail.md b/docs/version-specific/supported-software/p/parasail.md new file mode 100644 index 000000000..afc07b309 --- /dev/null +++ b/docs/version-specific/supported-software/p/parasail.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# parasail + +parasail is a SIMD C (C99) library containing implementations of the Smith-Waterman (local), Needleman-Wunsch (global), and semi-global pairwise sequence alignment algorithms. + +*homepage*: + +version | toolchain +--------|---------- +``2.2`` | ``intel/2018a`` +``2.4`` | ``foss/2018b`` +``2.4.1`` | ``GCC/8.3.0`` +``2.4.1`` | ``intel/2019b`` +``2.4.2`` | ``GCC/9.3.0`` +``2.4.2`` | ``iccifort/2020.1.217`` +``2.4.3`` | ``GCC/10.2.0`` +``2.4.3`` | ``GCC/10.3.0`` +``2.5`` | ``GCC/11.2.0`` +``2.6`` | ``GCC/11.3.0`` +``2.6.2`` | ``GCC/12.2.0`` +``2.6.2`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pasta.md b/docs/version-specific/supported-software/p/pasta.md new file mode 100644 index 000000000..740a3af21 --- /dev/null +++ b/docs/version-specific/supported-software/p/pasta.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pasta + +PASTA (Practical Alignment using SATe and Transitivity) + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.8.5`` | ``-Python-3.7.2`` | ``GCC/8.2.0-2.31.1`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pastml.md b/docs/version-specific/supported-software/p/pastml.md new file mode 100644 index 000000000..a06ac4249 --- /dev/null +++ b/docs/version-specific/supported-software/p/pastml.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pastml + +Ancestor character reconstruction and visualisation for rooted phylogenetic trees + +*homepage*: + +version | toolchain +--------|---------- +``1.9.34`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/patch.md b/docs/version-specific/supported-software/p/patch.md new file mode 100644 index 000000000..dfe7a6e36 --- /dev/null +++ b/docs/version-specific/supported-software/p/patch.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# patch + +Patch takes a patch file containing a difference listing produced by the diff program and applies those differences to one or more original files, producing patched versions. + +*homepage*: + +version | toolchain +--------|---------- +``2.7.6`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/patchelf.md b/docs/version-specific/supported-software/p/patchelf.md new file mode 100644 index 000000000..155695409 --- /dev/null +++ b/docs/version-specific/supported-software/p/patchelf.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# patchelf + +PatchELF is a small utility to modify the dynamic linker and RPATH of ELF executables. + +*homepage*: + +version | toolchain +--------|---------- +``0.10`` | ``GCCcore/7.2.0`` +``0.10`` | ``GCCcore/8.3.0`` +``0.12`` | ``GCCcore/10.2.0`` +``0.12`` | ``GCCcore/10.3.0`` +``0.12`` | ``GCCcore/9.3.0`` +``0.13`` | ``GCCcore/11.2.0`` +``0.15.0`` | ``GCCcore/11.3.0`` +``0.17.2`` | ``GCCcore/12.2.0`` +``0.18.0`` | ``GCCcore/12.3.0`` +``0.18.0`` | ``GCCcore/13.2.0`` +``0.18.0`` | ``GCCcore/13.3.0`` +``0.8`` | ``GNU/4.9.3-2.25`` +``0.9`` | ``GCCcore/6.4.0`` +``0.9`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/path.py.md b/docs/version-specific/supported-software/p/path.py.md new file mode 100644 index 000000000..59d554acc --- /dev/null +++ b/docs/version-specific/supported-software/p/path.py.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# path.py + +path.py is a Python library implementing path objects as first-class entities, allowing common operations on files to be invoked on those path objects directly. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``10.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``8.2.1`` | ``-Python-2.7.11`` | ``foss/2016a`` +``8.2.1`` | ``-Python-3.5.1`` | ``foss/2016a`` +``8.2.1`` | ``-Python-2.7.12`` | ``foss/2016b`` +``8.2.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``8.2.1`` | ``-Python-3.5.2`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pauvre.md b/docs/version-specific/supported-software/p/pauvre.md new file mode 100644 index 000000000..84c28e36e --- /dev/null +++ b/docs/version-specific/supported-software/p/pauvre.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# pauvre + +Tools for plotting Oxford Nanopore and other long-read data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1923`` | ``-Python-3.7.4`` | ``intel/2019b`` +``0.1924`` | | ``intel/2020b`` +``0.2.3`` | | ``foss/2021a`` +``0.2.3`` | | ``foss/2022a`` +``0.2.3`` | | ``foss/2022b`` +``0.2.3`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pbbam.md b/docs/version-specific/supported-software/p/pbbam.md new file mode 100644 index 000000000..bb7be94b4 --- /dev/null +++ b/docs/version-specific/supported-software/p/pbbam.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# pbbam + +The pbbam software package provides components to create, query, & edit PacBio BAM files and associated indices. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.6`` | ``gompi/2019a`` +``20170508`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pbcopper.md b/docs/version-specific/supported-software/p/pbcopper.md new file mode 100644 index 000000000..132ad237b --- /dev/null +++ b/docs/version-specific/supported-software/p/pbcopper.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pbcopper + +The pbcopper library provides a suite of data structures, algorithms, and utilities for C++ applications. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.0`` | ``gompi/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pbdagcon.md b/docs/version-specific/supported-software/p/pbdagcon.md new file mode 100644 index 000000000..b89a9744e --- /dev/null +++ b/docs/version-specific/supported-software/p/pbdagcon.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pbdagcon + +pbdagcon is a tool that implements DAGCon (Directed Acyclic Graph Consensus) which is a sequence consensus algorithm based on using directed acyclic graphs to encode multiple sequence alignment. + +*homepage*: + +version | toolchain +--------|---------- +``20170330`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pbipa.md b/docs/version-specific/supported-software/p/pbipa.md new file mode 100644 index 000000000..970e47336 --- /dev/null +++ b/docs/version-specific/supported-software/p/pbipa.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pbipa + +Improved Phased Assembler (IPA) is the official PacBio software for HiFi genome assembly. IPA was designed to utilize the accuracy of PacBio HiFi reads to produce high-quality phased genome assemblies. IPA is an end-to-end solution, starting with input reads and resulting in a polished assembly. IPA is fast, providing an easy to use local run mode or a distributed pipeline for a cluster. + +*homepage*: + +version | toolchain +--------|---------- +``1.8.0`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pblat.md b/docs/version-specific/supported-software/p/pblat.md new file mode 100644 index 000000000..47e8e8ea4 --- /dev/null +++ b/docs/version-specific/supported-software/p/pblat.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pblat + +When the query file format is fasta, you can specify many threads to process it. It can reduce run time linearly, and use almost equal memory as the original blat program. This is useful when you blat a big query file to a huge reference like human whole genome sequence. + +*homepage*: + +version | toolchain +--------|---------- +``2.5.1`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pbmm2.md b/docs/version-specific/supported-software/p/pbmm2.md new file mode 100644 index 000000000..380790d03 --- /dev/null +++ b/docs/version-specific/supported-software/p/pbmm2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pbmm2 + +A minimap2 frontend for PacBio native data formats + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``gompi/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pbs_python.md b/docs/version-specific/supported-software/p/pbs_python.md new file mode 100644 index 000000000..7627e4d2c --- /dev/null +++ b/docs/version-specific/supported-software/p/pbs_python.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# pbs_python + +The pbs_python package is a wrapper class for the Torque C library. With this package you now can write utilities/extensions in Python instead of C. We developed this package because we want to replace xpbsmon by an ascii version named pbsmon. PBSQuery is also included in this package. This is a python module build on top of the pbs python module to simplify querying the batch server, eg: how many jobs, how many nodes, ... + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.6.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``4.6.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``4.6.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``4.6.0`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pdf2docx.md b/docs/version-specific/supported-software/p/pdf2docx.md new file mode 100644 index 000000000..6bc54f084 --- /dev/null +++ b/docs/version-specific/supported-software/p/pdf2docx.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pdf2docx + +Open source Python library converting pdf to docx. + +*homepage*: + +version | toolchain +--------|---------- +``0.5.8`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pdsh.md b/docs/version-specific/supported-software/p/pdsh.md new file mode 100644 index 000000000..b6a2bd90a --- /dev/null +++ b/docs/version-specific/supported-software/p/pdsh.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# pdsh + +A high performance, parallel remote shell utility + +*homepage*: + +version | toolchain +--------|---------- +``2.34`` | ``GCCcore/11.3.0`` +``2.34`` | ``GCCcore/12.2.0`` +``2.34`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/peakdetect.md b/docs/version-specific/supported-software/p/peakdetect.md new file mode 100644 index 000000000..9cfa1c330 --- /dev/null +++ b/docs/version-specific/supported-software/p/peakdetect.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# peakdetect + +Simple peak detection library for Python based on Billauer's work and this gist. + +*homepage*: + +version | toolchain +--------|---------- +``1.2`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/perl-app-cpanminus.md b/docs/version-specific/supported-software/p/perl-app-cpanminus.md new file mode 100644 index 000000000..4b13a3beb --- /dev/null +++ b/docs/version-specific/supported-software/p/perl-app-cpanminus.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# perl-app-cpanminus + +cpanm - get, unpack build and install modules from CPAN + +*homepage*: + +version | toolchain +--------|---------- +``1.7039`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/petsc4py.md b/docs/version-specific/supported-software/p/petsc4py.md new file mode 100644 index 000000000..0214c2e29 --- /dev/null +++ b/docs/version-specific/supported-software/p/petsc4py.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# petsc4py + +petsc4py are Python bindings for PETSc, the Portable, Extensible Toolchain for Scientific Computation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.12.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``3.15.0`` | | ``foss/2021a`` +``3.20.3`` | | ``foss/2023a`` +``3.9.1`` | ``-Python-3.6.4`` | ``foss/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pfind.md b/docs/version-specific/supported-software/p/pfind.md new file mode 100644 index 000000000..99a2f8500 --- /dev/null +++ b/docs/version-specific/supported-software/p/pfind.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pfind + +Drop-in replacement for find, implemented for using parallel access and MPI. + +*homepage*: + +version | toolchain +--------|---------- +``20220613`` | ``gompi/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pftoolsV3.md b/docs/version-specific/supported-software/p/pftoolsV3.md new file mode 100644 index 000000000..338789c1e --- /dev/null +++ b/docs/version-specific/supported-software/p/pftoolsV3.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# pftoolsV3 + +The pftools package contains all the software necessary to build protein and DNA generalized profiles and use them to scan and align sequences, and search databases. + +*homepage*: + +version | toolchain +--------|---------- +``20160324`` | ``foss/2016a`` +``3.2.11`` | ``GCCcore/10.3.0`` +``3.2.11`` | ``foss/2021a`` +``3.2.12`` | ``GCCcore/11.2.0`` +``3.2.12`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/phonemizer.md b/docs/version-specific/supported-software/p/phonemizer.md new file mode 100644 index 000000000..b5aaaee10 --- /dev/null +++ b/docs/version-specific/supported-software/p/phonemizer.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# phonemizer + +The phonemizer allows simple phonemization of words and texts in many languages. Provides both the phonemize command-line tool and the Python function phonemizer.phonemize. It is using four backends: espeak, espeak-mbrola, festival and segments. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.1`` | ``-Python-3.8.2`` | ``gompi/2020a`` +``3.2.1`` | | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/phono3py.md b/docs/version-specific/supported-software/p/phono3py.md new file mode 100644 index 000000000..bd7d009c3 --- /dev/null +++ b/docs/version-specific/supported-software/p/phono3py.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# phono3py + +phono3py calculates phonon-phonon interaction and related properties using the supercell approach. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.12.5.35`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.12.7.55`` | ``-Python-2.7.14`` | ``foss/2018a`` +``1.12.7.55`` | ``-Python-2.7.14`` | ``intel/2018a`` +``2.7.0`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/phonopy.md b/docs/version-specific/supported-software/p/phonopy.md new file mode 100644 index 000000000..0ccaeff8d --- /dev/null +++ b/docs/version-specific/supported-software/p/phonopy.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# phonopy + +Phonopy is an open source package of phonon calculations based on the supercell approach. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.10.1`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.12.2.20`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.12.6.66`` | ``-Python-2.7.14`` | ``foss/2018a`` +``1.12.6.66`` | ``-Python-2.7.14`` | ``intel/2018a`` +``1.13.0.64`` | ``-Python-2.7.14`` | ``intel/2018a`` +``1.14.2`` | ``-Python-2.7.15`` | ``intel/2018b`` +``2.0.0`` | ``-Python-2.7.14`` | ``intel/2018a`` +``2.12.0`` | | ``foss/2020b`` +``2.16.3`` | | ``foss/2022a`` +``2.2.0`` | ``-Python-3.7.2`` | ``intel/2019a`` +``2.20.0`` | | ``foss/2023a`` +``2.7.1`` | ``-Python-3.7.4`` | ``intel/2019b`` +``2.7.1`` | ``-Python-3.8.2`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/photontorch.md b/docs/version-specific/supported-software/p/photontorch.md new file mode 100644 index 000000000..5f1eaca95 --- /dev/null +++ b/docs/version-specific/supported-software/p/photontorch.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# photontorch + +Photontorch is a photonic simulator for highly parallel simulation and optimization of photonic circuits in time and frequency domain. Photontorch features CUDA enabled simulation and optimization of photonic circuits. It leverages the deep learning framework PyTorch to view the photonic circuit as essentially a recurrent neural network. This enables the use of native PyTorch optimizers to optimize the (physical) parameters of the circuit. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.1`` | ``foss/2020b`` +``0.4.1`` | ``foss/2022a`` +``0.4.1`` | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/phototonic.md b/docs/version-specific/supported-software/p/phototonic.md new file mode 100644 index 000000000..689c893b5 --- /dev/null +++ b/docs/version-specific/supported-software/p/phototonic.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# phototonic + +Phototonic is an image viewer and organizer + +*homepage*: + +version | toolchain +--------|---------- +``2.1`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/phylokit.md b/docs/version-specific/supported-software/p/phylokit.md new file mode 100644 index 000000000..4eadd3c0d --- /dev/null +++ b/docs/version-specific/supported-software/p/phylokit.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# phylokit + +C++ library for high performance phylogenetics + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``GCC/8.2.0-2.31.1`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/phylonaut.md b/docs/version-specific/supported-software/p/phylonaut.md new file mode 100644 index 000000000..ed71740e6 --- /dev/null +++ b/docs/version-specific/supported-software/p/phylonaut.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# phylonaut + +Dynamic programming for phylogenetics applications + +*homepage*: + +version | toolchain +--------|---------- +``20190626`` | ``gompi/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/phyluce.md b/docs/version-specific/supported-software/p/phyluce.md new file mode 100644 index 000000000..fbad4b1f9 --- /dev/null +++ b/docs/version-specific/supported-software/p/phyluce.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# phyluce + +phyluce is a software package for working with data generated from sequence capture of UCE (ultra-conserved element) loci, as first published in [BCF2012]. Specifically, phyluce is a suite of programs to: 1) assemble raw sequence reads from Illumina platforms into contigs 2) determine which contigs represent UCE loci 3) filter potentially paralagous UCE loci 4) generate different sets of UCE loci across taxa of interest + +*homepage*: + +version | toolchain +--------|---------- +``1.7.3`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/phyx.md b/docs/version-specific/supported-software/p/phyx.md new file mode 100644 index 000000000..b712bde04 --- /dev/null +++ b/docs/version-specific/supported-software/p/phyx.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# phyx + +phyx performs phylogenetics analyses on trees and sequences. + +*homepage*: + +version | toolchain +--------|---------- +``1.01`` | ``foss/2019a`` +``1.3`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/piSvM-JSC.md b/docs/version-specific/supported-software/p/piSvM-JSC.md new file mode 100644 index 000000000..bb01730c8 --- /dev/null +++ b/docs/version-specific/supported-software/p/piSvM-JSC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# piSvM-JSC + +piSvM is a parallel implementation of the Support Vector Machine (SVM) algorithm that allows efficient training and testing on a multiprocessor system. This version is a fork of the original PiSvM to increase scalability. + +*homepage*: + +version | toolchain +--------|---------- +``1.2-20150622`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/piSvM.md b/docs/version-specific/supported-software/p/piSvM.md new file mode 100644 index 000000000..d87a3766e --- /dev/null +++ b/docs/version-specific/supported-software/p/piSvM.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# piSvM + +piSvM is a parallel implementation of the Support Vector Machine (SVM) algorithm that allows efficient training and testing on a multiprocessor system. + +*homepage*: + +version | toolchain +--------|---------- +``1.3`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/picard.md b/docs/version-specific/supported-software/p/picard.md new file mode 100644 index 000000000..4b21361e5 --- /dev/null +++ b/docs/version-specific/supported-software/p/picard.md @@ -0,0 +1,45 @@ +--- +search: + boost: 0.5 +--- +# picard + +A set of tools (in Java) for working with next generation sequencing data in the BAM format. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.100`` | | ``system`` +``1.109`` | | ``system`` +``1.119`` | ``-Java-1.7.0_80`` | ``system`` +``1.119`` | | ``system`` +``1.120`` | ``-Java-1.8.0_66`` | ``system`` +``1.141`` | ``-Java-1.8.0_74`` | ``system`` +``1.39`` | | ``system`` +``2.0.1`` | ``-Java-1.8.0_66`` | ``system`` +``2.1.0`` | ``-Java-1.8.0_74`` | ``system`` +``2.1.0`` | | ``system`` +``2.1.1`` | ``-Java-1.8.0_112`` | ``system`` +``2.1.1`` | ``-Java-1.8.0_74`` | ``system`` +``2.10.1`` | ``-Java-1.8.0_131`` | ``system`` +``2.18.11`` | ``-Java-1.8.0_162`` | ``system`` +``2.18.14`` | ``-Java-1.8`` | ``system`` +``2.18.17`` | ``-Java-1.8`` | ``system`` +``2.18.27`` | ``-Java-1.8`` | ``system`` +``2.18.5`` | ``-Java-1.8.0_162`` | ``system`` +``2.2.4`` | ``-Java-1.8.0_92`` | ``system`` +``2.20.6`` | ``-Java-1.8`` | ``system`` +``2.21.1`` | ``-Java-11`` | ``system`` +``2.21.6`` | ``-Java-11`` | ``system`` +``2.22.1`` | ``-Java-11`` | ``system`` +``2.25.0`` | ``-Java-11`` | ``system`` +``2.25.1`` | ``-Java-11`` | ``system`` +``2.25.5`` | ``-Java-13`` | ``system`` +``2.26.10`` | ``-Java-15`` | ``system`` +``2.6.0`` | ``-Java-1.8.0_131`` | ``system`` +``3.0.0`` | ``-Java-17`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pigz.md b/docs/version-specific/supported-software/p/pigz.md new file mode 100644 index 000000000..88d8182db --- /dev/null +++ b/docs/version-specific/supported-software/p/pigz.md @@ -0,0 +1,32 @@ +--- +search: + boost: 0.5 +--- +# pigz + +pigz, which stands for parallel implementation of gzip, is a fully functional replacement for gzip that exploits multiple processors and multiple cores to the hilt when compressing data. pigz was written by Mark Adler, and uses the zlib and pthread libraries. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.3`` | ``foss/2016b`` +``2.3.4`` | ``GCCcore/6.4.0`` +``2.4`` | ``GCCcore/10.2.0`` +``2.4`` | ``GCCcore/6.4.0`` +``2.4`` | ``GCCcore/7.3.0`` +``2.4`` | ``GCCcore/8.2.0`` +``2.4`` | ``GCCcore/8.3.0`` +``2.4`` | ``GCCcore/9.3.0`` +``2.4`` | ``foss/2018a`` +``2.6`` | ``GCCcore/10.2.0`` +``2.6`` | ``GCCcore/10.3.0`` +``2.6`` | ``GCCcore/11.2.0`` +``2.7`` | ``GCCcore/11.3.0`` +``2.7`` | ``GCCcore/12.2.0`` +``2.8`` | ``GCCcore/12.3.0`` +``2.8`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pip.md b/docs/version-specific/supported-software/p/pip.md new file mode 100644 index 000000000..eab555b44 --- /dev/null +++ b/docs/version-specific/supported-software/p/pip.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# pip + +The PyPA recommended tool for installing Python packages. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``8.0.2`` | ``-Python-2.7.11`` | ``intel/2016a`` +``8.1.2`` | ``-Python-2.7.11`` | ``foss/2016a`` +``8.1.2`` | ``-Python-2.7.12`` | ``foss/2016b`` +``8.1.2`` | ``-Python-2.7.12`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pixman.md b/docs/version-specific/supported-software/p/pixman.md new file mode 100644 index 000000000..34fbf2ae1 --- /dev/null +++ b/docs/version-specific/supported-software/p/pixman.md @@ -0,0 +1,34 @@ +--- +search: + boost: 0.5 +--- +# pixman + +Pixman is a low-level software library for pixel manipulation, providing features such as image compositing and trapezoid rasterization. Important users of pixman are the cairo graphics library and the X server. + +*homepage*: + +version | toolchain +--------|---------- +``0.34.0`` | ``GCCcore/5.4.0`` +``0.34.0`` | ``GCCcore/6.3.0`` +``0.34.0`` | ``GCCcore/6.4.0`` +``0.34.0`` | ``GCCcore/7.3.0`` +``0.34.0`` | ``foss/2016a`` +``0.34.0`` | ``foss/2016b`` +``0.34.0`` | ``intel/2016a`` +``0.34.0`` | ``intel/2016b`` +``0.38.0`` | ``GCCcore/8.2.0`` +``0.38.4`` | ``GCCcore/8.3.0`` +``0.38.4`` | ``GCCcore/9.3.0`` +``0.40.0`` | ``GCCcore/10.2.0`` +``0.40.0`` | ``GCCcore/10.3.0`` +``0.40.0`` | ``GCCcore/11.2.0`` +``0.40.0`` | ``GCCcore/11.3.0`` +``0.42.2`` | ``GCCcore/12.2.0`` +``0.42.2`` | ``GCCcore/12.3.0`` +``0.42.2`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pizzly.md b/docs/version-specific/supported-software/p/pizzly.md new file mode 100644 index 000000000..9c845dbb8 --- /dev/null +++ b/docs/version-specific/supported-software/p/pizzly.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pizzly + +Pizzly is a program for detecting gene fusions from RNA-Seq data of cancer samples. + +*homepage*: + +version | toolchain +--------|---------- +``0.37.3`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pkg-config.md b/docs/version-specific/supported-software/p/pkg-config.md new file mode 100644 index 000000000..6e8efcc33 --- /dev/null +++ b/docs/version-specific/supported-software/p/pkg-config.md @@ -0,0 +1,46 @@ +--- +search: + boost: 0.5 +--- +# pkg-config + +pkg-config is a helper tool used when compiling applications and libraries. It helps you insert the correct compiler options on the command line so an application can use gcc -o test test.c `pkg-config --libs --cflags glib-2.0` for instance, rather than hard-coding values on where to find glib (or other libraries). + +*homepage*: + +version | toolchain +--------|---------- +``0.28`` | ``GCC/4.8.2`` +``0.28`` | ``GCC/4.9.2`` +``0.28`` | ``GNU/4.9.3-2.25`` +``0.29`` | ``foss/2016a`` +``0.29`` | ``gimkl/2.11.5`` +``0.29`` | ``intel/2016a`` +``0.29.1`` | ``GCCcore/4.9.3`` +``0.29.1`` | ``GCCcore/5.4.0`` +``0.29.1`` | ``GCCcore/6.3.0`` +``0.29.1`` | ``foss/2016a`` +``0.29.1`` | ``foss/2016b`` +``0.29.1`` | ``foss/2017a`` +``0.29.1`` | ``gimkl/2017a`` +``0.29.1`` | ``intel/2016a`` +``0.29.1`` | ``intel/2016b`` +``0.29.1`` | ``intel/2017a`` +``0.29.2`` | ``GCCcore/10.2.0`` +``0.29.2`` | ``GCCcore/10.3.0`` +``0.29.2`` | ``GCCcore/11.2.0`` +``0.29.2`` | ``GCCcore/11.3.0`` +``0.29.2`` | ``GCCcore/12.2.0`` +``0.29.2`` | ``GCCcore/6.3.0`` +``0.29.2`` | ``GCCcore/6.4.0`` +``0.29.2`` | ``GCCcore/7.2.0`` +``0.29.2`` | ``GCCcore/7.3.0`` +``0.29.2`` | ``GCCcore/8.2.0`` +``0.29.2`` | ``GCCcore/8.3.0`` +``0.29.2`` | ``GCCcore/9.3.0`` +``0.29.2`` | ``intel/2017a`` +``0.29.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pkgconf.md b/docs/version-specific/supported-software/p/pkgconf.md new file mode 100644 index 000000000..d92f5c330 --- /dev/null +++ b/docs/version-specific/supported-software/p/pkgconf.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# pkgconf + +pkgconf is a program which helps to configure compiler and linker flags for development libraries. It is similar to pkg-config from freedesktop.org. + +*homepage*: + +version | toolchain +--------|---------- +``1.8.0`` | ``GCCcore/10.3.0`` +``1.8.0`` | ``GCCcore/11.2.0`` +``1.8.0`` | ``GCCcore/11.3.0`` +``1.8.0`` | ``system`` +``1.9.3`` | ``GCCcore/12.2.0`` +``1.9.4`` | ``GCCcore/13.1.0`` +``1.9.5`` | ``GCCcore/12.3.0`` +``2.0.3`` | ``GCCcore/13.2.0`` +``2.2.0`` | ``GCCcore/13.3.0`` +``2.2.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pkgconfig.md b/docs/version-specific/supported-software/p/pkgconfig.md new file mode 100644 index 000000000..072bf3b74 --- /dev/null +++ b/docs/version-specific/supported-software/p/pkgconfig.md @@ -0,0 +1,53 @@ +--- +search: + boost: 0.5 +--- +# pkgconfig + +pkgconfig is a Python module to interface with the pkg-config command line tool + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.1.0`` | ``-Python-3.5.1`` | ``foss/2016a`` +``1.1.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``1.1.0`` | ``-Python-3.5.2`` | ``foss/2016b`` +``1.1.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.1.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.1.0`` | ``-Python-3.5.2`` | ``intel/2016b`` +``1.2.2`` | ``-Python-2.7.13`` | ``foss/2017a`` +``1.2.2`` | ``-Python-3.6.1`` | ``foss/2017a`` +``1.2.2`` | ``-Python-2.7.14`` | ``foss/2017b`` +``1.2.2`` | ``-Python-3.6.3`` | ``foss/2017b`` +``1.2.2`` | ``-Python-2.7.14`` | ``fosscuda/2017b`` +``1.2.2`` | ``-Python-3.6.3`` | ``fosscuda/2017b`` +``1.2.2`` | ``-Python-2.7.13`` | ``intel/2017a`` +``1.2.2`` | ``-Python-3.6.1`` | ``intel/2017a`` +``1.2.2`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.2.2`` | ``-Python-3.6.3`` | ``intel/2017b`` +``1.3.1`` | ``-Python-2.7.14`` | ``foss/2018a`` +``1.3.1`` | ``-Python-3.6.4`` | ``foss/2018a`` +``1.3.1`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.3.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.3.1`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``1.3.1`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``1.3.1`` | ``-Python-2.7.14`` | ``intel/2018a`` +``1.3.1`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.3.1`` | ``-Python-2.7.15`` | ``intel/2018b`` +``1.3.1`` | ``-Python-3.6.6`` | ``intel/2018b`` +``1.5.1`` | ``-python`` | ``GCCcore/10.2.0`` +``1.5.1`` | ``-python`` | ``GCCcore/8.2.0`` +``1.5.1`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``1.5.1`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``1.5.4`` | ``-python`` | ``GCCcore/10.3.0`` +``1.5.5`` | ``-python`` | ``GCCcore/11.2.0`` +``1.5.5`` | ``-python`` | ``GCCcore/11.3.0`` +``1.5.5`` | ``-python`` | ``GCCcore/12.2.0`` +``1.5.5`` | ``-python`` | ``GCCcore/12.3.0`` +``1.5.5`` | ``-python`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/planarity.md b/docs/version-specific/supported-software/p/planarity.md new file mode 100644 index 000000000..ede499331 --- /dev/null +++ b/docs/version-specific/supported-software/p/planarity.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# planarity + +A library for implementing graph algorithms + +*homepage*: + +version | toolchain +--------|---------- +``3.0.2.0`` | ``GCC/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/plantcv.md b/docs/version-specific/supported-software/p/plantcv.md new file mode 100644 index 000000000..14f50cb63 --- /dev/null +++ b/docs/version-specific/supported-software/p/plantcv.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# plantcv + +PlantCV: Plant phenotyping using computer vision. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.8.0`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/plantri.md b/docs/version-specific/supported-software/p/plantri.md new file mode 100644 index 000000000..b56569b02 --- /dev/null +++ b/docs/version-specific/supported-software/p/plantri.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# plantri + +Plantri is a program that generates certain types of graphs that are imbedded on the sphere. Exactly one member of each isomorphism class is output, using an amount of memory almost independent of the number of graphs produced. This, together with the exceptionally fast operation and careful validation, makes the program suitable for processing very large numbers of graphs. Isomorphisms are defined with respect to the embeddings, so in some cases outputs may be isomorphic as abstract graphs. + +*homepage*: + +version | toolchain +--------|---------- +``5.4`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/plc.md b/docs/version-specific/supported-software/p/plc.md new file mode 100644 index 000000000..2d9e65c8b --- /dev/null +++ b/docs/version-specific/supported-software/p/plc.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# plc + +plc is the public Planck Likelihood Code. It provides C and Fortran libraries that allow users to compute the log likelihoods of the temperature, polarization, and lensing maps. Optionally, it also provides a python version of this library, as well as tools to modify the predetermined options for some likelihoods (e.g. changing the high-ell and low-ell lmin and lmax values of the temperature). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.1`` | ``-Python-2.7.15`` | ``foss/2019a`` +``3.0.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``3.0.1`` | ``-Python-2.7.15`` | ``intel/2018b`` +``3.10`` | | ``intel/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/plinkQC.md b/docs/version-specific/supported-software/p/plinkQC.md new file mode 100644 index 000000000..fc8152e94 --- /dev/null +++ b/docs/version-specific/supported-software/p/plinkQC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# plinkQC + +plinkQC is a R/CRAN package for genotype quality control in genetic association studies. It makes PLINK basic statistics (e.g.missing genotyping rates per individual, allele frequencies per genetic marker) and relationship functions easily accessible from within R and allows for automatic evaluation of the results. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.3`` | ``-R-4.0.0`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/plinkliftover.md b/docs/version-specific/supported-software/p/plinkliftover.md new file mode 100644 index 000000000..1decb2552 --- /dev/null +++ b/docs/version-specific/supported-software/p/plinkliftover.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# plinkliftover + +PLINKLiftOver is a utility enabling liftOver to work on genomics files from PLINK, allowing one to update the coordinates from one genome reference version to another. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.0`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/plmc.md b/docs/version-specific/supported-software/p/plmc.md new file mode 100644 index 000000000..3c6257452 --- /dev/null +++ b/docs/version-specific/supported-software/p/plmc.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# plmc + +Inference of couplings in proteins and RNAs from sequence variation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20230121`` | ``-32bit`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/plot1cell.md b/docs/version-specific/supported-software/p/plot1cell.md new file mode 100644 index 000000000..2c6c347e0 --- /dev/null +++ b/docs/version-specific/supported-software/p/plot1cell.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# plot1cell + +plot1cell: a package for advanced single cell data visualization + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.0.1`` | ``-R-4.2.1`` | ``foss/2022a`` +``0.0.1`` | ``-R-4.2.2`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/plotly-orca.md b/docs/version-specific/supported-software/p/plotly-orca.md new file mode 100644 index 000000000..588cf948a --- /dev/null +++ b/docs/version-specific/supported-software/p/plotly-orca.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# plotly-orca + +Orca is an Electron app that generates images and reports of Plotly things like plotly.js graphs, dash apps, dashboards from the command line. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.0`` | ``GCCcore/8.3.0`` +``1.3.1`` | ``GCCcore/10.2.0`` +``1.3.1`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/plotly.md b/docs/version-specific/supported-software/p/plotly.md new file mode 100644 index 000000000..6bf4b5373 --- /dev/null +++ b/docs/version-specific/supported-software/p/plotly.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# plotly + +Easily translate 'ggplot2' graphs to an interactive web-based version and/or create custom web-based visualizations directly from R. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.7.1`` | ``-R-3.4.0`` | ``intel/2017a`` +``4.8.0`` | ``-R-3.4.4`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/plotly.py.md b/docs/version-specific/supported-software/p/plotly.py.md new file mode 100644 index 000000000..6b0847ab5 --- /dev/null +++ b/docs/version-specific/supported-software/p/plotly.py.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# plotly.py + +An open-source, interactive graphing library for Python + +*homepage*: + +version | toolchain +--------|---------- +``4.1.0`` | ``intel/2019a`` +``4.14.3`` | ``GCCcore/10.2.0`` +``4.14.3`` | ``GCCcore/10.3.0`` +``4.4.1`` | ``intel/2019b`` +``4.8.1`` | ``GCCcore/9.3.0`` +``5.1.0`` | ``GCCcore/10.3.0`` +``5.12.0`` | ``GCCcore/11.3.0`` +``5.13.1`` | ``GCCcore/12.2.0`` +``5.16.0`` | ``GCCcore/12.3.0`` +``5.18.0`` | ``GCCcore/13.2.0`` +``5.4.0`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/plotutils.md b/docs/version-specific/supported-software/p/plotutils.md new file mode 100644 index 000000000..e884a4be6 --- /dev/null +++ b/docs/version-specific/supported-software/p/plotutils.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# plotutils + +The GNU plotutils package contains software for both programmers and technical users. Its centerpiece is libplot, a powerful C/C++ function library for exporting 2-D vector graphics in many file formats, both vector and bitmap. On the X Window System, it can also do 2-D vector graphics animations. libplot is device-independent, in the sense that its API (application programming interface) does not depend on the type of graphics file to be exported. A Postscript-like API is used both for file export and for graphics animations. A libplot programmer needs to learn only one API: not the details of many graphics file formats. + +*homepage*: + +version | toolchain +--------|---------- +``2.6`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pmt.md b/docs/version-specific/supported-software/p/pmt.md new file mode 100644 index 000000000..3f4ee804d --- /dev/null +++ b/docs/version-specific/supported-software/p/pmt.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# pmt + +PMT is a high-level software library capable of collecting power consumption measurements on various hardware. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.0`` | | ``GCCcore/11.3.0`` +``1.2.0`` | ``-CUDA-11.7.0`` | ``GCCcore/11.3.0`` +``1.2.0`` | | ``GCCcore/11.3.0`` +``1.2.0`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` +``1.2.0`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pmx.md b/docs/version-specific/supported-software/p/pmx.md new file mode 100644 index 000000000..d5ab25247 --- /dev/null +++ b/docs/version-specific/supported-software/p/pmx.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pmx + +pmx (formerly pymacs) is a small bunch of classes to read structure files such as pdb or gro and trajectory data in gromacs xtc format. Over the years it has been extended towards a versatile (bio-) molecular structure manipulation package with some additional functionalities, e.g. gromacs file parsers and scripts for setup and analysis of free energy calculations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0`` | ``-Python-2.7.18`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pocl.md b/docs/version-specific/supported-software/p/pocl.md new file mode 100644 index 000000000..96a8ba87d --- /dev/null +++ b/docs/version-specific/supported-software/p/pocl.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# pocl + +Pocl is a portable open source (MIT-licensed) implementation of the OpenCL standard + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2`` | | ``GCC/7.3.0-2.30`` +``1.3`` | | ``GCC/8.2.0-2.31.1`` +``1.3`` | | ``gcccuda/2019a`` +``1.4`` | | ``GCC/8.3.0`` +``1.4`` | | ``gcccuda/2019b`` +``1.5`` | | ``GCC/9.3.0`` +``1.6`` | | ``GCC/10.2.0`` +``1.6`` | | ``gcccuda/2020b`` +``1.6`` | | ``iccifort/2020.4.304`` +``1.8`` | | ``GCC/10.3.0`` +``1.8`` | | ``GCC/11.2.0`` +``1.8`` | ``-CUDA-11.7.0`` | ``GCC/11.3.0`` +``1.8`` | | ``GCC/11.3.0`` +``4.0`` | ``-CUDA-12.1.1`` | ``GCC/12.3.0`` +``4.0`` | | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pod5-file-format.md b/docs/version-specific/supported-software/p/pod5-file-format.md new file mode 100644 index 000000000..1b6a97cfe --- /dev/null +++ b/docs/version-specific/supported-software/p/pod5-file-format.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pod5-file-format + +POD5 is a file format for storing nanopore dna data in an easily accessible way. The format is able to be written in a streaming manner which allows a sequencing instrument to directly write the format. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.8`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/poetry.md b/docs/version-specific/supported-software/p/poetry.md new file mode 100644 index 000000000..931a03316 --- /dev/null +++ b/docs/version-specific/supported-software/p/poetry.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# poetry + +Python packaging and dependency management made easy + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.9`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``1.2.2`` | | ``GCCcore/11.3.0`` +``1.5.1`` | | ``GCCcore/12.3.0`` +``1.6.1`` | | ``GCCcore/13.2.0`` +``1.7.1`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/polars.md b/docs/version-specific/supported-software/p/polars.md new file mode 100644 index 000000000..910b418af --- /dev/null +++ b/docs/version-specific/supported-software/p/polars.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# polars + +Lightning-fast DataFrame library for Rust and Python. + +*homepage*: + +version | toolchain +--------|---------- +``0.15.6`` | ``foss/2022a`` +``0.20.2`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/polymake.md b/docs/version-specific/supported-software/p/polymake.md new file mode 100644 index 000000000..aa174779b --- /dev/null +++ b/docs/version-specific/supported-software/p/polymake.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# polymake + +polymake is open source software for research in polyhedral geometry. It deals with polytopes, polyhedra and fans as well as simplicial complexes, matroids, graphs, tropical hypersurfaces, and other objects. + +*homepage*: + +version | toolchain +--------|---------- +``4.0r1`` | ``foss/2019b`` +``4.8`` | ``foss/2021b`` +``4.8`` | ``gfbf/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pomkl.md b/docs/version-specific/supported-software/p/pomkl.md new file mode 100644 index 000000000..37e4267ef --- /dev/null +++ b/docs/version-specific/supported-software/p/pomkl.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# pomkl + +Toolchain with PGI C, C++ and Fortran compilers, alongside Intel MKL & OpenMPI. + +*homepage*: + +version | toolchain +--------|---------- +``2016.03`` | ``system`` +``2016.04`` | ``system`` +``2016.09`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pompi.md b/docs/version-specific/supported-software/p/pompi.md new file mode 100644 index 000000000..ba813121a --- /dev/null +++ b/docs/version-specific/supported-software/p/pompi.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# pompi + +Toolchain with PGI C, C++ and Fortran compilers, alongside OpenMPI. + +*homepage*: + +version | toolchain +--------|---------- +``2016.03`` | ``system`` +``2016.04`` | ``system`` +``2016.09`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/poppler.md b/docs/version-specific/supported-software/p/poppler.md new file mode 100644 index 000000000..f319cfe6e --- /dev/null +++ b/docs/version-specific/supported-software/p/poppler.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# poppler + +Poppler is a PDF rendering library based on the xpdf-3.0 code base. + +*homepage*: + +version | toolchain +--------|---------- +``0.70.1`` | ``foss/2018b`` +``0.90.1`` | ``GCCcore/8.3.0`` +``21.06.1`` | ``GCC/10.2.0`` +``21.06.1`` | ``GCC/10.3.0`` +``22.01.0`` | ``GCC/11.2.0`` +``22.12.0`` | ``GCC/11.3.0`` +``23.09.0`` | ``GCC/12.3.0`` +``24.04.0`` | ``GCC/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/poppunk.md b/docs/version-specific/supported-software/p/poppunk.md new file mode 100644 index 000000000..6eb16bee6 --- /dev/null +++ b/docs/version-specific/supported-software/p/poppunk.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# poppunk + +PopPUNK is a tool for clustering genomes. We refer to the clusters as variable-length-k-mer clusters, or VLKCs. Biologically, these clusters typically represent distinct strains. We refer to subclusters of strains as lineages. + +*homepage*: + +version | toolchain +--------|---------- +``2.6.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/popscle.md b/docs/version-specific/supported-software/p/popscle.md new file mode 100644 index 000000000..c78a22ada --- /dev/null +++ b/docs/version-specific/supported-software/p/popscle.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# popscle + +A suite of population scale analysis tools for single-cell genomics data including implementation of Demuxlet / Freemuxlet methods and auxilary tools + +*homepage*: + +version | toolchain +--------|---------- +``0.1-beta-20210505`` | ``GCC/11.3.0`` +``0.1-beta`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/popt.md b/docs/version-specific/supported-software/p/popt.md new file mode 100644 index 000000000..f482d5d29 --- /dev/null +++ b/docs/version-specific/supported-software/p/popt.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# popt + +Popt is a C library for parsing command line parameters. + +*homepage*: + +version | toolchain +--------|---------- +``1.14`` | ``GCC/4.8.2`` +``1.16`` | ``GCC/10.2.0`` +``1.16`` | ``GCC/4.9.2`` +``1.16`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/porefoam.md b/docs/version-specific/supported-software/p/porefoam.md new file mode 100644 index 000000000..65fb5c675 --- /dev/null +++ b/docs/version-specific/supported-software/p/porefoam.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# porefoam + +Direct pore-scale simulation of single- and two-phase flow through confined media + +*homepage*: + +version | toolchain +--------|---------- +``2021-09-21`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/poretools.md b/docs/version-specific/supported-software/p/poretools.md new file mode 100644 index 000000000..8dfb6e484 --- /dev/null +++ b/docs/version-specific/supported-software/p/poretools.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# poretools + +A toolkit for working with nanopore sequencing data from Oxford Nanopore. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.6.0`` | ``-Python-2.7.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/powerlaw.md b/docs/version-specific/supported-software/p/powerlaw.md new file mode 100644 index 000000000..014a489e0 --- /dev/null +++ b/docs/version-specific/supported-software/p/powerlaw.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# powerlaw + +powerlaw: A Python Package for Analysis of Heavy-Tailed Distributions + +*homepage*: + +version | toolchain +--------|---------- +``1.5`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pp-sketchlib.md b/docs/version-specific/supported-software/p/pp-sketchlib.md new file mode 100644 index 000000000..7b1a2e7ae --- /dev/null +++ b/docs/version-specific/supported-software/p/pp-sketchlib.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pp-sketchlib + +Library of sketching functions used by PopPUNK + +*homepage*: + +version | toolchain +--------|---------- +``2.1.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/ppl.md b/docs/version-specific/supported-software/p/ppl.md new file mode 100644 index 000000000..ad8d01254 --- /dev/null +++ b/docs/version-specific/supported-software/p/ppl.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ppl + +The Parma Polyhedra Library (PPL) provides numerical abstractions especially targeted at applications in the field of analysis and verification of complex systems. + +*homepage*: + +version | toolchain +--------|---------- +``1.2`` | ``GCCcore/11.3.0`` +``1.2`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pplacer.md b/docs/version-specific/supported-software/p/pplacer.md new file mode 100644 index 000000000..3bd773eea --- /dev/null +++ b/docs/version-specific/supported-software/p/pplacer.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pplacer + +Pplacer places query sequences on a fixed reference phylogenetic tree to maximize phylogenetic likelihood or posterior probability according to a reference alignment. Pplacer is designed to be fast, to give useful information about uncertainty, and to offer advanced visualization and downstream analysis. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.alpha19`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pplpy.md b/docs/version-specific/supported-software/p/pplpy.md new file mode 100644 index 000000000..40b2e8757 --- /dev/null +++ b/docs/version-specific/supported-software/p/pplpy.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# pplpy + +This Python package provides a wrapper to the C++ Parma Polyhedra Library (PPL). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8.4`` | ``-Python-2.7.14`` | ``foss/2017b`` +``0.8.4`` | ``-Python-3.6.3`` | ``foss/2017b`` +``0.8.4`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.8.4`` | ``-Python-3.6.3`` | ``intel/2017b`` +``0.8.9`` | | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/preCICE.md b/docs/version-specific/supported-software/p/preCICE.md new file mode 100644 index 000000000..f24a20630 --- /dev/null +++ b/docs/version-specific/supported-software/p/preCICE.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# preCICE + +preCICE (Precise Code Interaction Coupling Environment) is a coupling library for partitioned multi-physics simulations, including, but not restricted to fluid-structure interaction and conjugate heat transfer simulations. Partitioned means that preCICE couples existing programs (solvers) capable of simulating a subpart of the complete physics involved in a simulation. This allows for the high flexibility that is needed to keep a decent time-to-solution for complex multi-physics scenarios. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2.2.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2.2.0`` | ``-Python-3.8.2`` | ``intel/2020a`` +``2.5.0`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/premailer.md b/docs/version-specific/supported-software/p/premailer.md new file mode 100644 index 000000000..d4bea8ded --- /dev/null +++ b/docs/version-specific/supported-software/p/premailer.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# premailer + +CSS blocks into inline style attributes for HTML emails + +*homepage*: + +version | toolchain +--------|---------- +``3.10.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/preseq.md b/docs/version-specific/supported-software/p/preseq.md new file mode 100644 index 000000000..90c1fc832 --- /dev/null +++ b/docs/version-specific/supported-software/p/preseq.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# preseq + +Software for predicting library complexity and genome coverage in high-throughput sequencing. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.2`` | ``foss/2016b`` +``2.0.3`` | ``foss/2018b`` +``2.0.3`` | ``intel/2018a`` +``3.1.2`` | ``GCC/10.3.0`` +``3.1.2`` | ``GCC/11.2.0`` +``3.2.0`` | ``GCC/11.3.0`` +``3.2.0`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/presto.md b/docs/version-specific/supported-software/p/presto.md new file mode 100644 index 000000000..d54148407 --- /dev/null +++ b/docs/version-specific/supported-software/p/presto.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# presto + +Presto performs a fast Wilcoxon rank sum test and auROC analysis. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.0-20200718`` | ``-R-4.1.2`` | ``foss/2021b`` +``1.0.0-20230113`` | ``-R-4.2.1`` | ``foss/2022a`` +``1.0.0-20230501`` | ``-R-4.2.2`` | ``foss/2022b`` +``1.0.0-20230501`` | ``-R-4.3.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pretty-yaml.md b/docs/version-specific/supported-software/p/pretty-yaml.md new file mode 100644 index 000000000..86e8861f4 --- /dev/null +++ b/docs/version-specific/supported-software/p/pretty-yaml.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# pretty-yaml + +PyYAML-based python module to produce pretty and readable YAML-serialized data. This module is for serialization only, see ruamel.yaml module for literate YAML parsing (keeping track of comments, spacing, line/column numbers of values, etc). + +*homepage*: + +version | toolchain +--------|---------- +``19.12.0`` | ``GCCcore/8.3.0`` +``20.4.0`` | ``GCCcore/9.3.0`` +``21.10.1`` | ``GCCcore/10.3.0`` +``23.9.5`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/primecount.md b/docs/version-specific/supported-software/p/primecount.md new file mode 100644 index 000000000..b0436a803 --- /dev/null +++ b/docs/version-specific/supported-software/p/primecount.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# primecount + +primecount is a command-line program and C/C++ library that counts the number of primes ≤ x (maximum 1031) using highly optimized implementations of the combinatorial prime counting algorithms. + +*homepage*: + +version | toolchain +--------|---------- +``7.9`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/primecountpy.md b/docs/version-specific/supported-software/p/primecountpy.md new file mode 100644 index 000000000..61d7af7cb --- /dev/null +++ b/docs/version-specific/supported-software/p/primecountpy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# primecountpy + +This is a Cython interface to the C++ library primecount. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.0`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/printproto.md b/docs/version-specific/supported-software/p/printproto.md new file mode 100644 index 000000000..c4d622c05 --- /dev/null +++ b/docs/version-specific/supported-software/p/printproto.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# printproto + +X.org PrintProto protocol headers. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.5`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/prodigal.md b/docs/version-specific/supported-software/p/prodigal.md new file mode 100644 index 000000000..55264b3a9 --- /dev/null +++ b/docs/version-specific/supported-software/p/prodigal.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# prodigal + +Prodigal (Prokaryotic Dynamic Programming Genefinding Algorithm) is a microbial (bacterial and archaeal) gene finding program developed at Oak Ridge National Laboratory and the University of Tennessee. + +*homepage*: + +version | toolchain +--------|---------- +``2.6.2`` | ``GCC/4.9.3-binutils-2.25`` +``2.6.3`` | ``GCCcore/10.2.0`` +``2.6.3`` | ``GCCcore/10.3.0`` +``2.6.3`` | ``GCCcore/11.2.0`` +``2.6.3`` | ``GCCcore/11.3.0`` +``2.6.3`` | ``GCCcore/12.2.0`` +``2.6.3`` | ``GCCcore/12.3.0`` +``2.6.3`` | ``GCCcore/6.4.0`` +``2.6.3`` | ``GCCcore/7.3.0`` +``2.6.3`` | ``GCCcore/8.2.0`` +``2.6.3`` | ``GCCcore/8.3.0`` +``2.6.3`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/prokka.md b/docs/version-specific/supported-software/p/prokka.md new file mode 100644 index 000000000..e898c00da --- /dev/null +++ b/docs/version-specific/supported-software/p/prokka.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# prokka + +Prokka is a software tool for the rapid annotation of prokaryotic genomes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.11`` | ``-BioPerl-1.7.0`` | ``foss/2016b`` +``1.13`` | ``-BioPerl-1.7.2`` | ``intel/2018a`` +``1.13.4`` | | ``foss/2018b`` +``1.13.7`` | | ``gompi/2019a`` +``1.14.5`` | | ``gompi/2019a`` +``1.14.5`` | | ``gompi/2019b`` +``1.14.5`` | | ``gompi/2020b`` +``1.14.5`` | | ``gompi/2021a`` +``1.14.5`` | | ``gompi/2021b`` +``1.14.5`` | | ``gompi/2022a`` +``1.14.5`` | | ``gompi/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/prompt-toolkit.md b/docs/version-specific/supported-software/p/prompt-toolkit.md new file mode 100644 index 000000000..c56a638ea --- /dev/null +++ b/docs/version-specific/supported-software/p/prompt-toolkit.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# prompt-toolkit + +prompt_toolkit is a Python library for building powerful interactive command lines and terminal applications. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.13`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.0.3`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.0.3`` | ``-Python-3.5.1`` | ``foss/2016a`` +``1.0.6`` | ``-Python-2.7.12`` | ``foss/2016b`` +``1.0.6`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.0.6`` | ``-Python-3.5.2`` | ``intel/2016b`` +``3.0.36`` | | ``GCCcore/12.2.0`` +``3.0.36`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/proovread.md b/docs/version-specific/supported-software/p/proovread.md new file mode 100644 index 000000000..085830d97 --- /dev/null +++ b/docs/version-specific/supported-software/p/proovread.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# proovread + +PacBio hybrid error correction through iterative short read consensus + +*homepage*: + +version | toolchain +--------|---------- +``2.14.1`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/propy.md b/docs/version-specific/supported-software/p/propy.md new file mode 100644 index 000000000..7ef08fe49 --- /dev/null +++ b/docs/version-specific/supported-software/p/propy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# propy + +Propy is a protein description software. It allows analyzing sequence-derived structural and physicochemical features, which are very useful in representing and distinguishing proteins or peptides of different structural, functional and interaction properties. These have been widely used in developing methods and software for predicting protein structural and functional classes, protein-protein interactions, drug-target interactions, protein substrates, among others. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0`` | ``-Python-2.7.13`` | ``foss/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/protobuf-python.md b/docs/version-specific/supported-software/p/protobuf-python.md new file mode 100644 index 000000000..24f847c21 --- /dev/null +++ b/docs/version-specific/supported-software/p/protobuf-python.md @@ -0,0 +1,43 @@ +--- +search: + boost: 0.5 +--- +# protobuf-python + +Python Protocol Buffers runtime library. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.2`` | ``-Python-2.7.11`` | ``foss/2016a`` +``3.0.2`` | ``-Python-3.5.1`` | ``foss/2016a`` +``3.10.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``3.10.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``3.13.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``3.13.0`` | ``-Python-3.8.2`` | ``fosscuda/2020a`` +``3.14.0`` | | ``GCCcore/10.2.0`` +``3.17.3`` | | ``GCCcore/10.3.0`` +``3.17.3`` | | ``GCCcore/11.2.0`` +``3.19.4`` | | ``GCCcore/11.3.0`` +``3.2.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``3.2.0`` | ``-Python-3.5.2`` | ``foss/2016b`` +``3.2.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``3.2.0`` | ``-Python-3.5.2`` | ``intel/2016b`` +``3.3.0`` | ``-Python-3.5.2`` | ``foss/2016b`` +``3.3.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``3.3.0`` | ``-Python-3.6.1`` | ``intel/2017a`` +``3.4.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``3.4.0`` | ``-Python-3.6.1`` | ``intel/2017a`` +``3.4.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``3.4.0`` | ``-Python-3.6.3`` | ``intel/2017b`` +``3.6.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``3.6.0`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``3.6.0`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``4.23.0`` | | ``GCCcore/12.2.0`` +``4.24.0`` | | ``GCCcore/12.3.0`` +``4.25.3`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/protobuf.md b/docs/version-specific/supported-software/p/protobuf.md new file mode 100644 index 000000000..8c910b386 --- /dev/null +++ b/docs/version-specific/supported-software/p/protobuf.md @@ -0,0 +1,46 @@ +--- +search: + boost: 0.5 +--- +# protobuf + +Google Protocol Buffers + +*homepage*: + +version | toolchain +--------|---------- +``2.5.0`` | ``GCCcore/10.2.0`` +``2.5.0`` | ``GCCcore/7.3.0`` +``2.5.0`` | ``GCCcore/8.3.0`` +``2.5.0`` | ``system`` +``2.6.1`` | ``system`` +``23.0`` | ``GCCcore/12.2.0`` +``24.0`` | ``GCCcore/12.3.0`` +``25.3`` | ``GCCcore/13.2.0`` +``3.0.2`` | ``foss/2016a`` +``3.10.0`` | ``GCCcore/8.3.0`` +``3.10.0`` | ``GCCcore/9.3.0`` +``3.13.0`` | ``GCCcore/9.3.0`` +``3.14.0`` | ``GCCcore/10.2.0`` +``3.17.3`` | ``GCCcore/10.3.0`` +``3.17.3`` | ``GCCcore/11.2.0`` +``3.19.4`` | ``GCCcore/11.3.0`` +``3.2.0`` | ``foss/2016b`` +``3.2.0`` | ``intel/2016b`` +``3.21.9`` | ``GCCcore/10.3.0`` +``3.3.0`` | ``foss/2016b`` +``3.3.0`` | ``intel/2017a`` +``3.4.0`` | ``GCCcore/6.4.0`` +``3.4.0`` | ``intel/2017a`` +``3.4.0`` | ``intel/2017b`` +``3.5.1`` | ``intel/2017b`` +``3.6.0`` | ``GCCcore/7.3.0`` +``3.6.1`` | ``GCCcore/7.3.0`` +``3.6.1.2`` | ``GCCcore/8.2.0`` +``3.7.1`` | ``GCCcore/8.2.0`` +``3.7.1`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/protozero.md b/docs/version-specific/supported-software/p/protozero.md new file mode 100644 index 000000000..f14a4fbf3 --- /dev/null +++ b/docs/version-specific/supported-software/p/protozero.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# protozero + +Minimalistic protocol buffer decoder and encoder in C++. + +*homepage*: + +version | toolchain +--------|---------- +``1.6.8`` | ``GCCcore/7.3.0`` +``1.7.0`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pscom.md b/docs/version-specific/supported-software/p/pscom.md new file mode 100644 index 000000000..2581e2802 --- /dev/null +++ b/docs/version-specific/supported-software/p/pscom.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# pscom + +ParaStation is a robust and efficient cluster middleware, consisting of a high-performance communication layer (MPI) and a sophisticated management layer. + +*homepage*: + +version | toolchain +--------|---------- +``5.0.43`` | ``GCC/4.8.2`` +``5.0.44-1`` | ``GCC/4.9.2`` +``5.0.48-1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/psmc.md b/docs/version-specific/supported-software/p/psmc.md new file mode 100644 index 000000000..d7e02dcf0 --- /dev/null +++ b/docs/version-specific/supported-software/p/psmc.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# psmc + +This software package infers population size history from a diploid sequence using the Pairwise Sequentially Markovian Coalescent (PSMC) model. + +*homepage*: + +version | toolchain +--------|---------- +``0.6.5`` | ``foss/2016a`` +``0.6.5`` | ``foss/2018a`` +``0.6.5_20221121`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/psmpi.md b/docs/version-specific/supported-software/p/psmpi.md new file mode 100644 index 000000000..7f952852e --- /dev/null +++ b/docs/version-specific/supported-software/p/psmpi.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# psmpi + +ParaStation MPI is an open source high-performance MPI 3.0 implementation, based on MPICH v3. It provides extra low level communication libraries and integration with various batch systems for tighter process control. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.1.0-1`` | | ``GCC/4.9.2`` +``5.1.5-1`` | ``-mt`` | ``GCC/4.9.3`` +``5.1.5-1`` | | ``GCC/4.9.3`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/psmpi2.md b/docs/version-specific/supported-software/p/psmpi2.md new file mode 100644 index 000000000..cb8f46df9 --- /dev/null +++ b/docs/version-specific/supported-software/p/psmpi2.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# psmpi2 + +ParaStation is a robust and efficient cluster middleware, consisting of a high-performance communication layer (MPI) and a sophisticated management layer. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.0.29`` | ``-mt`` | ``GCC/4.8.2`` +``5.0.29`` | | ``GCC/4.8.2`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/psrecord.md b/docs/version-specific/supported-software/p/psrecord.md new file mode 100644 index 000000000..db88a8597 --- /dev/null +++ b/docs/version-specific/supported-software/p/psrecord.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# psrecord + +psrecord is a small utility that uses the psutil library to record the CPU and memory activity of a process. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1`` | ``-Python-2.7.14`` | ``intel/2018a`` +``1.1`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.1`` | ``-Python-2.7.15`` | ``intel/2018b`` +``1.1`` | ``-Python-3.6.6`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pstoedit.md b/docs/version-specific/supported-software/p/pstoedit.md new file mode 100644 index 000000000..5ce330c32 --- /dev/null +++ b/docs/version-specific/supported-software/p/pstoedit.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# pstoedit + +pstoedit translates PostScript and PDF graphics into other vector formats + +*homepage*: + +version | toolchain +--------|---------- +``3.70`` | ``GCCcore/6.3.0`` +``3.70`` | ``GCCcore/6.4.0`` +``3.78`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/psutil.md b/docs/version-specific/supported-software/p/psutil.md new file mode 100644 index 000000000..3afc52bc3 --- /dev/null +++ b/docs/version-specific/supported-software/p/psutil.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# psutil + +A cross-platform process and system utilities module for Python + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.2.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``4.3.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``4.3.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``5.4.3`` | ``-Python-2.7.14`` | ``intel/2017b`` +``5.4.7`` | ``-Python-2.7.15`` | ``foss/2018b`` +``5.4.7`` | ``-Python-3.6.6`` | ``foss/2018b`` +``5.6.1`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``5.6.3`` | | ``GCCcore/8.2.0`` +``5.9.3`` | | ``GCCcore/10.2.0`` +``5.9.3`` | | ``GCCcore/11.3.0`` +``5.9.4`` | | ``GCCcore/11.2.0`` +``5.9.5`` | | ``GCCcore/12.2.0`` +``5.9.8`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/psycopg.md b/docs/version-specific/supported-software/p/psycopg.md new file mode 100644 index 000000000..8d5ef7226 --- /dev/null +++ b/docs/version-specific/supported-software/p/psycopg.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# psycopg + +Psycopg is the most popular PostgreSQL adapter for the Python programming language. + +*homepage*: + +version | toolchain +--------|---------- +``3.1.18`` | ``GCCcore/12.2.0`` +``3.1.18`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/psycopg2.md b/docs/version-specific/supported-software/p/psycopg2.md new file mode 100644 index 000000000..32bd072c8 --- /dev/null +++ b/docs/version-specific/supported-software/p/psycopg2.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# psycopg2 + +Psycopg is the most popular PostgreSQL adapter for the Python programming language. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.7`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2.7`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2.8.3`` | ``-Python-3.7.2`` | ``foss/2019a`` +``2.8.6`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``2.9.5`` | | ``GCCcore/11.2.0`` +``2.9.6`` | | ``GCCcore/11.3.0`` +``2.9.9`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/ptemcee.md b/docs/version-specific/supported-software/p/ptemcee.md new file mode 100644 index 000000000..7786f4b64 --- /dev/null +++ b/docs/version-specific/supported-software/p/ptemcee.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ptemcee + +ptemcee, pronounced "tem-cee", is fork of Daniel Foreman-Mackey's wonderful emcee to implement parallel tempering more robustly. If you're trying to characterise awkward, multi-model probability distributions, then ptemcee is your friend. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pubtcrs.md b/docs/version-specific/supported-software/p/pubtcrs.md new file mode 100644 index 000000000..2aaf3f15f --- /dev/null +++ b/docs/version-specific/supported-software/p/pubtcrs.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pubtcrs + +This repository contains C++ source code for the TCR clustering and correlation analyses described in the manuscript "Human T cell receptor occurrence patterns encode immune history, genetic background, and receptor specificity" by William S DeWitt III, Anajane Smith, Gary Schoch, John A Hansen, Frederick A Matsen IV and Philip Bradley, available on bioRxiv. + +*homepage*: + +version | toolchain +--------|---------- +``20180622`` | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pugixml.md b/docs/version-specific/supported-software/p/pugixml.md new file mode 100644 index 000000000..4b36ee6a8 --- /dev/null +++ b/docs/version-specific/supported-software/p/pugixml.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# pugixml + +pugixml is a light-weight C++ XML processing library + +*homepage*: + +version | toolchain +--------|---------- +``1.11.4`` | ``GCCcore/10.3.0`` +``1.12.1`` | ``GCCcore/11.2.0`` +``1.12.1`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pullseq.md b/docs/version-specific/supported-software/p/pullseq.md new file mode 100644 index 000000000..c5b9d68e9 --- /dev/null +++ b/docs/version-specific/supported-software/p/pullseq.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# pullseq + +Utility program for extracting sequences from a fasta/fastq file + +*homepage*: + +version | toolchain +--------|---------- +``1.0.2`` | ``GCCcore/10.3.0`` +``1.0.2`` | ``GCCcore/11.2.0`` +``1.0.2`` | ``GCCcore/7.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/purge_dups.md b/docs/version-specific/supported-software/p/purge_dups.md new file mode 100644 index 000000000..25ffa551d --- /dev/null +++ b/docs/version-specific/supported-software/p/purge_dups.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# purge_dups + +purge haplotigs and overlaps in an assembly based on read depth + +*homepage*: + +version | toolchain +--------|---------- +``1.2.5`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pv.md b/docs/version-specific/supported-software/p/pv.md new file mode 100644 index 000000000..13d2cdafe --- /dev/null +++ b/docs/version-specific/supported-software/p/pv.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pv + +Pipe Viewer - monitor the progress of data through a pipe + +*homepage*: + +version | toolchain +--------|---------- +``1.7.24`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/py-aiger-bdd.md b/docs/version-specific/supported-software/p/py-aiger-bdd.md new file mode 100644 index 000000000..55cd59bd6 --- /dev/null +++ b/docs/version-specific/supported-software/p/py-aiger-bdd.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# py-aiger-bdd + +Aiger to BDD bridge. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/py-aiger.md b/docs/version-specific/supported-software/p/py-aiger.md new file mode 100644 index 000000000..ba08c73ee --- /dev/null +++ b/docs/version-specific/supported-software/p/py-aiger.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# py-aiger + +A python library for manipulating sequential and combinatorial circuits. This module provides the py-aiger extensions: aiger_bv, aiger_cnf, aiger_ptltl, aiger_coins, aiger_gridworld, aiger_dfa + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``6.1.1`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``6.1.14`` | | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/py-c3d.md b/docs/version-specific/supported-software/p/py-c3d.md new file mode 100644 index 000000000..4d069089b --- /dev/null +++ b/docs/version-specific/supported-software/p/py-c3d.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# py-c3d + +This is a small library for reading and writing C3D binary files. C3D files are a standard format for recording 3-dimensional time sequence data, especially data recorded by a 3D motion tracking apparatus. + +*homepage*: + +version | toolchain +--------|---------- +``0.5.2`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/py-cpuinfo.md b/docs/version-specific/supported-software/p/py-cpuinfo.md new file mode 100644 index 000000000..ab3e81303 --- /dev/null +++ b/docs/version-specific/supported-software/p/py-cpuinfo.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# py-cpuinfo + +py-cpuinfo gets CPU info with pure Python. + +*homepage*: + +version | toolchain +--------|---------- +``5.0.0`` | ``system`` +``8.0.0`` | ``GCCcore/11.2.0`` +``9.0.0`` | ``GCCcore/11.2.0`` +``9.0.0`` | ``GCCcore/11.3.0`` +``9.0.0`` | ``GCCcore/12.2.0`` +``9.0.0`` | ``GCCcore/12.3.0`` +``9.0.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/py.md b/docs/version-specific/supported-software/p/py.md new file mode 100644 index 000000000..9f5c50f4b --- /dev/null +++ b/docs/version-specific/supported-software/p/py.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# py + +library with cross-python path, ini-parsing, io, code, log facilities + +*homepage*: < https://pylib.readthedocs.org/> + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4.31`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.4.31`` | ``-Python-3.5.1`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/py3Dmol.md b/docs/version-specific/supported-software/p/py3Dmol.md new file mode 100644 index 000000000..5b1d19c81 --- /dev/null +++ b/docs/version-specific/supported-software/p/py3Dmol.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# py3Dmol + +A simple IPython/Jupyter widget to embed an interactive 3Dmol.js viewer in a notebook. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.1.post1`` | ``GCCcore/11.3.0`` +``2.1.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyABC.md b/docs/version-specific/supported-software/p/pyABC.md new file mode 100644 index 000000000..b34a6a164 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyABC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pyABC + +Massively parallel, distributed and scalable ABC-SMC (Approximate Bayesian Computation - Sequential Monte Carlo) for parameter estimation of complex stochastic models. Implemented in Python with support of the R language. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.4`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyBigWig.md b/docs/version-specific/supported-software/p/pyBigWig.md new file mode 100644 index 000000000..c9c8d4a3b --- /dev/null +++ b/docs/version-specific/supported-software/p/pyBigWig.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# pyBigWig + +A python extension, written in C, for quick access to bigBed files and access to and creation of bigWig files. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.13`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.3.17`` | | ``GCCcore/8.2.0`` +``0.3.17`` | | ``GCCcore/9.3.0`` +``0.3.18`` | | ``GCCcore/10.2.0`` +``0.3.18`` | | ``foss/2021a`` +``0.3.18`` | | ``foss/2021b`` +``0.3.18`` | | ``foss/2022a`` +``0.3.22`` | | ``foss/2022b`` +``0.3.22`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyEGA3.md b/docs/version-specific/supported-software/p/pyEGA3.md new file mode 100644 index 000000000..f5651d56b --- /dev/null +++ b/docs/version-specific/supported-software/p/pyEGA3.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# pyEGA3 + +A basic Python-based EGA download client + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.33`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` +``3.4.0`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``3.4.0`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``4.0.0`` | | ``GCCcore/11.2.0`` +``5.0.2`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyFAI.md b/docs/version-specific/supported-software/p/pyFAI.md new file mode 100644 index 000000000..72d41c937 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyFAI.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# pyFAI + +Python implementation of fast azimuthal integration. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.19.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.19.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``0.20.0`` | | ``foss/2020b`` +``0.20.0`` | | ``fosscuda/2020b`` +``0.21.3`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyFFTW.md b/docs/version-specific/supported-software/p/pyFFTW.md new file mode 100644 index 000000000..cd5bb4f40 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyFFTW.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# pyFFTW + +A pythonic wrapper around FFTW, the FFT library, presenting a unified interface for all the supported transforms. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.11.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.11.1`` | | ``intel/2019a`` +``0.12.0`` | | ``foss/2020b`` +``0.12.0`` | | ``fosscuda/2020b`` +``0.13.1`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyGAM.md b/docs/version-specific/supported-software/p/pyGAM.md new file mode 100644 index 000000000..365b7faea --- /dev/null +++ b/docs/version-specific/supported-software/p/pyGAM.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pyGAM + +pyGAM is a package for building Generalized Additive Models in Python, with an emphasis on modularity and performance. The API will be immediately familiar to anyone with experience of scikit-learn or scipy. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.1`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyGIMLi.md b/docs/version-specific/supported-software/p/pyGIMLi.md new file mode 100644 index 000000000..79abe522a --- /dev/null +++ b/docs/version-specific/supported-software/p/pyGIMLi.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# pyGIMLi + +pyGIMLi is an open-source multi-method library for solving inverse and forward tasks related to geophysical problems. Written in C++ and Python, it offers both efficiency and flexibility allowing you to quickly build your own robust inversion applications for the geophysical problem at hand. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20160803`` | ``-Python-2.7.11`` | ``foss/2016a`` +``20160803`` | ``-Python-3.5.1`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyGenomeTracks.md b/docs/version-specific/supported-software/p/pyGenomeTracks.md new file mode 100644 index 000000000..5484ca22a --- /dev/null +++ b/docs/version-specific/supported-software/p/pyGenomeTracks.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# pyGenomeTracks + +pyGenomeTracks aims to produce high-quality genome browser tracks that are highly customizable. + +*homepage*: + +version | toolchain +--------|---------- +``3.7`` | ``foss/2021b`` +``3.8`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyMannKendall.md b/docs/version-specific/supported-software/p/pyMannKendall.md new file mode 100644 index 000000000..d3110e25c --- /dev/null +++ b/docs/version-specific/supported-software/p/pyMannKendall.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pyMannKendall + +A python package for non parametric Mann Kendall family of trend tests. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.3`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pySCENIC.md b/docs/version-specific/supported-software/p/pySCENIC.md new file mode 100644 index 000000000..f3de0bb4d --- /dev/null +++ b/docs/version-specific/supported-software/p/pySCENIC.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# pySCENIC + +pySCENIC is a lightning-fast python implementation of the SCENIC pipeline (Single-Cell rEgulatory Network Inference and Clustering) which enables biologists to infer transcription factors, gene regulatory networks and cell types from single-cell RNA-seq data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.3`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.10.3`` | ``-Python-3.8.2`` | ``intel/2020a`` +``0.12.1-20240311`` | | ``foss/2023a`` +``0.12.1`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyScaf.md b/docs/version-specific/supported-software/p/pyScaf.md new file mode 100644 index 000000000..108fdb853 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyScaf.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pyScaf + +pyScaf orders contigs from genome assemblies utilising several types of information + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.12a4`` | ``-Python-2.7.14`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyWannier90.md b/docs/version-specific/supported-software/p/pyWannier90.md new file mode 100644 index 000000000..e80960929 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyWannier90.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# pyWannier90 + +A Wannier90 Python interface for VASP and PySCF + +*homepage*: + +version | toolchain +--------|---------- +``2021-12-07`` | ``foss/2021a`` +``2021-12-07`` | ``gomkl/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyXDF.md b/docs/version-specific/supported-software/p/pyXDF.md new file mode 100644 index 000000000..0f3920bc7 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyXDF.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# pyXDF + +Python package for working with XDF files. + +*homepage*: + +version | toolchain +--------|---------- +``1.16.3`` | ``foss/2021a`` +``1.16.5`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pybedtools.md b/docs/version-specific/supported-software/p/pybedtools.md new file mode 100644 index 000000000..afde30e85 --- /dev/null +++ b/docs/version-specific/supported-software/p/pybedtools.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# pybedtools + +pybedtools wraps and extends BEDTools and offers feature-level manipulations from within Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7.10`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.7.10`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.7.10`` | ``-Python-2.7.14`` | ``intel/2018a`` +``0.8.0`` | | ``foss/2019a`` +``0.8.0`` | | ``intel/2019a`` +``0.8.1`` | | ``foss/2019b`` +``0.8.2`` | ``-Python-2.7.18`` | ``GCC/10.2.0`` +``0.8.2`` | | ``GCC/10.2.0`` +``0.8.2`` | ``-Python-2.7.18`` | ``GCC/11.2.0`` +``0.8.2`` | | ``GCC/11.2.0`` +``0.8.2`` | | ``iccifort/2020.4.304`` +``0.9.0`` | | ``GCC/11.3.0`` +``0.9.0`` | | ``GCC/12.2.0`` +``0.9.1`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pybind11-stubgen.md b/docs/version-specific/supported-software/p/pybind11-stubgen.md new file mode 100644 index 000000000..46b182aa0 --- /dev/null +++ b/docs/version-specific/supported-software/p/pybind11-stubgen.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pybind11-stubgen + +Static analysis tools and IDE usually struggle to understand python binary extensions. pybind11-stubgen generates stubs for python extensions to make them less opaque. While the CLI tool includes tweaks to target modules compiled specifically with pybind11 but it should work well with modules built with other libraries. + +*homepage*: + +version | toolchain +--------|---------- +``2.5.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pybind11.md b/docs/version-specific/supported-software/p/pybind11.md new file mode 100644 index 000000000..0ecdefc00 --- /dev/null +++ b/docs/version-specific/supported-software/p/pybind11.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# pybind11 + +pybind11 is a lightweight header-only library that exposes C++ types in Python and vice versa, mainly to create Python bindings of existing C++ code. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.10.3`` | | ``GCCcore/12.2.0`` +``2.11.1`` | | ``GCCcore/12.3.0`` +``2.11.1`` | | ``GCCcore/13.2.0`` +``2.2.4`` | ``-Python-3.6.4`` | ``foss/2018a`` +``2.2.4`` | ``-Python-3.6.6`` | ``intel/2018b`` +``2.4.3`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``2.4.3`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``2.6.0`` | | ``GCCcore/10.2.0`` +``2.6.2`` | | ``GCCcore/10.3.0`` +``2.7.1`` | ``-Python-2.7.18`` | ``GCCcore/11.2.0`` +``2.7.1`` | | ``GCCcore/11.2.0`` +``2.9.2`` | | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pybinding.md b/docs/version-specific/supported-software/p/pybinding.md new file mode 100644 index 000000000..16a89a8d1 --- /dev/null +++ b/docs/version-specific/supported-software/p/pybinding.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pybinding + +Pybinding is a Python package for numerical tight-binding calculations in solid state physics. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.5`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyccel.md b/docs/version-specific/supported-software/p/pyccel.md new file mode 100644 index 000000000..4ac223d58 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyccel.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pyccel + +Python extension language using accelerators + +*homepage*: + +version | toolchain +--------|---------- +``1.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pycma.md b/docs/version-specific/supported-software/p/pycma.md new file mode 100644 index 000000000..08be42928 --- /dev/null +++ b/docs/version-specific/supported-software/p/pycma.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pycma + +A stochastic numerical optimization algorithm for difficult (non-convex, ill-conditioned, multi-modal, rugged, noisy) optimization problems in continuous search spaces, implemented in Python. + +*homepage*: + +version | toolchain +--------|---------- +``2.7.0`` | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pycoQC.md b/docs/version-specific/supported-software/p/pycoQC.md new file mode 100644 index 000000000..66ff457fa --- /dev/null +++ b/docs/version-specific/supported-software/p/pycoQC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pycoQC + +PycoQC computes metrics and generates interactive QC plots for Oxford Nanopore technologies sequencing data. + +*homepage*: + +version | toolchain +--------|---------- +``2.5.2`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pycocotools.md b/docs/version-specific/supported-software/p/pycocotools.md new file mode 100644 index 000000000..c9a21c06e --- /dev/null +++ b/docs/version-specific/supported-software/p/pycocotools.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# pycocotools + +Tools for working with the MSCOCO dataset + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.0.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``2.0.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.0.1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``2.0.2`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2.0.2`` | ``-Python-3.8.2`` | ``fosscuda/2020a`` +``2.0.4`` | | ``foss/2021a`` +``2.0.6`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pycodestyle.md b/docs/version-specific/supported-software/p/pycodestyle.md new file mode 100644 index 000000000..604c2ef59 --- /dev/null +++ b/docs/version-specific/supported-software/p/pycodestyle.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# pycodestyle + +pycodestyle is a tool to check your Python code against some of the style conventions in PEP 8. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.11.1`` | | ``foss/2022a`` +``2.11.1`` | | ``foss/2023a`` +``2.5.0`` | ``-Python-3.6.4`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pycubescd.md b/docs/version-specific/supported-software/p/pycubescd.md new file mode 100644 index 000000000..9b69b19e2 --- /dev/null +++ b/docs/version-specific/supported-software/p/pycubescd.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pycubescd + +Charge-displacement analysis via natural orbitals for chemical valence in the four-component relativistic framework + +*homepage*: + +version | toolchain +--------|---------- +``20220704`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pydantic.md b/docs/version-specific/supported-software/p/pydantic.md new file mode 100644 index 000000000..a723c9b46 --- /dev/null +++ b/docs/version-specific/supported-software/p/pydantic.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# pydantic + +Data validation and settings management using Python type hinting. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.10.13`` | | ``GCCcore/12.3.0`` +``1.10.2`` | | ``GCCcore/11.2.0`` +``1.10.4`` | | ``GCCcore/11.3.0`` +``1.6.1`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``2.5.3`` | | ``GCCcore/12.2.0`` +``2.5.3`` | | ``GCCcore/12.3.0`` +``2.6.4`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pydicom-seg.md b/docs/version-specific/supported-software/p/pydicom-seg.md new file mode 100644 index 000000000..fa3c7390e --- /dev/null +++ b/docs/version-specific/supported-software/p/pydicom-seg.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pydicom-seg + +Reading and writing of DICOM-SEG medical image segmentation storage files using pydicom as DICOM serialization/deserialization library. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pydicom.md b/docs/version-specific/supported-software/p/pydicom.md new file mode 100644 index 000000000..b06a99919 --- /dev/null +++ b/docs/version-specific/supported-software/p/pydicom.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# pydicom + +Read, modify and write DICOM files with python code + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.9.9`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.2.2`` | | ``GCCcore/8.2.0`` +``1.4.2`` | | ``GCCcore/8.3.0`` +``2.1.2`` | | ``GCCcore/10.2.0`` +``2.1.2`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``2.2.2`` | | ``GCCcore/10.3.0`` +``2.2.2`` | | ``GCCcore/11.2.0`` +``2.3.0`` | | ``GCCcore/11.3.0`` +``2.4.4`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pydlpoly.md b/docs/version-specific/supported-software/p/pydlpoly.md new file mode 100644 index 000000000..244c19a7b --- /dev/null +++ b/docs/version-specific/supported-software/p/pydlpoly.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# pydlpoly + +Pydlpoly is a molecular dynamics simulation package which is a modified version of DL-POLY with a Python language interface. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20150225`` | ``-Python-2.7.12`` | ``intel/2016b`` +``20150225`` | ``-Python-2.7.13`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pydot.md b/docs/version-specific/supported-software/p/pydot.md new file mode 100644 index 000000000..f1167d8ae --- /dev/null +++ b/docs/version-specific/supported-software/p/pydot.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# pydot + +Python interface to Graphviz's Dot language. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.1`` | ``GCCcore/9.3.0`` +``1.4.1`` | ``foss/2019b`` +``1.4.2`` | ``GCCcore/10.2.0`` +``1.4.2`` | ``GCCcore/10.3.0`` +``1.4.2`` | ``GCCcore/11.2.0`` +``1.4.2`` | ``GCCcore/11.3.0`` +``2.0.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyenchant.md b/docs/version-specific/supported-software/p/pyenchant.md new file mode 100644 index 000000000..3eb8553ed --- /dev/null +++ b/docs/version-specific/supported-software/p/pyenchant.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pyenchant + +PyEnchant is a spellchecking library for Python, based on the excellent Enchant library. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.6.8`` | ``-Python-2.7.13`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyfaidx.md b/docs/version-specific/supported-software/p/pyfaidx.md new file mode 100644 index 000000000..abae7cfd2 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyfaidx.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# pyfaidx + +pyfaidx: efficient pythonic random access to fasta subsequences + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.5.9.5`` | | ``GCCcore/10.2.0`` +``0.5.9.5`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``0.6.3.1`` | | ``GCCcore/10.3.0`` +``0.7.0`` | | ``GCCcore/11.2.0`` +``0.7.1`` | | ``GCCcore/11.3.0`` +``0.7.2.1`` | | ``GCCcore/12.2.0`` +``0.8.1.1`` | | ``GCCcore/12.3.0`` +``0.8.1.1`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyfasta.md b/docs/version-specific/supported-software/p/pyfasta.md new file mode 100644 index 000000000..99da34003 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyfasta.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pyfasta + +fast, memory-efficient, pythonic (and command-line) access to fasta sequence files + +*homepage*: + +version | toolchain +--------|---------- +``0.5.2`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyfits.md b/docs/version-specific/supported-software/p/pyfits.md new file mode 100644 index 000000000..4b956e645 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyfits.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pyfits + +The PyFITS module is a Python library providing access to FITS (Flexible Image Transport System) + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.5`` | ``-Python-2.7.15`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pygame.md b/docs/version-specific/supported-software/p/pygame.md new file mode 100644 index 000000000..f197a8066 --- /dev/null +++ b/docs/version-specific/supported-software/p/pygame.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# pygame + +Pygame is a set of Python modules designed for writing video games. Pygame adds functionality on top of the excellent SDL library. This allows you to create fully featured games and multimedia programs in the python language. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.0`` | ``GCCcore/11.3.0`` +``2.5.2`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pygccxml.md b/docs/version-specific/supported-software/p/pygccxml.md new file mode 100644 index 000000000..632191a93 --- /dev/null +++ b/docs/version-specific/supported-software/p/pygccxml.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# pygccxml + +Python package for easy C++ declarations navigation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20160706`` | ``-Python-2.7.11`` | ``foss/2016a`` +``20160706`` | ``-Python-3.5.1`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pygmo.md b/docs/version-specific/supported-software/p/pygmo.md new file mode 100644 index 000000000..210c8eb7e --- /dev/null +++ b/docs/version-specific/supported-software/p/pygmo.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# pygmo + +pygmo is a scientific Python library for massively parallel optimization. + +*homepage*: + +version | toolchain +--------|---------- +``2.16.1`` | ``foss/2020b`` +``2.18.0`` | ``foss/2021a`` +``2.18.0`` | ``foss/2021b`` +``2.18.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pygraphviz.md b/docs/version-specific/supported-software/p/pygraphviz.md new file mode 100644 index 000000000..67d433eb1 --- /dev/null +++ b/docs/version-specific/supported-software/p/pygraphviz.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# pygraphviz + +PyGraphviz is a Python interface to the Graphviz graph layout and visualization package. With PyGraphviz you can create, edit, read, write, and draw graphs using Python to access the Graphviz graph data structure and layout algorithms. + +*homepage*: + +version | toolchain +--------|---------- +``1.10`` | ``GCCcore/11.3.0`` +``1.11`` | ``GCCcore/12.3.0`` +``1.5`` | ``foss/2019b`` +``1.7`` | ``foss/2020b`` +``1.7`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pygrib.md b/docs/version-specific/supported-software/p/pygrib.md new file mode 100644 index 000000000..3ddc158cc --- /dev/null +++ b/docs/version-specific/supported-software/p/pygrib.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pygrib + +Python interface for reading and writing GRIB data + +*homepage*: + +version | toolchain +--------|---------- +``2.0.4`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyhdf.md b/docs/version-specific/supported-software/p/pyhdf.md new file mode 100644 index 000000000..eb2886fbe --- /dev/null +++ b/docs/version-specific/supported-software/p/pyhdf.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pyhdf + +Python wrapper around the NCSA HDF version 4 library + +*homepage*: + +version | toolchain +--------|---------- +``0.10.1`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyiron.md b/docs/version-specific/supported-software/p/pyiron.md new file mode 100644 index 000000000..16f58e5b5 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyiron.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# pyiron + +An integrated development environment (IDE) for computational materials science. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.5`` | ``-Python-3.7.2`` | ``intel/2019a`` +``0.3.0`` | ``-Python-3.8.2`` | ``intel/2020a`` +``0.5.1`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pylift.md b/docs/version-specific/supported-software/p/pylift.md new file mode 100644 index 000000000..9c56adb2d --- /dev/null +++ b/docs/version-specific/supported-software/p/pylift.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# pylift + +pylift is an uplift library that provides, primarily: (1) Fast uplift modeling implementations and (2) Evaluation tools (UpliftEval class). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.5`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.1.5`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pylipid.md b/docs/version-specific/supported-software/p/pylipid.md new file mode 100644 index 000000000..38d328a00 --- /dev/null +++ b/docs/version-specific/supported-software/p/pylipid.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pylipid + +PyLipID is a python package for analyzing lipid interactions with membrane proteins from Molecular Dynamics Simulations. + +*homepage*: + +version | toolchain +--------|---------- +``1.5.14`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pymatgen-db.md b/docs/version-specific/supported-software/p/pymatgen-db.md new file mode 100644 index 000000000..eebf802aa --- /dev/null +++ b/docs/version-specific/supported-software/p/pymatgen-db.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pymatgen-db + +Pymatgen-db is a database add-on for the Python Materials Genomics (pymatgen) materials analysis library. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.6.5`` | ``-Python-2.7.13`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pymatgen.md b/docs/version-specific/supported-software/p/pymatgen.md new file mode 100644 index 000000000..0cc9baa0b --- /dev/null +++ b/docs/version-specific/supported-software/p/pymatgen.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# pymatgen + +Python Materials Genomics is a robust materials analysis code that defines core object representations for structures and molecules with support for many electronic structure codes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2017.10.16`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2017.10.16`` | ``-Python-3.6.3`` | ``intel/2017b`` +``2022.0.4`` | | ``foss/2020b`` +``2023.12.18`` | | ``foss/2023a`` +``2023.3.10`` | | ``foss/2022a`` +``3.5.0`` | ``-Python-2.7.11`` | ``intel/2016.02-GCC-4.9`` +``4.1.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``4.3.2`` | ``-Python-2.7.12`` | ``intel/2016b`` +``4.7.3`` | ``-Python-2.7.13`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pymbar.md b/docs/version-specific/supported-software/p/pymbar.md new file mode 100644 index 000000000..e2a3727b6 --- /dev/null +++ b/docs/version-specific/supported-software/p/pymbar.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# pymbar + +The pymbar package contains the pymbar suite of tools for the analysis of simulated and experimental data with the multistate Bennett acceptance ratio (MBAR) estimator. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.3`` | ``-Python-3.6.3`` | ``intel/2017b`` +``3.0.3`` | ``-Python-3.8.2`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pymca.md b/docs/version-specific/supported-software/p/pymca.md new file mode 100644 index 000000000..51a64e1be --- /dev/null +++ b/docs/version-specific/supported-software/p/pymca.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# pymca + +The PyMca X-Ray Fluorescence Toolkit, including PyMca5 and fisx. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.6.3`` | ``-Python-3.7.4`` | ``foss/2019b`` +``5.6.3`` | | ``foss/2020b`` +``5.6.3`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``5.6.3`` | | ``fosscuda/2020b`` +``5.7.6`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pymemcache.md b/docs/version-specific/supported-software/p/pymemcache.md new file mode 100644 index 000000000..ae2ff5f2d --- /dev/null +++ b/docs/version-specific/supported-software/p/pymemcache.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# pymemcache + +A comprehensive, fast, pure-Python memcached client. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.1`` | ``-Python-3.6.4`` | ``foss/2018a`` +``2.1.1`` | ``-Python-3.6.4`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyobjcryst.md b/docs/version-specific/supported-software/p/pyobjcryst.md new file mode 100644 index 000000000..7f3fc405b --- /dev/null +++ b/docs/version-specific/supported-software/p/pyobjcryst.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# pyobjcryst + +Python bindings to ObjCryst++, the Object-Oriented Crystallographic Library. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.0.post2`` | ``-Python-3.8.2`` | ``intel/2020a`` +``2.2.1`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyodbc.md b/docs/version-specific/supported-software/p/pyodbc.md new file mode 100644 index 000000000..13df7e4f9 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyodbc.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pyodbc + +pyodbc is an open source Python module that makes accessing ODBC databases simple. It implements the DB API 2.0 specification but is packed with even more Pythonic convenience. + +*homepage*: + +version | toolchain +--------|---------- +``4.0.39`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyparsing.md b/docs/version-specific/supported-software/p/pyparsing.md new file mode 100644 index 000000000..b656f6c43 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyparsing.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# pyparsing + +The pyparsing module is an alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions. The pyparsing module provides a library of classes that client code uses to construct the grammar directly in Python code. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.4.6`` | ``-Python-2.7.16`` | ``GCCcore/8.3.0`` +``3.0.9`` | | ``GCCcore/11.3.0`` +``3.1.1`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyperf.md b/docs/version-specific/supported-software/p/pyperf.md new file mode 100644 index 000000000..00881cc20 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyperf.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# pyperf + +The Python pyperf module is a toolkit to write, run and analyze benchmarks + +*homepage*: + +version | toolchain +--------|---------- +``2.5.0`` | ``GCCcore/11.3.0`` +``2.6.0`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyplusplus.md b/docs/version-specific/supported-software/p/pyplusplus.md new file mode 100644 index 000000000..1f3845208 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyplusplus.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# pyplusplus + +Py++ is a code generator for Boost.Python that simplifies writing Python bindings of a C/C++ library The tool is implemented as a Python module which is controlled by a user script. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20160707`` | ``-Python-2.7.11`` | ``foss/2016a`` +``20160707`` | ``-Python-3.5.1`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pypmt.md b/docs/version-specific/supported-software/p/pypmt.md new file mode 100644 index 000000000..9f291a53e --- /dev/null +++ b/docs/version-specific/supported-software/p/pypmt.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# pypmt + +PMT is a high-level software library capable of collecting power consumption measurements on various hardware. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``foss/2022a`` +``1.1.0`` | ``gfbf/2023a`` +``1.2.0`` | ``foss/2022a`` +``1.2.0`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyproj.md b/docs/version-specific/supported-software/p/pyproj.md new file mode 100644 index 000000000..27d1299ae --- /dev/null +++ b/docs/version-specific/supported-software/p/pyproj.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# pyproj + +Python interface to PROJ4 library for cartographic transformations + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.3`` | | ``GCCcore/8.2.0`` +``2.4.2`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``2.6.1.post1`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``3.0.1`` | | ``GCCcore/10.2.0`` +``3.1.0`` | | ``GCCcore/10.3.0`` +``3.3.1`` | | ``GCCcore/11.2.0`` +``3.3.1`` | | ``GCCcore/11.3.0`` +``3.4.0`` | | ``GCCcore/11.3.0`` +``3.5.0`` | | ``GCCcore/12.2.0`` +``3.6.0`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyqstem.md b/docs/version-specific/supported-software/p/pyqstem.md new file mode 100644 index 000000000..7407e6884 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyqstem.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# pyqstem + +QSTEM is a program for quantitative image simulation in electron microscopy, including TEM, STEM and CBED image simulation. This project interfaces the QSTEM code with Python and the Atomic Simulation Environment (ASE) to provide a single environment for building models, simulating and analysing images. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.3`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.0.3`` | ``-ASE-3.22.0`` | ``foss/2020b`` +``1.0.3`` | ``-ASE-3.22.0`` | ``fosscuda/2020b`` +``1.0.3`` | ``-Python-3.6.6`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyradiomics.md b/docs/version-specific/supported-software/p/pyradiomics.md new file mode 100644 index 000000000..802c7d568 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyradiomics.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# pyradiomics + +Open-source python package for the extraction of Radiomics features from 2D and 3D images and binary masks. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``3.0.1`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyringe.md b/docs/version-specific/supported-software/p/pyringe.md new file mode 100644 index 000000000..1854935b2 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyringe.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pyringe + +Debugger capable of attaching to and injecting code into python processes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.2`` | ``-Python-2.7.11`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyro-api.md b/docs/version-specific/supported-software/p/pyro-api.md new file mode 100644 index 000000000..76503c392 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyro-api.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pyro-api + +Pyro is a flexible, scalable deep probabilistic programming library built on PyTorch. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.2`` | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyro-ppl.md b/docs/version-specific/supported-software/p/pyro-ppl.md new file mode 100644 index 000000000..3edb0312d --- /dev/null +++ b/docs/version-specific/supported-software/p/pyro-ppl.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# pyro-ppl + +Pyro is a flexible, scalable deep probabilistic programming library built on PyTorch. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5.2`` | | ``fosscuda/2020b`` +``1.8.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``1.8.4`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``1.8.4`` | | ``foss/2022a`` +``1.9.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` +``1.9.0`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pysamstats.md b/docs/version-specific/supported-software/p/pysamstats.md new file mode 100644 index 000000000..2d0b4dc4b --- /dev/null +++ b/docs/version-specific/supported-software/p/pysamstats.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pysamstats + +A Python utility for calculating statistics against genome positions based on sequence alignments from a SAM or BAM file. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.2`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyseer.md b/docs/version-specific/supported-software/p/pyseer.md new file mode 100644 index 000000000..38155eb80 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyseer.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pyseer + +pyseer was first written a python reimplementation of seer, which was written in C++. pyseer uses linear models with fixed or mixed effects to estimate the effect of genetic variation in a bacterial population on a phenotype of interest, while accounting for potentially very strong confounding population structure. This allows for genome-wide association studies (GWAS) to be performed in clonal organisms such as bacteria and viruses. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.11`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pysheds.md b/docs/version-specific/supported-software/p/pysheds.md new file mode 100644 index 000000000..a7911199e --- /dev/null +++ b/docs/version-specific/supported-software/p/pysheds.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pysheds + +Simple and fast watershed delineation in python. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.7.1`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyshp.md b/docs/version-specific/supported-software/p/pyshp.md new file mode 100644 index 000000000..13e72542b --- /dev/null +++ b/docs/version-specific/supported-software/p/pyshp.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# pyshp + +Pure Python read/write support for ESRI Shapefile format + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.12`` | ``-Python-3.6.2`` | ``foss/2017b`` +``2.1.3`` | | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyslim.md b/docs/version-specific/supported-software/p/pyslim.md new file mode 100644 index 000000000..4788b46b4 --- /dev/null +++ b/docs/version-specific/supported-software/p/pyslim.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# pyslim + +A Python API for reading and modifying tskit tree sequence files produced by SLiM, or modifying files produced by other programs (e.g., msprime, fwdpy11, and tsinfer) for use in SLiM. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.1`` | ``foss/2021b`` +``1.0.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pysndfx.md b/docs/version-specific/supported-software/p/pysndfx.md new file mode 100644 index 000000000..6a7321dcf --- /dev/null +++ b/docs/version-specific/supported-software/p/pysndfx.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pysndfx + +A lightweight Python wrapper for SoX - Sound eXchange. Supported effects range from EQ and compression to phasers, reverb and pitch shifters. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.6`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pyspoa.md b/docs/version-specific/supported-software/p/pyspoa.md new file mode 100644 index 000000000..8862e9e5f --- /dev/null +++ b/docs/version-specific/supported-software/p/pyspoa.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# pyspoa + +Python bindings to spoa. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.0.4`` | ``-Python-3.7.4`` | ``GCC/8.3.0`` +``0.0.8`` | | ``GCC/10.2.0`` +``0.0.8`` | | ``GCC/10.3.0`` +``0.0.8`` | | ``GCC/11.2.0`` +``0.0.9`` | | ``GCC/11.3.0`` +``0.0.9`` | | ``GCC/12.2.0`` +``0.2.1`` | | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pysqlite.md b/docs/version-specific/supported-software/p/pysqlite.md new file mode 100644 index 000000000..d1ae0ebd3 --- /dev/null +++ b/docs/version-specific/supported-software/p/pysqlite.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pysqlite + +pysqlite is an interface to the SQLite 3.x embedded relational database engine. It is almost fully compliant with the Python database API version 2.0 also exposes the unique features of SQLite. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.8.2`` | ``-Python-2.7.11`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pysteps.md b/docs/version-specific/supported-software/p/pysteps.md new file mode 100644 index 000000000..e51daa4d9 --- /dev/null +++ b/docs/version-specific/supported-software/p/pysteps.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pysteps + +Pysteps is an open-source and community-driven Python library for probabilistic precipitation nowcasting, i.e. short-term ensemble prediction systems. + +*homepage*: + +version | toolchain +--------|---------- +``1.7.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pystran.md b/docs/version-specific/supported-software/p/pystran.md new file mode 100644 index 000000000..b12bb76f1 --- /dev/null +++ b/docs/version-specific/supported-software/p/pystran.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pystran + +Toolset of dynamical model STRucture ANalysis algorithms + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2017.04.20`` | ``-Python-2.7.14`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pytesseract.md b/docs/version-specific/supported-software/p/pytesseract.md new file mode 100644 index 000000000..d436dff91 --- /dev/null +++ b/docs/version-specific/supported-software/p/pytesseract.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pytesseract + +Python-tesseract is an optical character recognition (OCR) tool for python. That is, it will recognize and "read" the text embedded in images. Python-tesseract is a wrapper for Google's Tesseract-OCR Engine. It is also useful as a stand-alone invocation script to tesseract, as it can read all image types supported by the Pillow and Leptonica imaging libraries, including jpeg, png, gif, bmp, tiff, and others. Additionally, if used as a script, Python-tesseract will print the recognized text instead of writing it to a file. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.10`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pytest-benchmark.md b/docs/version-specific/supported-software/p/pytest-benchmark.md new file mode 100644 index 000000000..deff707d2 --- /dev/null +++ b/docs/version-specific/supported-software/p/pytest-benchmark.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pytest-benchmark + +A pytest fixture for benchmarking code. + +*homepage*: + +version | toolchain +--------|---------- +``3.4.1`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pytest-cpp.md b/docs/version-specific/supported-software/p/pytest-cpp.md new file mode 100644 index 000000000..3e44e7932 --- /dev/null +++ b/docs/version-specific/supported-software/p/pytest-cpp.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pytest-cpp + +Use pytest runner to discover and execute C++ tests. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.0`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pytest-flakefinder.md b/docs/version-specific/supported-software/p/pytest-flakefinder.md new file mode 100644 index 000000000..98eca0bcb --- /dev/null +++ b/docs/version-specific/supported-software/p/pytest-flakefinder.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# pytest-flakefinder + +Runs tests multiple times to expose flakiness. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``GCCcore/11.3.0`` +``1.1.0`` | ``GCCcore/12.2.0`` +``1.1.0`` | ``GCCcore/12.3.0`` +``1.1.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pytest-rerunfailures.md b/docs/version-specific/supported-software/p/pytest-rerunfailures.md new file mode 100644 index 000000000..84013a7ea --- /dev/null +++ b/docs/version-specific/supported-software/p/pytest-rerunfailures.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# pytest-rerunfailures + +pytest plugin to re-run tests to eliminate flaky failures. + +*homepage*: + +version | toolchain +--------|---------- +``11.1`` | ``GCCcore/11.3.0`` +``12.0`` | ``GCCcore/12.2.0`` +``12.0`` | ``GCCcore/12.3.0`` +``14.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pytest-shard.md b/docs/version-specific/supported-software/p/pytest-shard.md new file mode 100644 index 000000000..210ce004a --- /dev/null +++ b/docs/version-specific/supported-software/p/pytest-shard.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# pytest-shard + +pytest plugin to support parallelism across multiple machines. Shards tests based on a hash of their test name enabling easy parallelism across machines, suitable for a wide variety of continuous integration services. Tests are split at the finest level of granularity, individual test cases, enabling parallelism even if all of your tests are in a single file (or even single parameterized test method). + +*homepage*: + +version | toolchain +--------|---------- +``0.1.2`` | ``GCCcore/11.3.0`` +``0.1.2`` | ``GCCcore/12.2.0`` +``0.1.2`` | ``GCCcore/12.3.0`` +``0.1.2`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pytest-workflow.md b/docs/version-specific/supported-software/p/pytest-workflow.md new file mode 100644 index 000000000..28b33e0ac --- /dev/null +++ b/docs/version-specific/supported-software/p/pytest-workflow.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# pytest-workflow + +Configure workflow/pipeline tests using yaml files. pytest-workflow is a workflow-system agnostic testing framework that aims to make pipeline/workflow testing easy by using YAML files for the test configuration. Whether you write your pipelines in WDL, snakemake, nextflow, bash or any other workflow framework, pytest-workflow makes testing easy. pytest-workflow is build on top of the pytest test framework. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.1`` | ``GCCcore/12.2.0`` +``2.1.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pytest-xdist.md b/docs/version-specific/supported-software/p/pytest-xdist.md new file mode 100644 index 000000000..b5f020663 --- /dev/null +++ b/docs/version-specific/supported-software/p/pytest-xdist.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# pytest-xdist + +xdist: pytest distributed testing plugin The pytest-xdist plugin extends pytest with some unique test execution modes: * test run parallelization: if you have multiple CPUs or hosts you can use those for a combined test run. This allows to speed up development or to use special resources of remote machines. * --looponfail: run your tests repeatedly in a subprocess. After each run pytest waits until a file in your project changes and then re-runs the previously failing tests. This is repeated until all tests pass after which again a full run is performed. * Multi-Platform coverage: you can specify different Python interpreters or different platforms and run tests in parallel on all of them. Before running tests remotely, pytest efficiently “rsyncs” your program source code to the remote place. All test results are reported back and displayed to your local terminal. You may specify different Python versions and interpreters. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.0`` | ``GCCcore/10.2.0`` +``2.3.0`` | ``GCCcore/10.2.0`` +``2.3.0`` | ``GCCcore/10.3.0`` +``2.5.0`` | ``GCCcore/11.2.0`` +``2.5.0`` | ``GCCcore/11.3.0`` +``3.3.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pytest.md b/docs/version-specific/supported-software/p/pytest.md new file mode 100644 index 000000000..9dece5f48 --- /dev/null +++ b/docs/version-specific/supported-software/p/pytest.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# pytest + +pytest: simple powerful testing with Python + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.1`` | ``-Python-2.7.11`` | ``foss/2016a`` +``3.0.1`` | ``-Python-3.5.1`` | ``foss/2016a`` +``3.8.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``3.8.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``3.8.2`` | ``-Python-2.7.14`` | ``foss/2017b`` +``3.8.2`` | ``-Python-3.6.3`` | ``foss/2017b`` +``3.8.2`` | ``-Python-3.6.6`` | ``foss/2018b`` +``3.8.2`` | ``-Python-2.7.14`` | ``intel/2017b`` +``3.8.2`` | ``-Python-3.6.3`` | ``intel/2017b`` +``3.8.2`` | ``-Python-2.7.15`` | ``intel/2018b`` +``3.8.2`` | ``-Python-3.6.6`` | ``intel/2018b`` +``4.3.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``4.3.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``4.4.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``4.4.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``4.4.0`` | ``-Python-2.7.15`` | ``intel/2018b`` +``4.4.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``6.0.1`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``7.1.3`` | | ``GCCcore/11.2.0`` +``7.2.2`` | | ``GCCcore/11.2.0`` +``7.4.2`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pythermalcomfort.md b/docs/version-specific/supported-software/p/pythermalcomfort.md new file mode 100644 index 000000000..b2f619c2c --- /dev/null +++ b/docs/version-specific/supported-software/p/pythermalcomfort.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pythermalcomfort + +Package to calculate several thermal comfort indices (e.g. PMV, PPD, SET, adaptive) and convert physical variables. + +*homepage*: + +version | toolchain +--------|---------- +``2.8.10`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/python-Levenshtein.md b/docs/version-specific/supported-software/p/python-Levenshtein.md new file mode 100644 index 000000000..97a4c8dcf --- /dev/null +++ b/docs/version-specific/supported-software/p/python-Levenshtein.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# python-Levenshtein + +Python extension for computing string edit distances and similarities. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.12.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.12.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.12.1`` | | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/python-casacore.md b/docs/version-specific/supported-software/p/python-casacore.md new file mode 100644 index 000000000..105dec5bd --- /dev/null +++ b/docs/version-specific/supported-software/p/python-casacore.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# python-casacore + +Python-casacore is a set of Python bindings for casacore, a c++ library used in radio astronomy. Python-casacore replaces the old pyrap. + +*homepage*: + +version | toolchain +--------|---------- +``3.5.2`` | ``foss/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/python-docx.md b/docs/version-specific/supported-software/p/python-docx.md new file mode 100644 index 000000000..2042ecabe --- /dev/null +++ b/docs/version-specific/supported-software/p/python-docx.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# python-docx + +python-docx is a Python library for creating and updating Microsoft Word (.docx) files + +*homepage*: + +version | toolchain +--------|---------- +``0.8.11`` | ``GCCcore/10.2.0`` +``0.8.11`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/python-hl7.md b/docs/version-specific/supported-software/p/python-hl7.md new file mode 100644 index 000000000..027e646f7 --- /dev/null +++ b/docs/version-specific/supported-software/p/python-hl7.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# python-hl7 + +A simple library for parsing messages of Health Level 7 (HL7) version 2.x into Python objects. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.4`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/python-igraph.md b/docs/version-specific/supported-software/p/python-igraph.md new file mode 100644 index 000000000..e7b094449 --- /dev/null +++ b/docs/version-specific/supported-software/p/python-igraph.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# python-igraph + +Python interface to the igraph high performance graph library, primarily aimed at complex network research and analysis. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.3`` | | ``foss/2022a`` +``0.10.6`` | | ``foss/2022b`` +``0.11.4`` | | ``foss/2023a`` +``0.7.1.post6`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.7.1.post6`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.8.0`` | | ``foss/2019b`` +``0.8.0`` | | ``foss/2020a`` +``0.9.0`` | | ``foss/2020b`` +``0.9.0`` | | ``fosscuda/2020b`` +``0.9.6`` | | ``foss/2021a`` +``0.9.8`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/python-irodsclient.md b/docs/version-specific/supported-software/p/python-irodsclient.md new file mode 100644 index 000000000..68a52ed84 --- /dev/null +++ b/docs/version-specific/supported-software/p/python-irodsclient.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# python-irodsclient + +A python API for iRODS + +*homepage*: + +version | toolchain +--------|---------- +``1.1.4`` | ``GCCcore/10.3.0`` +``1.1.4`` | ``GCCcore/11.2.0`` +``2.0.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/python-isal.md b/docs/version-specific/supported-software/p/python-isal.md new file mode 100644 index 000000000..29e83ee50 --- /dev/null +++ b/docs/version-specific/supported-software/p/python-isal.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# python-isal + +Faster zlib and gzip compatible compression and decompression by providing python bindings for the isa-l library. + +*homepage*: + +version | toolchain +--------|---------- +``0.11.0`` | ``GCCcore/10.3.0`` +``0.11.1`` | ``GCCcore/10.2.0`` +``0.11.1`` | ``GCCcore/11.2.0`` +``1.1.0`` | ``GCCcore/11.3.0`` +``1.1.0`` | ``GCCcore/12.2.0`` +``1.1.0`` | ``GCCcore/12.3.0`` +``1.6.1`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/python-libsbml.md b/docs/version-specific/supported-software/p/python-libsbml.md new file mode 100644 index 000000000..3a47b2b14 --- /dev/null +++ b/docs/version-specific/supported-software/p/python-libsbml.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# python-libsbml + +LibSBML Python API. + +*homepage*: + +version | toolchain +--------|---------- +``5.19.7`` | ``foss/2021a`` +``5.20.2`` | ``foss/2021b`` +``5.20.2`` | ``foss/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/python-louvain.md b/docs/version-specific/supported-software/p/python-louvain.md new file mode 100644 index 000000000..f9d4d0910 --- /dev/null +++ b/docs/version-specific/supported-software/p/python-louvain.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# python-louvain + +Louvain algorithm for community detection + +*homepage*: + +version | toolchain +--------|---------- +``0.15`` | ``foss/2021b`` +``0.16`` | ``foss/2022a`` +``0.16`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/python-mujoco.md b/docs/version-specific/supported-software/p/python-mujoco.md new file mode 100644 index 000000000..00bd032fa --- /dev/null +++ b/docs/version-specific/supported-software/p/python-mujoco.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# python-mujoco + +This package is the canonical Python bindings for the MuJoCo physics engine. The mujoco package provides direct access to raw MuJoCo C API functions, structs, constants, and enumerations. Structs are provided as Python classes, with Pythonic initialization and deletion semantics. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.2`` | ``foss/2022a`` +``3.1.4`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/python-parasail.md b/docs/version-specific/supported-software/p/python-parasail.md new file mode 100644 index 000000000..b0bc23e7c --- /dev/null +++ b/docs/version-specific/supported-software/p/python-parasail.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# python-parasail + +This package contains Python bindings for parasail. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.12`` | ``-Python-2.7.14`` | ``intel/2018a`` +``1.1.16`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.2`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.2`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``1.2`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.2.2`` | ``-Python-3.8.2`` | ``intel/2020a`` +``1.2.3`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.2.4`` | | ``foss/2020b`` +``1.2.4`` | | ``foss/2021a`` +``1.2.4`` | | ``foss/2021b`` +``1.2.4`` | | ``fosscuda/2020b`` +``1.3.3`` | | ``foss/2022a`` +``1.3.4`` | | ``foss/2022b`` +``1.3.4`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/python-telegram-bot.md b/docs/version-specific/supported-software/p/python-telegram-bot.md new file mode 100644 index 000000000..7796c7c63 --- /dev/null +++ b/docs/version-specific/supported-software/p/python-telegram-bot.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# python-telegram-bot + +This library provides a pure Python, asynchronous interface for the Telegram Bot API. It's compatible with Python versions 3.7+. + +*homepage*: + +version | toolchain +--------|---------- +``20.0a0`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/python-weka-wrapper3.md b/docs/version-specific/supported-software/p/python-weka-wrapper3.md new file mode 100644 index 000000000..c12c131af --- /dev/null +++ b/docs/version-specific/supported-software/p/python-weka-wrapper3.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# python-weka-wrapper3 + +Python3 wrapper for the Weka Machine Learning Workbench + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.11`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/python-xxhash.md b/docs/version-specific/supported-software/p/python-xxhash.md new file mode 100644 index 000000000..e2a908b88 --- /dev/null +++ b/docs/version-specific/supported-software/p/python-xxhash.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# python-xxhash + +Python bindings for xxHash. xxHash is an extremely fast non-cryptographic hash algorithm, working at RAM speed limit. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.2`` | ``GCCcore/10.2.0`` +``3.1.0`` | ``GCCcore/11.3.0`` +``3.2.0`` | ``GCCcore/12.2.0`` +``3.4.1`` | ``GCCcore/12.3.0`` +``3.4.1`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pythran.md b/docs/version-specific/supported-software/p/pythran.md new file mode 100644 index 000000000..c150351de --- /dev/null +++ b/docs/version-specific/supported-software/p/pythran.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pythran + +Pythran is an ahead of time compiler for a subset of the Python language, with a focus on scientific computing. It takes a Python module annotated with a few interface description and turns it into a native Python module with the same interface, but (hopefully) faster. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.9.4.post1`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pytorch-3dunet.md b/docs/version-specific/supported-software/p/pytorch-3dunet.md new file mode 100644 index 000000000..dd1e80d1a --- /dev/null +++ b/docs/version-specific/supported-software/p/pytorch-3dunet.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pytorch-3dunet + +PyTorch implementation of 3D U-Net and its variants: - UNet3D: Standard 3D U-Net based on 3D U-Net: Learning Dense Volumetric Segmentation from Sparse Annotation - ResidualUNet3D: Residual 3D U-Net based on Superhuman Accuracy on the SNEMI3D Connectomics Challenge - ResidualUNetSE3D: Similar to ResidualUNet3D with the addition of Squeeze and Excitation blocks based on Deep Learning Semantic Segmentation for High- Resolution Medical Volumes. Original squeeze and excite paper: Squeeze-and- Excitation Networks The code allows for training the U-Net for both: semantic segmentation (binary and multi-class) and regression problems (e.g. de-noising, learning deconvolutions). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.6.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/p/pytorch-CycleGAN-pix2pix.md b/docs/version-specific/supported-software/p/pytorch-CycleGAN-pix2pix.md new file mode 100644 index 000000000..9f05c213c --- /dev/null +++ b/docs/version-specific/supported-software/p/pytorch-CycleGAN-pix2pix.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# pytorch-CycleGAN-pix2pix + +PyTorch implementations for both unpaired and paired image-to-image translation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20230314`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/Q6.md b/docs/version-specific/supported-software/q/Q6.md new file mode 100644 index 000000000..bc11f0519 --- /dev/null +++ b/docs/version-specific/supported-software/q/Q6.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Q6 + +EVB, FEP and LIE simulator. + +*homepage*: + +version | toolchain +--------|---------- +``20180205`` | ``gompi/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QCA.md b/docs/version-specific/supported-software/q/QCA.md new file mode 100644 index 000000000..74b3a3bff --- /dev/null +++ b/docs/version-specific/supported-software/q/QCA.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# QCA + +Taking a hint from the similarly-named Java Cryptography Architecture, QCA aims to provide a straightforward and cross-platform crypto API, using Qt datatypes and conventions. QCA separates the API from the implementation, using plugins known as Providers. The advantage of this model is to allow applications to avoid linking to or explicitly depending on any particular cryptographic library. This allows one to easily change or upgrade crypto implementations without even needing to recompile the application! QCA should work everywhere Qt does, including Windows/Unix/MacOSX. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.0`` | ``foss/2016a`` +``2.1.0`` | ``intel/2016b`` +``2.1.3`` | ``GCCcore/8.2.0`` +``2.1.3`` | ``foss/2016b`` +``2.1.3`` | ``intel/2016b`` +``2.3.5`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QCG-PilotJob.md b/docs/version-specific/supported-software/q/QCG-PilotJob.md new file mode 100644 index 000000000..a220d1efb --- /dev/null +++ b/docs/version-specific/supported-software/q/QCG-PilotJob.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# QCG-PilotJob + +A python service for easy execution of many tasks inside a single allocation. + +*homepage*: + +version | toolchain +--------|---------- +``0.12.3`` | ``foss/2021a`` +``0.13.1`` | ``foss/2022a`` +``0.13.1`` | ``gfbf/2022b`` +``0.13.1`` | ``gfbf/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QCxMS.md b/docs/version-specific/supported-software/q/QCxMS.md new file mode 100644 index 000000000..3f09d70c5 --- /dev/null +++ b/docs/version-specific/supported-software/q/QCxMS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# QCxMS + +QCxMS is a quantum chemical based program to calculate electron ionization (EI) and collision induced dissociation (CID) mass spectra using Born-Oppenheimer Molecular Dynamics (BO-MD). It is the successor of the QCEIMS program, in which the EI part is exchanged to x to account for the greater general applicibility of the program. + +*homepage*: + +version | toolchain +--------|---------- +``5.0.3`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QD.md b/docs/version-specific/supported-software/q/QD.md new file mode 100644 index 000000000..bacef4f64 --- /dev/null +++ b/docs/version-specific/supported-software/q/QD.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# QD + +QD-Engineering Python Library for CAE + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8.9`` | | ``foss/2021a`` +``2.3.17`` | ``-20160110`` | ``NVHPC/21.2`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QDD.md b/docs/version-specific/supported-software/q/QDD.md new file mode 100644 index 000000000..81f8b2b4d --- /dev/null +++ b/docs/version-specific/supported-software/q/QDD.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# QDD + +A user-friendly program to select microsatellite markers and design primers from large sequencing projects. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.1.2`` | ``-Perl-5.28.0`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QEMU.md b/docs/version-specific/supported-software/q/QEMU.md new file mode 100644 index 000000000..fc64a86e4 --- /dev/null +++ b/docs/version-specific/supported-software/q/QEMU.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# QEMU + +QEMU is a generic and open source machine emulator and virtualizer. + +*homepage*: + +version | toolchain +--------|---------- +``2.10.1`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QGIS.md b/docs/version-specific/supported-software/q/QGIS.md new file mode 100644 index 000000000..4b01bd99a --- /dev/null +++ b/docs/version-specific/supported-software/q/QGIS.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# QGIS + +QGIS is a user friendly Open Source Geographic Information System (GIS) + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.14.12`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2.18.4`` | ``-Python-2.7.12`` | ``foss/2016b`` +``3.28.1`` | | ``foss/2021b`` +``3.4.12`` | ``-Python-3.7.2`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QIIME.md b/docs/version-specific/supported-software/q/QIIME.md new file mode 100644 index 000000000..20bee595e --- /dev/null +++ b/docs/version-specific/supported-software/q/QIIME.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# QIIME + +QIIME is an open-source bioinformatics pipeline for performing microbiome analysis from raw DNA sequencing data. + +*homepage*: + +version | toolchain +--------|---------- +``1.9.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QIIME2.md b/docs/version-specific/supported-software/q/QIIME2.md new file mode 100644 index 000000000..d11524976 --- /dev/null +++ b/docs/version-specific/supported-software/q/QIIME2.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# QIIME2 + +QIIME is an open-source bioinformatics pipeline for performing microbiome analysis from raw DNA sequencing data. + +*homepage*: + +version | toolchain +--------|---------- +``2017.10`` | ``system`` +``2018.2`` | ``system`` +``2019.4`` | ``system`` +``2019.7`` | ``system`` +``2020.11`` | ``system`` +``2020.8`` | ``system`` +``2021.8`` | ``system`` +``2022.11`` | ``system`` +``2022.8`` | ``system`` +``2023.5.1`` | ``foss/2022a`` +``2023.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QJson.md b/docs/version-specific/supported-software/q/QJson.md new file mode 100644 index 000000000..74df14c85 --- /dev/null +++ b/docs/version-specific/supported-software/q/QJson.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# QJson + +QJson is a Qt-based library that maps JSON data to QVariant objects and vice versa. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.0`` | ``GCCcore/10.2.0`` +``0.9.0`` | ``GCCcore/8.2.0`` +``0.9.0`` | ``foss/2016b`` +``0.9.0`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QML.md b/docs/version-specific/supported-software/q/QML.md new file mode 100644 index 000000000..e4cbd9c2d --- /dev/null +++ b/docs/version-specific/supported-software/q/QML.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# QML + +QML is a Python2/3-compatible toolkit for representation learning of properties of molecules and solids. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.10`` | ``-Python-2.7.13`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QScintilla.md b/docs/version-specific/supported-software/q/QScintilla.md new file mode 100644 index 000000000..8201a47d2 --- /dev/null +++ b/docs/version-specific/supported-software/q/QScintilla.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# QScintilla + +QScintilla is a port to Qt of Neil Hodgson's Scintilla C++ editor control + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.10`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2.10`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2.11.2`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` +``2.11.6`` | | ``GCCcore/11.2.0`` +``2.9.4`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2.9.4`` | ``-Python-2.7.12`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QTLtools.md b/docs/version-specific/supported-software/q/QTLtools.md new file mode 100644 index 000000000..2dbf9fa3a --- /dev/null +++ b/docs/version-specific/supported-software/q/QTLtools.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# QTLtools + +QTLtools is a tool set for molecular QTL discovery and analysis. It allows to go from the raw sequence data to collection of molecular Quantitative Trait Loci (QTLs) in few easy-to-perform steps. + +*homepage*: + +version | toolchain +--------|---------- +``1.1`` | ``intel/2016b`` +``1.3.1`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QUAST.md b/docs/version-specific/supported-software/q/QUAST.md new file mode 100644 index 000000000..eceda8355 --- /dev/null +++ b/docs/version-specific/supported-software/q/QUAST.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# QUAST + +QUAST evaluates genome assemblies by computing various metrics. It works both with and without reference genomes. The tool accepts multiple assemblies, thus is suitable for comparison. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.6.0`` | ``-Python-3.5.2`` | ``foss/2016b`` +``4.6.3`` | ``-Python-3.6.4`` | ``foss/2018a`` +``5.0.2`` | ``-Python-2.7.15`` | ``foss/2018b`` +``5.0.2`` | ``-Python-2.7.15`` | ``foss/2019a`` +``5.0.2`` | ``-Python-3.7.2`` | ``foss/2019a`` +``5.0.2`` | ``-Python-3.8.2`` | ``foss/2020a`` +``5.0.2`` | ``-Python-2.7.18`` | ``foss/2020b`` +``5.0.2`` | | ``foss/2020b`` +``5.0.2`` | | ``foss/2021a`` +``5.0.2`` | | ``foss/2021b`` +``5.2.0`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/Qhull.md b/docs/version-specific/supported-software/q/Qhull.md new file mode 100644 index 000000000..76ffe2721 --- /dev/null +++ b/docs/version-specific/supported-software/q/Qhull.md @@ -0,0 +1,35 @@ +--- +search: + boost: 0.5 +--- +# Qhull + +Qhull computes the convex hull, Delaunay triangulation, Voronoi diagram, halfspace intersection about a point, furthest-site Delaunay triangulation, and furthest-site Voronoi diagram. The source code runs in 2-d, 3-d, 4-d, and higher dimensions. Qhull implements the Quickhull algorithm for computing the convex hull. + +*homepage*: + +version | toolchain +--------|---------- +``2015.2`` | ``GCCcore/5.4.0`` +``2015.2`` | ``GCCcore/6.3.0`` +``2015.2`` | ``GCCcore/6.4.0`` +``2015.2`` | ``GCCcore/7.3.0`` +``2015.2`` | ``foss/2016a`` +``2015.2`` | ``foss/2016b`` +``2015.2`` | ``foss/2017b`` +``2015.2`` | ``intel/2016a`` +``2015.2`` | ``intel/2016b`` +``2015.2`` | ``intel/2017a`` +``2019.1`` | ``GCCcore/8.2.0`` +``2019.1`` | ``GCCcore/8.3.0`` +``2020.2`` | ``GCCcore/10.2.0`` +``2020.2`` | ``GCCcore/10.3.0`` +``2020.2`` | ``GCCcore/11.2.0`` +``2020.2`` | ``GCCcore/11.3.0`` +``2020.2`` | ``GCCcore/12.2.0`` +``2020.2`` | ``GCCcore/12.3.0`` +``2020.2`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/Qiskit.md b/docs/version-specific/supported-software/q/Qiskit.md new file mode 100644 index 000000000..9b79f58e2 --- /dev/null +++ b/docs/version-specific/supported-software/q/Qiskit.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Qiskit + +Qiskit is an open-source framework for working with noisy quantum computers at the level of pulses, circuits, and algorithms. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.11.1`` | ``-Python-3.7.2`` | ``foss/2019a`` +``0.12.0`` | ``-Python-3.7.2`` | ``foss/2019a`` +``0.31.0`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/Qt.md b/docs/version-specific/supported-software/q/Qt.md new file mode 100644 index 000000000..5037d0438 --- /dev/null +++ b/docs/version-specific/supported-software/q/Qt.md @@ -0,0 +1,34 @@ +--- +search: + boost: 0.5 +--- +# Qt + +Qt is a comprehensive cross-platform C++ application framework. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.3.8`` | | ``intel/2016a`` +``4.8.6`` | | ``system`` +``4.8.7`` | | ``GCCcore/8.2.0`` +``4.8.7`` | ``-GLib-2.48.0`` | ``foss/2016a`` +``4.8.7`` | | ``foss/2016a`` +``4.8.7`` | | ``foss/2016b`` +``4.8.7`` | | ``foss/2017a`` +``4.8.7`` | | ``foss/2017b`` +``4.8.7`` | | ``foss/2018a`` +``4.8.7`` | | ``foss/2018b`` +``4.8.7`` | | ``fosscuda/2018b`` +``4.8.7`` | | ``gimkl/2.11.5`` +``4.8.7`` | ``-GLib-2.48.0`` | ``intel/2016a`` +``4.8.7`` | | ``intel/2016a`` +``4.8.7`` | | ``intel/2016b`` +``4.8.7`` | | ``intel/2017a`` +``4.8.7`` | | ``intel/2017b`` +``4.8.7`` | | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/Qt5.md b/docs/version-specific/supported-software/q/Qt5.md new file mode 100644 index 000000000..c6132dfa7 --- /dev/null +++ b/docs/version-specific/supported-software/q/Qt5.md @@ -0,0 +1,46 @@ +--- +search: + boost: 0.5 +--- +# Qt5 + +Qt is a comprehensive cross-platform C++ application framework. + +*homepage*: + +version | toolchain +--------|---------- +``5.10.1`` | ``foss/2018a`` +``5.10.1`` | ``foss/2018b`` +``5.10.1`` | ``fosscuda/2018b`` +``5.10.1`` | ``intel/2018a`` +``5.10.1`` | ``intel/2018b`` +``5.11.2`` | ``foss/2018b`` +``5.12.3`` | ``GCCcore/8.2.0`` +``5.13.1`` | ``GCCcore/8.3.0`` +``5.14.1`` | ``GCCcore/9.3.0`` +``5.14.2`` | ``GCCcore/10.2.0`` +``5.15.10`` | ``GCCcore/12.3.0`` +``5.15.13`` | ``GCCcore/13.2.0`` +``5.15.2`` | ``GCCcore/10.3.0`` +``5.15.2`` | ``GCCcore/11.2.0`` +``5.15.5`` | ``GCCcore/11.3.0`` +``5.15.7`` | ``GCCcore/12.2.0`` +``5.6.0`` | ``foss/2016a`` +``5.6.0`` | ``intel/2016a`` +``5.7.0`` | ``foss/2016a`` +``5.7.0`` | ``foss/2016b`` +``5.7.0`` | ``intel/2016a`` +``5.7.0`` | ``intel/2016b`` +``5.7.1`` | ``intel/2016b`` +``5.8.0`` | ``foss/2017a`` +``5.8.0`` | ``foss/2017b`` +``5.8.0`` | ``intel/2016b`` +``5.8.0`` | ``intel/2017a`` +``5.8.0`` | ``intel/2017b`` +``5.9.3`` | ``foss/2017b`` +``5.9.8`` | ``fosscuda/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/Qt5Webkit.md b/docs/version-specific/supported-software/q/Qt5Webkit.md new file mode 100644 index 000000000..2e0f1b9e7 --- /dev/null +++ b/docs/version-specific/supported-software/q/Qt5Webkit.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Qt5Webkit + +Qt Port of WebKit. WebKit is an open source web browser engine. + +*homepage*: + +version | toolchain +--------|---------- +``5.212.0-alpha3`` | ``GCCcore/8.2.0`` +``5.212.0-alpha4`` | ``GCCcore/10.2.0`` +``5.212.0-alpha4`` | ``GCCcore/11.2.0`` +``5.212.0-alpha4`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/Qt6.md b/docs/version-specific/supported-software/q/Qt6.md new file mode 100644 index 000000000..71f818615 --- /dev/null +++ b/docs/version-specific/supported-software/q/Qt6.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Qt6 + +Qt is a comprehensive cross-platform C++ application framework. + +*homepage*: + +version | toolchain +--------|---------- +``6.5.2`` | ``GCCcore/12.3.0`` +``6.6.3`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QtKeychain.md b/docs/version-specific/supported-software/q/QtKeychain.md new file mode 100644 index 000000000..0a78c3d2c --- /dev/null +++ b/docs/version-specific/supported-software/q/QtKeychain.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# QtKeychain + +Platform-independent Qt API for storing passwords securely. + +*homepage*: + +version | toolchain +--------|---------- +``0.13.2`` | ``GCCcore/11.2.0`` +``0.9.1`` | ``GCCcore/8.2.0`` +``0.9.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QtPy.md b/docs/version-specific/supported-software/q/QtPy.md new file mode 100644 index 000000000..2e2600924 --- /dev/null +++ b/docs/version-specific/supported-software/q/QtPy.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# QtPy + +QtPy is a small abstraction layer that lets you write applications using a single API call to either PyQt or PySide. It provides support for PyQt5, PyQt4, PySide2 and PySide. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.9.0`` | | ``GCCcore/10.2.0`` +``1.9.0`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``2.2.1`` | | ``GCCcore/11.2.0`` +``2.3.0`` | | ``GCCcore/11.3.0`` +``2.4.1`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/Qtconsole.md b/docs/version-specific/supported-software/q/Qtconsole.md new file mode 100644 index 000000000..c53cec46c --- /dev/null +++ b/docs/version-specific/supported-software/q/Qtconsole.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# Qtconsole + +A rich Qt-based console for working with Jupyter kernels, supporting rich media output, session export, and more. The Qtconsole is a very lightweight application that largely feels like a terminal, but provides a number of enhancements only possible in a GUI, such as inline figures, proper multiline editing with syntax highlighting, graphical calltips, and more. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.7.7`` | ``-Python-3.7.4`` | ``foss/2019b`` +``4.7.7`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``5.0.2`` | | ``GCCcore/10.2.0`` +``5.3.2`` | | ``GCCcore/11.2.0`` +``5.4.0`` | | ``GCCcore/11.3.0`` +``5.5.1`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QuPath.md b/docs/version-specific/supported-software/q/QuPath.md new file mode 100644 index 000000000..cc0229e27 --- /dev/null +++ b/docs/version-specific/supported-software/q/QuPath.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# QuPath + +QuPath is open source software for bioimage analysis. QuPath is often used for digital pathology applications because it offers a powerful set of tools for working with whole slide images - but it can be applied to lots of other kinds of image as well. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.5.0`` | ``-Java-17`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QuTiP.md b/docs/version-specific/supported-software/q/QuTiP.md new file mode 100644 index 000000000..c69f99260 --- /dev/null +++ b/docs/version-specific/supported-software/q/QuTiP.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# QuTiP + +QuTiP is open-source software for simulating the dynamics of open quantum systems. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.1.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``4.3.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``4.3.1`` | ``-Python-3.6.6`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QuaZIP.md b/docs/version-specific/supported-software/q/QuaZIP.md new file mode 100644 index 000000000..29e72d151 --- /dev/null +++ b/docs/version-specific/supported-software/q/QuaZIP.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# QuaZIP + +QuaZIP is the C++ wrapper for Gilles Vollant's ZIP/UNZIP package (AKA Minizip) using Trolltech's Qt library. + +*homepage*: + +version | toolchain +--------|---------- +``0.8.1`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/Qualimap.md b/docs/version-specific/supported-software/q/Qualimap.md new file mode 100644 index 000000000..5d8cdad76 --- /dev/null +++ b/docs/version-specific/supported-software/q/Qualimap.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Qualimap + +Qualimap 2 is a platform-independent application written in Java and R that provides both a Graphical User Inteface (GUI) and a command-line interface to facilitate the quality control of alignment sequencing data and its derivatives like feature counts. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.1`` | ``-R-3.6.0`` | ``foss/2019a`` +``2.2.1`` | ``-R-4.0.3`` | ``foss/2020b`` +``2.2.1`` | ``-R-4.1.2`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/Quandl.md b/docs/version-specific/supported-software/q/Quandl.md new file mode 100644 index 000000000..df2545f80 --- /dev/null +++ b/docs/version-specific/supported-software/q/Quandl.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Quandl + +A Python library for Quandl’s RESTful API. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.4.2`` | ``-Python-3.6.4`` | ``intel/2018a`` +``3.4.8`` | | ``foss/2019a`` +``3.6.1`` | | ``foss/2020b`` +``3.6.1`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QuantumESPRESSO.md b/docs/version-specific/supported-software/q/QuantumESPRESSO.md new file mode 100644 index 000000000..3186bf746 --- /dev/null +++ b/docs/version-specific/supported-software/q/QuantumESPRESSO.md @@ -0,0 +1,51 @@ +--- +search: + boost: 0.5 +--- +# QuantumESPRESSO + +Quantum ESPRESSO is an integrated suite of computer codes for electronic-structure calculations and materials modeling at the nanoscale. It is based on density-functional theory, plane waves, and pseudopotentials (both norm-conserving and ultrasoft). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.3.0`` | | ``intel/2016.02-GCC-4.9`` +``5.4.0`` | ``-hybrid`` | ``foss/2016b`` +``5.4.0`` | | ``intel/2016.02-GCC-4.9`` +``6.0`` | | ``intel/2016b`` +``6.1`` | | ``intel/2017a`` +``6.2`` | | ``intel/2017b`` +``6.2.1`` | | ``iomkl/2017b`` +``6.3`` | | ``foss/2018b`` +``6.3`` | | ``intel/2018b`` +``6.4.1`` | | ``intel/2019a`` +``6.5`` | | ``intel/2019a`` +``6.5`` | | ``intel/2019b`` +``6.6`` | | ``foss/2019b`` +``6.6`` | | ``foss/2020a`` +``6.6`` | | ``foss/2020b`` +``6.6`` | | ``intel/2019b`` +``6.6`` | | ``intel/2020a`` +``6.7`` | | ``foss/2019b`` +``6.7`` | | ``foss/2020b`` +``6.7`` | | ``foss/2021a`` +``6.7`` | | ``intel/2019b`` +``6.7`` | | ``intel/2021a`` +``6.7`` | | ``iomkl/2019b`` +``6.8`` | | ``foss/2021a`` +``6.8`` | | ``foss/2021b`` +``6.8`` | | ``intel/2021a`` +``7.0`` | | ``foss/2021b`` +``7.0`` | | ``intel/2021b`` +``7.1`` | | ``foss/2022a`` +``7.1`` | | ``intel/2022a`` +``7.2`` | | ``foss/2022b`` +``7.2`` | | ``foss/2023a`` +``7.2`` | | ``intel/2022b`` +``7.3`` | | ``foss/2023a`` +``7.3`` | | ``intel/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QuickFF.md b/docs/version-specific/supported-software/q/QuickFF.md new file mode 100644 index 000000000..7a82f50a0 --- /dev/null +++ b/docs/version-specific/supported-software/q/QuickFF.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# QuickFF + +QuickFF is a Python package developed at the Center for Molecular Modeling (CMM) to quickly derive accurate force fields from ab initio calculations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.4`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2.2.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.2.4`` | ``-Python-3.7.2`` | ``intel/2019a`` +``2.2.4`` | ``-Python-3.8.2`` | ``intel/2020a`` +``2.2.7`` | | ``foss/2023a`` +``2.2.7`` | ``-Python-3.8.2`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QuickPIC.md b/docs/version-specific/supported-software/q/QuickPIC.md new file mode 100644 index 000000000..055fb09fb --- /dev/null +++ b/docs/version-specific/supported-software/q/QuickPIC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# QuickPIC + +QuickPIC is a 3D parallel (MPI & OpenMP Hybrid) Quasi-Static PIC code, which is developed based on the framework UPIC. QuickPIC can efficiently simulate plasma based accelerator problems. This is the UCLA Plasma Simulation Group's official open-source repository for QuickPIC. + +*homepage*: + +version | toolchain +--------|---------- +``20210224`` | ``gompi/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QuickTree.md b/docs/version-specific/supported-software/q/QuickTree.md new file mode 100644 index 000000000..eb48f7382 --- /dev/null +++ b/docs/version-specific/supported-software/q/QuickTree.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# QuickTree + +QuickTree is an efficient implementation of the Neighbor-Joining algorithm (PMID: 3447015), capable of reconstructing phylogenies from huge alignments in time less than the age of the universe. + +*homepage*: + +version | toolchain +--------|---------- +``2.5`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/Quip.md b/docs/version-specific/supported-software/q/Quip.md new file mode 100644 index 000000000..da1699c7b --- /dev/null +++ b/docs/version-specific/supported-software/q/Quip.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Quip + +Quip compresses next-generation sequencing data with extreme prejudice. It supports input and output in the FASTQ and SAM/BAM formats, compressing large datasets to as little as 15% of their original size. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.8`` | ``GCC/4.8.2`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/Quorum.md b/docs/version-specific/supported-software/q/Quorum.md new file mode 100644 index 000000000..f06e14d6e --- /dev/null +++ b/docs/version-specific/supported-software/q/Quorum.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Quorum + +QuorUM is an error corrector for Illumina reads + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/Qwt.md b/docs/version-specific/supported-software/q/Qwt.md new file mode 100644 index 000000000..dba030e8a --- /dev/null +++ b/docs/version-specific/supported-software/q/Qwt.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# Qwt + +The Qwt library contains GUI Components and utility classes which are primarily useful for programs with a technical background. + +*homepage*: + +version | toolchain +--------|---------- +``6.1.2`` | ``intel/2016a`` +``6.1.3`` | ``foss/2016b`` +``6.1.3`` | ``intel/2016b`` +``6.1.4`` | ``GCCcore/8.2.0`` +``6.1.4`` | ``GCCcore/8.3.0`` +``6.1.4`` | ``foss/2018b`` +``6.1.5`` | ``GCCcore/10.2.0`` +``6.1.5`` | ``GCCcore/9.3.0`` +``6.2.0`` | ``GCCcore/10.3.0`` +``6.2.0`` | ``GCCcore/11.2.0`` +``6.2.0`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/QwtPolar.md b/docs/version-specific/supported-software/q/QwtPolar.md new file mode 100644 index 000000000..e8d3d84c3 --- /dev/null +++ b/docs/version-specific/supported-software/q/QwtPolar.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# QwtPolar + +The QwtPolar library contains classes for displaying values on a polar coordinate system. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``GCCcore/10.2.0`` +``1.1.1`` | ``GCCcore/8.2.0`` +``1.1.1`` | ``foss/2016b`` +``1.1.1`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/index.md b/docs/version-specific/supported-software/q/index.md new file mode 100644 index 000000000..0030a50b0 --- /dev/null +++ b/docs/version-specific/supported-software/q/index.md @@ -0,0 +1,60 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (q) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - *q* - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [q2-krona](q2-krona.md) + * [Q6](Q6.md) + * [QCA](QCA.md) + * [qcat](qcat.md) + * [QCG-PilotJob](QCG-PilotJob.md) + * [qcint](qcint.md) + * [QCxMS](QCxMS.md) + * [QD](QD.md) + * [QDD](QDD.md) + * [QEMU](QEMU.md) + * [qforce](qforce.md) + * [QGIS](QGIS.md) + * [Qhull](Qhull.md) + * [QIIME](QIIME.md) + * [QIIME2](QIIME2.md) + * [Qiskit](Qiskit.md) + * [QJson](QJson.md) + * [qmflows](qmflows.md) + * [QML](QML.md) + * [qnorm](qnorm.md) + * [qpth](qpth.md) + * [qrupdate](qrupdate.md) + * [QScintilla](QScintilla.md) + * [Qt](Qt.md) + * [Qt5](Qt5.md) + * [Qt5Webkit](Qt5Webkit.md) + * [Qt6](Qt6.md) + * [Qtconsole](Qtconsole.md) + * [QtKeychain](QtKeychain.md) + * [QTLtools](QTLtools.md) + * [qtop](qtop.md) + * [QtPy](QtPy.md) + * [Qualimap](Qualimap.md) + * [Quandl](Quandl.md) + * [QuantumESPRESSO](QuantumESPRESSO.md) + * [QUAST](QUAST.md) + * [QuaZIP](QuaZIP.md) + * [QuickFF](QuickFF.md) + * [QuickPIC](QuickPIC.md) + * [QuickTree](QuickTree.md) + * [Quip](Quip.md) + * [Quorum](Quorum.md) + * [QuPath](QuPath.md) + * [QuTiP](QuTiP.md) + * [Qwt](Qwt.md) + * [QwtPolar](QwtPolar.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - *q* - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/q2-krona.md b/docs/version-specific/supported-software/q/q2-krona.md new file mode 100644 index 000000000..8e35054c4 --- /dev/null +++ b/docs/version-specific/supported-software/q/q2-krona.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# q2-krona + +QIIME2 plugin for creating Krona plots + +*homepage*: + +version | toolchain +--------|---------- +``20220124`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/qcat.md b/docs/version-specific/supported-software/q/qcat.md new file mode 100644 index 000000000..d74d7094c --- /dev/null +++ b/docs/version-specific/supported-software/q/qcat.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# qcat + +qcat is a Python command-line tool for demultiplexing Oxford Nanopore reads from FASTQ files + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.1.0`` | | ``foss/2022b`` +``1.1.0`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.1.0`` | ``-Python-3.8.2`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/qcint.md b/docs/version-specific/supported-software/q/qcint.md new file mode 100644 index 000000000..5a20ea35f --- /dev/null +++ b/docs/version-specific/supported-software/q/qcint.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# qcint + +libcint is an open source library for analytical Gaussian integrals. qcint is an optimized libcint branch for the x86-64 platform. + +*homepage*: + +version | toolchain +--------|---------- +``3.0.18`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/qforce.md b/docs/version-specific/supported-software/q/qforce.md new file mode 100644 index 000000000..6d207f378 --- /dev/null +++ b/docs/version-specific/supported-software/q/qforce.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# qforce + +Quantum Mechanically augmented molecular force fields. Q-Force is a software package for deriving all-atom force fields from quantum mechanical calculations in an automated manner. + +*homepage*: + +version | toolchain +--------|---------- +``0.6.11`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/qmflows.md b/docs/version-specific/supported-software/q/qmflows.md new file mode 100644 index 000000000..9e02da965 --- /dev/null +++ b/docs/version-specific/supported-software/q/qmflows.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# qmflows + +This library tackles the construction and efficient execution of computational chemistry workflows. This allows computational chemists to use the emerging massively parallel compute environments in an easy manner and focus on interpretation of scientific data rather than on tedious job submission procedures and manual data processing. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/qnorm.md b/docs/version-specific/supported-software/q/qnorm.md new file mode 100644 index 000000000..f24c0fcb2 --- /dev/null +++ b/docs/version-specific/supported-software/q/qnorm.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# qnorm + +Fast-ish (and correct!) quantile normalization in Python + +*homepage*: + +version | toolchain +--------|---------- +``0.8.1`` | ``foss/2022a`` +``0.8.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/qpth.md b/docs/version-specific/supported-software/q/qpth.md new file mode 100644 index 000000000..df6a5bdfd --- /dev/null +++ b/docs/version-specific/supported-software/q/qpth.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# qpth + +A fast and differentiable QP solver for PyTorch. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.0.13-20190626`` | ``-Python-3.7.2`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/qrupdate.md b/docs/version-specific/supported-software/q/qrupdate.md new file mode 100644 index 000000000..9b2793432 --- /dev/null +++ b/docs/version-specific/supported-software/q/qrupdate.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# qrupdate + +qrupdate is a Fortran library for fast updates of QR and Cholesky decompositions. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.2`` | ``GCC/5.4.0-2.26`` +``1.1.2`` | ``GCC/8.2.0-2.31.1`` +``1.1.2`` | ``GCCcore/10.2.0`` +``1.1.2`` | ``GCCcore/11.2.0`` +``1.1.2`` | ``GCCcore/11.3.0`` +``1.1.2`` | ``GCCcore/6.4.0`` +``1.1.2`` | ``GCCcore/8.3.0`` +``1.1.2`` | ``foss/2016a`` +``1.1.2`` | ``foss/2018a`` +``1.1.2`` | ``foss/2018b`` +``1.1.2`` | ``intel/2016a`` +``1.1.2`` | ``intel/2016b`` +``1.1.2`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/q/qtop.md b/docs/version-specific/supported-software/q/qtop.md new file mode 100644 index 000000000..9902f53be --- /dev/null +++ b/docs/version-specific/supported-software/q/qtop.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# qtop + +qtop is a nifty command-line tool for monitoring queueing systems, esp. PBS/torque. It tries to fit as much information as possible in your screen's real estate, by stitching together the output of commands like pbsnodes -a, qstat & qstat -q. It is possible to write wrappers for other platforms -people have done so for SGE, OAR etc- or, even examine traces offline and present the sampled information. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``53`` | ``-1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/R-INLA.md b/docs/version-specific/supported-software/r/R-INLA.md new file mode 100644 index 000000000..ba5116811 --- /dev/null +++ b/docs/version-specific/supported-software/r/R-INLA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# R-INLA + +R-INLA is a package in R that do approximate Bayesian inference for Latent Gaussian Models. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``21.05.02`` | ``-R-4.0.4`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/R-MXM.md b/docs/version-specific/supported-software/r/R-MXM.md new file mode 100644 index 000000000..b3cfa5f96 --- /dev/null +++ b/docs/version-specific/supported-software/r/R-MXM.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# R-MXM + +MXM: Feature Selection (Including Multiple Solutions) and Bayesian Networks + +*homepage*: + +version | toolchain +--------|---------- +``1.5.5`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/R-bundle-Bioconductor.md b/docs/version-specific/supported-software/r/R-bundle-Bioconductor.md new file mode 100644 index 000000000..68dfcb405 --- /dev/null +++ b/docs/version-specific/supported-software/r/R-bundle-Bioconductor.md @@ -0,0 +1,36 @@ +--- +search: + boost: 0.5 +--- +# R-bundle-Bioconductor + +Bioconductor provides tools for the analysis and coprehension of high-throughput genomic data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.10`` | | ``foss/2019b`` +``3.11`` | ``-R-4.0.0`` | ``foss/2020a`` +``3.12`` | ``-R-4.0.3`` | ``foss/2020b`` +``3.13`` | ``-R-4.1.0`` | ``foss/2021a`` +``3.14`` | ``-R-4.1.2`` | ``foss/2021b`` +``3.15`` | ``-R-4.2.0`` | ``foss/2021b`` +``3.15`` | ``-R-4.2.1`` | ``foss/2022a`` +``3.16`` | ``-R-4.2.2`` | ``foss/2022b`` +``3.18`` | ``-R-4.3.2`` | ``foss/2023a`` +``3.2`` | ``-R-3.2.3`` | ``foss/2016a`` +``3.2`` | ``-R-3.2.3`` | ``intel/2016a`` +``3.3`` | ``-R-3.3.1`` | ``intel/2016b`` +``3.5`` | ``-R-3.4.0`` | ``intel/2017a`` +``3.6`` | ``-R-3.4.3`` | ``foss/2017b`` +``3.6`` | ``-R-3.4.3`` | ``intel/2017b`` +``3.6`` | ``-R-3.4.4`` | ``intel/2018a`` +``3.7`` | ``-R-3.5.1`` | ``foss/2018b`` +``3.7`` | ``-R-3.5.0`` | ``iomkl/2018a`` +``3.8`` | ``-R-3.5.1`` | ``foss/2018b`` +``3.9`` | ``-R-3.6.0`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/R-bundle-CRAN.md b/docs/version-specific/supported-software/r/R-bundle-CRAN.md new file mode 100644 index 000000000..51d33eecc --- /dev/null +++ b/docs/version-specific/supported-software/r/R-bundle-CRAN.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# R-bundle-CRAN + +Bundle of R packages from CRAN + +*homepage*: + +version | toolchain +--------|---------- +``2023.12`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/R-keras.md b/docs/version-specific/supported-software/r/R-keras.md new file mode 100644 index 000000000..f1ae28728 --- /dev/null +++ b/docs/version-specific/supported-software/r/R-keras.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# R-keras + +Interface to 'Keras' , a high-level neural networks 'API'. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.6`` | ``-R-3.4.4`` | ``foss/2018a`` +``2.2.5.0`` | ``-Python-3.7.2-R-3.6.0`` | ``foss/2019a`` +``2.2.5.0`` | ``-Python-3.7.4-R-3.6.2`` | ``foss/2019b`` +``2.2.5.0`` | ``-Python-3.7.2-R-3.6.0`` | ``fosscuda/2019a`` +``2.2.5.0`` | ``-Python-3.7.4-R-3.6.2`` | ``fosscuda/2019b`` +``2.4.0`` | ``-R-4.0.4`` | ``foss/2020b`` +``2.4.0`` | ``-R-4.0.4`` | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/R-opencv.md b/docs/version-specific/supported-software/r/R-opencv.md new file mode 100644 index 000000000..90a31628f --- /dev/null +++ b/docs/version-specific/supported-software/r/R-opencv.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# R-opencv + +Experimenting with computer vision and machine learning in R. This package exposes some of the available OpenCV algorithms, such as edge, body or face detection. These can either be applied to analyze static images, or to filter live video footage from a camera device. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.0`` | ``-R-4.0.0`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/R-tesseract.md b/docs/version-specific/supported-software/r/R-tesseract.md new file mode 100644 index 000000000..d81bb9488 --- /dev/null +++ b/docs/version-specific/supported-software/r/R-tesseract.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# R-tesseract + +The R extension for using tesseract + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.0`` | ``-R-3.5.1`` | ``foss/2018b`` +``5.1.0`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/R-transport.md b/docs/version-specific/supported-software/r/R-transport.md new file mode 100644 index 000000000..c220dee77 --- /dev/null +++ b/docs/version-specific/supported-software/r/R-transport.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# R-transport + +transport: Computation of Optimal Transport Plans and Wasserstein Distances + +*homepage*: + +version | toolchain +--------|---------- +``0.13-0`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/R.md b/docs/version-specific/supported-software/r/R.md new file mode 100644 index 000000000..27e4f5f09 --- /dev/null +++ b/docs/version-specific/supported-software/r/R.md @@ -0,0 +1,63 @@ +--- +search: + boost: 0.5 +--- +# R + +R is a free software environment for statistical computing and graphics. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.2.3`` | ``-bare`` | ``foss/2016a`` +``3.2.3`` | | ``foss/2016a`` +``3.2.3`` | | ``foss/2016b`` +``3.2.3`` | ``-bare`` | ``intel/2016a`` +``3.2.3`` | ``-libX11-1.6.3`` | ``intel/2016a`` +``3.2.3`` | | ``intel/2016a`` +``3.3.1`` | | ``foss/2016a`` +``3.3.1`` | | ``foss/2016b`` +``3.3.1`` | | ``intel/2016b`` +``3.3.3`` | ``-X11-20160819`` | ``foss/2016b`` +``3.3.3`` | ``-X11-20160819`` | ``intel/2016b`` +``3.3.3`` | ``-X11-20170314`` | ``intel/2017a`` +``3.4.0`` | ``-X11-20170314`` | ``intel/2017a`` +``3.4.1`` | ``-X11-20160819`` | ``foss/2016b`` +``3.4.3`` | ``-X11-20171023`` | ``foss/2017b`` +``3.4.3`` | ``-X11-20171023-HDF5-1.8.19`` | ``intel/2017b`` +``3.4.3`` | ``-X11-20171023`` | ``intel/2017b`` +``3.4.4`` | ``-X11-20180131`` | ``foss/2018a`` +``3.4.4`` | ``-X11-20180131`` | ``intel/2018a`` +``3.4.4`` | ``-X11-20180131`` | ``iomkl/2018a`` +``3.5.0`` | ``-X11-20180131`` | ``iomkl/2018a`` +``3.5.1`` | ``-Python-2.7.15`` | ``foss/2018b`` +``3.5.1`` | ``-bare`` | ``foss/2018b`` +``3.5.1`` | | ``foss/2018b`` +``3.5.1`` | | ``intel/2018b`` +``3.6.0`` | | ``foss/2019a`` +``3.6.0`` | | ``fosscuda/2019a`` +``3.6.0`` | | ``intel/2019a`` +``3.6.2`` | | ``foss/2019b`` +``3.6.2`` | | ``fosscuda/2019b`` +``3.6.2`` | | ``intel/2019b`` +``3.6.3`` | | ``foss/2020a`` +``4.0.0`` | | ``foss/2020a`` +``4.0.0`` | | ``fosscuda/2020a`` +``4.0.3`` | | ``foss/2020b`` +``4.0.3`` | | ``fosscuda/2020b`` +``4.0.4`` | | ``foss/2020b`` +``4.0.4`` | | ``fosscuda/2020b`` +``4.0.5`` | | ``foss/2020b`` +``4.0.5`` | | ``fosscuda/2020b`` +``4.1.0`` | | ``foss/2021a`` +``4.1.2`` | | ``foss/2021b`` +``4.2.0`` | | ``foss/2021b`` +``4.2.1`` | | ``foss/2022a`` +``4.2.2`` | | ``foss/2022b`` +``4.3.2`` | | ``gfbf/2023a`` +``4.3.3`` | | ``gfbf/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/R2jags.md b/docs/version-specific/supported-software/r/R2jags.md new file mode 100644 index 000000000..dad5842d5 --- /dev/null +++ b/docs/version-specific/supported-software/r/R2jags.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# R2jags + +Providing wrapper functions to implement Bayesian analysis in JAGS. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7-1`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RAPSearch2.md b/docs/version-specific/supported-software/r/RAPSearch2.md new file mode 100644 index 000000000..dd49aec5d --- /dev/null +++ b/docs/version-specific/supported-software/r/RAPSearch2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# RAPSearch2 + +RAPSearch stands for Reduced Alphabet based Protein similarity Search + +*homepage*: + +version | toolchain +--------|---------- +``2.24`` | ``GCC/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RASPA2.md b/docs/version-specific/supported-software/r/RASPA2.md new file mode 100644 index 000000000..393e995b7 --- /dev/null +++ b/docs/version-specific/supported-software/r/RASPA2.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# RASPA2 + +A general purpose classical simulation package that can be used for the simulation of molecules in gases, fluids, zeolites, aluminosilicates, metal-organic frameworks, carbon nanotubes and external fields. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.3`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2.0.41`` | | ``foss/2020b`` +``2.0.47`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RAxML-NG.md b/docs/version-specific/supported-software/r/RAxML-NG.md new file mode 100644 index 000000000..89369d8ae --- /dev/null +++ b/docs/version-specific/supported-software/r/RAxML-NG.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# RAxML-NG + +RAxML-NG is a phylogenetic tree inference tool which uses maximum-likelihood (ML) optimality criterion. Its search heuristic is based on iteratively performing a series of Subtree Pruning and Regrafting (SPR) moves, which allows to quickly navigate to the best-known ML tree. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.0`` | ``GCC/8.3.0`` +``0.9.0`` | ``gompi/2019b`` +``1.0.1`` | ``gompi/2019b`` +``1.0.2`` | ``gompi/2020b`` +``1.0.3`` | ``GCC/10.2.0`` +``1.1.0`` | ``GCC/11.2.0`` +``1.2.0`` | ``GCC/12.2.0`` +``1.2.0`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RAxML.md b/docs/version-specific/supported-software/r/RAxML.md new file mode 100644 index 000000000..545450309 --- /dev/null +++ b/docs/version-specific/supported-software/r/RAxML.md @@ -0,0 +1,35 @@ +--- +search: + boost: 0.5 +--- +# RAxML + +RAxML search algorithm for maximum likelihood based inference of phylogenetic trees. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``8.2.10`` | ``-hybrid-avx2`` | ``intel/2017a`` +``8.2.11`` | ``-hybrid-avx`` | ``foss/2017b`` +``8.2.11`` | ``-hybrid-avx2`` | ``foss/2017b`` +``8.2.11`` | ``-hybrid-sse3`` | ``foss/2017b`` +``8.2.11`` | ``-hybrid-avx`` | ``intel/2017b`` +``8.2.11`` | ``-hybrid-avx2`` | ``intel/2017b`` +``8.2.11`` | ``-hybrid-sse3`` | ``intel/2017b`` +``8.2.11`` | ``-hybrid-avx2`` | ``intel/2018a`` +``8.2.12`` | ``-pthreads-avx2`` | ``GCC/10.2.0`` +``8.2.12`` | ``-hybrid-avx2`` | ``gompi/2020a`` +``8.2.12`` | ``-hybrid-avx2`` | ``gompi/2020b`` +``8.2.12`` | ``-hybrid-avx2`` | ``gompi/2021a`` +``8.2.12`` | ``-hybrid-avx2`` | ``gompi/2021b`` +``8.2.12`` | ``-avx2`` | ``gompi/2022b`` +``8.2.12`` | ``-hybrid-avx2`` | ``iimpi/2019b`` +``8.2.12`` | ``-hybrid-avx2`` | ``intel/2018b`` +``8.2.12`` | ``-hybrid-avx2`` | ``intel/2019a`` +``8.2.4`` | ``-hybrid-avx2`` | ``foss/2016a`` +``8.2.9`` | ``-hybrid-avx2`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RBFOpt.md b/docs/version-specific/supported-software/r/RBFOpt.md new file mode 100644 index 000000000..b3cbdc2f0 --- /dev/null +++ b/docs/version-specific/supported-software/r/RBFOpt.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# RBFOpt + +RBFOpt is a Python library for black-box optimization (also known as derivative-free optimization). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.1.1`` | ``-Python-3.6.6`` | ``intel/2018b`` +``4.1.1`` | | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RCall.md b/docs/version-specific/supported-software/r/RCall.md new file mode 100644 index 000000000..deaf6596d --- /dev/null +++ b/docs/version-specific/supported-software/r/RCall.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# RCall + +This package facilitates communication between R and Julia and allows the user to call R packages from within Julia, providing the best of both worlds. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.13.17`` | ``-R-4.2.1-Julia-1.9.2`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RDFlib.md b/docs/version-specific/supported-software/r/RDFlib.md new file mode 100644 index 000000000..8e1d05504 --- /dev/null +++ b/docs/version-specific/supported-software/r/RDFlib.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# RDFlib + +RDFLib is a Python library for working with RDF, a simple yet powerful language for representing information. + +*homepage*: + +version | toolchain +--------|---------- +``4.2.2`` | ``GCCcore/8.3.0`` +``4.2.2`` | ``foss/2019a`` +``5.0.0`` | ``GCCcore/10.2.0`` +``6.2.0`` | ``GCCcore/10.3.0`` +``6.2.0`` | ``GCCcore/11.3.0`` +``7.0.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RDKit.md b/docs/version-specific/supported-software/r/RDKit.md new file mode 100644 index 000000000..74cc980e3 --- /dev/null +++ b/docs/version-specific/supported-software/r/RDKit.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# RDKit + +RDKit is a collection of cheminformatics and machine-learning software written in C++ and Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2018.09.3`` | ``-Python-3.6.6`` | ``intel/2018b`` +``2019.09.3`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2020.03.3`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2020.03.3`` | ``-Python-3.8.2`` | ``intel/2020a`` +``2020.09.3`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2021.03.4`` | | ``foss/2021a`` +``2022.03.5`` | | ``foss/2021b`` +``2022.09.4`` | | ``foss/2022a`` +``2023.03.3`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RDP-Classifier.md b/docs/version-specific/supported-software/r/RDP-Classifier.md new file mode 100644 index 000000000..c221e9f67 --- /dev/null +++ b/docs/version-specific/supported-software/r/RDP-Classifier.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# RDP-Classifier + +The RDP Classifier is a naive Bayesian classifier that can rapidly and accurately provides taxonomic assignments from domain to genus, with confidence estimates for each assignment. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.12`` | ``-Java-1.8`` | ``system`` +``2.13`` | ``-Java-11`` | ``system`` +``2.13`` | ``-Java-17`` | ``system`` +``2.7`` | ``-Java-1.7.0_60`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RE2.md b/docs/version-specific/supported-software/r/RE2.md new file mode 100644 index 000000000..4a49041f0 --- /dev/null +++ b/docs/version-specific/supported-software/r/RE2.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# RE2 + +RE2 is a fast, safe, thread-friendly alternative to backtracking regular expression engines like those used in PCRE, Perl, and Python. It is a C++ library. + +*homepage*: + +version | toolchain +--------|---------- +``2020-07-01`` | ``GCCcore/8.3.0`` +``2021-06-01`` | ``GCCcore/10.2.0`` +``2022-02-01`` | ``GCCcore/10.3.0`` +``2022-02-01`` | ``GCCcore/11.2.0`` +``2022-06-01`` | ``GCCcore/11.3.0`` +``2023-03-01`` | ``GCCcore/12.2.0`` +``2023-08-01`` | ``GCCcore/12.3.0`` +``2024-03-01`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RECON.md b/docs/version-specific/supported-software/r/RECON.md new file mode 100644 index 000000000..9bd683f5e --- /dev/null +++ b/docs/version-specific/supported-software/r/RECON.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# RECON + +Patched version of RECON to be used with RepeatModeler. + +*homepage*: + +version | toolchain +--------|---------- +``1.08`` | ``GCC/10.2.0`` +``1.08`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RELION.md b/docs/version-specific/supported-software/r/RELION.md new file mode 100644 index 000000000..fb49d3563 --- /dev/null +++ b/docs/version-specific/supported-software/r/RELION.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# RELION + +RELION (for REgularised LIkelihood OptimisatioN, pronounce rely-on) is a stand-alone computer program that employs an empirical Bayesian approach to refinement of (multiple) 3D reconstructions or 2D class averages in electron cryo-microscopy (cryo-EM). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4`` | ``-single`` | ``intel/2016b`` +``1.4`` | | ``intel/2016b`` +``2.0.1`` | | ``intel/2016b`` +``2.1`` | | ``foss/2017b`` +``2.1`` | ``-CUDA-9.1.85`` | ``foss/2018a`` +``2.1`` | | ``foss/2018a`` +``2.1`` | | ``fosscuda/2017b`` +``2.1`` | | ``fosscuda/2018a`` +``2.1`` | | ``intel/2017b`` +``2.1`` | | ``intelcuda/2017b`` +``3.0.4`` | | ``foss/2017b`` +``3.0.4`` | | ``intel/2017b`` +``3.0_beta.2018.08.02`` | | ``fosscuda/2018a`` +``3.0_beta.2018.08.02`` | | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/REMORA.md b/docs/version-specific/supported-software/r/REMORA.md new file mode 100644 index 000000000..7b9c4346f --- /dev/null +++ b/docs/version-specific/supported-software/r/REMORA.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# REMORA + +REsource MOnitoring for Remote Applications + +*homepage*: + +version | toolchain +--------|---------- +``1.8.2`` | ``foss/2017a`` +``1.8.2`` | ``foss/2018a`` +``1.8.2`` | ``intel/2017a`` +``1.8.2`` | ``intel/2018a`` +``1.8.3`` | ``gompi/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RERconverge.md b/docs/version-specific/supported-software/r/RERconverge.md new file mode 100644 index 000000000..9e8bb72b3 --- /dev/null +++ b/docs/version-specific/supported-software/r/RERconverge.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# RERconverge + +RERconverge is a set of software written in R that estimates the correlation between relative evolutionary rates of genes and the evolution of a convergent binary or continuous trait across a phylogeny. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.0`` | ``-R-3.4.3`` | ``foss/2017b`` +``0.1.0`` | ``-R-3.4.3`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RFdiffusion.md b/docs/version-specific/supported-software/r/RFdiffusion.md new file mode 100644 index 000000000..9eaf6a702 --- /dev/null +++ b/docs/version-specific/supported-software/r/RFdiffusion.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# RFdiffusion + +RFdiffusion is an open source method for structure generation, with or without conditional information (a motif, target etc). It can perform a whole range of protein design challenges as we have outlined in the RFdiffusion paper. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``1.1.0`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RHEIA.md b/docs/version-specific/supported-software/r/RHEIA.md new file mode 100644 index 000000000..b277c11f9 --- /dev/null +++ b/docs/version-specific/supported-software/r/RHEIA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# RHEIA + +Robust design optimization of renewable Hydrogen and dErIved energy cArrier systems + +*homepage*: + +version | toolchain +--------|---------- +``1.1.6`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RInChI.md b/docs/version-specific/supported-software/r/RInChI.md new file mode 100644 index 000000000..e0762a3c6 --- /dev/null +++ b/docs/version-specific/supported-software/r/RInChI.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# RInChI + +The reaction IUPAC International Chemical Identifier (RInChI TM) is a non-proprietary identifier for chemical reactions that can be used in printed and electronic data sources thus enabling easier linking of diverse data compilations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.00`` | ``-x86_64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RLCard.md b/docs/version-specific/supported-software/r/RLCard.md new file mode 100644 index 000000000..a0df8dab9 --- /dev/null +++ b/docs/version-specific/supported-software/r/RLCard.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# RLCard + +RLCard is a toolkit for Reinforcement Learning (RL) in card games. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.9`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RMBlast.md b/docs/version-specific/supported-software/r/RMBlast.md new file mode 100644 index 000000000..56db8c545 --- /dev/null +++ b/docs/version-specific/supported-software/r/RMBlast.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# RMBlast + +RMBlast is a RepeatMasker compatible version of the standard NCBI BLAST suite. The primary difference between this distribution and the NCBI distribution is the addition of a new program 'rmblastn' for use with RepeatMasker and RepeatModeler. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.10.0`` | | ``gompi/2019b`` +``2.11.0`` | | ``gompi/2020b`` +``2.13.0`` | | ``gompi/2022a`` +``2.14.0`` | | ``gompi/2021a`` +``2.2.28`` | ``-Python-2.7.11`` | ``foss/2016a`` +``2.9.0`` | | ``gompi/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RNA-Bloom.md b/docs/version-specific/supported-software/r/RNA-Bloom.md new file mode 100644 index 000000000..a45ed6a85 --- /dev/null +++ b/docs/version-specific/supported-software/r/RNA-Bloom.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# RNA-Bloom + +RNA-Bloom is a fast and memory-efficient de novo transcript sequence assembler. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.3`` | ``GCC/8.3.0`` +``1.4.3`` | ``GCC/11.2.0`` +``2.0.1`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RNA-SeQC.md b/docs/version-specific/supported-software/r/RNA-SeQC.md new file mode 100644 index 000000000..264eefb47 --- /dev/null +++ b/docs/version-specific/supported-software/r/RNA-SeQC.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# RNA-SeQC + +RNA-SeQC is a java program which computes a series of quality control metrics for RNA-seq data. The input can be one or more BAM files. The output consists of HTML reports and tab delimited files of metrics data. This program can be valuable for comparing sequencing quality across different samples or experiments to evaluate different experimental parameters. It can also be run on individual samples as a means of quality control before continuing with downstream analysis. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.8`` | ``-Java-11`` | ``GCCcore/11.2.0`` +``1.1.8`` | ``-Java-1.8.0_121`` | ``foss/2016b`` +``1.1.8`` | ``-Java-1.8`` | ``foss/2018b`` +``2.4.2`` | | ``foss/2021a`` +``2.4.2`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RNAIndel.md b/docs/version-specific/supported-software/r/RNAIndel.md new file mode 100644 index 000000000..a06b14670 --- /dev/null +++ b/docs/version-specific/supported-software/r/RNAIndel.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# RNAIndel + +RNAIndel calls coding indels and classifies them into somatic, germline, and artifact from tumor RNA-Seq data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``1.0.0`` | ``-Python-3.6.6`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RNAclust.md b/docs/version-specific/supported-software/r/RNAclust.md new file mode 100644 index 000000000..6e16c740e --- /dev/null +++ b/docs/version-specific/supported-software/r/RNAclust.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# RNAclust + +RNAclust is a perl script summarizing all the single steps required for clustering of structured RNA motifs, i.e. identifying groups of RNA sequences sharing a secondary structure motif. It requires as input a multiple FASTA file. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3`` | ``-Perl-5.24.0`` | ``foss/2016b`` +``1.3`` | ``-Python-3.6.6`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RNAcode.md b/docs/version-specific/supported-software/r/RNAcode.md new file mode 100644 index 000000000..efac44080 --- /dev/null +++ b/docs/version-specific/supported-software/r/RNAcode.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# RNAcode + +RNAcode - Analyze the protein coding potential in multiple sequence alignments + +*homepage*: + +version | toolchain +--------|---------- +``0.3`` | ``foss/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RNAmmer.md b/docs/version-specific/supported-software/r/RNAmmer.md new file mode 100644 index 000000000..d084a2ad6 --- /dev/null +++ b/docs/version-specific/supported-software/r/RNAmmer.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# RNAmmer + +This is an example description. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2`` | ``-Perl-5.28.0`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RNAz.md b/docs/version-specific/supported-software/r/RNAz.md new file mode 100644 index 000000000..f04700521 --- /dev/null +++ b/docs/version-specific/supported-software/r/RNAz.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# RNAz + +RNAz is a program for predicting structurally conserved and thermodynamically stable RNA secondary structures in multiple sequence alignments. + +*homepage*: + +version | toolchain +--------|---------- +``2.1`` | ``foss/2016b`` +``2.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/ROCR-Runtime.md b/docs/version-specific/supported-software/r/ROCR-Runtime.md new file mode 100644 index 000000000..5db943867 --- /dev/null +++ b/docs/version-specific/supported-software/r/ROCR-Runtime.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ROCR-Runtime + +The user-mode API interfaces and libraries necessary for host applications to launch compute kernels to available HSA ROCm kernel agents + +*homepage*: + +version | toolchain +--------|---------- +``4.5.0`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/ROCT-Thunk-Interface.md b/docs/version-specific/supported-software/r/ROCT-Thunk-Interface.md new file mode 100644 index 000000000..b9347ea1e --- /dev/null +++ b/docs/version-specific/supported-software/r/ROCT-Thunk-Interface.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ROCT-Thunk-Interface + +The user-mode API interfaces used to interact with the ROCk driver + +*homepage*: + +version | toolchain +--------|---------- +``4.5.0`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/ROCm-CompilerSupport.md b/docs/version-specific/supported-software/r/ROCm-CompilerSupport.md new file mode 100644 index 000000000..ce06dc3cb --- /dev/null +++ b/docs/version-specific/supported-software/r/ROCm-CompilerSupport.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ROCm-CompilerSupport + +The compiler support repository provides various Lightning Compiler related services + +*homepage*: + +version | toolchain +--------|---------- +``4.5.0`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/ROCm.md b/docs/version-specific/supported-software/r/ROCm.md new file mode 100644 index 000000000..7e6dc4438 --- /dev/null +++ b/docs/version-specific/supported-software/r/ROCm.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ROCm + +AMD ROCm is the first open-source software development platform for HPC/Hyperscale-class GPU computing. AMD ROCm brings the UNIX philosophy of choice, minimalism and modular software development to GPU computing. + +*homepage*: + +version | toolchain +--------|---------- +``4.5.0`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/ROI_PAC.md b/docs/version-specific/supported-software/r/ROI_PAC.md new file mode 100644 index 000000000..b44e4b4df --- /dev/null +++ b/docs/version-specific/supported-software/r/ROI_PAC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ROI_PAC + +Repeat Orbit Interferometry PACkage (ROI_PAC), software for processing synthetic aperture radar data to produce differential interferograms + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.1`` | ``-Perl-5.24.1`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/ROME.md b/docs/version-specific/supported-software/r/ROME.md new file mode 100644 index 000000000..2aaa9a031 --- /dev/null +++ b/docs/version-specific/supported-software/r/ROME.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ROME + +The ROME (Refinement and Optimization via Machine Learning for cryo-EM) Software package is one of the major research products at the Intel® PCCSB. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.2`` | ``intel/2019.02`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/ROOT.md b/docs/version-specific/supported-software/r/ROOT.md new file mode 100644 index 000000000..975b948c6 --- /dev/null +++ b/docs/version-specific/supported-software/r/ROOT.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# ROOT + +The ROOT system provides a set of OO frameworks with all the functionality needed to handle and analyze large amounts of data in a very efficient way. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``6.10.02`` | ``-Python-2.7.12`` | ``foss/2016b`` +``6.10.02`` | ``-Python-2.7.12`` | ``intel/2016b`` +``6.10.04`` | ``-Python-2.7.13`` | ``intel/2017a`` +``6.10.08`` | ``-Python-2.7.14`` | ``foss/2017b`` +``6.10.08`` | ``-Python-2.7.14`` | ``intel/2017b`` +``6.14.06`` | ``-Python-2.7.15`` | ``foss/2018b`` +``6.14.06`` | ``-Python-3.6.6`` | ``foss/2018b`` +``6.20.04`` | ``-Python-3.7.4`` | ``foss/2019b`` +``6.22.08`` | | ``foss/2020b`` +``6.24.06`` | | ``foss/2021b`` +``6.26.06`` | | ``foss/2022a`` +``6.26.10`` | | ``foss/2022b`` +``6.30.06`` | | ``foss/2023a`` +``v5.34.34`` | ``-Python-2.7.11`` | ``intel/2016a`` +``v5.34.36`` | ``-Python-2.7.11`` | ``intel/2016a`` +``v6.06.02`` | ``-Python-2.7.12`` | ``intel/2016b`` +``v6.08.02`` | ``-Python-2.7.11`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RPostgreSQL.md b/docs/version-specific/supported-software/r/RPostgreSQL.md new file mode 100644 index 000000000..e0c70ed10 --- /dev/null +++ b/docs/version-specific/supported-software/r/RPostgreSQL.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# RPostgreSQL + +Database interface and 'PostgreSQL' driver for 'R'. This package provides a Database Interface 'DBI' compliant driver for 'R' to access 'PostgreSQL' database systems. + +*homepage*: + +version | toolchain +--------|---------- +``0.7-5`` | ``foss/2022a`` +``0.7-6`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RQGIS3.md b/docs/version-specific/supported-software/r/RQGIS3.md new file mode 100644 index 000000000..d1274aee8 --- /dev/null +++ b/docs/version-specific/supported-software/r/RQGIS3.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# RQGIS3 + +RQGIS3 establishes an interface between R and QGIS3, i.e., it allows the user to access QGIS3 functionalities from within R. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20190903`` | ``-R-3.6.0`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RSEM.md b/docs/version-specific/supported-software/r/RSEM.md new file mode 100644 index 000000000..d79b8398a --- /dev/null +++ b/docs/version-specific/supported-software/r/RSEM.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# RSEM + +RNA-Seq by Expectation-Maximization) + +*homepage*: + +version | toolchain +--------|---------- +``1.2.26`` | ``GNU/4.9.3-2.25`` +``1.2.30`` | ``foss/2016a`` +``1.2.30`` | ``intel/2016b`` +``1.3.0`` | ``foss/2016b`` +``1.3.0`` | ``intel/2017a`` +``1.3.1`` | ``foss/2017b`` +``1.3.1`` | ``intel/2017b`` +``1.3.1`` | ``intel/2018a`` +``1.3.2`` | ``foss/2018b`` +``1.3.3`` | ``foss/2019b`` +``1.3.3`` | ``foss/2021b`` +``1.3.3`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RSeQC.md b/docs/version-specific/supported-software/r/RSeQC.md new file mode 100644 index 000000000..717623f30 --- /dev/null +++ b/docs/version-specific/supported-software/r/RSeQC.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# RSeQC + +RSeQC provides a number of useful modules that can comprehensively evaluate high throughput sequence data especially RNA-seq data. Some basic modules quickly inspect sequence quality, nucleotide composition bias, PCR bias and GC bias, while RNA-seq specific modules evaluate sequencing saturation, mapped reads distribution, coverage uniformity, strand specificity, transcript level RNA integrity etc. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.6.4`` | ``-Python-2.7.12-R-3.3.1`` | ``foss/2016b`` +``2.6.4`` | ``-Python-2.7.14`` | ``intel/2018a`` +``3.0.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``4.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``4.0.0`` | | ``foss/2021a`` +``4.0.0`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RStan.md b/docs/version-specific/supported-software/r/RStan.md new file mode 100644 index 000000000..0dffd85dd --- /dev/null +++ b/docs/version-specific/supported-software/r/RStan.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# RStan + +RStan is the R interface to Stan. Stan is a state-of-the-art platform for statistical modeling and high-performance statistical computation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.18.2`` | ``-R-3.4.3`` | ``foss/2017b`` +``2.18.2`` | ``-R-3.5.1`` | ``foss/2018b`` +``2.18.2`` | ``-R-3.4.3`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RStudio-Server.md b/docs/version-specific/supported-software/r/RStudio-Server.md new file mode 100644 index 000000000..76c7966dd --- /dev/null +++ b/docs/version-specific/supported-software/r/RStudio-Server.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# RStudio-Server + +This is the RStudio Server version. RStudio is a set of integrated tools designed to help you be more productive with R. The server can be started with: rserver --server-daemonize=0 --www-port 8787 --rsession-which-r=$(which R) + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.5033`` | ``-Java-11`` | ``fosscuda/2019b`` +``1.2.5042`` | ``-Java-11`` | ``foss/2019b`` +``1.3.1093`` | ``-Java-11-R-4.0.0`` | ``foss/2020a`` +``1.3.959`` | ``-Java-11-R-4.0.0`` | ``foss/2020a`` +``1.4.1717`` | ``-Java-11-R-4.1.0`` | ``foss/2021a`` +``2022.07.2+576`` | ``-Java-11-R-4.2.1`` | ``foss/2022a`` +``2023.12.1+402`` | ``-Java-11-R-4.3.3`` | ``gfbf/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RTG-Tools.md b/docs/version-specific/supported-software/r/RTG-Tools.md new file mode 100644 index 000000000..eb5d48404 --- /dev/null +++ b/docs/version-specific/supported-software/r/RTG-Tools.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# RTG-Tools + +RTG Tools contains utilities to easily manipulate and accurately compare multiple VCF files, as well as utilities for processing other common NGS data formats. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.12.1`` | ``-Java-11`` | ``system`` +``3.9.1`` | ``-Java-1.8`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RaGOO.md b/docs/version-specific/supported-software/r/RaGOO.md new file mode 100644 index 000000000..b76e00960 --- /dev/null +++ b/docs/version-specific/supported-software/r/RaGOO.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# RaGOO + +A tool to order and orient genome assembly contigs via Minimap2 alignments to a reference genome + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.11`` | ``-Python-3.6.6`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Racon.md b/docs/version-specific/supported-software/r/Racon.md new file mode 100644 index 000000000..28649dfcc --- /dev/null +++ b/docs/version-specific/supported-software/r/Racon.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# Racon + +Ultrafast consensus module for raw de novo genome assembly of long uncorrected reads. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.2`` | ``GCCcore/8.2.0`` +``1.4.10`` | ``GCC/7.3.0-2.30`` +``1.4.13`` | ``GCCcore/8.3.0`` +``1.4.13`` | ``GCCcore/9.3.0`` +``1.4.21`` | ``GCCcore/10.2.0`` +``1.4.21`` | ``GCCcore/10.3.0`` +``1.4.7`` | ``GCCcore/8.2.0`` +``1.4.7`` | ``gcccuda/2019b`` +``1.5.0`` | ``GCCcore/11.2.0`` +``1.5.0`` | ``GCCcore/11.3.0`` +``1.5.0`` | ``GCCcore/12.2.0`` +``1.5.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RagTag.md b/docs/version-specific/supported-software/r/RagTag.md new file mode 100644 index 000000000..9e9b4b614 --- /dev/null +++ b/docs/version-specific/supported-software/r/RagTag.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# RagTag + +RagTag is a collection of software tools for scaffolding and improving modern genome assemblies. Tasks include: homology-based misassembly correction, homology-based assembly scaffolding and patching, and scaffold merging. RagTag also provides command line utilities for working with common genome assembly file formats. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.1`` | ``foss/2020b`` +``2.1.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Ragout.md b/docs/version-specific/supported-software/r/Ragout.md new file mode 100644 index 000000000..7572183fd --- /dev/null +++ b/docs/version-specific/supported-software/r/Ragout.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Ragout + +Ragout (Reference-Assisted Genome Ordering UTility) is a tool for chromosome assembly using multiple references. Given a set of assembly fragments (contigs/scaffolds) and one or multiple related references (complete or draft), it produces a chromosome-scale assembly (as a set of scaffolds). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2.3`` | | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RapidJSON.md b/docs/version-specific/supported-software/r/RapidJSON.md new file mode 100644 index 000000000..a2a647e54 --- /dev/null +++ b/docs/version-specific/supported-software/r/RapidJSON.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# RapidJSON + +A fast JSON parser/generator for C++ with both SAX/DOM style API + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0-20230928`` | ``GCCcore/12.3.0`` +``1.1.0`` | ``GCCcore/10.2.0`` +``1.1.0`` | ``GCCcore/10.3.0`` +``1.1.0`` | ``GCCcore/11.2.0`` +``1.1.0`` | ``GCCcore/11.3.0`` +``1.1.0`` | ``GCCcore/12.2.0`` +``1.1.0`` | ``GCCcore/12.3.0`` +``1.1.0`` | ``GCCcore/8.2.0`` +``1.1.0`` | ``GCCcore/8.3.0`` +``1.1.0`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Raptor.md b/docs/version-specific/supported-software/r/Raptor.md new file mode 100644 index 000000000..07fcbe9a1 --- /dev/null +++ b/docs/version-specific/supported-software/r/Raptor.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Raptor + +Set of parsers and serializers that generate Resource Description Framework (RDF) triples by parsing syntaxes or serialize the triples into a syntax. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.16`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Rascaf.md b/docs/version-specific/supported-software/r/Rascaf.md new file mode 100644 index 000000000..4afd50872 --- /dev/null +++ b/docs/version-specific/supported-software/r/Rascaf.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Rascaf + +Rascaf (RnA-seq SCAFfolder) uses continuity and order information from paired-end RNA-seq reads to improve a draft assembly, particularly in the gene regions. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.2`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Ratatosk.md b/docs/version-specific/supported-software/r/Ratatosk.md new file mode 100644 index 000000000..9d4e1c1c0 --- /dev/null +++ b/docs/version-specific/supported-software/r/Ratatosk.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Ratatosk + +Phased hybrid error correction of long reads using colored de Bruijn graphs + +*homepage*: + +version | toolchain +--------|---------- +``0.4`` | ``GCC/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Raven.md b/docs/version-specific/supported-software/r/Raven.md new file mode 100644 index 000000000..430a5d08d --- /dev/null +++ b/docs/version-specific/supported-software/r/Raven.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Raven + +Raven is a de novo genome assembler for long uncorrected reads. + +*homepage*: + +version | toolchain +--------|---------- +``1.8.1`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Ray-assembler.md b/docs/version-specific/supported-software/r/Ray-assembler.md new file mode 100644 index 000000000..0407f5cde --- /dev/null +++ b/docs/version-specific/supported-software/r/Ray-assembler.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Ray-assembler + +Parallel genome assemblies for parallel DNA sequencing + +*homepage*: + +version | toolchain +--------|---------- +``2.3.1`` | ``iimpi/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Ray-project.md b/docs/version-specific/supported-software/r/Ray-project.md new file mode 100644 index 000000000..7f00219f0 --- /dev/null +++ b/docs/version-specific/supported-software/r/Ray-project.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# Ray-project + +Ray is a fast and simple framework for building and running distributed applications. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8.4`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.0.1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``1.13.0`` | | ``foss/2021a`` +``1.13.0`` | | ``foss/2021b`` +``1.9.2`` | | ``foss/2021b`` +``2.2.0`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Raysect.md b/docs/version-specific/supported-software/r/Raysect.md new file mode 100644 index 000000000..577ac613a --- /dev/null +++ b/docs/version-specific/supported-software/r/Raysect.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Raysect + +Raysect is an OOP ray-tracing framework for Python + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.6.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``0.7.1`` | | ``foss/2020b`` +``0.7.1`` | | ``intel/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Rcorrector.md b/docs/version-specific/supported-software/r/Rcorrector.md new file mode 100644 index 000000000..f9036528b --- /dev/null +++ b/docs/version-specific/supported-software/r/Rcorrector.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Rcorrector + +Rcorrector(RNA-seq error CORRECTOR) is a kmer-based error correction method for RNA-seq data. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.2`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RcppGSL.md b/docs/version-specific/supported-software/r/RcppGSL.md new file mode 100644 index 000000000..4bd35d155 --- /dev/null +++ b/docs/version-specific/supported-software/r/RcppGSL.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# RcppGSL + +The 'RcppGSL' package provides an easy-to-use interface between 'GSL' data structures and R using concepts from 'Rcpp' which is itself a package that eases the interfaces between R and C++. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.8`` | ``-R-4.0.4`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/ReFrame.md b/docs/version-specific/supported-software/r/ReFrame.md new file mode 100644 index 000000000..59d63fb6d --- /dev/null +++ b/docs/version-specific/supported-software/r/ReFrame.md @@ -0,0 +1,43 @@ +--- +search: + boost: 0.5 +--- +# ReFrame + +ReFrame is a framework for writing regression tests for HPC systems. + +*homepage*: + +version | toolchain +--------|---------- +``2.18`` | ``system`` +``2.19`` | ``system`` +``2.20`` | ``system`` +``2.21`` | ``system`` +``3.0`` | ``system`` +``3.10.1`` | ``system`` +``3.11.0`` | ``system`` +``3.11.1`` | ``system`` +``3.11.2`` | ``system`` +``3.12.0`` | ``system`` +``3.2`` | ``system`` +``3.3`` | ``system`` +``3.4.1`` | ``system`` +``3.5.0`` | ``system`` +``3.5.1`` | ``system`` +``3.5.2`` | ``system`` +``3.6.2`` | ``system`` +``3.6.3`` | ``system`` +``3.7.3`` | ``system`` +``3.8.0`` | ``system`` +``3.9.0`` | ``system`` +``3.9.1`` | ``system`` +``4.0.1`` | ``system`` +``4.0.5`` | ``system`` +``4.2.0`` | ``system`` +``4.3.2`` | ``system`` +``4.3.3`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/ReMatCh.md b/docs/version-specific/supported-software/r/ReMatCh.md new file mode 100644 index 000000000..0b99556c8 --- /dev/null +++ b/docs/version-specific/supported-software/r/ReMatCh.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ReMatCh + +Reads mapping against target sequences, checking mapping and consensus sequences production + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.2`` | ``-Python-2.7.12`` | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Reads2snp.md b/docs/version-specific/supported-software/r/Reads2snp.md new file mode 100644 index 000000000..9619d4bf5 --- /dev/null +++ b/docs/version-specific/supported-software/r/Reads2snp.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Reads2snp + +reads2snp is a SNP and genotype caller: it predicts the genotype of distinct individuals at distinct positions of a set of sequences based on read mapping / read counts. Its typical input is a bam file. Its typical output is a vcf file. It is written in C++, based on the bio++ libraries, multi-threaded with openMP, available under Linux and MacOS + +*homepage*: + +version | toolchain +--------|---------- +``2.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Reapr.md b/docs/version-specific/supported-software/r/Reapr.md new file mode 100644 index 000000000..0b6c00794 --- /dev/null +++ b/docs/version-specific/supported-software/r/Reapr.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Reapr + +A tool that evaluates the accuracy of a genome assembly using mapped paired end reads, without the use of a reference genome for comparison. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.18`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/ReaxFF.md b/docs/version-specific/supported-software/r/ReaxFF.md new file mode 100644 index 000000000..5bd98ee4d --- /dev/null +++ b/docs/version-specific/supported-software/r/ReaxFF.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ReaxFF + +parameter generation code for the REAXFF Reactive force field program + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0`` | ``-param`` | ``GCC/11.3.0`` +``2.0`` | ``-sim`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Red.md b/docs/version-specific/supported-software/r/Red.md new file mode 100644 index 000000000..89316940f --- /dev/null +++ b/docs/version-specific/supported-software/r/Red.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Red + +Red (REpeat Detector) + +*homepage*: + +version | toolchain +--------|---------- +``2015-05-22`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Redis.md b/docs/version-specific/supported-software/r/Redis.md new file mode 100644 index 000000000..b418dee66 --- /dev/null +++ b/docs/version-specific/supported-software/r/Redis.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Redis + +Redis is an open source (BSD licensed), in-memory data structure store, used as a database, cache, and message broker. Redis provides data structures such as strings, hashes, lists, sets, sorted sets with range queries, bitmaps, hyperloglogs, geospatial indexes, and streams. Redis has built-in replication, Lua scripting, LRU eviction, transactions, and different levels of on-disk persistence, and provides high availability via Redis Sentinel and automatic partitioning with Redis Cluster. + +*homepage*: + +version | toolchain +--------|---------- +``6.2.6`` | ``GCC/10.3.0`` +``6.2.6`` | ``GCC/11.2.0`` +``7.0.8`` | ``GCC/11.3.0`` +``7.2.3`` | ``GCCcore/12.3.0`` +``7.2.4`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Redundans.md b/docs/version-specific/supported-software/r/Redundans.md new file mode 100644 index 000000000..d215699cb --- /dev/null +++ b/docs/version-specific/supported-software/r/Redundans.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Redundans + +Redundans is a pipeline that assists an assembly of heterozygous/polymorphic genomes. + +*homepage*: + +version | toolchain +--------|---------- +``0.13c`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RegTools.md b/docs/version-specific/supported-software/r/RegTools.md new file mode 100644 index 000000000..7f1c97ad2 --- /dev/null +++ b/docs/version-specific/supported-software/r/RegTools.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# RegTools + +RegTools is a set of tools that integrate DNA-seq and RNA-seq data to help interpret mutations in a regulatory and splicing context. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.2`` | ``foss/2020b`` +``0.5.2`` | ``foss/2020b`` +``0.5.2`` | ``foss/2021b`` +``1.0.0`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Relate.md b/docs/version-specific/supported-software/r/Relate.md new file mode 100644 index 000000000..ca4c8506c --- /dev/null +++ b/docs/version-specific/supported-software/r/Relate.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Relate + +Software for estimating genome-wide genealogies for thousands of samples + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20211123`` | ``-R-4.0.3`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RepastHPC.md b/docs/version-specific/supported-software/r/RepastHPC.md new file mode 100644 index 000000000..bd539513c --- /dev/null +++ b/docs/version-specific/supported-software/r/RepastHPC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# RepastHPC + +The Repast Suite is a family of advanced, free, and open source agent-based modeling and simulation platforms that have collectively been under continuous development for over 15 years: Repast for High Performance Computing 2.2.0, released on 30 September 2016, is a lean and expert-focused C++-based modeling system that is designed for use on large computing clusters and supercomputers. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.0`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RepeatMasker.md b/docs/version-specific/supported-software/r/RepeatMasker.md new file mode 100644 index 000000000..dcc0aef1f --- /dev/null +++ b/docs/version-specific/supported-software/r/RepeatMasker.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# RepeatMasker + +RepeatMasker is a program that screens DNA sequences for interspersed repeats and low complexity DNA sequences. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.0.8`` | ``-Perl-5.26.0-HMMER`` | ``GCC/6.4.0-2.28`` +``4.0.8`` | ``-Perl-5.26.0-HMMER`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` +``4.0.8`` | ``-Perl-5.28.0-HMMER`` | ``intel/2018b`` +``4.0.9-p2`` | ``-HMMER`` | ``gompi/2019b`` +``4.1.2-p1`` | | ``foss/2020b`` +``4.1.4`` | | ``foss/2022a`` +``4.1.5`` | | ``foss/2021a`` +``4.1.5`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RepeatModeler.md b/docs/version-specific/supported-software/r/RepeatModeler.md new file mode 100644 index 000000000..529246a7d --- /dev/null +++ b/docs/version-specific/supported-software/r/RepeatModeler.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# RepeatModeler + +RepeatModeler is a de novo transposable element (TE) family identification and modeling package. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.2a`` | ``foss/2020b`` +``2.0.4`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RepeatScout.md b/docs/version-specific/supported-software/r/RepeatScout.md new file mode 100644 index 000000000..243c11903 --- /dev/null +++ b/docs/version-specific/supported-software/r/RepeatScout.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# RepeatScout + +De Novo Repeat Finder, Price A.L., Jones N.C. and Pevzner P.A. Developed and tested with our multiple sequence version of RepeatScout ( 1.0.6 ) + +*homepage*: + +version | toolchain +--------|---------- +``1.0.6`` | ``GCC/10.2.0`` +``1.0.6`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/ResistanceGA.md b/docs/version-specific/supported-software/r/ResistanceGA.md new file mode 100644 index 000000000..76f86430b --- /dev/null +++ b/docs/version-specific/supported-software/r/ResistanceGA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ResistanceGA + +An R package to optimize resistance surfaces using Genetic Algorithms. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.2-5`` | ``-R-4.2.1-Julia-1.9.2`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Restrander.md b/docs/version-specific/supported-software/r/Restrander.md new file mode 100644 index 000000000..98c04863a --- /dev/null +++ b/docs/version-specific/supported-software/r/Restrander.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Restrander + +A fast, accurate program for orienting and quality-checking cDNA sequencing reads. + +*homepage*: + +version | toolchain +--------|---------- +``20230713`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RevBayes.md b/docs/version-specific/supported-software/r/RevBayes.md new file mode 100644 index 000000000..ef5798c36 --- /dev/null +++ b/docs/version-specific/supported-software/r/RevBayes.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# RevBayes + +RevBayes provides an interactive environment for statistical computation in phylogenetics. It is primarily intended for modeling, simulation, and Bayesian inference in evolutionary biology, particularly phylogenetics. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``GCC/10.2.0`` +``1.1.1`` | ``GCC/11.2.0`` +``1.2.1`` | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Rgurobi.md b/docs/version-specific/supported-software/r/Rgurobi.md new file mode 100644 index 000000000..dbbe7c1d2 --- /dev/null +++ b/docs/version-specific/supported-software/r/Rgurobi.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Rgurobi + +Gurobi Optimizer 9.1 interface + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``9.1.2`` | ``-R-4.1.0`` | ``foss/2021a`` +``9.5.0`` | ``-R-4.1.0`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RheoTool.md b/docs/version-specific/supported-software/r/RheoTool.md new file mode 100644 index 000000000..bf2697f03 --- /dev/null +++ b/docs/version-specific/supported-software/r/RheoTool.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# RheoTool + +RheoTool is an open-source toolbox based on OpenFOAM to simulate Generalized Newtonian Fluids (GNF) and viscoelastic fluids under pressure-driven and/or electrically-driven flows. + +*homepage*: + +version | toolchain +--------|---------- +``5.0`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Rhodium.md b/docs/version-specific/supported-software/r/Rhodium.md new file mode 100644 index 000000000..4087ba8c2 --- /dev/null +++ b/docs/version-specific/supported-software/r/Rhodium.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Rhodium + +Rhodium is an open source Python library for robust decision making (RDM) and multiobjective robust decision making (MORDM), and exploratory modelling (EM). + +*homepage*: + +version | toolchain +--------|---------- +``1.2.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Rivet.md b/docs/version-specific/supported-software/r/Rivet.md new file mode 100644 index 000000000..8233b657e --- /dev/null +++ b/docs/version-specific/supported-software/r/Rivet.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Rivet + +Rivet toolkit (Robust Independent Validation of Experiment and Theory) To use your own analysis you must append the path to `RIVET_ANALYSIS_PATH`. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.1.7`` | ``-HepMC3-3.2.5`` | ``gompi/2022a`` +``3.1.9`` | ``-HepMC3-3.2.6`` | ``gompi/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Rmath.md b/docs/version-specific/supported-software/r/Rmath.md new file mode 100644 index 000000000..3bf85381c --- /dev/null +++ b/docs/version-specific/supported-software/r/Rmath.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Rmath + +Rmath is the standalone version of the R math library. Rmath can be used in your own C/C++ routines. + +*homepage*: + +version | toolchain +--------|---------- +``3.3.1`` | ``intel/2016b`` +``4.0.4`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/RnBeads.md b/docs/version-specific/supported-software/r/RnBeads.md new file mode 100644 index 000000000..8c679a0f0 --- /dev/null +++ b/docs/version-specific/supported-software/r/RnBeads.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# RnBeads + +RnBeads is an R package for comprehensive analysis of DNA methylation data obtained with any experimental protocol that provides single-CpG resolution. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.14.0`` | ``-R-4.2.1`` | ``foss/2022a`` +``2.6.0`` | ``-R-4.0.0`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Roary.md b/docs/version-specific/supported-software/r/Roary.md new file mode 100644 index 000000000..5bec664c8 --- /dev/null +++ b/docs/version-specific/supported-software/r/Roary.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Roary + +Rapid large-scale prokaryote pan genome analysis + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.12.0`` | ``-Perl-5.26.1`` | ``intel/2018a`` +``3.12.0`` | | ``system`` +``3.13.0`` | | ``foss/2020a`` +``3.13.0`` | | ``foss/2021a`` +``3.13.0`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Rosetta.md b/docs/version-specific/supported-software/r/Rosetta.md new file mode 100644 index 000000000..af20e25aa --- /dev/null +++ b/docs/version-specific/supported-software/r/Rosetta.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Rosetta + +Rosetta is the premier software suite for modeling macromolecular structures. As a flexible, multi-purpose application, it includes tools for structure prediction, design, and remodeling of proteins and nucleic acids. + +*homepage*: + +version | toolchain +--------|---------- +``2016.13.58602`` | ``foss/2016a`` +``2016.46.59086`` | ``foss/2016b`` +``3.7`` | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Rtree.md b/docs/version-specific/supported-software/r/Rtree.md new file mode 100644 index 000000000..4eb66fc0e --- /dev/null +++ b/docs/version-specific/supported-software/r/Rtree.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Rtree + +Rtree is a ctypes Python wrapper of libspatialindex that provides a number of advanced spatial indexing features for the spatially curious Python user. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8.3`` | ``-Python-2.7.14`` | ``intel/2018a`` +``1.0.1`` | | ``GCCcore/12.2.0`` +``1.2.0`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Ruby-Tk.md b/docs/version-specific/supported-software/r/Ruby-Tk.md new file mode 100644 index 000000000..e4ab7afbc --- /dev/null +++ b/docs/version-specific/supported-software/r/Ruby-Tk.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Ruby-Tk + +Ruby Tk interface module using tcltklib + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.0`` | ``-Ruby-2.5.1`` | ``foss/2018a`` +``0.2.0`` | ``-Ruby-2.5.1`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Ruby.md b/docs/version-specific/supported-software/r/Ruby.md new file mode 100644 index 000000000..e8d22578c --- /dev/null +++ b/docs/version-specific/supported-software/r/Ruby.md @@ -0,0 +1,38 @@ +--- +search: + boost: 0.5 +--- +# Ruby + +Ruby is a dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.6`` | ``system`` +``2.3.1`` | ``intel/2016b`` +``2.3.1`` | ``system`` +``2.3.3`` | ``system`` +``2.3.4`` | ``system`` +``2.4.2`` | ``foss/2017b`` +``2.5.0`` | ``foss/2018a`` +``2.5.0`` | ``intel/2017a`` +``2.5.0`` | ``intel/2017b`` +``2.5.1`` | ``foss/2018a`` +``2.5.1`` | ``intel/2018a`` +``2.6.1`` | ``GCCcore/7.3.0`` +``2.6.3`` | ``GCCcore/8.2.0`` +``2.7.1`` | ``GCCcore/8.3.0`` +``2.7.2`` | ``GCCcore/10.2.0`` +``2.7.2`` | ``GCCcore/9.3.0`` +``3.0.1`` | ``GCCcore/10.3.0`` +``3.0.1`` | ``GCCcore/11.2.0`` +``3.0.3`` | ``GCCcore/11.3.0`` +``3.0.5`` | ``GCCcore/11.3.0`` +``3.2.2`` | ``GCCcore/12.2.0`` +``3.3.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/Rust.md b/docs/version-specific/supported-software/r/Rust.md new file mode 100644 index 000000000..e6f1ec033 --- /dev/null +++ b/docs/version-specific/supported-software/r/Rust.md @@ -0,0 +1,44 @@ +--- +search: + boost: 0.5 +--- +# Rust + +Rust is a systems programming language that runs blazingly fast, prevents segfaults, and guarantees thread safety. + +*homepage*: + +version | toolchain +--------|---------- +``1.12.0`` | ``foss/2016b`` +``1.12.1`` | ``foss/2016b`` +``1.18.0`` | ``foss/2017a`` +``1.21.0`` | ``foss/2017b`` +``1.22.1`` | ``GCCcore/6.4.0`` +``1.29.2`` | ``GCCcore/7.3.0`` +``1.30.1`` | ``GCCcore/6.4.0`` +``1.35.0`` | ``GCCcore/8.2.0`` +``1.37.0`` | ``GCCcore/8.3.0`` +``1.42.0`` | ``GCCcore/7.3.0`` +``1.42.0`` | ``GCCcore/8.2.0`` +``1.42.0`` | ``GCCcore/8.3.0`` +``1.42.0`` | ``GCCcore/9.3.0`` +``1.52.1`` | ``GCCcore/10.2.0`` +``1.52.1`` | ``GCCcore/10.3.0`` +``1.54.0`` | ``GCCcore/11.2.0`` +``1.56.0`` | ``GCCcore/11.2.0`` +``1.60.0`` | ``GCCcore/10.3.0`` +``1.60.0`` | ``GCCcore/11.3.0`` +``1.65.0`` | ``GCCcore/11.3.0`` +``1.65.0`` | ``GCCcore/12.2.0`` +``1.70.0`` | ``GCCcore/12.3.0`` +``1.73.0`` | ``GCCcore/13.2.0`` +``1.75.0`` | ``GCCcore/12.2.0`` +``1.75.0`` | ``GCCcore/12.3.0`` +``1.76.0`` | ``GCCcore/13.2.0`` +``1.78.0`` | ``GCCcore/13.3.0`` +``1.8.0`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/index.md b/docs/version-specific/supported-software/r/index.md new file mode 100644 index 000000000..1ebaf0ed0 --- /dev/null +++ b/docs/version-specific/supported-software/r/index.md @@ -0,0 +1,152 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (r) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - *r* - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [R](R.md) + * [R-bundle-Bioconductor](R-bundle-Bioconductor.md) + * [R-bundle-CRAN](R-bundle-CRAN.md) + * [R-INLA](R-INLA.md) + * [R-keras](R-keras.md) + * [R-MXM](R-MXM.md) + * [R-opencv](R-opencv.md) + * [R-tesseract](R-tesseract.md) + * [R-transport](R-transport.md) + * [R2jags](R2jags.md) + * [Racon](Racon.md) + * [radeontop](radeontop.md) + * [radian](radian.md) + * [RaGOO](RaGOO.md) + * [Ragout](Ragout.md) + * [RagTag](RagTag.md) + * [rampart](rampart.md) + * [randfold](randfold.md) + * [randrproto](randrproto.md) + * [rapidcsv](rapidcsv.md) + * [RapidJSON](RapidJSON.md) + * [rapidNJ](rapidNJ.md) + * [rapidtide](rapidtide.md) + * [RAPSearch2](RAPSearch2.md) + * [Raptor](Raptor.md) + * [Rascaf](Rascaf.md) + * [RASPA2](RASPA2.md) + * [rasterio](rasterio.md) + * [rasterstats](rasterstats.md) + * [Ratatosk](Ratatosk.md) + * [Raven](Raven.md) + * [RAxML](RAxML.md) + * [RAxML-NG](RAxML-NG.md) + * [Ray-assembler](Ray-assembler.md) + * [Ray-project](Ray-project.md) + * [Raysect](Raysect.md) + * [RBFOpt](RBFOpt.md) + * [RCall](RCall.md) + * [rclone](rclone.md) + * [Rcorrector](Rcorrector.md) + * [RcppGSL](RcppGSL.md) + * [rCUDA](rCUDA.md) + * [RDFlib](RDFlib.md) + * [RDKit](RDKit.md) + * [RDP-Classifier](RDP-Classifier.md) + * [RE2](RE2.md) + * [re2c](re2c.md) + * [Reads2snp](Reads2snp.md) + * [Reapr](Reapr.md) + * [ReaxFF](ReaxFF.md) + * [RECON](RECON.md) + * [Red](Red.md) + * [Redis](Redis.md) + * [redis-py](redis-py.md) + * [Redundans](Redundans.md) + * [ReFrame](ReFrame.md) + * [regionmask](regionmask.md) + * [RegTools](RegTools.md) + * [Relate](Relate.md) + * [RELION](RELION.md) + * [remake](remake.md) + * [ReMatCh](ReMatCh.md) + * [REMORA](REMORA.md) + * [renderproto](renderproto.md) + * [RepastHPC](RepastHPC.md) + * [RepeatMasker](RepeatMasker.md) + * [RepeatModeler](RepeatModeler.md) + * [RepeatScout](RepeatScout.md) + * [request](request.md) + * [requests](requests.md) + * [RERconverge](RERconverge.md) + * [ResistanceGA](ResistanceGA.md) + * [resolos](resolos.md) + * [Restrander](Restrander.md) + * [rethinking](rethinking.md) + * [retworkx](retworkx.md) + * [RevBayes](RevBayes.md) + * [RFdiffusion](RFdiffusion.md) + * [rgdal](rgdal.md) + * [rgeos](rgeos.md) + * [Rgurobi](Rgurobi.md) + * [rhdf5](rhdf5.md) + * [RHEIA](RHEIA.md) + * [RheoTool](RheoTool.md) + * [Rhodium](Rhodium.md) + * [rickflow](rickflow.md) + * [RInChI](RInChI.md) + * [rioxarray](rioxarray.md) + * [ripunzip](ripunzip.md) + * [rising](rising.md) + * [Rivet](Rivet.md) + * [rjags](rjags.md) + * [RLCard](RLCard.md) + * [rmarkdown](rmarkdown.md) + * [Rmath](Rmath.md) + * [rMATS-turbo](rMATS-turbo.md) + * [RMBlast](RMBlast.md) + * [RNA-Bloom](RNA-Bloom.md) + * [RNA-SeQC](RNA-SeQC.md) + * [RNAclust](RNAclust.md) + * [RNAcode](RNAcode.md) + * [RNAIndel](RNAIndel.md) + * [RNAmmer](RNAmmer.md) + * [rnaQUAST](rnaQUAST.md) + * [RNAz](RNAz.md) + * [RnBeads](RnBeads.md) + * [Roary](Roary.md) + * [ROCm](ROCm.md) + * [rocm-cmake](rocm-cmake.md) + * [ROCm-CompilerSupport](ROCm-CompilerSupport.md) + * [rocm-smi](rocm-smi.md) + * [rocminfo](rocminfo.md) + * [ROCR-Runtime](ROCR-Runtime.md) + * [ROCT-Thunk-Interface](ROCT-Thunk-Interface.md) + * [ROI_PAC](ROI_PAC.md) + * [ROME](ROME.md) + * [ROOT](ROOT.md) + * [root_numpy](root_numpy.md) + * [rootpy](rootpy.md) + * [Rosetta](Rosetta.md) + * [rpmrebuild](rpmrebuild.md) + * [RPostgreSQL](RPostgreSQL.md) + * [rpy2](rpy2.md) + * [RQGIS3](RQGIS3.md) + * [RSEM](RSEM.md) + * [RSeQC](RSeQC.md) + * [RStan](RStan.md) + * [rstanarm](rstanarm.md) + * [RStudio-Server](RStudio-Server.md) + * [RTG-Tools](RTG-Tools.md) + * [Rtree](Rtree.md) + * [ruamel.yaml](ruamel.yaml.md) + * [Ruby](Ruby.md) + * [Ruby-Tk](Ruby-Tk.md) + * [ruffus](ruffus.md) + * [ruptures](ruptures.md) + * [Rust](Rust.md) + * [rustworkx](rustworkx.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - *r* - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rCUDA.md b/docs/version-specific/supported-software/r/rCUDA.md new file mode 100644 index 000000000..540aaf358 --- /dev/null +++ b/docs/version-specific/supported-software/r/rCUDA.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# rCUDA + +The rCUDA Framework enables the concurrent usage of CUDA-compatible devices remotely. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.0.1`` | ``_linux_64_Ubuntu10.04`` | ``system`` +``5.0`` | ``_linux_64_scientificLinux6`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rMATS-turbo.md b/docs/version-specific/supported-software/r/rMATS-turbo.md new file mode 100644 index 000000000..0bba5ad47 --- /dev/null +++ b/docs/version-specific/supported-software/r/rMATS-turbo.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# rMATS-turbo + +rMATS turbo is the C/Cython version of rMATS (refer to http://rnaseq-mats.sourceforge.net). + +*homepage*: + +version | toolchain +--------|---------- +``4.1.1`` | ``foss/2020b`` +``4.2.0`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/radeontop.md b/docs/version-specific/supported-software/r/radeontop.md new file mode 100644 index 000000000..0bd5c402d --- /dev/null +++ b/docs/version-specific/supported-software/r/radeontop.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# radeontop + +View your GPU utilization, both for the total activity percent and individual blocks. + +*homepage*: + +version | toolchain +--------|---------- +``1.3`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/radian.md b/docs/version-specific/supported-software/r/radian.md new file mode 100644 index 000000000..7bc6c8613 --- /dev/null +++ b/docs/version-specific/supported-software/r/radian.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# radian + +radian is an alternative console for the R program with multiline editing and rich syntax highlight. + +*homepage*: + +version | toolchain +--------|---------- +``0.6.9`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rampart.md b/docs/version-specific/supported-software/r/rampart.md new file mode 100644 index 000000000..0443bc6f5 --- /dev/null +++ b/docs/version-specific/supported-software/r/rampart.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# rampart + +Read Assignment, Mapping, and Phylogenetic Analysis in Real Time. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.0`` | | ``foss/2020b`` +``1.2.0rc3`` | ``-Python-3.6.6`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/randfold.md b/docs/version-specific/supported-software/r/randfold.md new file mode 100644 index 000000000..03df69da5 --- /dev/null +++ b/docs/version-specific/supported-software/r/randfold.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# randfold + +Minimum free energy of folding randomization test software + +*homepage*: + +version | toolchain +--------|---------- +``2.0.1`` | ``foss/2018b`` +``2.0.1`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/randrproto.md b/docs/version-specific/supported-software/r/randrproto.md new file mode 100644 index 000000000..476554c94 --- /dev/null +++ b/docs/version-specific/supported-software/r/randrproto.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# randrproto + +Xrandr protocol and ancillary headers + +*homepage*: + +version | toolchain +--------|---------- +``1.5.0`` | ``foss/2016a`` +``1.5.0`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rapidNJ.md b/docs/version-specific/supported-software/r/rapidNJ.md new file mode 100644 index 000000000..261161004 --- /dev/null +++ b/docs/version-specific/supported-software/r/rapidNJ.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# rapidNJ + +RapidNJ is an algorithmic engineered implementation of canonical neighbour-joining. It uses an efficient search heuristic to speed-up the core computations of the neighbour-joining method that enables RapidNJ to outperform other state-of-the-art neighbour-joining implementations. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.3`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rapidcsv.md b/docs/version-specific/supported-software/r/rapidcsv.md new file mode 100644 index 000000000..7bcb9aae0 --- /dev/null +++ b/docs/version-specific/supported-software/r/rapidcsv.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# rapidcsv + +Rapidcsv is a C++ header-only library for CSV parsing. While the name admittedly was inspired by the rapidjson project, the objectives are not the same. The goal of rapidcsv is to be an easy-to-use CSV library enabling rapid development. For optimal performance (be it CPU or memory usage) a CSV parser implemented for the specific use-case is likely to be more performant. + +*homepage*: + +version | toolchain +--------|---------- +``8.62`` | ``GCCcore/11.2.0`` +``8.64`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rapidtide.md b/docs/version-specific/supported-software/r/rapidtide.md new file mode 100644 index 000000000..624dba1a2 --- /dev/null +++ b/docs/version-specific/supported-software/r/rapidtide.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# rapidtide + +Rapidtide is a suite of python programs used to perform time delay analysis on functional imaging data to find time lagged correlations between the voxelwise time series and other time series. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.8.0`` | ``-Python-3.7.2`` | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rasterio.md b/docs/version-specific/supported-software/r/rasterio.md new file mode 100644 index 000000000..85f47ff90 --- /dev/null +++ b/docs/version-specific/supported-software/r/rasterio.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# rasterio + +Rasterio reads and writes geospatial raster data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.7`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.2.10`` | | ``foss/2021b`` +``1.2.3`` | | ``foss/2020b`` +``1.3.4`` | | ``foss/2022a`` +``1.3.8`` | | ``foss/2022b`` +``1.3.9`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rasterstats.md b/docs/version-specific/supported-software/r/rasterstats.md new file mode 100644 index 000000000..c145ee2cc --- /dev/null +++ b/docs/version-specific/supported-software/r/rasterstats.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# rasterstats + +rasterstats is a Python module for summarizing geospatial raster datasets based on vector geometries. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.15.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.19.0`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rclone.md b/docs/version-specific/supported-software/r/rclone.md new file mode 100644 index 000000000..e989f103a --- /dev/null +++ b/docs/version-specific/supported-software/r/rclone.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# rclone + +Rclone is a command line program to sync files and directories to and from a variety of online storage services + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.42`` | ``-amd64`` | ``system`` +``1.54.1`` | ``-amd64`` | ``system`` +``1.56.0`` | ``-amd64`` | ``system`` +``1.57.0`` | | ``system`` +``1.63.1`` | ``-amd64`` | ``system`` +``1.65.2`` | | ``system`` +``1.66.0`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/re2c.md b/docs/version-specific/supported-software/r/re2c.md new file mode 100644 index 000000000..84628f745 --- /dev/null +++ b/docs/version-specific/supported-software/r/re2c.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# re2c + +re2c is a free and open-source lexer generator for C and C++. Its main goal is generating fast lexers: at least as fast as their reasonably optimized hand-coded counterparts. Instead of using traditional table-driven approach, re2c encodes the generated finite state automata directly in the form of conditional jumps and comparisons. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``GCCcore/8.2.0`` +``1.2.1`` | ``GCCcore/8.3.0`` +``1.3`` | ``GCCcore/9.3.0`` +``2.0.3`` | ``GCCcore/10.2.0`` +``2.1.1`` | ``GCCcore/10.3.0`` +``2.2`` | ``GCCcore/11.2.0`` +``2.2`` | ``GCCcore/11.3.0`` +``3.0`` | ``GCCcore/12.2.0`` +``3.1`` | ``GCCcore/12.3.0`` +``3.1`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/redis-py.md b/docs/version-specific/supported-software/r/redis-py.md new file mode 100644 index 000000000..e48458ea3 --- /dev/null +++ b/docs/version-specific/supported-software/r/redis-py.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# redis-py + +The Python interface to the Redis key-value store. + +*homepage*: + +version | toolchain +--------|---------- +``4.3.1`` | ``foss/2021a`` +``4.3.3`` | ``foss/2021b`` +``4.5.1`` | ``foss/2022a`` +``5.0.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/regionmask.md b/docs/version-specific/supported-software/r/regionmask.md new file mode 100644 index 000000000..d94a8f5f9 --- /dev/null +++ b/docs/version-specific/supported-software/r/regionmask.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# regionmask + +regionmask creates masks of geographical regions. It determines to which geographic region each grid point belongs. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.0`` | | ``foss/2022b`` +``0.9.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.9.0`` | | ``foss/2021b`` +``0.9.0`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/remake.md b/docs/version-specific/supported-software/r/remake.md new file mode 100644 index 000000000..9cd92efdf --- /dev/null +++ b/docs/version-specific/supported-software/r/remake.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# remake + +remake is an enhanced version of GNU Make that adds improved error reporting, better tracing, profiling and a debugger + +*homepage*: + +version | toolchain +--------|---------- +``4.3+dbg-1.6`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/renderproto.md b/docs/version-specific/supported-software/r/renderproto.md new file mode 100644 index 000000000..cf3824d9f --- /dev/null +++ b/docs/version-specific/supported-software/r/renderproto.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# renderproto + +Xrender protocol and ancillary headers + +*homepage*: + +version | toolchain +--------|---------- +``0.11`` | ``foss/2016a`` +``0.11`` | ``gimkl/2.11.5`` +``0.11`` | ``intel/2016a`` +``0.11`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/request.md b/docs/version-specific/supported-software/r/request.md new file mode 100644 index 000000000..8e1bf9af6 --- /dev/null +++ b/docs/version-specific/supported-software/r/request.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# request + +Request is designed to be the simplest way possible to make http calls. It supports HTTPS and follows redirects by default. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.88.1`` | ``-nodejs-12.19.0`` | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/requests.md b/docs/version-specific/supported-software/r/requests.md new file mode 100644 index 000000000..b697f4459 --- /dev/null +++ b/docs/version-specific/supported-software/r/requests.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# requests + +Python http for humans + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.10.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``2.10.0`` | ``-Python-3.5.1`` | ``foss/2016a`` +``2.11.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2.11.1`` | ``-Python-3.5.2`` | ``intel/2016b`` +``2.13.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2.13.0`` | ``-Python-2.7.12`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/resolos.md b/docs/version-specific/supported-software/r/resolos.md new file mode 100644 index 000000000..0875dd0f6 --- /dev/null +++ b/docs/version-specific/supported-software/r/resolos.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# resolos + +Resolos is a toolkit written in Python for maintaining reproducible environments for scientific computations. It's main goal is to enable researchers to easily replicate environments through space (running code on HPC environment) and time (environment preservation for long term archival). For installation and detailed usage, check out the documentation. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.5`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rethinking.md b/docs/version-specific/supported-software/r/rethinking.md new file mode 100644 index 000000000..e45eda3ac --- /dev/null +++ b/docs/version-specific/supported-software/r/rethinking.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# rethinking + +R package that contains tools for conducting both quick quadratic approximation of the posterior distribution as well as Hamiltonian Monte Carlo. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.40-20230914`` | ``-R-4.3.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/retworkx.md b/docs/version-specific/supported-software/r/retworkx.md new file mode 100644 index 000000000..5e2c12c31 --- /dev/null +++ b/docs/version-specific/supported-software/r/retworkx.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# retworkx + +retworkx is a general purpose graph library for python3 written in Rust to take advantage of the performance and safety that Rust provides. It was built as a replacement for qiskit's previous (and current) networkx usage (hence the name) but is designed to provide a high performance general purpose graph library for any python application. The project was originally started to build a faster directed graph to use as the underlying data structure for the DAG at the center of qiskit-terra's transpiler, but it has since grown to cover all the graph usage in Qiskit and other applications. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.0`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rgdal.md b/docs/version-specific/supported-software/r/rgdal.md new file mode 100644 index 000000000..06f9b310f --- /dev/null +++ b/docs/version-specific/supported-software/r/rgdal.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# rgdal + +Provides bindings to the 'Geospatial' Data Abstraction Library ('GDAL') (>= 1.11.4 and <= 2.5.0) and access to projection/transformation operations from the 'PROJ.4' library. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4-4`` | ``-R-3.6.0`` | ``foss/2019a`` +``1.4-8`` | ``-R-3.6.2`` | ``foss/2019b`` +``1.4-8`` | ``-R-4.0.0`` | ``foss/2020a`` +``1.5-16`` | ``-R-4.0.0`` | ``foss/2020a`` +``1.5-23`` | ``-R-4.0.4`` | ``foss/2020b`` +``1.5-23`` | ``-R-4.1.0`` | ``foss/2021a`` +``1.6-6`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rgeos.md b/docs/version-specific/supported-software/r/rgeos.md new file mode 100644 index 000000000..4de3d4d36 --- /dev/null +++ b/docs/version-specific/supported-software/r/rgeos.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# rgeos + +R interface to Geometry Engine - Open Source (GEOS) using the C API for topology operations on geometries + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3-17`` | ``-R-3.2.3`` | ``intel/2016a`` +``0.5-1`` | ``-R-3.6.0`` | ``foss/2019a`` +``0.5-2`` | ``-R-3.6.2`` | ``foss/2019b`` +``0.5-5`` | ``-R-4.0.0`` | ``foss/2020a`` +``0.5-5`` | ``-R-4.1.0`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rhdf5.md b/docs/version-specific/supported-software/r/rhdf5.md new file mode 100644 index 000000000..b123ac14a --- /dev/null +++ b/docs/version-specific/supported-software/r/rhdf5.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# rhdf5 + +This R/Bioconductor package provides an interface between HDF5 and R. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.16.0`` | ``-R-3.2.3`` | ``intel/2016a`` +``2.18.0`` | ``-R-3.3.1`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rickflow.md b/docs/version-specific/supported-software/r/rickflow.md new file mode 100644 index 000000000..9a18a968f --- /dev/null +++ b/docs/version-specific/supported-software/r/rickflow.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# rickflow + +Running and Analyzing OpenMM Jobs + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7.0-20200529`` | ``-Python-3.7.4`` | ``intel/2019b`` +``0.7.0`` | ``-Python-3.7.4`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rioxarray.md b/docs/version-specific/supported-software/r/rioxarray.md new file mode 100644 index 000000000..cb9641f48 --- /dev/null +++ b/docs/version-specific/supported-software/r/rioxarray.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# rioxarray + +geospatial xarray extension powered by rasterio + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.0.12`` | ``-Python-3.7.2`` | ``intel/2019a`` +``0.0.24`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.1.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.11.1`` | | ``foss/2021b`` +``0.14.0`` | | ``foss/2022a`` +``0.15.0`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/ripunzip.md b/docs/version-specific/supported-software/r/ripunzip.md new file mode 100644 index 000000000..49c9e2ea7 --- /dev/null +++ b/docs/version-specific/supported-software/r/ripunzip.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ripunzip + +A tool to unzip files in parallel. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rising.md b/docs/version-specific/supported-software/r/rising.md new file mode 100644 index 000000000..667703260 --- /dev/null +++ b/docs/version-specific/supported-software/r/rising.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# rising + +Provides everything needed for high performance data loading and augmentation in PyTorch. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.2`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``0.2.2`` | | ``foss/2021a`` +``0.2.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.2.2`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rjags.md b/docs/version-specific/supported-software/r/rjags.md new file mode 100644 index 000000000..e436bffd3 --- /dev/null +++ b/docs/version-specific/supported-software/r/rjags.md @@ -0,0 +1,32 @@ +--- +search: + boost: 0.5 +--- +# rjags + +The rjags package is an interface to the JAGS library. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4-10`` | | ``foss/2019b`` +``4-10`` | ``-R-4.0.0`` | ``foss/2020a`` +``4-10`` | ``-R-4.0.3`` | ``foss/2020b`` +``4-10`` | ``-R-4.0.4`` | ``foss/2020b`` +``4-10`` | ``-R-4.0.5`` | ``foss/2020b`` +``4-10`` | ``-R-4.1.0`` | ``foss/2021a`` +``4-10`` | ``-R-4.0.3`` | ``fosscuda/2020b`` +``4-10`` | ``-R-4.0.4`` | ``fosscuda/2020b`` +``4-10`` | ``-R-4.0.5`` | ``fosscuda/2020b`` +``4-12`` | ``-R-4.1.2`` | ``foss/2021b`` +``4-13`` | ``-R-4.2.1`` | ``foss/2022a`` +``4-13`` | ``-R-4.2.2`` | ``foss/2022b`` +``4-6`` | ``-R-3.4.0`` | ``intel/2017a`` +``4-6`` | ``-R-3.4.3`` | ``intel/2017b`` +``4-8`` | ``-R-3.5.1`` | ``foss/2018b`` +``4-9`` | ``-R-3.6.0`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rmarkdown.md b/docs/version-specific/supported-software/r/rmarkdown.md new file mode 100644 index 000000000..79d64715b --- /dev/null +++ b/docs/version-specific/supported-software/r/rmarkdown.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# rmarkdown + +Convert R Markdown documents into a variety of formats. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.20`` | ``-R-4.1.0`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rnaQUAST.md b/docs/version-specific/supported-software/r/rnaQUAST.md new file mode 100644 index 000000000..5b612d5f2 --- /dev/null +++ b/docs/version-specific/supported-software/r/rnaQUAST.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# rnaQUAST + +rnaQUAST is a tool for evaluating RNA-Seq assemblies using reference genome and gene database. In addition, rnaQUAST is also capable of estimating gene database coverage by raw reads and de novo quality assessment using third-party software. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5.2`` | ``-Python-2.7.15`` | ``foss/2018b`` +``2.2.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2.2.2`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rocm-cmake.md b/docs/version-specific/supported-software/r/rocm-cmake.md new file mode 100644 index 000000000..e673203ea --- /dev/null +++ b/docs/version-specific/supported-software/r/rocm-cmake.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# rocm-cmake + +ROCM cmake modules provides cmake modules for common build tasks needed for the ROCM software stack + +*homepage*: + +version | toolchain +--------|---------- +``4.5.0`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rocm-smi.md b/docs/version-specific/supported-software/r/rocm-smi.md new file mode 100644 index 000000000..e3c01f661 --- /dev/null +++ b/docs/version-specific/supported-software/r/rocm-smi.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# rocm-smi + +The ROCm System Management Interface Library, or ROCm SMI library, is part of the Radeon Open Compute ROCm software stack. It is a C library for Linux that provides a user space interface for applications to monitor and control GPU applications. + +*homepage*: + +version | toolchain +--------|---------- +``4.5.0`` | ``GCCcore/11.2.0`` +``5.4.4`` | ``GCCcore/11.3.0`` +``5.6.0`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rocminfo.md b/docs/version-specific/supported-software/r/rocminfo.md new file mode 100644 index 000000000..4d0902c62 --- /dev/null +++ b/docs/version-specific/supported-software/r/rocminfo.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# rocminfo + +ROCm Application for Reporting System Info + +*homepage*: + +version | toolchain +--------|---------- +``4.5.0`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/root_numpy.md b/docs/version-specific/supported-software/r/root_numpy.md new file mode 100644 index 000000000..26dc8c45d --- /dev/null +++ b/docs/version-specific/supported-software/r/root_numpy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# root_numpy + +root_numpy is a Python extension module that provides an efficient interface between ROOT and NumPy. root_numpy’s internals are compiled C++ and can therefore handle large amounts of data much faster than equivalent pure Python implementations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.8.0`` | ``-Python-3.6.6`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rootpy.md b/docs/version-specific/supported-software/r/rootpy.md new file mode 100644 index 000000000..c714bd567 --- /dev/null +++ b/docs/version-specific/supported-software/r/rootpy.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# rootpy + +The rootpy project is a community-driven initiative aiming to provide a more pythonic interface with ROOT on top of the existing PyROOT bindings. Given Python’s reflective and dynamic nature, rootpy also aims to improve ROOT design flaws and supplement existing ROOT functionality. The scientific Python community also offers a multitude of powerful packages such as SciPy, NumPy, matplotlib, scikit-learn, and PyTables, but a suitable interface between them and ROOT has been lacking. rootpy provides the interfaces and conversion mechanisms required to liberate your data and to take advantage of these alternatives if needed. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.0.1`` | ``-Python-3.6.6`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rpmrebuild.md b/docs/version-specific/supported-software/r/rpmrebuild.md new file mode 100644 index 000000000..849d0d395 --- /dev/null +++ b/docs/version-specific/supported-software/r/rpmrebuild.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# rpmrebuild + +rpmrebuild is a tool to build an RPM file from a package that has already been installed in a basic use + +*homepage*: + +version | toolchain +--------|---------- +``2.11`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rpy2.md b/docs/version-specific/supported-software/r/rpy2.md new file mode 100644 index 000000000..492a5f0e4 --- /dev/null +++ b/docs/version-specific/supported-software/r/rpy2.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# rpy2 + +rpy2 is a redesign and rewrite of rpy. It is providing a low-level interface to R from Python, a proposed high-level interface, including wrappers to graphical libraries, as well as R-like structures and functions. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.7.9`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2.8.2`` | ``-Python-2.7.13`` | ``intel/2017a`` +``3.2.6`` | ``-Python-3.7.4`` | ``foss/2019b`` +``3.4.5`` | | ``foss/2021a`` +``3.4.5`` | | ``foss/2021b`` +``3.5.15`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rstanarm.md b/docs/version-specific/supported-software/r/rstanarm.md new file mode 100644 index 000000000..e915c5fd0 --- /dev/null +++ b/docs/version-specific/supported-software/r/rstanarm.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# rstanarm + +Estimates previously compiled regression models using the 'rstan' package, which provides the R interface to the Stan C++ library for Bayesian estimation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.19.3`` | ``-R-3.6.2`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/ruamel.yaml.md b/docs/version-specific/supported-software/r/ruamel.yaml.md new file mode 100644 index 000000000..9e3065da9 --- /dev/null +++ b/docs/version-specific/supported-software/r/ruamel.yaml.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# ruamel.yaml + +ruamel.yaml is a YAML 1.2 loader/dumper package for Python. + +*homepage*: + +version | toolchain +--------|---------- +``0.17.21`` | ``GCCcore/10.3.0`` +``0.17.21`` | ``GCCcore/11.2.0`` +``0.17.21`` | ``GCCcore/11.3.0`` +``0.17.21`` | ``GCCcore/12.2.0`` +``0.17.32`` | ``GCCcore/12.3.0`` +``0.18.6`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/ruffus.md b/docs/version-specific/supported-software/r/ruffus.md new file mode 100644 index 000000000..3a76cea9d --- /dev/null +++ b/docs/version-specific/supported-software/r/ruffus.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ruffus + +Ruffus is a Computation Pipeline library for python. It is open-sourced, powerful and user-friendly, and widely used in science and bioinformatics. + +*homepage*: + +version | toolchain +--------|---------- +``2.8.4`` | ``GCCcore/11.3.0`` +``2.8.4`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/ruptures.md b/docs/version-specific/supported-software/r/ruptures.md new file mode 100644 index 000000000..ade378989 --- /dev/null +++ b/docs/version-specific/supported-software/r/ruptures.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ruptures + +ruptures is a Python library for off-line change point detection. This package provides methods for the analysis and segmentation of non-stationary signals. Implemented algorithms include exact and approximate detection for various parametric and non-parametric models. ruptures focuses on ease of use by providing a well-documented and consistent interface. In addition, thanks to its modular structure, different algorithms and models can be connected and extended within this package. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.8`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/r/rustworkx.md b/docs/version-specific/supported-software/r/rustworkx.md new file mode 100644 index 000000000..38706965c --- /dev/null +++ b/docs/version-specific/supported-software/r/rustworkx.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# rustworkx + +rustworkx (previously retworkx) is a general purpose graph library for Python written in Rust to take advantage of the performance and safety that Rust provides. It is designed to provide a high performance general purpose graph library for any Python application. + +*homepage*: + +version | toolchain +--------|---------- +``0.12.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/S-Lang.md b/docs/version-specific/supported-software/s/S-Lang.md new file mode 100644 index 000000000..50fca2d73 --- /dev/null +++ b/docs/version-specific/supported-software/s/S-Lang.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# S-Lang + +S-Lang is a multi-platform programmer's library designed to allow a developer to create robust multi-platform software. It provides facilities required by interactive applications such as display/screen management, keyboard input, keymaps, and so on. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.0`` | ``GCC/4.9.2`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/S4.md b/docs/version-specific/supported-software/s/S4.md new file mode 100644 index 000000000..d5c275b84 --- /dev/null +++ b/docs/version-specific/supported-software/s/S4.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# S4 + +S4 stands for Stanford Stratified Structure Solver, a frequency domain code to solve the linear Maxwell’s equations in layered periodic structures. Internally, it uses Rigorous Coupled Wave Analysis (RCWA, also called the Fourier Modal Method (FMM)) and the S-matrix algorithm. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1-20180610`` | ``foss/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SAGE.md b/docs/version-specific/supported-software/s/SAGE.md new file mode 100644 index 000000000..9735c9b09 --- /dev/null +++ b/docs/version-specific/supported-software/s/SAGE.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SAGE + +S.A.G.E. (Statistical Analysis for Genetic Epidemiology) is free software package containing programs for use in the genetic analysis of family, pedigree and individual data. + +*homepage*: + +version | toolchain +--------|---------- +``6.3`` | ``system`` +``6.4`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SALMON-TDDFT.md b/docs/version-specific/supported-software/s/SALMON-TDDFT.md new file mode 100644 index 000000000..eb4eec86c --- /dev/null +++ b/docs/version-specific/supported-software/s/SALMON-TDDFT.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SALMON-TDDFT + +SALMON is an open-source computer program for ab-initio quantum-mechanical calculations of electron dynamics at the nanoscale that takes place in various situations of light-matter interactions. It is based on time-dependent density functional theory, solving time-dependent Kohn-Sham equation in real time and real space with norm-conserving pseudopotentials. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.1`` | ``foss/2018b`` +``1.2.1`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SALib.md b/docs/version-specific/supported-software/s/SALib.md new file mode 100644 index 000000000..7a4881389 --- /dev/null +++ b/docs/version-specific/supported-software/s/SALib.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SALib + +Sensitivity Analysis Library in Python (Numpy). Contains Sobol, Morris, Fractional Factorial and FAST methods. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.3`` | ``-Python-2.7.14`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SAMtools.md b/docs/version-specific/supported-software/s/SAMtools.md new file mode 100644 index 000000000..eef20363b --- /dev/null +++ b/docs/version-specific/supported-software/s/SAMtools.md @@ -0,0 +1,77 @@ +--- +search: + boost: 0.5 +--- +# SAMtools + +SAM Tools provide various utilities for manipulating alignments in the SAM format, including sorting, merging, indexing and generating alignments in a per-position format. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.17`` | | ``intel/2017a`` +``0.1.19`` | | ``GCC/10.3.0`` +``0.1.19`` | | ``foss/2016a`` +``0.1.19`` | | ``foss/2016b`` +``0.1.20`` | | ``GCC/12.3.0`` +``0.1.20`` | | ``GCC/8.3.0`` +``0.1.20`` | | ``foss/2018b`` +``0.1.20`` | | ``intel/2017a`` +``0.1.20`` | | ``intel/2017b`` +``0.1.20`` | | ``intel/2018a`` +``0.1.20`` | | ``intel/2018b`` +``0.1.20`` | | ``intel/2019b`` +``1.10`` | | ``GCC/8.2.0-2.31.1`` +``1.10`` | | ``GCC/8.3.0`` +``1.10`` | | ``GCC/9.3.0`` +``1.10`` | | ``iccifort/2019.5.281`` +``1.11`` | | ``GCC/10.2.0`` +``1.11`` | | ``GCC/9.3.0`` +``1.11`` | | ``iccifort/2020.4.304`` +``1.12`` | | ``GCC/10.2.0`` +``1.12`` | | ``GCC/10.3.0`` +``1.12`` | | ``GCC/9.3.0`` +``1.13`` | | ``GCC/10.3.0`` +``1.13`` | | ``GCC/11.3.0`` +``1.13`` | | ``GCC/12.3.0`` +``1.14`` | | ``GCC/11.2.0`` +``1.15`` | | ``GCC/11.2.0`` +``1.15.1`` | | ``GCC/11.2.0`` +``1.15.1`` | | ``GCC/11.3.0`` +``1.16.1`` | | ``GCC/11.2.0`` +``1.16.1`` | | ``GCC/11.3.0`` +``1.17`` | | ``GCC/12.2.0`` +``1.18`` | | ``GCC/12.3.0`` +``1.19.2`` | | ``GCC/13.2.0`` +``1.2`` | | ``foss/2016b`` +``1.3`` | | ``foss/2016a`` +``1.3`` | | ``intel/2016a`` +``1.3.1`` | | ``foss/2016a`` +``1.3.1`` | | ``foss/2016b`` +``1.3.1`` | | ``intel/2016a`` +``1.3.1`` | ``-HTSlib-1.3.2`` | ``intel/2016b`` +``1.3.1`` | | ``intel/2016b`` +``1.4`` | | ``foss/2016b`` +``1.4`` | | ``intel/2016b`` +``1.4`` | | ``intel/2017a`` +``1.4.1`` | | ``intel/2017a`` +``1.5`` | | ``foss/2016b`` +``1.5`` | | ``intel/2017a`` +``1.6`` | | ``GCC/6.4.0-2.28`` +``1.6`` | | ``foss/2017a`` +``1.6`` | | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` +``1.6`` | | ``intel/2017b`` +``1.7`` | | ``foss/2018a`` +``1.7`` | | ``intel/2018a`` +``1.8`` | | ``intel/2018a`` +``1.9`` | | ``GCC/6.4.0-2.28`` +``1.9`` | | ``GCC/7.3.0-2.30`` +``1.9`` | | ``GCC/8.2.0-2.31.1`` +``1.9`` | | ``foss/2018b`` +``1.9`` | | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``1.9`` | | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SAP.md b/docs/version-specific/supported-software/s/SAP.md new file mode 100644 index 000000000..502da81af --- /dev/null +++ b/docs/version-specific/supported-software/s/SAP.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SAP + +SAP is a pairwise structure alignment via double dynamic programming + +*homepage*: + +version | toolchain +--------|---------- +``1.1.3`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SAS.md b/docs/version-specific/supported-software/s/SAS.md new file mode 100644 index 000000000..3336ad60f --- /dev/null +++ b/docs/version-specific/supported-software/s/SAS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SAS + +SAS is a software suite for advanced analytics, multivariate analyses, business intelligence, data management, and predictive analytics. + +*homepage*: + +version | toolchain +--------|---------- +``9.4`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SBCL.md b/docs/version-specific/supported-software/s/SBCL.md new file mode 100644 index 000000000..d2b995aff --- /dev/null +++ b/docs/version-specific/supported-software/s/SBCL.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# SBCL + +Steel Bank Common Lisp (SBCL) is a high performance Common Lisp compiler. It is open source / free software, with a permissive license. In addition to the compiler and runtime system for ANSI Common Lisp, it provides an interactive environment including a debugger, a statistical profiler, a code coverage tool, and many other extensions. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.9`` | ``GCCcore/9.3.0`` +``2.2.1`` | ``GCCcore/10.3.0`` +``2.3.11`` | ``GCCcore/11.3.0`` +``2.4.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SCALCE.md b/docs/version-specific/supported-software/s/SCALCE.md new file mode 100644 index 000000000..4c8f20944 --- /dev/null +++ b/docs/version-specific/supported-software/s/SCALCE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SCALCE + +SCALCE [skeɪlz] is a FASTQ compression tool that uses locally consistet parsing to obtain better compression rate. SCALCE has been specifically designed for Illumina reads but it can handle other technologies (that generate base pair reads) if the read length is the same throughout the file. + +*homepage*: + +version | toolchain +--------|---------- +``2.7`` | ``GCC/4.8.2`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SCENIC.md b/docs/version-specific/supported-software/s/SCENIC.md new file mode 100644 index 000000000..4102d47c9 --- /dev/null +++ b/docs/version-specific/supported-software/s/SCENIC.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# SCENIC + +SCENIC Suite is a set of tools to study and decipher gene regulation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.4`` | ``-R-4.1.0`` | ``foss/2021a`` +``1.3.0`` | ``-R-4.2.1`` | ``foss/2022a`` +``1.3.0`` | ``-R-4.3.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SCGid.md b/docs/version-specific/supported-software/s/SCGid.md new file mode 100644 index 000000000..86f5e3744 --- /dev/null +++ b/docs/version-specific/supported-software/s/SCGid.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SCGid + +A consensus approach to contig filtering and genome prediction from single-cell sequencing libraries + +*homepage*: + +version | toolchain +--------|---------- +``0.9b0`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SCIP.md b/docs/version-specific/supported-software/s/SCIP.md new file mode 100644 index 000000000..74454e3f9 --- /dev/null +++ b/docs/version-specific/supported-software/s/SCIP.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SCIP + +SCIP is currently one of the fastest non-commercial solvers for mixed integer programming (MIP) and mixed integer nonlinear programming (MINLP). It is also a framework for constraint integer programming and branch-cut-and-price. It allows for total control of the solution process and the access of detailed information down to the guts of the solver. + +*homepage*: + +version | toolchain +--------|---------- +``3.2.1`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SCIPhI.md b/docs/version-specific/supported-software/s/SCIPhI.md new file mode 100644 index 000000000..bed6160ef --- /dev/null +++ b/docs/version-specific/supported-software/s/SCIPhI.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SCIPhI + +Single-cell mutation identification via phylogenetic inference (SCIPhI) is a new approach to mutation detection in individual tumor cells by leveraging the evolutionary relationship among cells. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.3`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SCOOP.md b/docs/version-specific/supported-software/s/SCOOP.md new file mode 100644 index 000000000..1e399651d --- /dev/null +++ b/docs/version-specific/supported-software/s/SCOOP.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# SCOOP + +SCOOP (Scalable COncurrent Operations in Python) is a distributed task module allowing concurrent parallel programming on various environments, from heterogeneous grids to supercomputers. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.6.2`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.7.1.1`` | | ``GCCcore/8.2.0`` +``0.7.1.1`` | ``-Python-2.7.11`` | ``intel/2016a`` +``0.7.1.1`` | ``-Python-3.5.1`` | ``intel/2016a`` +``0.7.1.1`` | ``-Python-2.7.14`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SCOTCH.md b/docs/version-specific/supported-software/s/SCOTCH.md new file mode 100644 index 000000000..e577ea9f7 --- /dev/null +++ b/docs/version-specific/supported-software/s/SCOTCH.md @@ -0,0 +1,49 @@ +--- +search: + boost: 0.5 +--- +# SCOTCH + +Software package and libraries for sequential and parallel graph partitioning, static mapping, and sparse matrix block ordering, and sequential mesh and hypergraph partitioning. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.1.12b_esmumps`` | | ``foss/2017b`` +``6.0.4`` | | ``foss/2016a`` +``6.0.4`` | | ``foss/2016b`` +``6.0.4`` | ``-64bitint`` | ``foss/2017b`` +``6.0.4`` | | ``foss/2017b`` +``6.0.4`` | | ``gimkl/2.11.5`` +``6.0.4`` | | ``intel/2016a`` +``6.0.4`` | | ``intel/2016b`` +``6.0.4`` | | ``intel/2017a`` +``6.0.4`` | | ``intel/2017b`` +``6.0.4`` | | ``intel/2018a`` +``6.0.6`` | | ``foss/2018a`` +``6.0.6`` | | ``foss/2018b`` +``6.0.6`` | | ``gompi/2019a`` +``6.0.6`` | | ``iimpi/2019a`` +``6.0.6`` | | ``intel/2018a`` +``6.0.9`` | | ``gompi/2019b`` +``6.0.9`` | | ``gompi/2020a`` +``6.0.9`` | | ``iimpi/2019b`` +``6.0.9`` | | ``iimpi/2020a`` +``6.0.9`` | | ``iimpic/2019b`` +``6.1.0`` | | ``gompi/2020b`` +``6.1.0`` | | ``gompi/2021a`` +``6.1.0`` | | ``iimpi/2020b`` +``6.1.0`` | | ``iimpi/2021a`` +``6.1.2`` | | ``gompi/2021b`` +``6.1.2`` | | ``iimpi/2021b`` +``7.0.1`` | ``-int64`` | ``gompi/2022a`` +``7.0.1`` | | ``gompi/2022a`` +``7.0.1`` | | ``iimpi/2022a`` +``7.0.3`` | | ``gompi/2022b`` +``7.0.3`` | | ``gompi/2023a`` +``7.0.4`` | | ``gompi/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SCReadCounts.md b/docs/version-specific/supported-software/s/SCReadCounts.md new file mode 100644 index 000000000..d5ed3e572 --- /dev/null +++ b/docs/version-specific/supported-software/s/SCReadCounts.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SCReadCounts + +SCReadCounts is a computational tool for a cell-level assessment of the read counts bearing a particular nucleotide at genomic positions of interest from single cell RNA sequencing (scRNA-seq) data. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.0`` | ``foss/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SCnorm.md b/docs/version-specific/supported-software/s/SCnorm.md new file mode 100644 index 000000000..38ef9dce5 --- /dev/null +++ b/docs/version-specific/supported-software/s/SCnorm.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SCnorm + +This package implements SCnorm — a method to normalize single-cell RNA-seq data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.99.7`` | ``-R-3.4.0`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SCons.md b/docs/version-specific/supported-software/s/SCons.md new file mode 100644 index 000000000..59be0be3e --- /dev/null +++ b/docs/version-specific/supported-software/s/SCons.md @@ -0,0 +1,48 @@ +--- +search: + boost: 0.5 +--- +# SCons + +SCons is a software construction tool. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.4.1`` | ``-Python-2.7.11`` | ``foss/2016a`` +``2.5.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2.5.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2.5.1`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2.5.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2.5.1`` | ``-Python-2.7.13`` | ``intel/2017a`` +``2.5.1`` | | ``intel/2017a`` +``3.0.1`` | ``-Python-2.7.15-bare`` | ``GCCcore/7.3.0`` +``3.0.1`` | ``-Python-2.7.14`` | ``foss/2017b`` +``3.0.1`` | ``-Python-3.6.3`` | ``foss/2017b`` +``3.0.1`` | ``-Python-2.7.14`` | ``foss/2018a`` +``3.0.1`` | ``-Python-3.6.4`` | ``foss/2018a`` +``3.0.1`` | ``-Python-2.7.15`` | ``foss/2018b`` +``3.0.1`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``3.0.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``3.0.1`` | ``-Python-3.6.3`` | ``intel/2017b`` +``3.0.1`` | ``-Python-2.7.14`` | ``intel/2018a`` +``3.0.1`` | ``-Python-3.6.4`` | ``intel/2018a`` +``3.0.1`` | ``-Python-2.7.14`` | ``iomkl/2018a`` +``3.0.4`` | ``-Python-2.7.15`` | ``foss/2018b`` +``3.0.5`` | ``-Python-2.7.15`` | ``GCCcore/8.2.0`` +``3.0.5`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` +``3.0.5`` | | ``GCCcore/8.2.0`` +``3.1.1`` | | ``GCCcore/8.3.0`` +``3.1.2`` | | ``GCCcore/9.3.0`` +``4.0.1`` | | ``GCCcore/10.2.0`` +``4.1.0.post1`` | | ``GCCcore/10.2.0`` +``4.1.0.post1`` | | ``GCCcore/10.3.0`` +``4.2.0`` | | ``GCCcore/11.2.0`` +``4.4.0`` | | ``GCCcore/11.3.0`` +``4.5.2`` | | ``GCCcore/12.3.0`` +``4.6.0`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SCopeLoomR.md b/docs/version-specific/supported-software/s/SCopeLoomR.md new file mode 100644 index 000000000..6dd0db947 --- /dev/null +++ b/docs/version-specific/supported-software/s/SCopeLoomR.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SCopeLoomR + +An R package (compatible with SCope) to create generic .loom files and extend them with other data e.g.: SCENIC regulons, Seurat clusters and markers, ... + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.13.0`` | ``-R-4.1.2`` | ``foss/2021b`` +``0.13.0_20220408`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SDCC.md b/docs/version-specific/supported-software/s/SDCC.md new file mode 100644 index 000000000..3b58660f8 --- /dev/null +++ b/docs/version-specific/supported-software/s/SDCC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SDCC + +SDCC is a retargettable, optimizing ANSI - C compiler suite that targets the Intel MCS51 based microprocessors (8031, 8032, 8051, 8052, etc.), Maxim (formerly Dallas) DS80C390 variants, Freescale (formerly Motorola) HC08 based (hc08, s08) and Zilog Z80 based MCUs (z80, z180, gbz80, Rabbit 2000/3000, Rabbit 3000A). Work is in progress on supporting the Microchip PIC16 and PIC18 targets. It can be retargeted for other microprocessors. + +*homepage*: + +version | toolchain +--------|---------- +``3.3.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SDL.md b/docs/version-specific/supported-software/s/SDL.md new file mode 100644 index 000000000..29bd0bf3d --- /dev/null +++ b/docs/version-specific/supported-software/s/SDL.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SDL + +SDL: Simple DirectMedia Layer, a cross-platform multimedia library + +*homepage*: + +version | toolchain +--------|---------- +``1.2.15`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SDL2.md b/docs/version-specific/supported-software/s/SDL2.md new file mode 100644 index 000000000..6f1a0701d --- /dev/null +++ b/docs/version-specific/supported-software/s/SDL2.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# SDL2 + +SDL: Simple DirectMedia Layer, a cross-platform multimedia library + +*homepage*: + +version | toolchain +--------|---------- +``2.0.10`` | ``GCCcore/8.3.0`` +``2.0.14`` | ``GCCcore/10.2.0`` +``2.0.14`` | ``GCCcore/10.3.0`` +``2.0.20`` | ``GCCcore/11.2.0`` +``2.0.22`` | ``GCCcore/11.3.0`` +``2.0.4`` | ``intel/2016b`` +``2.0.8`` | ``GCCcore/6.4.0`` +``2.0.8`` | ``foss/2017b`` +``2.0.8`` | ``intel/2017b`` +``2.0.8`` | ``intel/2018a`` +``2.0.9`` | ``GCCcore/8.2.0`` +``2.0.9`` | ``foss/2018b`` +``2.0.9`` | ``fosscuda/2018b`` +``2.0.9`` | ``intel/2018b`` +``2.26.3`` | ``GCCcore/12.2.0`` +``2.28.2`` | ``GCCcore/12.3.0`` +``2.28.5`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SDL2_gfx.md b/docs/version-specific/supported-software/s/SDL2_gfx.md new file mode 100644 index 000000000..0c1825df1 --- /dev/null +++ b/docs/version-specific/supported-software/s/SDL2_gfx.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SDL2_gfx + +Graphics drawing primitives library for SDL2 + +*homepage*: + +version | toolchain +--------|---------- +``1.0.4`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SDL2_image.md b/docs/version-specific/supported-software/s/SDL2_image.md new file mode 100644 index 000000000..3c41b4d44 --- /dev/null +++ b/docs/version-specific/supported-software/s/SDL2_image.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# SDL2_image + +SDL_image is an image file loading library. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.3`` | ``GCCcore/6.4.0`` +``2.6.3`` | ``GCCcore/11.3.0`` +``2.8.2`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SDL2_mixer.md b/docs/version-specific/supported-software/s/SDL2_mixer.md new file mode 100644 index 000000000..303e7e5b3 --- /dev/null +++ b/docs/version-specific/supported-software/s/SDL2_mixer.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SDL2_mixer + +Due to popular demand, here is a simple multi-channel audio mixer. It supports 8 channels of 16 bit stereo audio, plus a single channel of music. It can load FLAC, MP3, Ogg, VOC, and WAV format audio. It can also load MIDI, MOD, and Opus audio, depending on build options (see the note below for details.) + +*homepage*: + +version | toolchain +--------|---------- +``2.6.3`` | ``GCCcore/11.3.0`` +``2.8.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SDL2_ttf.md b/docs/version-specific/supported-software/s/SDL2_ttf.md new file mode 100644 index 000000000..328957c88 --- /dev/null +++ b/docs/version-specific/supported-software/s/SDL2_ttf.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SDL2_ttf + +This library is a wrapper around the FreeType and Harfbuzz libraries, allowing you to use TrueType fonts to render text in SDL applications. + +*homepage*: + +version | toolchain +--------|---------- +``2.20.2`` | ``GCCcore/11.3.0`` +``2.22.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SDL_image.md b/docs/version-specific/supported-software/s/SDL_image.md new file mode 100644 index 000000000..4311fb2f7 --- /dev/null +++ b/docs/version-specific/supported-software/s/SDL_image.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SDL_image + +SDL_image is an image file loading library. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.12`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SDSL.md b/docs/version-specific/supported-software/s/SDSL.md new file mode 100644 index 000000000..5579a3a41 --- /dev/null +++ b/docs/version-specific/supported-software/s/SDSL.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SDSL + +The Succinct Data Structure Library (SDSL) is a powerful and flexible C++11 library implementing succinct data structures. + +*homepage*: + +version | toolchain +--------|---------- +``2.1.1-20191211`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SEACells.md b/docs/version-specific/supported-software/s/SEACells.md new file mode 100644 index 000000000..43945bb6a --- /dev/null +++ b/docs/version-specific/supported-software/s/SEACells.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SEACells + +SEACells algorithm for Inference of transcriptional and epigenomic cellular states from single-cell genomics data + +*homepage*: + +version | toolchain +--------|---------- +``20230731`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SECAPR.md b/docs/version-specific/supported-software/s/SECAPR.md new file mode 100644 index 000000000..6134b6729 --- /dev/null +++ b/docs/version-specific/supported-software/s/SECAPR.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SECAPR + +SECAPR is a bioinformatics pipeline for the rapid and user-friendly processing of targeted enriched Illumina sequences, from raw reads to alignments + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.15`` | ``-Python-2.7.16`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SELFIES.md b/docs/version-specific/supported-software/s/SELFIES.md new file mode 100644 index 000000000..709f83b6d --- /dev/null +++ b/docs/version-specific/supported-software/s/SELFIES.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SELFIES + +Robust representation of semantically constrained graphs, in particular for molecules in chemistry + +*homepage*: + +version | toolchain +--------|---------- +``2.1.1`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SEPP.md b/docs/version-specific/supported-software/s/SEPP.md new file mode 100644 index 000000000..dcd8ac5c0 --- /dev/null +++ b/docs/version-specific/supported-software/s/SEPP.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# SEPP + +SATe-enabled Phylogenetic Placement - addresses the problem of phylogenetic placement of short reads into reference alignments and trees. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.3.10`` | ``-Python-3.7.4`` | ``foss/2019b`` +``4.3.10`` | ``-Python-3.8.2`` | ``foss/2020a`` +``4.4.0`` | | ``foss/2020b`` +``4.5.0`` | | ``foss/2021a`` +``4.5.1`` | | ``foss/2021b`` +``4.5.1`` | | ``foss/2022a`` +``4.5.1`` | | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SHAP.md b/docs/version-specific/supported-software/s/SHAP.md new file mode 100644 index 000000000..97e366899 --- /dev/null +++ b/docs/version-specific/supported-software/s/SHAP.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# SHAP + +SHAP (SHapley Additive exPlanations) is a game theoretic approach to explain the output of any machine learning model. It connects optimal credit allocation with local explanations using the classic Shapley values from game theory and their related extensions. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.35.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.41.0`` | | ``foss/2022a`` +``0.42.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.42.1`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SHAPEIT.md b/docs/version-specific/supported-software/s/SHAPEIT.md new file mode 100644 index 000000000..ee3aebe22 --- /dev/null +++ b/docs/version-specific/supported-software/s/SHAPEIT.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SHAPEIT + +SHAPEIT is a fast and accurate method for estimation of haplotypes (aka phasing) from genotype or sequencing data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.r837`` | ``.GLIBCv2.12`` | ``system`` +``2.r904`` | ``.glibcv2.17`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SHAPEIT4.md b/docs/version-specific/supported-software/s/SHAPEIT4.md new file mode 100644 index 000000000..a78d4407b --- /dev/null +++ b/docs/version-specific/supported-software/s/SHAPEIT4.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# SHAPEIT4 + +SHAPEIT4 is a fast and accurate method for estimation of haplotypes (aka phasing) for SNP array and high coverage sequencing data. + +*homepage*: + +version | toolchain +--------|---------- +``4.1.3`` | ``foss/2019b`` +``4.2.0`` | ``foss/2019b`` +``4.2.0`` | ``foss/2020a`` +``4.2.0`` | ``foss/2020b`` +``4.2.2`` | ``foss/2020b`` +``4.2.2`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SHORE.md b/docs/version-specific/supported-software/s/SHORE.md new file mode 100644 index 000000000..6ef5b5bf3 --- /dev/null +++ b/docs/version-specific/supported-software/s/SHORE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SHORE + +SHORE, for Short Read, is a mapping and analysis pipeline for short read data produced on the Illumina platform. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.3`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SHTns.md b/docs/version-specific/supported-software/s/SHTns.md new file mode 100644 index 000000000..a752d9ee1 --- /dev/null +++ b/docs/version-specific/supported-software/s/SHTns.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SHTns + +Spherical Harmonic Transform library aimed at high performance numerical simulations in spherical geometries. + +*homepage*: + +version | toolchain +--------|---------- +``2.7`` | ``foss/2021b`` +``3.5.1`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SICER2.md b/docs/version-specific/supported-software/s/SICER2.md new file mode 100644 index 000000000..bdf3b07e4 --- /dev/null +++ b/docs/version-specific/supported-software/s/SICER2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SICER2 + +Redesigned and improved ChIP-seq broad peak calling tool SICER + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.3`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SIMPLE.md b/docs/version-specific/supported-software/s/SIMPLE.md new file mode 100644 index 000000000..6e460dd47 --- /dev/null +++ b/docs/version-specific/supported-software/s/SIMPLE.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SIMPLE + +Single-particle IMage Processing Linux Engine is a program package for cryo-EM image processing, focusing on ab initio 3D reconstruction of low-symmetry single-particles. + +*homepage*: + +version | toolchain +--------|---------- +``2.5`` | ``foss/2018a`` +``3.0.0`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SIONlib.md b/docs/version-specific/supported-software/s/SIONlib.md new file mode 100644 index 000000000..b0d9b4fb2 --- /dev/null +++ b/docs/version-specific/supported-software/s/SIONlib.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# SIONlib + +SIONlib is a scalable I/O library for parallel access to task-local files. The library not only supports writing and reading binary data to or from several thousands of processors into a single or a small number of physical files, but also provides global open and close functions to access SIONlib files in parallel. This package provides a stripped-down installation of SIONlib for use with performance tools (e.g., Score-P), with renamed symbols to avoid conflicts when an application using SIONlib itself is linked against a tool requiring a different SIONlib version. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.6.1`` | ``-tools`` | ``foss/2016a`` +``1.6.1`` | | ``foss/2016a`` +``1.7.1`` | ``-tools`` | ``foss/2017a`` +``1.7.1`` | | ``foss/2017a`` +``1.7.4`` | ``-tools`` | ``GCCcore/8.2.0`` +``1.7.6`` | ``-tools`` | ``GCCcore/10.2.0`` +``1.7.6`` | ``-tools`` | ``GCCcore/10.3.0`` +``1.7.6`` | ``-tools`` | ``GCCcore/8.3.0`` +``1.7.6`` | ``-tools`` | ``GCCcore/9.3.0`` +``1.7.7`` | ``-tools`` | ``GCCcore/11.2.0`` +``1.7.7`` | ``-tools`` | ``GCCcore/11.3.0`` +``1.7.7`` | ``-tools`` | ``GCCcore/12.2.0`` +``1.7.7`` | ``-tools`` | ``GCCcore/12.3.0`` +``1.7.7`` | ``-tools`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SIP.md b/docs/version-specific/supported-software/s/SIP.md new file mode 100644 index 000000000..c4a34afbb --- /dev/null +++ b/docs/version-specific/supported-software/s/SIP.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# SIP + +SIP is a tool that makes it very easy to create Python bindings for C and C++ libraries. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.18`` | ``-Python-2.7.11`` | ``foss/2016a`` +``4.18`` | ``-Python-2.7.11`` | ``intel/2016a`` +``4.18.1`` | ``-Python-2.7.11`` | ``foss/2016a`` +``4.18.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``4.19`` | ``-Python-2.7.12`` | ``foss/2016b`` +``4.19`` | ``-Python-2.7.12`` | ``intel/2016b`` +``4.19.13`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``4.19.2`` | ``-Python-2.7.13`` | ``intel/2017a`` +``4.19.8`` | ``-Python-2.7.14`` | ``foss/2017b`` +``4.19.8`` | ``-Python-2.7.14`` | ``foss/2018a`` +``4.19.8`` | ``-Python-3.6.4`` | ``foss/2018a`` +``4.19.8`` | ``-Python-2.7.14`` | ``intel/2017b`` +``4.19.8`` | ``-Python-2.7.14`` | ``intel/2018a`` +``4.19.8`` | ``-Python-3.6.4`` | ``intel/2018a`` +``6.8.1`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SISSO++.md b/docs/version-specific/supported-software/s/SISSO++.md new file mode 100644 index 000000000..8ae730c02 --- /dev/null +++ b/docs/version-specific/supported-software/s/SISSO++.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SISSO++ + +C++ implementation of SISSO with built in Python bindings for an efficient python interface + +*homepage*: + +version | toolchain +--------|---------- +``1.1`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SISSO.md b/docs/version-specific/supported-software/s/SISSO.md new file mode 100644 index 000000000..4c88a6a46 --- /dev/null +++ b/docs/version-specific/supported-software/s/SISSO.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SISSO + +A data-driven method combining symbolic regression and compressed sensing toward accurate & interpretable models. + +*homepage*: + +version | toolchain +--------|---------- +``3.0.2`` | ``iimpi/2021b`` +``3.1-20220324`` | ``iimpi/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SKESA.md b/docs/version-specific/supported-software/s/SKESA.md new file mode 100644 index 000000000..53b256220 --- /dev/null +++ b/docs/version-specific/supported-software/s/SKESA.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# SKESA + +SKESA is a de-novo sequence read assembler for cultured single isolate genomes based on DeBruijn graphs. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2`` | | ``foss/2018a`` +``2.3.0`` | | ``foss/2018b`` +``2.4.0`` | ``_saute.1.3.0_1`` | ``gompi/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SLATEC.md b/docs/version-specific/supported-software/s/SLATEC.md new file mode 100644 index 000000000..0eddcd808 --- /dev/null +++ b/docs/version-specific/supported-software/s/SLATEC.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# SLATEC + +SLATEC Common Mathematical Library, a comprehensive software library containing over 1400 general purpose mathematical and statistical routines written in Fortran 77. + +*homepage*: + +version | toolchain +--------|---------- +``4.1`` | ``GCC/6.4.0-2.28`` +``4.1`` | ``GCC/8.3.0`` +``4.1`` | ``iccifort/2018.1.163-GCC-6.4.0-2.28`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SLEPc.md b/docs/version-specific/supported-software/s/SLEPc.md new file mode 100644 index 000000000..d903b949d --- /dev/null +++ b/docs/version-specific/supported-software/s/SLEPc.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# SLEPc + +SLEPc (Scalable Library for Eigenvalue Problem Computations) is a software library for the solution of large scale sparse eigenvalue problems on parallel computers. It is an extension of PETSc and can be used for either standard or generalized eigenproblems, with real or complex arithmetic. It can also be used for computing a partial SVD of a large, sparse, rectangular matrix, and to solve quadratic eigenvalue problems. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.11.0`` | | ``foss/2018b`` +``3.12.2`` | ``-Python-3.7.4`` | ``foss/2019b`` +``3.12.2`` | ``-Python-3.8.2`` | ``foss/2020a`` +``3.12.2`` | ``-Python-2.7.16`` | ``intel/2019b`` +``3.12.2`` | ``-Python-3.7.4`` | ``intel/2019b`` +``3.12.2`` | ``-Python-3.8.2`` | ``intel/2020a`` +``3.14.2`` | | ``foss/2020b`` +``3.15.1`` | | ``foss/2021a`` +``3.17.2`` | | ``foss/2022a`` +``3.18.2`` | | ``intel/2021b`` +``3.20.1`` | | ``foss/2023a`` +``3.8.3`` | | ``foss/2017b`` +``3.9.2`` | | ``foss/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SLiM.md b/docs/version-specific/supported-software/s/SLiM.md new file mode 100644 index 000000000..093a1efbe --- /dev/null +++ b/docs/version-specific/supported-software/s/SLiM.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# SLiM + +SLiM is an evolutionary simulation framework that combines a powerful engine for population genetic simulations with the capability of modeling arbitrarily complex evolutionary scenarios. + +*homepage*: + +version | toolchain +--------|---------- +``3.4`` | ``GCC/9.3.0`` +``4.0`` | ``GCC/11.2.0`` +``4.0.1`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SMAP.md b/docs/version-specific/supported-software/s/SMAP.md new file mode 100644 index 000000000..40e80def2 --- /dev/null +++ b/docs/version-specific/supported-software/s/SMAP.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SMAP + +SMAP is an analysis tool for stack-based NGS read mapping + +*homepage*: + +version | toolchain +--------|---------- +``4.6.5`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SMARTdenovo.md b/docs/version-specific/supported-software/s/SMARTdenovo.md new file mode 100644 index 000000000..15eadf7f1 --- /dev/null +++ b/docs/version-specific/supported-software/s/SMARTdenovo.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SMARTdenovo + +SMARTdenovo is a de novo assembler for PacBio and Oxford Nanopore (ONT) data. It produces an assembly from all-vs-all raw read alignments without an error correction stage. It also provides tools to generate accurate consensus sequences, though a platform dependent consensus polish tools (e.g. Quiver for PacBio or Nanopolish for ONT) are still required for higher accuracy. + +*homepage*: + +version | toolchain +--------|---------- +``20180219`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SMC++.md b/docs/version-specific/supported-software/s/SMC++.md new file mode 100644 index 000000000..9e3bf6aab --- /dev/null +++ b/docs/version-specific/supported-software/s/SMC++.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SMC++ + +SMC++ is a program for estimating the size history of populations from whole genome sequence data. + +*homepage*: + +version | toolchain +--------|---------- +``1.15.4`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SMRT-Link.md b/docs/version-specific/supported-software/s/SMRT-Link.md new file mode 100644 index 000000000..8daabdb11 --- /dev/null +++ b/docs/version-specific/supported-software/s/SMRT-Link.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# SMRT-Link + +PacBio's open-source SMRT Analysis software suite is designed for use with Single Molecule, Real-Time (SMRT) Sequencing data. You can analyze, visualize, and manage your data through an intuitive GUI or command-line interface. You can also integrate SMRT Analysis in your existing data workflow through the extensive set of APIs provided + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``12.0.0.177059`` | ``-cli-tools-only`` | ``system`` +``5.1.0.26412`` | ``-cli-tools-only`` | ``system`` +``6.0.0.47841`` | ``-cli-tools-only`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SMV.md b/docs/version-specific/supported-software/s/SMV.md new file mode 100644 index 000000000..9b3356ae1 --- /dev/null +++ b/docs/version-specific/supported-software/s/SMV.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SMV + +Smokeview is a visualization program that displays output of FDS and CFAST simulations. + +*homepage*: + +version | toolchain +--------|---------- +``6.7.17`` | ``iccifort/2020.4.304`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SNAP-ESA-python.md b/docs/version-specific/supported-software/s/SNAP-ESA-python.md new file mode 100644 index 000000000..e20c0ac7d --- /dev/null +++ b/docs/version-specific/supported-software/s/SNAP-ESA-python.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SNAP-ESA-python + +Python interface to the Sentinel Application Platform (SNAP) API + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``8.0`` | ``-Java-1.8-Python-2.7.18`` | ``GCCcore/10.2.0`` +``9.0.0`` | ``-Java-11-Python-2.7.18`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SNAP-ESA.md b/docs/version-specific/supported-software/s/SNAP-ESA.md new file mode 100644 index 000000000..d35ac9ffc --- /dev/null +++ b/docs/version-specific/supported-software/s/SNAP-ESA.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SNAP-ESA + +The Sentinel Application Platform (SNAP) is a common architecture for all Sentinel Toolboxes being jointly developed by Brockmann Consult, SkyWatch and C-S. The SNAP architecture is ideal for Earth Observation processing and analysis due to the following technological innovations: Extensibility, Portability, Modular Rich Client Platform, Generic EO Data Abstraction, Tiled Memory Management, and a Graph Processing Framework. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``8.0`` | ``-Java-1.8`` | ``system`` +``9.0.0`` | ``-Java-11`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SNAP-HMM.md b/docs/version-specific/supported-software/s/SNAP-HMM.md new file mode 100644 index 000000000..70cdd6fbd --- /dev/null +++ b/docs/version-specific/supported-software/s/SNAP-HMM.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# SNAP-HMM + +SNAP is a general purpose gene finding program suitable for both eukaryotic and prokaryotic genomes. SNAP is an acroynm for Semi-HMM-based Nucleic Acid Parser. + +*homepage*: + +version | toolchain +--------|---------- +``2013-11-29`` | ``GCC/6.4.0-2.28`` +``2013-11-29`` | ``GCC/8.3.0`` +``2013-11-29`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` +``20190603`` | ``GCC/10.2.0`` +``20221022`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SNAP.md b/docs/version-specific/supported-software/s/SNAP.md new file mode 100644 index 000000000..939e57564 --- /dev/null +++ b/docs/version-specific/supported-software/s/SNAP.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# SNAP + +Scalable Nucleotide Alignment Program -- a fast and accurate read aligner for high-throughput sequencing data + +*homepage*: + +version | toolchain +--------|---------- +``1.0beta.23`` | ``intel/2017b`` +``2.0.1`` | ``GCC/11.2.0`` +``2.0.1`` | ``GCC/11.3.0`` +``2.0.1`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SNAPE-pooled.md b/docs/version-specific/supported-software/s/SNAPE-pooled.md new file mode 100644 index 000000000..09ea2f0c2 --- /dev/null +++ b/docs/version-specific/supported-software/s/SNAPE-pooled.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SNAPE-pooled + +" SNAPE-pooled computes the probability distribution for the frequency of the minor allele in a certain population, at a certain position in the genome. + +*homepage*: + +version | toolchain +--------|---------- +``20150707`` | ``GCC/11.3.0`` +``r32`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SNPhylo.md b/docs/version-specific/supported-software/s/SNPhylo.md new file mode 100644 index 000000000..1aca63909 --- /dev/null +++ b/docs/version-specific/supported-software/s/SNPhylo.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# SNPhylo + +SNPhylo: a pipeline to generate a phylogenetic tree from huge SNP data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20140701`` | | ``foss/2016a`` +``20140701`` | | ``intel/2016a`` +``20160204`` | ``-Python-2.7.14-R-3.4.3`` | ``foss/2017b`` +``20160204`` | ``-Python-2.7.14-R-3.4.3`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SNPomatic.md b/docs/version-specific/supported-software/s/SNPomatic.md new file mode 100644 index 000000000..2a7d72337 --- /dev/null +++ b/docs/version-specific/supported-software/s/SNPomatic.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SNPomatic + +High throughput sequencing technologies generate large amounts of short reads. Mapping these to a reference sequence consumes large amounts of processing time and memory, and read mapping errors can lead to noisy or incorrect alignments. SNP-o-matic is a fast, memory-efficient, and stringent read mapping tool offering a variety of analytical output functions, with an emphasis on genotyping. + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SOAPaligner.md b/docs/version-specific/supported-software/s/SOAPaligner.md new file mode 100644 index 000000000..5eb117321 --- /dev/null +++ b/docs/version-specific/supported-software/s/SOAPaligner.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SOAPaligner + +SOAPaligner/soap2 is a member of the SOAP (Short Oligonucleotide Analysis Package). It is an updated version of SOAP software for short oligonucleotide alignment. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.21`` | ``_Linux-x86_64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SOAPdenovo-Trans.md b/docs/version-specific/supported-software/s/SOAPdenovo-Trans.md new file mode 100644 index 000000000..568a96b1e --- /dev/null +++ b/docs/version-specific/supported-software/s/SOAPdenovo-Trans.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SOAPdenovo-Trans + +SOAPdenovo-Trans is a de novo transcriptome assembler basing on the SOAPdenovo framework, adapt to alternative splicing and different expression level among transcripts. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.4`` | ``intel/2017a`` +``1.0.5`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SOAPdenovo2.md b/docs/version-specific/supported-software/s/SOAPdenovo2.md new file mode 100644 index 000000000..dbd401949 --- /dev/null +++ b/docs/version-specific/supported-software/s/SOAPdenovo2.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# SOAPdenovo2 + +SOAPdenovo is a novel short-read assembly method that can build a de novo draft assembly for human-sized genomes. The program is specially designed to assemble Illumina short reads. It creates new opportunities for building reference sequences and carrying out accurate analyses of unexplored genomes in a cost effective way. SOAPdenovo2 is the successor of SOAPdenovo. + +*homepage*: + +version | toolchain +--------|---------- +``r240`` | ``GCC/5.4.0-2.26`` +``r241`` | ``GCC/6.4.0-2.28`` +``r241`` | ``foss/2018a`` +``r241`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` +``r241`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SOAPfuse.md b/docs/version-specific/supported-software/s/SOAPfuse.md new file mode 100644 index 000000000..311bf65f8 --- /dev/null +++ b/docs/version-specific/supported-software/s/SOAPfuse.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SOAPfuse + +SOAPfuse is an open source tool developed for genome-wide detection of fusion transcripts from paired-end RNA-Seq data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.27`` | ``-Perl-5.24.0`` | ``foss/2016b`` +``1.27`` | ``-Perl-5.28.0`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SOCI.md b/docs/version-specific/supported-software/s/SOCI.md new file mode 100644 index 000000000..a1c066f25 --- /dev/null +++ b/docs/version-specific/supported-software/s/SOCI.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# SOCI + +SOCI is a database access library for C++ that makes the illusion of embedding SQL queries in the regular C++ code, staying entirely within the Standard C++. + +*homepage*: + +version | toolchain +--------|---------- +``4.0.1`` | ``GCC/10.2.0`` +``4.0.1`` | ``GCCcore/9.3.0`` +``4.0.2`` | ``GCC/10.3.0`` +``4.0.3`` | ``GCC/11.2.0`` +``4.0.3`` | ``GCC/11.3.0`` +``4.0.3`` | ``GCC/12.2.0`` +``4.0.3`` | ``GCC/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SPAdes.md b/docs/version-specific/supported-software/s/SPAdes.md new file mode 100644 index 000000000..ac2ad2c68 --- /dev/null +++ b/docs/version-specific/supported-software/s/SPAdes.md @@ -0,0 +1,38 @@ +--- +search: + boost: 0.5 +--- +# SPAdes + +Genome assembler for single-cell and isolates data sets + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.10.1`` | | ``foss/2016b`` +``3.10.1`` | | ``foss/2017a`` +``3.11.1`` | | ``foss/2017b`` +``3.11.1`` | | ``foss/2018a`` +``3.12.0`` | | ``foss/2016b`` +``3.12.0`` | | ``foss/2018a`` +``3.12.0`` | | ``foss/2018b`` +``3.13.0`` | | ``GCC/10.3.0`` +``3.13.0`` | | ``foss/2018b`` +``3.13.1`` | | ``GCC/8.2.0-2.31.1`` +``3.14.0`` | ``-Python-3.7.2`` | ``GCC/8.2.0-2.31.1`` +``3.14.0`` | ``-Python-3.7.4`` | ``GCC/8.3.0`` +``3.14.1`` | ``-Python-3.8.2`` | ``GCC/9.3.0`` +``3.15.2`` | ``-Python-2.7.18`` | ``GCC/10.2.0`` +``3.15.2`` | | ``GCC/10.2.0`` +``3.15.3`` | | ``GCC/10.3.0`` +``3.15.3`` | | ``GCC/11.2.0`` +``3.15.4`` | | ``GCC/12.2.0`` +``3.15.4`` | | ``GCC/12.3.0`` +``3.15.5`` | | ``GCC/11.3.0`` +``3.9.0`` | | ``foss/2016a`` +``3.9.0`` | | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SPEI.md b/docs/version-specific/supported-software/s/SPEI.md new file mode 100644 index 000000000..eeacc8c5a --- /dev/null +++ b/docs/version-specific/supported-software/s/SPEI.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SPEI + +A simple Python package to calculate drought indices for time series such as the SPI, SPEI and SGI. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.5`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SPLASH.md b/docs/version-specific/supported-software/s/SPLASH.md new file mode 100644 index 000000000..67ad6c107 --- /dev/null +++ b/docs/version-specific/supported-software/s/SPLASH.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SPLASH + +SPLASH is a free and open source visualisation tool for Smoothed Particle Hydrodynamics (SPH) simulations. + +*homepage*: + +version | toolchain +--------|---------- +``2.8.0`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SPM.md b/docs/version-specific/supported-software/s/SPM.md new file mode 100644 index 000000000..d9b57e11f --- /dev/null +++ b/docs/version-specific/supported-software/s/SPM.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SPM + +SPM (Statistical Parametric Mapping) refers to the construction and assessment of spatially extended statistical processes used to test hypo- theses about functional imaging data. These ideas have been instantiated in software that is called SPM. The SPM software package has been designed for the analysis of brain imaging data sequences. The sequences can be a series of images from different cohorts, or time-series from the same subject. The current release is designed for the analysis of fMRI, PET, SPECT, EEG and MEG. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``12.5_r7771`` | ``-MATLAB-2021a`` | ``system`` +``12.5_r7771`` | ``-MATLAB-2021b`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SPOOLES.md b/docs/version-specific/supported-software/s/SPOOLES.md new file mode 100644 index 000000000..14a061d81 --- /dev/null +++ b/docs/version-specific/supported-software/s/SPOOLES.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# SPOOLES + +SPOOLES is a library for solving sparse real and complex linear systems of equations, written in the C language using object oriented design. + +*homepage*: + +version | toolchain +--------|---------- +``2.2`` | ``gompi/2021a`` +``2.2`` | ``gompi/2022b`` +``2.2`` | ``gompi/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SPOTPY.md b/docs/version-specific/supported-software/s/SPOTPY.md new file mode 100644 index 000000000..11a19fdf8 --- /dev/null +++ b/docs/version-specific/supported-software/s/SPOTPY.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SPOTPY + +SPOTPY is a Python framework that enables the use of Computational optimization techniques for calibration, uncertainty and sensitivity analysis techniques of almost every (environmental-) model. + +*homepage*: + +version | toolchain +--------|---------- +``1.5.14`` | ``intel/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SPRNG.md b/docs/version-specific/supported-software/s/SPRNG.md new file mode 100644 index 000000000..3957113b9 --- /dev/null +++ b/docs/version-specific/supported-software/s/SPRNG.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SPRNG + +Scalable Parallel Pseudo Random Number Generators Library + +*homepage*: + +version | toolchain +--------|---------- +``2.0b`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SQLAlchemy.md b/docs/version-specific/supported-software/s/SQLAlchemy.md new file mode 100644 index 000000000..c3d270263 --- /dev/null +++ b/docs/version-specific/supported-software/s/SQLAlchemy.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# SQLAlchemy + +SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL. SQLAlchemy provides a full suite of well known enterprise-level persistence patterns, designed for efficient and high-performing database access, adapted into a simple and Pythonic domain language. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.25`` | ``GCCcore/12.3.0`` +``2.0.29`` | ``GCCcore/12.2.0`` +``2.0.29`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SQLite.md b/docs/version-specific/supported-software/s/SQLite.md new file mode 100644 index 000000000..f0013e7ee --- /dev/null +++ b/docs/version-specific/supported-software/s/SQLite.md @@ -0,0 +1,56 @@ +--- +search: + boost: 0.5 +--- +# SQLite + +SQLite: SQL Database Engine in a C Library + +*homepage*: + +version | toolchain +--------|---------- +``3.13.0`` | ``GCC/4.9.3-2.25`` +``3.13.0`` | ``GCC/5.4.0-2.26`` +``3.13.0`` | ``GCCcore/6.3.0`` +``3.13.0`` | ``foss/2016.04`` +``3.13.0`` | ``foss/2016a`` +``3.13.0`` | ``foss/2016b`` +``3.13.0`` | ``iccifort/2016.3.210-GCC-5.4.0-2.26`` +``3.13.0`` | ``intel/2016b`` +``3.14.1`` | ``GCCcore/4.9.3`` +``3.17.0`` | ``GCCcore/6.3.0`` +``3.20.1`` | ``GCCcore/6.4.0`` +``3.21.0`` | ``GCCcore/6.4.0`` +``3.23.0`` | ``GCCcore/6.4.0`` +``3.24.0`` | ``GCCcore/7.2.0`` +``3.24.0`` | ``GCCcore/7.3.0`` +``3.26.0`` | ``GCCcore/8.2.0`` +``3.27.2`` | ``GCCcore/8.2.0`` +``3.29.0`` | ``GCCcore/8.3.0`` +``3.31.1`` | ``GCCcore/9.3.0`` +``3.33.0`` | ``GCCcore/10.2.0`` +``3.35.4`` | ``GCCcore/10.3.0`` +``3.36`` | ``GCCcore/11.2.0`` +``3.38.3`` | ``GCCcore/11.3.0`` +``3.39.4`` | ``GCCcore/12.2.0`` +``3.41.2`` | ``GCCcore/13.1.0`` +``3.42.0`` | ``GCCcore/12.3.0`` +``3.43.1`` | ``GCCcore/13.2.0`` +``3.45.3`` | ``GCCcore/13.3.0`` +``3.8.10.2`` | ``GCC/4.9.3-2.25`` +``3.8.10.2`` | ``GNU/4.9.3-2.25`` +``3.8.10.2`` | ``gimkl/2.11.5`` +``3.8.8.1`` | ``GCC/4.8.4`` +``3.8.8.1`` | ``GCC/4.9.2`` +``3.9.2`` | ``GCC/4.9.3-2.25`` +``3.9.2`` | ``foss/2016a`` +``3.9.2`` | ``gimkl/2.11.5`` +``3.9.2`` | ``intel/2016.02-GCC-4.9`` +``3.9.2`` | ``intel/2016a`` +``3.9.2`` | ``iomkl/2016.07`` +``3.9.2`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SRA-Toolkit.md b/docs/version-specific/supported-software/s/SRA-Toolkit.md new file mode 100644 index 000000000..ed26e49cc --- /dev/null +++ b/docs/version-specific/supported-software/s/SRA-Toolkit.md @@ -0,0 +1,34 @@ +--- +search: + boost: 0.5 +--- +# SRA-Toolkit + +The SRA Toolkit, and the source-code SRA System Development Kit (SDK), will allow you to programmatically access data housed within SRA and convert it from the SRA format + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.10.4`` | | ``gompi/2019b`` +``2.10.5`` | ``-centos_linux64`` | ``system`` +``2.10.8`` | | ``gompi/2020a`` +``2.10.9`` | | ``gompi/2020b`` +``2.3.5`` | ``-centos_linux64`` | ``system`` +``2.5.4-1`` | ``-centos_linux64`` | ``system`` +``2.5.7`` | ``-centos_linux64`` | ``system`` +``2.8.2-1`` | ``-centos_linux64`` | ``system`` +``2.9.0`` | ``-centos_linux64`` | ``system`` +``2.9.2`` | ``-ubuntu64`` | ``system`` +``2.9.4`` | ``-centos_linux64`` | ``system`` +``2.9.6-1`` | ``-centos_linux64`` | ``system`` +``3.0.0`` | ``-centos_linux64`` | ``system`` +``3.0.0`` | | ``gompi/2021b`` +``3.0.10`` | | ``gompi/2023a`` +``3.0.3`` | | ``gompi/2022a`` +``3.0.5`` | | ``gompi/2021a`` +``3.0.5`` | | ``gompi/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SRPRISM.md b/docs/version-specific/supported-software/s/SRPRISM.md new file mode 100644 index 000000000..538e2a57c --- /dev/null +++ b/docs/version-specific/supported-software/s/SRPRISM.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# SRPRISM + +Single Read Paired Read Indel Substitution Minimizer + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.0`` | | ``foss/2018b`` +``3.1.1`` | ``-Java-11`` | ``GCCcore/8.2.0`` +``3.1.2`` | | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SRST2.md b/docs/version-specific/supported-software/s/SRST2.md new file mode 100644 index 000000000..61cfd81f8 --- /dev/null +++ b/docs/version-specific/supported-software/s/SRST2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SRST2 + +Short Read Sequence Typing for Bacterial Pathogens + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.0-20210620`` | ``-Python-2.7.18`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SSAHA2.md b/docs/version-specific/supported-software/s/SSAHA2.md new file mode 100644 index 000000000..8aa0cf268 --- /dev/null +++ b/docs/version-specific/supported-software/s/SSAHA2.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SSAHA2 + +SSAHA2 (Sequence Search and Alignment by Hashing Algorithm) is a pairwise sequence alignment program designed for the efficient mapping of sequencing reads onto genomic reference sequences. SSAHA2 reads of most sequencing platforms (ABI-Sanger, Roche 454, Illumina-Solexa) and a range of output formats (SAM, CIGAR, PSL etc.) are supported. A pile-up pipeline for analysis and genotype calling is available as a separate package. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.5.5`` | ``-i686`` | ``system`` +``2.5.5`` | ``-x86_64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SSN.md b/docs/version-specific/supported-software/s/SSN.md new file mode 100644 index 000000000..2229940cc --- /dev/null +++ b/docs/version-specific/supported-software/s/SSN.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SSN + +Spatial statistical modeling and prediction for data on stream networks, including models based on in-stream distance. Models are created using moving average constructions. Spatial linear models, including explanatory variables, can be fit with (restricted) maximum likelihood. Mapping and other graphical functions are included. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.14`` | ``-R-3.6.0`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SSPACE_Basic.md b/docs/version-specific/supported-software/s/SSPACE_Basic.md new file mode 100644 index 000000000..88f469bb3 --- /dev/null +++ b/docs/version-specific/supported-software/s/SSPACE_Basic.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# SSPACE_Basic + +SSPACE Basic, SSAKE-based Scaffolding of Pre-Assembled Contigs after Extension + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.1`` | ``-Python-2.7.18`` | ``GCC/10.2.0`` +``2.1.1`` | ``-Perl-5.24.1`` | ``intel/2017a`` +``2.1.1`` | ``-Perl-5.26.0`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SSW.md b/docs/version-specific/supported-software/s/SSW.md new file mode 100644 index 000000000..fc4f0001e --- /dev/null +++ b/docs/version-specific/supported-software/s/SSW.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# SSW + +SSW is a fast implementation of the Smith-Waterman algorithm, which uses the Single-Instruction Multiple-Data (SIMD) instructions to parallelize the algorithm at the instruction level. SSW library provides an API that can be flexibly used by programs written in C, C++ and other languages. We also provide a software that can do protein and genome alignment directly. Current version of our implementation is ~50 times faster than an ordinary Smith-Waterman. It can return the Smith-Waterman score, alignment location and traceback path (cigar) of the optimal alignment accurately; and return the sub-optimal alignment score and location heuristically. + +*homepage*: + +version | toolchain +--------|---------- +``1.1`` | ``GCCcore/10.2.0`` +``1.1`` | ``GCCcore/10.3.0`` +``1.1`` | ``GCCcore/11.2.0`` +``1.1`` | ``GCCcore/12.3.0`` +``1.1`` | ``GCCcore/9.3.0`` +``1.2.4`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/STACEY.md b/docs/version-specific/supported-software/s/STACEY.md new file mode 100644 index 000000000..32e88389a --- /dev/null +++ b/docs/version-specific/supported-software/s/STACEY.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# STACEY + +The BEAST2 package STACEY can be used for species delimitation and species tree estimation, based on the multispecies coalescent model. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.5`` | ``GCC/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/STAMP.md b/docs/version-specific/supported-software/s/STAMP.md new file mode 100644 index 000000000..7a071aef1 --- /dev/null +++ b/docs/version-specific/supported-software/s/STAMP.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# STAMP + +STAMP is a tool for characterizing similarities between transcription factor binding motifs + +*homepage*: + +version | toolchain +--------|---------- +``1.2`` | ``intel/2016a`` +``1.3`` | ``intel/2016a`` +``1.3`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/STAR-CCM+.md b/docs/version-specific/supported-software/s/STAR-CCM+.md new file mode 100644 index 000000000..2fc5b9fd3 --- /dev/null +++ b/docs/version-specific/supported-software/s/STAR-CCM+.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# STAR-CCM+ + +STAR-CCM+ is a complete multidisciplinary platform for the simulation of products and designs operating under real-world conditions. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``13.04.011`` | | ``system`` +``17.02.008`` | ``-r8`` | ``system`` +``17.02.008`` | | ``system`` +``17.04.008`` | ``-r8`` | ``system`` +``17.04.008`` | | ``system`` +``17.06.007`` | ``-r8`` | ``system`` +``17.06.007`` | | ``system`` +``18.02.008`` | ``-r8`` | ``system`` +``18.02.008`` | | ``system`` +``18.06.006`` | ``-r8`` | ``system`` +``18.06.006`` | | ``system`` +``2302`` | ``-r8`` | ``system`` +``2302`` | | ``system`` +``2310`` | ``-r8`` | ``system`` +``2310`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/STAR-Fusion.md b/docs/version-specific/supported-software/s/STAR-Fusion.md new file mode 100644 index 000000000..568e752aa --- /dev/null +++ b/docs/version-specific/supported-software/s/STAR-Fusion.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# STAR-Fusion + +STAR-Fusion uses the STAR aligner to identify candidate fusion transcripts supported by Illumina reads. STAR-Fusion further processes the output generated by the STAR aligner to map junction reads and spanning reads to a reference annotation set. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5.0`` | ``-Perl-5.28.0`` | ``foss/2018b`` +``1.6.0`` | ``-Perl-5.28.1-Python-3.7.2`` | ``GCC/8.2.0-2.31.1`` +``1.8.1`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/STAR.md b/docs/version-specific/supported-software/s/STAR.md new file mode 100644 index 000000000..d95cbf49e --- /dev/null +++ b/docs/version-specific/supported-software/s/STAR.md @@ -0,0 +1,54 @@ +--- +search: + boost: 0.5 +--- +# STAR + +STAR aligns RNA-seq reads to a reference genome using uncompressed suffix arrays. + +*homepage*: + +version | toolchain +--------|---------- +``2.4.2a`` | ``foss/2018b`` +``2.5.0a`` | ``GNU/4.9.3-2.25`` +``2.5.2a`` | ``foss/2016a`` +``2.5.2b`` | ``intel/2016b`` +``2.5.3a`` | ``GCC/8.3.0`` +``2.5.3a`` | ``GCC/9.3.0`` +``2.5.3a`` | ``intel/2017a`` +``2.5.3a`` | ``intel/2017b`` +``2.5.4b`` | ``foss/2016b`` +``2.5.4b`` | ``foss/2017b`` +``2.5.4b`` | ``intel/2017b`` +``2.6.0c`` | ``foss/2018a`` +``2.6.0c`` | ``intel/2018a`` +``2.6.1c`` | ``foss/2018b`` +``2.7.0d`` | ``foss/2018b`` +``2.7.0f`` | ``GCC/8.2.0-2.31.1`` +``2.7.0f`` | ``foss/2018b`` +``2.7.10a_alpha_220601`` | ``GCC/10.3.0`` +``2.7.10b`` | ``GCC/11.3.0`` +``2.7.10b`` | ``GCC/12.2.0`` +``2.7.11a`` | ``GCC/12.2.0`` +``2.7.11a`` | ``GCC/12.3.0`` +``2.7.11b`` | ``GCC/12.3.0`` +``2.7.11b`` | ``GCC/13.2.0`` +``2.7.1a`` | ``GCC/8.2.0-2.31.1`` +``2.7.1a`` | ``foss/2018b`` +``2.7.2b`` | ``GCC/8.3.0`` +``2.7.3a`` | ``GCC/8.3.0`` +``2.7.3a`` | ``GCC/9.3.0`` +``2.7.4a`` | ``GCC/9.3.0`` +``2.7.5b`` | ``GCC/9.3.0`` +``2.7.6a`` | ``GCC/10.2.0`` +``2.7.6a`` | ``GCC/9.3.0`` +``2.7.7a`` | ``GCC/10.2.0`` +``2.7.7a`` | ``GCC/9.3.0`` +``2.7.8a`` | ``GCC/10.2.0`` +``2.7.9a`` | ``GCC/10.3.0`` +``2.7.9a`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/STEAK.md b/docs/version-specific/supported-software/s/STEAK.md new file mode 100644 index 000000000..695c5dbc7 --- /dev/null +++ b/docs/version-specific/supported-software/s/STEAK.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# STEAK + +Detects integrations of any sort in high-throughput sequencing (HTS) data. STEAK was built for validating and discovering transposable element (TE) and retroviral integrations in a variety of HTS data. The software performs on both single-end (SE) and paired-end ( PE) libraries and on a variety of HTS sequencing strategies. It can be applied to a broad range of research interests and clinical uses such as population genetic studies and detecting polymorphic integrations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2019.09.12`` | ``-Python-2.7.16`` | ``foss/2019b`` +``2019.09.12`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/STIR.md b/docs/version-specific/supported-software/s/STIR.md new file mode 100644 index 000000000..b0e13ec85 --- /dev/null +++ b/docs/version-specific/supported-software/s/STIR.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# STIR + +Software for Tomographic Image Reconstruction + +*homepage*: + +version | toolchain +--------|---------- +``3.0`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/STREAM.md b/docs/version-specific/supported-software/s/STREAM.md new file mode 100644 index 000000000..9eb6997c2 --- /dev/null +++ b/docs/version-specific/supported-software/s/STREAM.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# STREAM + +The STREAM benchmark is a simple synthetic benchmark program that measures sustainable memory bandwidth (in MB/s) and the corresponding computation rate for simple vector kernels. + +*homepage*: + +version | toolchain +--------|---------- +``5.10`` | ``GCC/11.3.0`` +``5.10`` | ``GCC/7.3.0-2.30`` +``5.10`` | ``GCC/8.2.0-2.31.1`` +``5.10`` | ``GCC/9.3.0`` +``5.10`` | ``iccifort/2020.1.217`` +``5.10`` | ``intel/2016b`` +``5.10`` | ``intel/2018b`` +``5.10`` | ``intel-compilers/2022.2.1`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/STRUMPACK.md b/docs/version-specific/supported-software/s/STRUMPACK.md new file mode 100644 index 000000000..1d36b1754 --- /dev/null +++ b/docs/version-specific/supported-software/s/STRUMPACK.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# STRUMPACK + +STRUMPACK - STRUctured Matrix PACKage - Fast linear solvers and preconditioner for both dense and sparse systems using low-rank structured factorization with randomized sampling. + +*homepage*: + +version | toolchain +--------|---------- +``6.1.0`` | ``foss/2020b`` +``6.1.0`` | ``intel/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/STRique.md b/docs/version-specific/supported-software/s/STRique.md new file mode 100644 index 000000000..e019a19a0 --- /dev/null +++ b/docs/version-specific/supported-software/s/STRique.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# STRique + +STRique is a python package to analyze repeat expansion and methylation states of short tandem repeats (STR) in Oxford Nanopore Technology (ONT) long read sequencing data. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.2`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SUMACLUST.md b/docs/version-specific/supported-software/s/SUMACLUST.md new file mode 100644 index 000000000..3e6d926b5 --- /dev/null +++ b/docs/version-specific/supported-software/s/SUMACLUST.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SUMACLUST + +SUMATRA and SUMACLUST: fast and exact comparison and clustering of sequences. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.20`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SUMATRA.md b/docs/version-specific/supported-software/s/SUMATRA.md new file mode 100644 index 000000000..63a217e6c --- /dev/null +++ b/docs/version-specific/supported-software/s/SUMATRA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SUMATRA + +SUMATRA and SUMACLUST: fast and exact comparison and clustering of sequences. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.20`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SUMO.md b/docs/version-specific/supported-software/s/SUMO.md new file mode 100644 index 000000000..8132a3f80 --- /dev/null +++ b/docs/version-specific/supported-software/s/SUMO.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# SUMO + +Simulation of Urban MObility" (SUMO) is an open source, highly portable, microscopic and continuous traffic simulation package designed to handle large networks. It allows for intermodal simulation including pedestrians and comes with a large set of tools for scenario creation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.12.0`` | | ``foss/2021b`` +``1.14.1`` | | ``foss/2021b`` +``1.3.1`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``1.7.0`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SUNDIALS.md b/docs/version-specific/supported-software/s/SUNDIALS.md new file mode 100644 index 000000000..77742613c --- /dev/null +++ b/docs/version-specific/supported-software/s/SUNDIALS.md @@ -0,0 +1,39 @@ +--- +search: + boost: 0.5 +--- +# SUNDIALS + +SUNDIALS: SUite of Nonlinear and DIfferential/ALgebraic Equation Solvers + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.6.2`` | | ``intel/2016b`` +``2.6.2`` | | ``intel/2018b`` +``2.7.0`` | | ``foss/2016b`` +``2.7.0`` | | ``foss/2017b`` +``2.7.0`` | | ``foss/2018a`` +``2.7.0`` | | ``foss/2018b`` +``2.7.0`` | | ``intel/2016b`` +``2.7.0`` | | ``intel/2017a`` +``2.7.0`` | | ``intel/2017b`` +``2.7.0`` | | ``intel/2018a`` +``5.1.0`` | | ``foss/2019b`` +``5.1.0`` | | ``intel/2019b`` +``5.7.0`` | | ``foss/2020b`` +``5.7.0`` | | ``fosscuda/2020b`` +``5.7.0`` | | ``intel/2020b`` +``6.2.0`` | | ``foss/2020b`` +``6.2.0`` | | ``intel/2020b`` +``6.3.0`` | | ``foss/2021b`` +``6.3.0`` | | ``foss/2022a`` +``6.5.1`` | | ``foss/2022a`` +``6.6.0`` | | ``foss/2022b`` +``6.6.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` +``6.6.0`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SUPPA.md b/docs/version-specific/supported-software/s/SUPPA.md new file mode 100644 index 000000000..48461f6cf --- /dev/null +++ b/docs/version-specific/supported-software/s/SUPPA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SUPPA + +Fast, accurate, and uncertainty-aware differential splicing analysis across multiple conditions. + +*homepage*: + +version | toolchain +--------|---------- +``2.3-20231005`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SURVIVOR.md b/docs/version-specific/supported-software/s/SURVIVOR.md new file mode 100644 index 000000000..578f54eaf --- /dev/null +++ b/docs/version-specific/supported-software/s/SURVIVOR.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SURVIVOR + +Toolset for SV simulation, comparison and filtering + +*homepage*: + +version | toolchain +--------|---------- +``1.0.7-19-ged1ca51`` | ``GCC/11.2.0`` +``1.0.7-19-ged1ca51`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SVDetect.md b/docs/version-specific/supported-software/s/SVDetect.md new file mode 100644 index 000000000..debd002d1 --- /dev/null +++ b/docs/version-specific/supported-software/s/SVDetect.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SVDetect + +SVDetect is a application for the isolation and the type prediction of intra- and inter-chromosomal rearrangements from paired-end/mate-pair sequencing data provided by the high-throughput sequencing technologies. This tool aims to identifying structural variations with both clustering and sliding-window strategies, and helping in their visualization at the genome scale. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8b`` | ``-Perl-5.26.0`` | ``GCC/6.4.0-2.28`` +``0.8b`` | ``-Perl-5.26.0`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SVDquest.md b/docs/version-specific/supported-software/s/SVDquest.md new file mode 100644 index 000000000..49cef095c --- /dev/null +++ b/docs/version-specific/supported-software/s/SVDquest.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SVDquest + +SVDquartets-based species trees + +*homepage*: + +version | toolchain +--------|---------- +``20190627`` | ``gompi/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SVG.md b/docs/version-specific/supported-software/s/SVG.md new file mode 100644 index 000000000..c5b633ede --- /dev/null +++ b/docs/version-specific/supported-software/s/SVG.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# SVG + +Perl binding for SVG + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.84`` | ``-Perl-5.30.0`` | ``foss/2019b`` +``2.87`` | | ``GCC/11.2.0`` +``2.87`` | | ``GCC/11.3.0`` +``2.87`` | | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SVIM.md b/docs/version-specific/supported-software/s/SVIM.md new file mode 100644 index 000000000..158e9309e --- /dev/null +++ b/docs/version-specific/supported-software/s/SVIM.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SVIM + +SVIM (pronounced swim) is a structural variant caller for third-generation sequencing reads. It is able to detect and classify the following six classes of structural variation: deletions, insertions, inversions, tandem duplications, interspersed duplications and translocations. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SVclone.md b/docs/version-specific/supported-software/s/SVclone.md new file mode 100644 index 000000000..12a4dbdfb --- /dev/null +++ b/docs/version-specific/supported-software/s/SVclone.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SVclone + +Cluster structural variants of similar cancer cell fraction (CCF). + +*homepage*: + +version | toolchain +--------|---------- +``1.1.2`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SWASH.md b/docs/version-specific/supported-software/s/SWASH.md new file mode 100644 index 000000000..461735ed3 --- /dev/null +++ b/docs/version-specific/supported-software/s/SWASH.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# SWASH + +SWASH is a general-purpose numerical tool for simulating unsteady, non-hydrostatic, free-surface, rotational flow and transport phenomena in coastal waters as driven by waves, tides, buoyancy and wind forces. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.14`` | ``-mpi`` | ``intel/2016b`` +``3.14`` | ``-mpi`` | ``intel/2017a`` +``4.01`` | ``-mpi`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SWAT+.md b/docs/version-specific/supported-software/s/SWAT+.md new file mode 100644 index 000000000..2847a5355 --- /dev/null +++ b/docs/version-specific/supported-software/s/SWAT+.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SWAT+ + +The Soil & Water Assessment Tool (SWAT) is a small watershed to river basin-scale model used to simulate the quality and quantity of surface and ground water and predict the environmental impact of land use, land management practices, and climate change. In order to face present and future challenges in water resources modeling SWAT code has undergone major modifications over the past few years, resulting in SWAT+, a completely revised version of the model. SWAT+ provides a more flexible spatial representation of interactions and processes within a watershed. + +*homepage*: + +version | toolchain +--------|---------- +``60.4.1`` | ``GCC/9.3.0`` +``60.5.1`` | ``iccifort/2020.4.304`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SWIG.md b/docs/version-specific/supported-software/s/SWIG.md new file mode 100644 index 000000000..d1fd815a7 --- /dev/null +++ b/docs/version-specific/supported-software/s/SWIG.md @@ -0,0 +1,57 @@ +--- +search: + boost: 0.5 +--- +# SWIG + +SWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programming languages. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.10`` | ``-Python-2.7.12`` | ``foss/2016b`` +``3.0.10`` | ``-Python-2.7.12-PCRE-8.39`` | ``intel/2016b`` +``3.0.10`` | ``-Python-2.7.12`` | ``intel/2016b`` +``3.0.11`` | ``-Python-2.7.12`` | ``foss/2016b`` +``3.0.11`` | ``-Python-2.7.12`` | ``intel/2016b`` +``3.0.12`` | ``-Python-2.7.14-bare`` | ``GCCcore/6.4.0`` +``3.0.12`` | ``-Python-2.7.15`` | ``GCCcore/8.2.0`` +``3.0.12`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` +``3.0.12`` | | ``GCCcore/8.2.0`` +``3.0.12`` | | ``GCCcore/8.3.0`` +``3.0.12`` | ``-Python-2.7.14`` | ``foss/2017b`` +``3.0.12`` | ``-Python-3.6.2`` | ``foss/2017b`` +``3.0.12`` | ``-Python-3.6.3`` | ``foss/2017b`` +``3.0.12`` | ``-Python-2.7.14`` | ``foss/2018a`` +``3.0.12`` | ``-Python-3.6.4`` | ``foss/2018a`` +``3.0.12`` | ``-Python-2.7.15`` | ``foss/2018b`` +``3.0.12`` | ``-Python-3.6.6`` | ``foss/2018b`` +``3.0.12`` | ``-Python-2.7.13`` | ``intel/2017a`` +``3.0.12`` | ``-Python-3.6.1`` | ``intel/2017a`` +``3.0.12`` | ``-Python-2.7.14`` | ``intel/2017b`` +``3.0.12`` | ``-Python-3.6.3`` | ``intel/2017b`` +``3.0.12`` | ``-Python-3.6.2`` | ``intel/2018.00`` +``3.0.12`` | ``-Python-3.6.3`` | ``intel/2018.01`` +``3.0.12`` | ``-Python-2.7.14`` | ``intel/2018a`` +``3.0.12`` | ``-Python-3.6.4`` | ``intel/2018a`` +``3.0.12`` | ``-Python-2.7.15`` | ``intel/2018b`` +``3.0.12`` | ``-Python-3.6.6`` | ``intel/2018b`` +``3.0.12`` | ``-Python-3.6.4`` | ``iomkl/2018a`` +``3.0.8`` | ``-Python-2.7.11`` | ``foss/2016a`` +``3.0.8`` | ``-Python-3.5.1`` | ``foss/2016a`` +``3.0.8`` | ``-Python-2.7.11`` | ``intel/2016a`` +``4.0.1`` | | ``GCCcore/8.3.0`` +``4.0.1`` | | ``GCCcore/9.3.0`` +``4.0.2`` | | ``GCCcore/10.2.0`` +``4.0.2`` | | ``GCCcore/10.3.0`` +``4.0.2`` | | ``GCCcore/11.2.0`` +``4.0.2`` | | ``GCCcore/11.3.0`` +``4.1.1`` | | ``GCCcore/12.2.0`` +``4.1.1`` | | ``GCCcore/12.3.0`` +``4.1.1`` | | ``GCCcore/13.2.0`` +``4.2.1`` | | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SWIPE.md b/docs/version-specific/supported-software/s/SWIPE.md new file mode 100644 index 000000000..f68d17d01 --- /dev/null +++ b/docs/version-specific/supported-software/s/SWIPE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SWIPE + +Smith-Waterman database searches with inter-sequence SIMD parallelisation + +*homepage*: + +version | toolchain +--------|---------- +``2.1.1`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SYMMETRICA.md b/docs/version-specific/supported-software/s/SYMMETRICA.md new file mode 100644 index 000000000..cbcb5a433 --- /dev/null +++ b/docs/version-specific/supported-software/s/SYMMETRICA.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SYMMETRICA + +Symmetrica is a Collection of C routines for representation theory. + +*homepage*: + +version | toolchain +--------|---------- +``2.0`` | ``GCCcore/11.3.0`` +``2.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SYMPHONY.md b/docs/version-specific/supported-software/s/SYMPHONY.md new file mode 100644 index 000000000..b2adff061 --- /dev/null +++ b/docs/version-specific/supported-software/s/SYMPHONY.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SYMPHONY + +SYMPHONY is an open-source solver for mixed-integer linear programs (MILPs) written in C. + +*homepage*: + +version | toolchain +--------|---------- +``5.6.16`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Sabre.md b/docs/version-specific/supported-software/s/Sabre.md new file mode 100644 index 000000000..c971052be --- /dev/null +++ b/docs/version-specific/supported-software/s/Sabre.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Sabre + +Sabre is a tool that will demultiplex barcoded reads into separate files. It will work on both single-end and paired-end data in fastq format. It simply compares the provided barcodes with each read and separates the read into its appropriate barcode file, after stripping the barcode from the read (and also stripping the quality values of the barcode bases). + +*homepage*: + +version | toolchain +--------|---------- +``2013-09-28`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Safetensors.md b/docs/version-specific/supported-software/s/Safetensors.md new file mode 100644 index 000000000..3307d7315 --- /dev/null +++ b/docs/version-specific/supported-software/s/Safetensors.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Safetensors + +Safetensors is a new simple format for storing tensors safely (as opposed to pickle) and that is still fast (zero-copy). Safetensors is really fast. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.3.1`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Sailfish.md b/docs/version-specific/supported-software/s/Sailfish.md new file mode 100644 index 000000000..798b3aea4 --- /dev/null +++ b/docs/version-specific/supported-software/s/Sailfish.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Sailfish + +Sailfish is a software tool that implements a novel, alignment-free algorithm for the estimation of isoform abundances directly from a set of reference sequences and RNA-seq reads. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.1`` | ``-Python-2.7.12`` | ``foss/2016b`` +``0.10.1`` | | ``gompi/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Salmon.md b/docs/version-specific/supported-software/s/Salmon.md new file mode 100644 index 000000000..ef0a7d298 --- /dev/null +++ b/docs/version-specific/supported-software/s/Salmon.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# Salmon + +Salmon is a wicked-fast program to produce a highly-accurate, transcript-level quantification estimates from RNA-seq data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.11.2`` | | ``intel/2018a`` +``0.12.0`` | | ``foss/2018b`` +``0.14.1`` | | ``foss/2018b`` +``0.14.2`` | | ``gompi/2019a`` +``0.8.2`` | ``-Python-2.7.12`` | ``foss/2016b`` +``0.8.2`` | | ``system`` +``1.0.0`` | | ``gompi/2019a`` +``1.0.0`` | | ``gompi/2019b`` +``1.1.0`` | | ``gompi/2019b`` +``1.10.1`` | | ``GCC/12.2.0`` +``1.2.0`` | | ``gompi/2019b`` +``1.3.0`` | | ``gompi/2020a`` +``1.4.0`` | | ``GCC/11.2.0`` +``1.4.0`` | | ``gompi/2020b`` +``1.9.0`` | | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Sambamba.md b/docs/version-specific/supported-software/s/Sambamba.md new file mode 100644 index 000000000..939113efd --- /dev/null +++ b/docs/version-specific/supported-software/s/Sambamba.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Sambamba + +Sambamba is a high performance modern robust and fast tool (and library), written in the D programming language, for working with SAM and BAM files. Current functionality is an important subset of samtools functionality, including view, index, sort, markdup, and depth + +*homepage*: + +version | toolchain +--------|---------- +``0.6.6`` | ``system`` +``0.7.1`` | ``system`` +``0.8.0`` | ``GCC/10.2.0`` +``0.8.2`` | ``GCC/10.3.0`` +``1.0.1`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Samcef.md b/docs/version-specific/supported-software/s/Samcef.md new file mode 100644 index 000000000..a8c5712fd --- /dev/null +++ b/docs/version-specific/supported-software/s/Samcef.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Samcef + +FEM solver solution suite for basic linear structures to advanced, flexible nonlinear mechanisms and thermal applications. + +*homepage*: + +version | toolchain +--------|---------- +``17.0-03`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Satsuma2.md b/docs/version-specific/supported-software/s/Satsuma2.md new file mode 100644 index 000000000..56d2573b0 --- /dev/null +++ b/docs/version-specific/supported-software/s/Satsuma2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Satsuma2 + +Satsuma2 is an optimised version of Satsuma, a tool to reliably align large and complex DNA sequences providing maximum sensitivity (to find all there is to find), specificity (to only find real homology) and speed (to accommodate the billions of base pairs in vertebrate genomes). + +*homepage*: + +version | toolchain +--------|---------- +``20220304`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Saxon-HE.md b/docs/version-specific/supported-software/s/Saxon-HE.md new file mode 100644 index 000000000..1216d411f --- /dev/null +++ b/docs/version-specific/supported-software/s/Saxon-HE.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Saxon-HE + +Open Source SAXON XSLT processor developed by Saxonica Limited. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``12.4`` | ``-Java-21`` | ``system`` +``9.7.0.21`` | ``-Java-1.8.0_162`` | ``system`` +``9.7.0.4`` | ``-Java-1.7.0_79`` | ``system`` +``9.9.1.7`` | ``-Java-13`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/ScaFaCoS.md b/docs/version-specific/supported-software/s/ScaFaCoS.md new file mode 100644 index 000000000..7bb3c97dd --- /dev/null +++ b/docs/version-specific/supported-software/s/ScaFaCoS.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# ScaFaCoS + +ScaFaCoS is a library of scalable fast coulomb solvers. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.1`` | ``foss/2020a`` +``1.0.1`` | ``foss/2020b`` +``1.0.1`` | ``foss/2021a`` +``1.0.1`` | ``foss/2021b`` +``1.0.1`` | ``intel/2020a`` +``1.0.4`` | ``foss/2022a`` +``1.0.4`` | ``foss/2022b`` +``1.0.4`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/ScaLAPACK.md b/docs/version-specific/supported-software/s/ScaLAPACK.md new file mode 100644 index 000000000..4205f5d35 --- /dev/null +++ b/docs/version-specific/supported-software/s/ScaLAPACK.md @@ -0,0 +1,63 @@ +--- +search: + boost: 0.5 +--- +# ScaLAPACK + +The ScaLAPACK (or Scalable LAPACK) library includes a subset of LAPACK routines redesigned for distributed memory MIMD parallel computers. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.2`` | ``-OpenBLAS-0.2.20`` | ``gimpi/2017b`` +``2.0.2`` | ``-OpenBLAS-0.2.20`` | ``gimpi/2018a`` +``2.0.2`` | ``-OpenBLAS-0.2.20`` | ``gimpic/2017b`` +``2.0.2`` | ``-OpenBLAS-0.2.15-LAPACK-3.6.0`` | ``gmpich/2016a`` +``2.0.2`` | ``-OpenBLAS-0.2.20`` | ``gmpich/2017.08`` +``2.0.2`` | ``-OpenBLAS-0.2.13-LAPACK-3.5.0`` | ``gmvapich2/1.7.20`` +``2.0.2`` | ``-OpenBLAS-0.2.15-LAPACK-3.6.0`` | ``gmvapich2/2016a`` +``2.0.2`` | ``-OpenBLAS-0.2.18-LAPACK-3.6.0`` | ``gompi/2016.04`` +``2.0.2`` | ``-OpenBLAS-0.2.18-LAPACK-3.6.0`` | ``gompi/2016.06`` +``2.0.2`` | ``-OpenBLAS-0.2.18-LAPACK-3.6.1`` | ``gompi/2016.07`` +``2.0.2`` | ``-OpenBLAS-0.2.19-LAPACK-3.6.1`` | ``gompi/2016.09`` +``2.0.2`` | ``-OpenBLAS-0.2.15-LAPACK-3.6.0`` | ``gompi/2016a`` +``2.0.2`` | ``-OpenBLAS-0.2.18-LAPACK-3.6.1`` | ``gompi/2016b`` +``2.0.2`` | ``-OpenBLAS-0.2.19-LAPACK-3.7.0`` | ``gompi/2017a`` +``2.0.2`` | ``-OpenBLAS-0.2.20`` | ``gompi/2017b`` +``2.0.2`` | ``-OpenBLAS-0.3.3`` | ``gompi/2018.08`` +``2.0.2`` | ``-OpenBLAS-0.2.20`` | ``gompi/2018a`` +``2.0.2`` | ``-BLIS-0.3.2`` | ``gompi/2018b`` +``2.0.2`` | ``-OpenBLAS-0.3.1`` | ``gompi/2018b`` +``2.0.2`` | ``-OpenBLAS-0.3.5`` | ``gompi/2019a`` +``2.0.2`` | | ``gompi/2019b`` +``2.0.2`` | ``-OpenBLAS-0.2.20`` | ``gompic/2017b`` +``2.0.2`` | ``-OpenBLAS-0.2.20`` | ``gompic/2018a`` +``2.0.2`` | ``-OpenBLAS-0.3.1`` | ``gompic/2018b`` +``2.0.2`` | ``-OpenBLAS-0.3.5`` | ``gompic/2019a`` +``2.0.2`` | | ``gompic/2019b`` +``2.1.0`` | ``-bf`` | ``gompi/2020a`` +``2.1.0`` | | ``gompi/2020a`` +``2.1.0`` | ``-bf`` | ``gompi/2020b`` +``2.1.0`` | ``-bl`` | ``gompi/2020b`` +``2.1.0`` | | ``gompi/2020b`` +``2.1.0`` | ``-bf`` | ``gompi/2021a`` +``2.1.0`` | ``-fb`` | ``gompi/2021a`` +``2.1.0`` | ``-fb`` | ``gompi/2021b`` +``2.1.0`` | | ``gompic/2020a`` +``2.1.0`` | | ``gompic/2020b`` +``2.1.0`` | ``-bf`` | ``iimpi/2020b`` +``2.2`` | ``-amd`` | ``gompi/2020a`` +``2.2.0`` | ``-fb`` | ``gompi/2022.05`` +``2.2.0`` | ``-fb`` | ``gompi/2022.10`` +``2.2.0`` | ``-fb`` | ``gompi/2022a`` +``2.2.0`` | ``-fb`` | ``gompi/2022b`` +``2.2.0`` | ``-fb`` | ``gompi/2023.09`` +``2.2.0`` | ``-fb`` | ``gompi/2023a`` +``2.2.0`` | ``-fb`` | ``gompi/2023b`` +``2.2.0`` | ``-fb`` | ``gompi/2024.05`` +``2.2.0`` | ``-fb`` | ``nvompi/2022.07`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Scalasca.md b/docs/version-specific/supported-software/s/Scalasca.md new file mode 100644 index 000000000..3b28ad136 --- /dev/null +++ b/docs/version-specific/supported-software/s/Scalasca.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# Scalasca + +Scalasca is a software tool that supports the performance optimization of parallel programs by measuring and analyzing their runtime behavior. The analysis identifies potential performance bottlenecks -- in particular those concerning communication and synchronization -- and offers guidance in exploring their causes. + +*homepage*: + +version | toolchain +--------|---------- +``2.3`` | ``foss/2016a`` +``2.5`` | ``gompi/2019a`` +``2.5`` | ``gompi/2020a`` +``2.6`` | ``gompi/2021a`` +``2.6`` | ``gompic/2020b`` +``2.6.1`` | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Scalene.md b/docs/version-specific/supported-software/s/Scalene.md new file mode 100644 index 000000000..c979666ec --- /dev/null +++ b/docs/version-specific/supported-software/s/Scalene.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Scalene + +Scalene is a high-performance CPU, GPU and memory profiler for Python that does a number of things that other Python profilers do not and cannot do. It runs orders of magnitude faster than other profilers while delivering far more detailed information. + +*homepage*: + +version | toolchain +--------|---------- +``1.5.13`` | ``GCCcore/11.2.0`` +``1.5.20`` | ``GCCcore/11.3.0`` +``1.5.26`` | ``GCCcore/12.2.0`` +``1.5.26`` | ``GCCcore/12.3.0`` +``1.5.35`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Schrodinger.md b/docs/version-specific/supported-software/s/Schrodinger.md new file mode 100644 index 000000000..fc00540fe --- /dev/null +++ b/docs/version-specific/supported-software/s/Schrodinger.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Schrodinger + +Schrodinger aims to provide integrated software solutions and services that truly meet its customers needs. We want to empower researchers around the world to achieve their goals of improving human health and quality of life through advanced computational techniques that transform the way chemists design compounds and materials. + +*homepage*: + +version | toolchain +--------|---------- +``2020-4`` | ``system`` +``2021-4`` | ``system`` +``2022-1`` | ``system`` +``2022-2`` | ``system`` +``2022-3`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SciPy-bundle.md b/docs/version-specific/supported-software/s/SciPy-bundle.md new file mode 100644 index 000000000..6eaa74cea --- /dev/null +++ b/docs/version-specific/supported-software/s/SciPy-bundle.md @@ -0,0 +1,55 @@ +--- +search: + boost: 0.5 +--- +# SciPy-bundle + +Bundle of Python packages for scientific software + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2019.03`` | | ``foss/2019a`` +``2019.03`` | | ``fosscuda/2019a`` +``2019.03`` | | ``intel/2019a`` +``2019.03`` | | ``intelcuda/2019a`` +``2019.10`` | ``-Python-2.7.16`` | ``foss/2019b`` +``2019.10`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2019.10`` | ``-Python-2.7.16`` | ``fosscuda/2019b`` +``2019.10`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``2019.10`` | ``-Python-3.7.2`` | ``intel/2019a`` +``2019.10`` | ``-Python-2.7.16`` | ``intel/2019b`` +``2019.10`` | ``-Python-3.7.4`` | ``intel/2019b`` +``2019.10`` | ``-Python-3.7.4`` | ``intelcuda/2019b`` +``2020.03`` | ``-Python-2.7.18`` | ``foss/2020a`` +``2020.03`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2020.03`` | ``-Python-2.7.18`` | ``fosscuda/2020a`` +``2020.03`` | ``-Python-3.8.2`` | ``fosscuda/2020a`` +``2020.03`` | ``-Python-2.7.18`` | ``intel/2020a`` +``2020.03`` | ``-Python-3.8.2`` | ``intel/2020a`` +``2020.03`` | ``-Python-3.8.2`` | ``intelcuda/2020a`` +``2020.11`` | ``-Python-2.7.18`` | ``foss/2020b`` +``2020.11`` | | ``foss/2020b`` +``2020.11`` | | ``fosscuda/2020b`` +``2020.11`` | | ``intel/2020b`` +``2020.11`` | | ``intelcuda/2020b`` +``2021.05`` | | ``foss/2021a`` +``2021.05`` | | ``gomkl/2021a`` +``2021.05`` | | ``intel/2021a`` +``2021.10`` | ``-Python-2.7.18`` | ``foss/2021b`` +``2021.10`` | | ``foss/2021b`` +``2021.10`` | | ``intel/2021b`` +``2022.05`` | | ``foss/2022.05`` +``2022.05`` | | ``foss/2022a`` +``2022.05`` | | ``intel/2022.05`` +``2022.05`` | | ``intel/2022a`` +``2023.02`` | | ``gfbf/2022b`` +``2023.07`` | | ``gfbf/2023a`` +``2023.07`` | | ``iimkl/2023a`` +``2023.11`` | | ``gfbf/2023.09`` +``2023.11`` | | ``gfbf/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SciTools-Iris.md b/docs/version-specific/supported-software/s/SciTools-Iris.md new file mode 100644 index 000000000..fd5e366c5 --- /dev/null +++ b/docs/version-specific/supported-software/s/SciTools-Iris.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SciTools-Iris + +A powerful, format-agnostic, community-driven Python package for analysing and visualising Earth science data. + +*homepage*: + +version | toolchain +--------|---------- +``3.2.1`` | ``foss/2022a`` +``3.9.0`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/ScientificPython.md b/docs/version-specific/supported-software/s/ScientificPython.md new file mode 100644 index 000000000..44c4860cf --- /dev/null +++ b/docs/version-specific/supported-software/s/ScientificPython.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ScientificPython + +ScientificPython is a collection of Python modules for scientific computing. It contains support for geometry, mathematical functions, statistics, physical units, IO, visualization, and parallelization. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.9.4`` | ``-Python-2.7.11`` | ``foss/2016a`` +``2.9.4`` | ``-Python-2.7.11`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Scoary.md b/docs/version-specific/supported-software/s/Scoary.md new file mode 100644 index 000000000..9021cf065 --- /dev/null +++ b/docs/version-specific/supported-software/s/Scoary.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Scoary + +Microbial pan-GWAS using the output from Roary + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.6.16`` | | ``foss/2021a`` +``1.6.16`` | ``-Python-2.7.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Score-P.md b/docs/version-specific/supported-software/s/Score-P.md new file mode 100644 index 000000000..c8293f953 --- /dev/null +++ b/docs/version-specific/supported-software/s/Score-P.md @@ -0,0 +1,38 @@ +--- +search: + boost: 0.5 +--- +# Score-P + +The Score-P measurement infrastructure is a highly scalable and easy-to-use tool suite for profiling, event tracing, and online analysis of HPC applications. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.1`` | | ``foss/2016a`` +``6.0`` | | ``gompi/2019a`` +``6.0`` | | ``gompi/2019b`` +``6.0`` | | ``gompi/2020a`` +``6.0`` | | ``gompic/2019a`` +``6.0`` | | ``gompic/2019b`` +``6.0`` | | ``gompic/2020a`` +``7.0`` | | ``gompi/2020b`` +``7.0`` | | ``gompi/2021a`` +``7.0`` | | ``gompic/2020b`` +``7.1`` | ``-CUDA-11.3.1`` | ``gompi/2021a`` +``8.0`` | ``-CUDA-11.4.1`` | ``gompi/2021b`` +``8.0`` | | ``gompi/2021b`` +``8.0`` | ``-CUDA-11.7.0`` | ``gompi/2022a`` +``8.0`` | | ``gompi/2022a`` +``8.1`` | ``-CUDA-12.0.0`` | ``gompi/2022b`` +``8.1`` | | ``gompi/2022b`` +``8.1`` | ``-CUDA-12.1.1`` | ``gompi/2023a`` +``8.1`` | | ``gompi/2023a`` +``8.3`` | | ``gompi/2022b`` +``8.4`` | ``-CUDA-12.4.0`` | ``gompi/2023b`` +``8.4`` | | ``gompi/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Scrappie.md b/docs/version-specific/supported-software/s/Scrappie.md new file mode 100644 index 000000000..cf8b7163c --- /dev/null +++ b/docs/version-specific/supported-software/s/Scrappie.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Scrappie + +Scrappie is a technology demonstrator for the Oxford Nanopore Research Algorithms group. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.2`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Scythe.md b/docs/version-specific/supported-software/s/Scythe.md new file mode 100644 index 000000000..bcdf7c9ab --- /dev/null +++ b/docs/version-specific/supported-software/s/Scythe.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Scythe + +Scythe uses a Naive Bayesian approach to classify contaminant substrings in sequence reads. It considers quality information, which can make it robust in picking out 3'-end adapters, which often include poor quality bases. + +*homepage*: + +version | toolchain +--------|---------- +``0.994`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SeaView.md b/docs/version-specific/supported-software/s/SeaView.md new file mode 100644 index 000000000..cfc4f6933 --- /dev/null +++ b/docs/version-specific/supported-software/s/SeaView.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SeaView + +SeaView is a multiplatform, graphical user interface for multiple sequence alignment and molecular phylogeny. + +*homepage*: + +version | toolchain +--------|---------- +``5.0.5`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Seaborn.md b/docs/version-specific/supported-software/s/Seaborn.md new file mode 100644 index 000000000..d9f9356db --- /dev/null +++ b/docs/version-specific/supported-software/s/Seaborn.md @@ -0,0 +1,54 @@ +--- +search: + boost: 0.5 +--- +# Seaborn + +Seaborn is a Python visualization library based on matplotlib. It provides a high-level interface for drawing attractive statistical graphics. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.10.0`` | ``-Python-3.7.4`` | ``intel/2019b`` +``0.10.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.10.1`` | ``-Python-3.8.2`` | ``intel/2020a`` +``0.10.1`` | | ``intel/2020b`` +``0.11.1`` | | ``foss/2020b`` +``0.11.1`` | | ``fosscuda/2020b`` +``0.11.1`` | | ``intel/2020b`` +``0.11.2`` | | ``foss/2021a`` +``0.11.2`` | | ``foss/2021b`` +``0.11.2`` | | ``intel/2021b`` +``0.12.1`` | | ``foss/2022a`` +``0.12.2`` | | ``foss/2022b`` +``0.13.2`` | | ``gfbf/2023a`` +``0.13.2`` | | ``gfbf/2023b`` +``0.7.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.8.1`` | ``-Python-2.7.13`` | ``foss/2017a`` +``0.8.1`` | ``-Python-2.7.14`` | ``intel/2018a`` +``0.9.0`` | ``-Python-2.7.14`` | ``foss/2017b`` +``0.9.0`` | ``-Python-3.6.3`` | ``foss/2017b`` +``0.9.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``0.9.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.9.0`` | ``-Python-2.7.15`` | ``foss/2019a`` +``0.9.0`` | ``-Python-3.7.2`` | ``foss/2019a`` +``0.9.0`` | ``-Python-2.7.14`` | ``fosscuda/2017b`` +``0.9.0`` | ``-Python-3.6.3`` | ``fosscuda/2017b`` +``0.9.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.9.0`` | ``-Python-3.6.3`` | ``intel/2017b`` +``0.9.0`` | ``-Python-2.7.14`` | ``intel/2018a`` +``0.9.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``0.9.0`` | ``-Python-2.7.15`` | ``intel/2018b`` +``0.9.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``0.9.0`` | ``-Python-2.7.15`` | ``intel/2019a`` +``0.9.0`` | ``-Python-3.7.2`` | ``intel/2019a`` +``0.9.0`` | ``-Python-2.7.14`` | ``intelcuda/2017b`` +``0.9.0`` | ``-Python-3.6.3`` | ``intelcuda/2017b`` +``0.9.1`` | ``-Python-2.7.16`` | ``foss/2019b`` +``0.9.1`` | ``-Python-2.7.18`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SearchGUI.md b/docs/version-specific/supported-software/s/SearchGUI.md new file mode 100644 index 000000000..febc46ec2 --- /dev/null +++ b/docs/version-specific/supported-software/s/SearchGUI.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SearchGUI + +SearchGUI is a user-friendly open-source graphical user interface for configuring and running proteomics identification search engines and de novo sequencing algorithms, currently supporting X! Tandem, MS-GF+, MS Amanda, MyriMatch, Comet, Tide, Andromeda, OMSSA, Novor and DirecTag. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.3.3`` | ``-Java-1.8.0_152`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Seeder.md b/docs/version-specific/supported-software/s/Seeder.md new file mode 100644 index 000000000..346b5c802 --- /dev/null +++ b/docs/version-specific/supported-software/s/Seeder.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Seeder + +Seeder is a framework for DNA motif discovery. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.01`` | ``-Perl-5.28.1`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SeisSol.md b/docs/version-specific/supported-software/s/SeisSol.md new file mode 100644 index 000000000..b019cd5ea --- /dev/null +++ b/docs/version-specific/supported-software/s/SeisSol.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SeisSol + +SeisSol is a software package for simulating wave propagation and dynamic rupture based on the arbitrary high-order accurate derivative discontinuous Galerkin method (ADER-DG). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``201703`` | ``-Python-2.7.15`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SelEstim.md b/docs/version-specific/supported-software/s/SelEstim.md new file mode 100644 index 000000000..4259f3d23 --- /dev/null +++ b/docs/version-specific/supported-software/s/SelEstim.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SelEstim + +SelEstim is aimed at distinguishing neutral from selected polymorphisms and estimate the intensity of selection at the latter. The SelEstim model accounts explicitly for positive selection, and it is assumed that all marker loci in the dataset are responding to selection, to some extent + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.4`` | ``-Linux-64bits`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SemiBin.md b/docs/version-specific/supported-software/s/SemiBin.md new file mode 100644 index 000000000..193794efc --- /dev/null +++ b/docs/version-specific/supported-software/s/SemiBin.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SemiBin + +SemiBin: Metagenomic Binning Using Siamese Neural Networks for short and long reads + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``2.0.2`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Sentence-Transformers.md b/docs/version-specific/supported-software/s/Sentence-Transformers.md new file mode 100644 index 000000000..b09050187 --- /dev/null +++ b/docs/version-specific/supported-software/s/Sentence-Transformers.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Sentence-Transformers + +Sentence Transformers provides an easy method to compute dense vector representations for sentences, paragraphs, and images + +*homepage*: + +version | toolchain +--------|---------- +``2.2.2`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SentencePiece.md b/docs/version-specific/supported-software/s/SentencePiece.md new file mode 100644 index 000000000..f9201a4f2 --- /dev/null +++ b/docs/version-specific/supported-software/s/SentencePiece.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# SentencePiece + +Unsupervised text tokenizer for Neural Network-based text generation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.85`` | ``-Python-3.7.4`` | ``GCC/8.3.0`` +``0.1.94`` | ``-Python-3.8.2`` | ``GCC/9.3.0`` +``0.1.96`` | | ``GCC/10.2.0`` +``0.1.96`` | | ``GCC/10.3.0`` +``0.1.97`` | | ``GCC/11.3.0`` +``0.1.99`` | | ``GCC/12.2.0`` +``0.2.0`` | | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Seq-Gen.md b/docs/version-specific/supported-software/s/Seq-Gen.md new file mode 100644 index 000000000..2b22ff1c1 --- /dev/null +++ b/docs/version-specific/supported-software/s/Seq-Gen.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Seq-Gen + +Seq-Gen is a program that will simulate the evolution of nucleotide or amino acid sequences along a phylogeny, using common models of the substitution process. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.4`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SeqAn.md b/docs/version-specific/supported-software/s/SeqAn.md new file mode 100644 index 000000000..bc9dc1c60 --- /dev/null +++ b/docs/version-specific/supported-software/s/SeqAn.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# SeqAn + +SeqAn is an open source C++ library of efficient algorithms and data structures for the analysis of sequences with the focus on biological data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4.2`` | ``-library`` | ``system`` +``2.3.2`` | | ``foss/2016b`` +``2.4.0`` | | ``GCC/8.2.0-2.31.1`` +``2.4.0`` | | ``GCCcore/10.2.0`` +``2.4.0`` | | ``GCCcore/11.2.0`` +``2.4.0`` | | ``GCCcore/8.3.0`` +``2.4.0`` | | ``GCCcore/9.3.0`` +``2.4.0`` | | ``foss/2018b`` +``2.4.0`` | | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SeqAn3.md b/docs/version-specific/supported-software/s/SeqAn3.md new file mode 100644 index 000000000..99bc1a98b --- /dev/null +++ b/docs/version-specific/supported-software/s/SeqAn3.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SeqAn3 + +SeqAn is an open source C++ library of efficient algorithms and data structures for the analysis of sequences with the focus on biological data. Our library applies a unique generic design that guarantees high performance, generality, extensibility, and integration with other libraries. SeqAn is easy to use and simplifies the development of new software tools with a minimal loss of performance. + +*homepage*: + +version | toolchain +--------|---------- +``3.0.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SeqKit.md b/docs/version-specific/supported-software/s/SeqKit.md new file mode 100644 index 000000000..366e35ac5 --- /dev/null +++ b/docs/version-specific/supported-software/s/SeqKit.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# SeqKit + +SeqKit - a cross-platform and ultrafast toolkit for FASTA/Q file manipulation + +*homepage*: + +version | toolchain +--------|---------- +``0.13.2`` | ``system`` +``0.8.1`` | ``system`` +``2.1.0`` | ``system`` +``2.2.0`` | ``system`` +``2.3.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SeqLib.md b/docs/version-specific/supported-software/s/SeqLib.md new file mode 100644 index 000000000..315a13cd3 --- /dev/null +++ b/docs/version-specific/supported-software/s/SeqLib.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# SeqLib + +C++ interface to HTSlib, BWA-MEM and Fermi. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.0`` | ``GCC/10.2.0`` +``1.2.0`` | ``GCC/10.3.0`` +``1.2.0`` | ``GCC/11.2.0`` +``1.2.0`` | ``GCC/12.3.0`` +``1.2.0`` | ``GCC/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SeqPrep.md b/docs/version-specific/supported-software/s/SeqPrep.md new file mode 100644 index 000000000..7ccd47cf7 --- /dev/null +++ b/docs/version-specific/supported-software/s/SeqPrep.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SeqPrep + +Tool for stripping adaptors and/or merging paired reads with overlap into single reads. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.2`` | ``GCCcore/7.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Seqmagick.md b/docs/version-specific/supported-software/s/Seqmagick.md new file mode 100644 index 000000000..a106dfcab --- /dev/null +++ b/docs/version-specific/supported-software/s/Seqmagick.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Seqmagick + +We often have to convert between sequence formats and do little tasks on them, and it's not worth writing scripts for that. Seqmagick is a kickass little utility built in the spirit of imagemagick to expose the file format conversion in Biopython in a convenient way. Instead of having a big mess of scripts, there is one that takes arguments. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.6.1`` | ``-Python-2.7.11`` | ``foss/2016a`` +``0.6.2`` | ``-Python-2.7.15`` | ``foss/2018b`` +``0.8.6`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Serf.md b/docs/version-specific/supported-software/s/Serf.md new file mode 100644 index 000000000..b299df533 --- /dev/null +++ b/docs/version-specific/supported-software/s/Serf.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# Serf + +The serf library is a high performance C-based HTTP client library built upon the Apache Portable Runtime (APR) library + +*homepage*: + +version | toolchain +--------|---------- +``1.3.9`` | ``GCCcore/10.2.0`` +``1.3.9`` | ``GCCcore/10.3.0`` +``1.3.9`` | ``GCCcore/11.2.0`` +``1.3.9`` | ``GCCcore/11.3.0`` +``1.3.9`` | ``GCCcore/7.3.0`` +``1.3.9`` | ``GCCcore/8.2.0`` +``1.3.9`` | ``GCCcore/9.3.0`` +``1.3.9`` | ``foss/2017b`` +``1.3.9`` | ``intel/2017b`` +``1.3.9`` | ``iomkl/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Seurat.md b/docs/version-specific/supported-software/s/Seurat.md new file mode 100644 index 000000000..ddf61d3e7 --- /dev/null +++ b/docs/version-specific/supported-software/s/Seurat.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# Seurat + +Seurat is an R package designed for QC, analysis, and exploration of single cell RNA-seq data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4.0.16`` | ``-R-3.4.0`` | ``intel/2017a`` +``2.3.4`` | ``-R-3.5.1`` | ``foss/2018b`` +``2.3.4`` | ``-R-3.4.4`` | ``intel/2018a`` +``3.1.2`` | ``-R-3.6.0`` | ``foss/2019a`` +``3.1.5`` | ``-R-4.0.0`` | ``foss/2020a`` +``4.0.1`` | ``-R-4.0.3`` | ``foss/2020b`` +``4.0.3`` | ``-R-4.0.3`` | ``foss/2020b`` +``4.1.0`` | ``-R-4.1.0`` | ``foss/2021a`` +``4.2.0`` | ``-R-4.2.1`` | ``foss/2022a`` +``4.3.0`` | ``-R-4.1.2`` | ``foss/2021b`` +``4.3.0`` | ``-R-4.2.1`` | ``foss/2022a`` +``4.4.0`` | ``-R-4.2.2`` | ``foss/2022b`` +``5.0.1`` | ``-R-4.2.2`` | ``foss/2022b`` +``5.1.0`` | ``-R-4.3.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SeuratData.md b/docs/version-specific/supported-software/s/SeuratData.md new file mode 100644 index 000000000..d0f5a1b48 --- /dev/null +++ b/docs/version-specific/supported-software/s/SeuratData.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SeuratData + +SeuratData is a mechanism for distributing datasets in the form of Seurat objects using R's internal package and data management systems. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20210514`` | ``-R-4.0.3`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SeuratDisk.md b/docs/version-specific/supported-software/s/SeuratDisk.md new file mode 100644 index 000000000..4ef94fda1 --- /dev/null +++ b/docs/version-specific/supported-software/s/SeuratDisk.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SeuratDisk + +Interfaces for HDF5-based Single Cell File Formats + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.0.0.9020`` | ``-R-4.2.1`` | ``foss/2022a`` +``20231104`` | ``-R-4.3.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SeuratWrappers.md b/docs/version-specific/supported-software/s/SeuratWrappers.md new file mode 100644 index 000000000..04f7cd6dd --- /dev/null +++ b/docs/version-specific/supported-software/s/SeuratWrappers.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SeuratWrappers + +SeuratWrappers is a collection of community-provided methods and extensions for Seurat + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20210528`` | ``-R-4.0.3`` | ``foss/2020b`` +``20221022`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Shannon.md b/docs/version-specific/supported-software/s/Shannon.md new file mode 100644 index 000000000..7bf249d53 --- /dev/null +++ b/docs/version-specific/supported-software/s/Shannon.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Shannon + +Shannon is a program for assembling transcripts from RNA-Seq data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20170511`` | ``-Python-2.7.13`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Shapely.md b/docs/version-specific/supported-software/s/Shapely.md new file mode 100644 index 000000000..aa464274c --- /dev/null +++ b/docs/version-specific/supported-software/s/Shapely.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# Shapely + +Shapely is a BSD-licensed Python package for manipulation and analysis of planar geometric objects. It is based on the widely deployed GEOS (the engine of PostGIS) and JTS (from which GEOS is ported) libraries. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.7.0`` | ``-Python-3.7.4`` | ``GCC/8.3.0`` +``1.7.0`` | ``-Python-3.7.2`` | ``foss/2019a`` +``1.7.0`` | ``-Python-3.7.4`` | ``iccifort/2019.5.281`` +``1.7.1`` | ``-Python-3.8.2`` | ``GCC/9.3.0`` +``1.8.1.post1`` | | ``GCC/11.2.0`` +``1.8.2`` | | ``foss/2021b`` +``1.8.2`` | | ``foss/2022a`` +``1.8a1`` | | ``GCC/10.2.0`` +``1.8a1`` | | ``GCC/10.3.0`` +``1.8a1`` | | ``iccifort/2020.4.304`` +``2.0.1`` | | ``foss/2022b`` +``2.0.1`` | | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Shasta.md b/docs/version-specific/supported-software/s/Shasta.md new file mode 100644 index 000000000..ae3fe3581 --- /dev/null +++ b/docs/version-specific/supported-software/s/Shasta.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Shasta + +The goal of the Shasta long read assembler is to rapidly produce accurate assembled sequence using DNA reads generated by Oxford Nanopore flow cells as input. Computational methods used by the Shasta assembler include: Using a run-length representation of the read sequence. This makes the assembly process more resilient to errors in homopolymer repeat counts, which are the most common type of errors in Oxford Nanopore reads. Using in some phases of the computation a representation of the read sequence based on markers, a fixed subset of short k-mers (k ≈ 10). + +*homepage*: + +version | toolchain +--------|---------- +``0.8.0`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/ShengBTE.md b/docs/version-specific/supported-software/s/ShengBTE.md new file mode 100644 index 000000000..7451b134f --- /dev/null +++ b/docs/version-specific/supported-software/s/ShengBTE.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# ShengBTE + +A solver for the Boltzmann transport equation for phonons. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``foss/2021a`` +``1.5.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Short-Pair.md b/docs/version-specific/supported-software/s/Short-Pair.md new file mode 100644 index 000000000..fbfe2f2c5 --- /dev/null +++ b/docs/version-specific/supported-software/s/Short-Pair.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Short-Pair + +Sensitive Short Read Homology Search for Paired-End Reads + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20170125`` | ``-Python-2.7.15`` | ``foss/2018b`` +``20170125`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SiNVICT.md b/docs/version-specific/supported-software/s/SiNVICT.md new file mode 100644 index 000000000..40b87b59d --- /dev/null +++ b/docs/version-specific/supported-software/s/SiNVICT.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SiNVICT + +SiNVICT is a tool for the detection of SNVs and indels from cfDNA/ctDNA samples obtained by ultra-deep sequencing. + +*homepage*: + +version | toolchain +--------|---------- +``1.0-20180817`` | ``GCC/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Sibelia.md b/docs/version-specific/supported-software/s/Sibelia.md new file mode 100644 index 000000000..e6bda0f6c --- /dev/null +++ b/docs/version-specific/supported-software/s/Sibelia.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Sibelia + +Sibelia: A comparative genomics tool: It assists biologists in analysing the genomic variations that correlate with pathogens, or the genomic changes that help microorganisms adapt in different environments. Sibelia will also be helpful for the evolutionary and genome rearrangement studies for multiple strains of microorganisms. + +*homepage*: + +version | toolchain +--------|---------- +``3.0.6`` | ``foss/2016b`` +``3.0.7`` | ``foss/2018b`` +``3.0.7`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Siesta.md b/docs/version-specific/supported-software/s/Siesta.md new file mode 100644 index 000000000..1bc9ba843 --- /dev/null +++ b/docs/version-specific/supported-software/s/Siesta.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# Siesta + +SIESTA is both a method and its computer program implementation, to perform efficient electronic structure calculations and ab initio molecular dynamics simulations of molecules and solids. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.0`` | | ``foss/2017b`` +``4.0`` | | ``intel/2017a`` +``4.0.1`` | | ``intel/2017a`` +``4.1-MaX-1.0`` | ``-PEXSI`` | ``intel/2019b`` +``4.1-MaX-1.0`` | | ``intel/2019b`` +``4.1-b2`` | | ``intel/2017a`` +``4.1-b3`` | | ``intel/2017a`` +``4.1-b4`` | | ``foss/2018b`` +``4.1-b4`` | | ``intel/2018b`` +``4.1.5`` | | ``foss/2020a`` +``4.1.5`` | | ``foss/2021a`` +``4.1.5`` | | ``foss/2021b`` +``4.1.5`` | | ``foss/2022a`` +``4.1.5`` | | ``intel/2020a`` +``4.1.5`` | | ``intel/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SignalP.md b/docs/version-specific/supported-software/s/SignalP.md new file mode 100644 index 000000000..5c53fae83 --- /dev/null +++ b/docs/version-specific/supported-software/s/SignalP.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# SignalP + +SignalP predicts the presence and location of signal peptide cleavage sites in amino acid sequences from different organisms + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.0b`` | ``-Linux`` | ``system`` +``6.0g`` | ``-fast`` | ``foss/2021b`` +``6.0g`` | ``-fast-CUDA-11.7.0`` | ``foss/2022a`` +``6.0g`` | ``-fast`` | ``foss/2022a`` +``6.0h`` | ``-fast`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SimNIBS.md b/docs/version-specific/supported-software/s/SimNIBS.md new file mode 100644 index 000000000..f567e9b3a --- /dev/null +++ b/docs/version-specific/supported-software/s/SimNIBS.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SimNIBS + +SimNIBS is a free and open source software package for the Simulation of Non-invasive Brain Stimulation. + +*homepage*: + +version | toolchain +--------|---------- +``3.2.4`` | ``foss/2020b`` +``4.0.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SimPEG.md b/docs/version-specific/supported-software/s/SimPEG.md new file mode 100644 index 000000000..aa86749ee --- /dev/null +++ b/docs/version-specific/supported-software/s/SimPEG.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# SimPEG + +Simulation and Parameter Estimation in Geophysics - A python package for simulation and gradient based parameter estimation in the context of geophysical applications. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.14.1`` | ``-Python-3.8.2`` | ``intel/2020a`` +``0.18.1`` | | ``foss/2021b`` +``0.18.1`` | | ``intel/2021b`` +``0.3.1`` | ``-Python-2.7.12`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SimVascular.md b/docs/version-specific/supported-software/s/SimVascular.md new file mode 100644 index 000000000..56407799d --- /dev/null +++ b/docs/version-specific/supported-software/s/SimVascular.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SimVascular + +SimVascular is an open source software suite for cardiovascular simulation, providing a complete pipeline from medical image data to 3D model construction, meshing, and blood flow simulation. + +*homepage*: + +version | toolchain +--------|---------- +``2.16.0406`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Simple-DFTD3.md b/docs/version-specific/supported-software/s/Simple-DFTD3.md new file mode 100644 index 000000000..2c45dde54 --- /dev/null +++ b/docs/version-specific/supported-software/s/Simple-DFTD3.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Simple-DFTD3 + +Reimplementation of the D3 dispersion correction. The s-dftd3 project aims to provide a user-friendly and uniform interface to the D3 dispersion model and for the calculation of DFT-D3 dispersion corrections. + +*homepage*: + +version | toolchain +--------|---------- +``0.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SimpleElastix.md b/docs/version-specific/supported-software/s/SimpleElastix.md new file mode 100644 index 000000000..186298b5e --- /dev/null +++ b/docs/version-specific/supported-software/s/SimpleElastix.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# SimpleElastix + +Multi-lingual medical image registration library. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.0`` | ``-Python-3.6.3`` | ``foss/2017b`` +``0.10.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``1.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SimpleITK.md b/docs/version-specific/supported-software/s/SimpleITK.md new file mode 100644 index 000000000..fc6a896c3 --- /dev/null +++ b/docs/version-specific/supported-software/s/SimpleITK.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# SimpleITK + +ITK is an open-source, cross-platform system that provides developers with an extensive suite of software tools for image analysis. Among them, SimpleITK is a simplified layer built on top of ITK, intended to facilitate its use in rapid prototyping, education, interpreted languages. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``1.1.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.1.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.2.4`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.1.0`` | | ``foss/2020b`` +``2.1.0`` | | ``fosscuda/2020b`` +``2.1.1`` | | ``foss/2021a`` +``2.1.1.2`` | | ``foss/2021b`` +``2.1.1.2`` | | ``foss/2022a`` +``2.3.1`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Simstrat.md b/docs/version-specific/supported-software/s/Simstrat.md new file mode 100644 index 000000000..efc247774 --- /dev/null +++ b/docs/version-specific/supported-software/s/Simstrat.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Simstrat + +Simstrat is a one-dimensional physical lake model for the simulation of stratification and mixing in deep stratified lakes. + +*homepage*: + +version | toolchain +--------|---------- +``3.01`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SingleM.md b/docs/version-specific/supported-software/s/SingleM.md new file mode 100644 index 000000000..4241eac23 --- /dev/null +++ b/docs/version-specific/supported-software/s/SingleM.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SingleM + +SingleM is a tool to find the abundances of discrete operational taxonomic units (OTUs) directly from shotgun metagenome data, without heavy reliance on reference sequence databases. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.12.1`` | ``-Python-2.7.15`` | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Singular.md b/docs/version-specific/supported-software/s/Singular.md new file mode 100644 index 000000000..fed664605 --- /dev/null +++ b/docs/version-specific/supported-software/s/Singular.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Singular + +Singular is a computer algebra system for polynomial computations, with special emphasis on commutative and non-commutative algebra, algebraic geometry, and singularity theory. + +*homepage*: + +version | toolchain +--------|---------- +``4.1.2`` | ``GCC/8.2.0-2.31.1`` +``4.1.2`` | ``system`` +``4.3.2p10`` | ``gfbf/2022a`` +``4.4.0`` | ``gfbf/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SlamDunk.md b/docs/version-specific/supported-software/s/SlamDunk.md new file mode 100644 index 000000000..64148e7de --- /dev/null +++ b/docs/version-specific/supported-software/s/SlamDunk.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SlamDunk + +SlamDunk is a novel, fully automated software tool for automated, robust, scalable and reproducible SLAMseq data analysis. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.3`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Smoldyn.md b/docs/version-specific/supported-software/s/Smoldyn.md new file mode 100644 index 000000000..50da99e33 --- /dev/null +++ b/docs/version-specific/supported-software/s/Smoldyn.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Smoldyn + +Smoldyn is a computer program for cell-scale biochemical simulations. It simulates each molecule of interest individually to capture natural stochasticity and to yield nanometer-scale spatial resolution. It treats other molecules implicitly, enabling it to simulate hundreds of thousands of molecules over several minutes of real time. Simulated molecules diffuse, react, are confined by surfaces, and bind to membranes much as they would in a real biological system. + +*homepage*: + +version | toolchain +--------|---------- +``2.48`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Sniffles.md b/docs/version-specific/supported-software/s/Sniffles.md new file mode 100644 index 000000000..95edd1c54 --- /dev/null +++ b/docs/version-specific/supported-software/s/Sniffles.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Sniffles + +A fast structural variant caller for long-read sequencing, Sniffles2 accurately detect SVs on germline, somatic and population-level for PacBio and Oxford Nanopore read data. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.7`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SoPlex.md b/docs/version-specific/supported-software/s/SoPlex.md new file mode 100644 index 000000000..8147d1ebb --- /dev/null +++ b/docs/version-specific/supported-software/s/SoPlex.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SoPlex + +SoPlex is an optimization package for solving linear programming problems (LPs) based on an advanced implementation of the primal and dual revised simplex algorithm. It provides special support for the exact solution of LPs with rational input data. It can be used as a standalone solver reading MPS or LP format files via a command line interface as well as embedded into other programs via a C++ class library. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.1`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SoQt.md b/docs/version-specific/supported-software/s/SoQt.md new file mode 100644 index 000000000..7b1bae8ea --- /dev/null +++ b/docs/version-specific/supported-software/s/SoQt.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SoQt + +SoQt is a Qt GUI component toolkit library for Coin. It is also compatible with SGI and TGS Open Inventor, and the API is based on the API of the InventorXt GUI component toolkit. + +*homepage*: + +version | toolchain +--------|---------- +``1.6.0`` | ``GCC/10.3.0`` +``1.6.0`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SoX.md b/docs/version-specific/supported-software/s/SoX.md new file mode 100644 index 000000000..36c88164b --- /dev/null +++ b/docs/version-specific/supported-software/s/SoX.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# SoX + +SoX is the Swiss Army Knife of sound processing utilities. It can convert audio files to other popular audio file types and also apply sound effects and filters during the conversion. + +*homepage*: + +version | toolchain +--------|---------- +``14.4.2`` | ``GCC/8.3.0`` +``14.4.2`` | ``GCCcore/11.3.0`` +``14.4.2`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SoXt.md b/docs/version-specific/supported-software/s/SoXt.md new file mode 100644 index 000000000..2fcd272ce --- /dev/null +++ b/docs/version-specific/supported-software/s/SoXt.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SoXt + +SoXt is an Xt/Motif glue library for Coin. It can also be used on top of the SGI or TGS implementation of Open Inventor, and is designed to be source code compatible with SGI's InventorXt library. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.0`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SolexaQA++.md b/docs/version-specific/supported-software/s/SolexaQA++.md new file mode 100644 index 000000000..7ae868735 --- /dev/null +++ b/docs/version-specific/supported-software/s/SolexaQA++.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SolexaQA++ + +SolexaQA calculates sequence quality statistics and creates visual representations of data quality for second-generation sequencing data. Originally developed for the Illumina system (historically known as “Solexa”), SolexaQA now also supports Ion Torrent and 454 data. + +*homepage*: + +version | toolchain +--------|---------- +``3.1.5`` | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SortMeRNA.md b/docs/version-specific/supported-software/s/SortMeRNA.md new file mode 100644 index 000000000..c4b6dc2a0 --- /dev/null +++ b/docs/version-specific/supported-software/s/SortMeRNA.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SortMeRNA + +SortMeRNA is a biological sequence analysis tool for filtering, mapping and OTU-picking NGS reads. + +*homepage*: + +version | toolchain +--------|---------- +``2.1`` | ``GCC/9.3.0`` +``2.1`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SoupX.md b/docs/version-specific/supported-software/s/SoupX.md new file mode 100644 index 000000000..d91943876 --- /dev/null +++ b/docs/version-specific/supported-software/s/SoupX.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SoupX + +" Quantify, profile and remove ambient mRNA contamination (the "soup") from droplet based single cell RNA-seq experiments. Implements the method described in Young et al. (2018) . + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.6.2`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SpaceRanger.md b/docs/version-specific/supported-software/s/SpaceRanger.md new file mode 100644 index 000000000..68b2bb80f --- /dev/null +++ b/docs/version-specific/supported-software/s/SpaceRanger.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# SpaceRanger + +Space Ranger is a set of analysis pipelines that process Visium spatial RNA-seq output and brightfield microscope images in order to detect tissue, align reads, generate feature-spot matrices, perform clustering and gene expression analysis, and place spots in spatial context on the slide image. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``GCC/9.3.0`` +``1.2.2`` | ``GCC/9.3.0`` +``1.3.0`` | ``GCC/10.3.0`` +``1.3.1`` | ``GCC/11.2.0`` +``2.0.0`` | ``GCC/11.2.0`` +``2.0.1`` | ``GCC/11.3.0`` +``2.1.0`` | ``GCC/11.3.0`` +``2.1.0`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Spack.md b/docs/version-specific/supported-software/s/Spack.md new file mode 100644 index 000000000..5994b0c2b --- /dev/null +++ b/docs/version-specific/supported-software/s/Spack.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# Spack + +Spack is a package manager for supercomputers, Linux, and macOS. It makes installing scientific software easy. With Spack, you can build a package with multiple versions, configurations, platforms, and compilers, and all of these builds can coexist on the same machine. + +*homepage*: + +version | toolchain +--------|---------- +``0.10.0`` | ``system`` +``0.11.2`` | ``system`` +``0.12.1`` | ``system`` +``0.16.2`` | ``system`` +``0.17.0`` | ``system`` +``0.17.2`` | ``system`` +``0.21.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Spark.md b/docs/version-specific/supported-software/s/Spark.md new file mode 100644 index 000000000..34687132a --- /dev/null +++ b/docs/version-specific/supported-software/s/Spark.md @@ -0,0 +1,42 @@ +--- +search: + boost: 0.5 +--- +# Spark + +Spark is Hadoop MapReduce done in memory + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.0`` | | ``system`` +``1.4.1`` | | ``system`` +``1.5.0`` | | ``system`` +``1.6.0`` | | ``system`` +``1.6.1`` | | ``system`` +``2.0.0`` | | ``system`` +``2.0.2`` | | ``system`` +``2.2.0`` | ``-Hadoop-2.6-Java-1.8.0_144`` | ``system`` +``2.2.0`` | ``-Hadoop-2.6-Java-1.8.0_152`` | ``system`` +``2.2.0`` | ``-Hadoop-2.6-Java-1.8.0_152-Python-3.6.3`` | ``intel/2017b`` +``2.3.0`` | ``-Hadoop-2.7-Java-1.8.0_162`` | ``system`` +``2.4.0`` | ``-Hadoop-2.7-Java-1.8`` | ``system`` +``2.4.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``2.4.0`` | ``-Hadoop-2.7-Java-1.8-Python-3.6.6`` | ``intel/2018b`` +``2.4.0`` | ``-Python-2.7.15`` | ``intel/2018b`` +``2.4.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``2.4.5`` | ``-Python-3.7.4-Java-1.8`` | ``intel/2019b`` +``3.0.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``3.0.0`` | ``-Python-2.7.15`` | ``intel/2018b`` +``3.1.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``3.1.1`` | | ``foss/2020b`` +``3.1.1`` | | ``fosscuda/2020b`` +``3.2.1`` | | ``foss/2021b`` +``3.3.1`` | | ``foss/2022a`` +``3.5.0`` | | ``foss/2023a`` +``3.5.1`` | ``-Java-17`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SpatialDE.md b/docs/version-specific/supported-software/s/SpatialDE.md new file mode 100644 index 000000000..e2907f283 --- /dev/null +++ b/docs/version-specific/supported-software/s/SpatialDE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SpatialDE + +SpatialDE is a method to identify genes which significantly depend on spatial coordinates in non-linear and non-parametric ways. The intended applications are spatially resolved RNA-sequencing from e.g. Spatial Transcriptomics, or in situ gene expression measurements from e.g. SeqFISH or MERFISH. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.3`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SpectrA.md b/docs/version-specific/supported-software/s/SpectrA.md new file mode 100644 index 000000000..acba1e541 --- /dev/null +++ b/docs/version-specific/supported-software/s/SpectrA.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# SpectrA + +Spectra stands for Sparse Eigenvalue Computation Toolkit as a Redesigned ARPACK. It is a C++ library for large scale eigenvalue problems, built on top of Eigen, an open source linear algebra library. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0`` | ``GCC/10.2.0`` +``1.0.1`` | ``GCCcore/11.2.0`` +``1.0.1`` | ``GCCcore/11.3.0`` +``1.0.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Sphinx-RTD-Theme.md b/docs/version-specific/supported-software/s/Sphinx-RTD-Theme.md new file mode 100644 index 000000000..d701a6c7c --- /dev/null +++ b/docs/version-specific/supported-software/s/Sphinx-RTD-Theme.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Sphinx-RTD-Theme + +Sphinx theme designed to provide a great reader experience for documentation users on both desktop and mobile devices. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Sphinx.md b/docs/version-specific/supported-software/s/Sphinx.md new file mode 100644 index 000000000..f5a81d5e7 --- /dev/null +++ b/docs/version-specific/supported-software/s/Sphinx.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# Sphinx + +Sphinx is a tool that makes it easy to create intelligent and beautiful documentation. It was originally created for the new Python documentation, and it has excellent facilities for the documentation of Python projects, but C/C++ is already supported as well, and it is planned to add special support for other languages as well. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4.8`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.4.8`` | ``-Python-3.5.1`` | ``foss/2016a`` +``1.8.1`` | ``-Python-2.7.14`` | ``foss/2017b`` +``1.8.1`` | ``-Python-3.6.3`` | ``foss/2017b`` +``1.8.1`` | ``-Python-3.6.4`` | ``foss/2018a`` +``1.8.1`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.8.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.8.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.8.1`` | ``-Python-3.6.3`` | ``intel/2017b`` +``1.8.1`` | ``-Python-3.6.6`` | ``intel/2018b`` +``1.8.3`` | ``-Python-3.6.4`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SpiceyPy.md b/docs/version-specific/supported-software/s/SpiceyPy.md new file mode 100644 index 000000000..98f0a3b83 --- /dev/null +++ b/docs/version-specific/supported-software/s/SpiceyPy.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# SpiceyPy + +SpiceyPy is a Python wrapper for the NAIF C SPICE Toolkit (N65) + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.1.1`` | ``-Python-3.6.1`` | ``intel/2017a`` +``2.1.0`` | ``-Python-3.6.3`` | ``foss/2017b`` +``2.1.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``2.1.0`` | ``-Python-3.6.3`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SpiecEasi.md b/docs/version-specific/supported-software/s/SpiecEasi.md new file mode 100644 index 000000000..e3dd75021 --- /dev/null +++ b/docs/version-specific/supported-software/s/SpiecEasi.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# SpiecEasi + +Sparse InversE Covariance estimation for Ecological Association and Statistical Inference + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.0`` | ``-R-3.4.4`` | ``intel/2018a`` +``1.1.1`` | ``-R-4.2.1`` | ``foss/2022a`` +``20160830`` | ``-R-3.3.1`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SplAdder.md b/docs/version-specific/supported-software/s/SplAdder.md new file mode 100644 index 000000000..5c47e67ec --- /dev/null +++ b/docs/version-specific/supported-software/s/SplAdder.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SplAdder + +Splicing Adder is a toolbox for alternative splicing analysis based on RNA-Seq alignment data. Briefly, the software takes a given annotation and RNA-Seq read alignments in standardized formats, transforms the annotation into a splicing graph representation, augments the splicing graph with additional information extracted from the read data, extracts alternative splicing events from the graph and quantifies the events based on the alignment data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.4.2`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SpliceMap.md b/docs/version-specific/supported-software/s/SpliceMap.md new file mode 100644 index 000000000..1681bcfcd --- /dev/null +++ b/docs/version-specific/supported-software/s/SpliceMap.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SpliceMap + +SpliceMap is a de novo splice junction discovery and alignment tool. It offers high sensitivity and support for arbitrary RNA-seq read lengths. + +*homepage*: + +version | toolchain +--------|---------- +``3.3.5.2`` | ``GCC/7.3.0-2.30`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Spyder.md b/docs/version-specific/supported-software/s/Spyder.md new file mode 100644 index 000000000..f0a74977f --- /dev/null +++ b/docs/version-specific/supported-software/s/Spyder.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Spyder + +Spyder is an interactive Python development environment providing MATLAB-like features in a simple and light-weighted software. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.1.4`` | ``-Python-2.7.13`` | ``intel/2017a`` +``3.3.1`` | ``-Python-3.6.4`` | ``foss/2018a`` +``3.3.2`` | ``-Python-3.6.6`` | ``foss/2018b`` +``4.1.5`` | ``-Python-3.7.2`` | ``foss/2019a`` +``4.1.5`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SqueezeMeta.md b/docs/version-specific/supported-software/s/SqueezeMeta.md new file mode 100644 index 000000000..be8d1c547 --- /dev/null +++ b/docs/version-specific/supported-software/s/SqueezeMeta.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# SqueezeMeta + +SqueezeMeta is a full automatic pipeline for metagenomics/metatranscriptomics, covering all steps of the analysis. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.4.3`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.0.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.5.0`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Squidpy.md b/docs/version-specific/supported-software/s/Squidpy.md new file mode 100644 index 000000000..1846a31e7 --- /dev/null +++ b/docs/version-specific/supported-software/s/Squidpy.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Squidpy + +Squidpy is a tool for the analysis and visualization of spatial molecular data. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.2`` | ``foss/2021b`` +``1.4.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/StaMPS.md b/docs/version-specific/supported-software/s/StaMPS.md new file mode 100644 index 000000000..c5283e2ef --- /dev/null +++ b/docs/version-specific/supported-software/s/StaMPS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# StaMPS + +A software package to extract ground displacements from time series of synthetic aperture radar (SAR) acquisitions. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.3b1`` | ``-Perl-5.24.1`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Stack.md b/docs/version-specific/supported-software/s/Stack.md new file mode 100644 index 000000000..2c7205f68 --- /dev/null +++ b/docs/version-specific/supported-software/s/Stack.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Stack + +Stack is a cross-platform program for developing Haskell projects. It is intended for Haskellers both new and experienced. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.11.1`` | ``-x86_64`` | ``system`` +``2.13.1`` | ``-x86_64`` | ``system`` +``2.3.3`` | ``-x86_64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Stacks.md b/docs/version-specific/supported-software/s/Stacks.md new file mode 100644 index 000000000..b41ac2e4c --- /dev/null +++ b/docs/version-specific/supported-software/s/Stacks.md @@ -0,0 +1,41 @@ +--- +search: + boost: 0.5 +--- +# Stacks + +Stacks is a software pipeline for building loci from short-read sequences, such as those generated on the Illumina platform. Stacks was developed to work with restriction enzyme-based data, such as RAD-seq, for the purpose of building genetic maps and conducting population genomics and phylogeography. + +*homepage*: + +version | toolchain +--------|---------- +``1.40`` | ``foss/2016a`` +``1.42`` | ``foss/2016a`` +``1.44`` | ``foss/2016a`` +``1.45`` | ``foss/2016a`` +``1.46`` | ``intel/2017a`` +``1.47`` | ``foss/2016a`` +``1.48`` | ``intel/2017b`` +``1.48`` | ``intel/2018b`` +``2.0`` | ``foss/2018a`` +``2.0`` | ``intel/2018a`` +``2.0Beta10a`` | ``foss/2018a`` +``2.0Beta7c`` | ``intel/2017b`` +``2.0Beta8c`` | ``intel/2017b`` +``2.0Beta9`` | ``intel/2018a`` +``2.2`` | ``foss/2018a`` +``2.3b`` | ``foss/2018a`` +``2.3e`` | ``foss/2018b`` +``2.41`` | ``GCC/8.2.0-2.31.1`` +``2.41`` | ``foss/2018b`` +``2.41`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``2.5`` | ``iccifort/2019.5.281`` +``2.53`` | ``foss/2019b`` +``2.53`` | ``iccifort/2019.5.281`` +``2.54`` | ``foss/2020a`` +``2.62`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Stampy.md b/docs/version-specific/supported-software/s/Stampy.md new file mode 100644 index 000000000..fcff80c8c --- /dev/null +++ b/docs/version-specific/supported-software/s/Stampy.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Stampy + +Stampy is a package for the mapping of short reads from illumina sequencing machines onto a reference genome. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.31`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.0.32`` | ``-Python-2.7.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Stata.md b/docs/version-specific/supported-software/s/Stata.md new file mode 100644 index 000000000..f5772c959 --- /dev/null +++ b/docs/version-specific/supported-software/s/Stata.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Stata + +Stata is a complete, integrated statistical software package that provides everything you need for data analysis, data management, and graphics. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``15`` | | ``system`` +``16`` | ``-legacy`` | ``system`` +``17`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Statistics-R.md b/docs/version-specific/supported-software/s/Statistics-R.md new file mode 100644 index 000000000..1690384a4 --- /dev/null +++ b/docs/version-specific/supported-software/s/Statistics-R.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Statistics-R + +Perl interface with the R statistical program + +*homepage*: + +version | toolchain +--------|---------- +``0.34`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Strainberry.md b/docs/version-specific/supported-software/s/Strainberry.md new file mode 100644 index 000000000..822b82183 --- /dev/null +++ b/docs/version-specific/supported-software/s/Strainberry.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Strainberry + +Strainberry is a method that performs strain separation in low-complexity metagenomes using error-prone long-read technologies. It exploits state-of-the-art tools for variant calling, haplotype phasing, and genome assembly, in order to achieve single-sample assembly of strains with higher quality than other state-of-the-art long-read assemblers. + +*homepage*: + +version | toolchain +--------|---------- +``1.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/StringTie.md b/docs/version-specific/supported-software/s/StringTie.md new file mode 100644 index 000000000..a01b0da9b --- /dev/null +++ b/docs/version-specific/supported-software/s/StringTie.md @@ -0,0 +1,32 @@ +--- +search: + boost: 0.5 +--- +# StringTie + +StringTie is a fast and highly efficient assembler of RNA-Seq alignments into potential transcripts. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.0`` | | ``intel/2016b`` +``1.3.3`` | | ``GCCcore/6.4.0`` +``1.3.3`` | | ``intel/2017a`` +``1.3.3b`` | | ``foss/2016b`` +``1.3.5`` | | ``GCCcore/8.2.0`` +``1.3.5`` | | ``foss/2018b`` +``2.0.3`` | | ``GCCcore/7.3.0`` +``2.1.0`` | | ``foss/2018b`` +``2.1.1`` | | ``GCC/8.3.0`` +``2.1.3`` | | ``GCC/8.3.0`` +``2.1.3`` | | ``GCC/9.3.0`` +``2.1.4`` | | ``GCC/8.3.0`` +``2.1.4`` | | ``GCC/9.3.0`` +``2.1.7`` | | ``GCC/10.3.0`` +``2.2.1`` | ``-Python-2.7.18`` | ``GCC/11.2.0`` +``2.2.1`` | | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Structure.md b/docs/version-specific/supported-software/s/Structure.md new file mode 100644 index 000000000..2876064fa --- /dev/null +++ b/docs/version-specific/supported-software/s/Structure.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# Structure + +The program structure is a free software package for using multi-locus genotype data to investigate population structure. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.4`` | ``GCC/11.3.0`` +``2.3.4`` | ``GCC/12.2.0`` +``2.3.4`` | ``GCC/8.2.0-2.31.1`` +``2.3.4`` | ``iccifort/2019.3.199-GCC-8.3.0-2.32`` +``2.3.4`` | ``iccifort/2019.5.281`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Structure_threader.md b/docs/version-specific/supported-software/s/Structure_threader.md new file mode 100644 index 000000000..d24912269 --- /dev/null +++ b/docs/version-specific/supported-software/s/Structure_threader.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Structure_threader + +A program to parallelize the runs of Structure, fastStructure, MavericK and ALStructure software. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.10`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SuAVE-biomat.md b/docs/version-specific/supported-software/s/SuAVE-biomat.md new file mode 100644 index 000000000..c01609b11 --- /dev/null +++ b/docs/version-specific/supported-software/s/SuAVE-biomat.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SuAVE-biomat + +Surface Assessment via Grid Evaluation (SuAVE) for Every Surface Curvature and Cavity Shape + +*homepage*: + +version | toolchain +--------|---------- +``2.0.0-20230815`` | ``intel/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Subread.md b/docs/version-specific/supported-software/s/Subread.md new file mode 100644 index 000000000..56fb418b0 --- /dev/null +++ b/docs/version-specific/supported-software/s/Subread.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# Subread + +High performance read alignment, quantification and mutation discovery + +*homepage*: + +version | toolchain +--------|---------- +``1.5.0-p1`` | ``foss/2016a`` +``1.5.0-p1`` | ``foss/2016b`` +``1.6.3`` | ``foss/2018b`` +``1.6.4`` | ``foss/2018b`` +``2.0.0`` | ``GCC/7.3.0-2.30`` +``2.0.0`` | ``GCC/8.3.0`` +``2.0.2`` | ``GCC/10.2.0`` +``2.0.3`` | ``GCC/10.3.0`` +``2.0.3`` | ``GCC/11.2.0`` +``2.0.3`` | ``GCC/9.3.0`` +``2.0.4`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Subversion.md b/docs/version-specific/supported-software/s/Subversion.md new file mode 100644 index 000000000..c0a001c9f --- /dev/null +++ b/docs/version-specific/supported-software/s/Subversion.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# Subversion + +Subversion is an open source version control system. + +*homepage*: + +version | toolchain +--------|---------- +``1.10.0`` | ``foss/2017b`` +``1.10.0`` | ``intel/2017b`` +``1.12.0`` | ``GCCcore/8.2.0`` +``1.14.0`` | ``GCCcore/10.2.0`` +``1.14.0`` | ``GCCcore/9.3.0`` +``1.14.1`` | ``GCCcore/10.3.0`` +``1.14.1`` | ``GCCcore/11.2.0`` +``1.14.2`` | ``GCCcore/11.3.0`` +``1.9.7`` | ``iomkl/2018a`` +``1.9.9`` | ``GCCcore/7.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SuiteSparse.md b/docs/version-specific/supported-software/s/SuiteSparse.md new file mode 100644 index 000000000..31710fb3a --- /dev/null +++ b/docs/version-specific/supported-software/s/SuiteSparse.md @@ -0,0 +1,59 @@ +--- +search: + boost: 0.5 +--- +# SuiteSparse + +SuiteSparse is a collection of libraries manipulate sparse matrices. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.5.1`` | ``-METIS-5.1.0`` | ``foss/2016a`` +``4.5.1`` | ``-METIS-5.1.0`` | ``intel/2016a`` +``4.5.2`` | ``-METIS-5.1.0`` | ``foss/2016a`` +``4.5.2`` | ``-METIS-5.1.0`` | ``intel/2016a`` +``4.5.3`` | ``-METIS-5.1.0`` | ``foss/2016a`` +``4.5.3`` | ``-ParMETIS-4.0.3`` | ``foss/2016a`` +``4.5.3`` | ``-METIS-5.1.0`` | ``foss/2016b`` +``4.5.3`` | ``-ParMETIS-4.0.3`` | ``foss/2016b`` +``4.5.3`` | ``-ParMETIS-4.0.3`` | ``intel/2016a`` +``4.5.3`` | ``-METIS-5.1.0`` | ``intel/2016b`` +``4.5.3`` | ``-ParMETIS-4.0.3`` | ``intel/2016b`` +``4.5.5`` | ``-METIS-5.1.0`` | ``foss/2017a`` +``4.5.5`` | ``-ParMETIS-4.0.3`` | ``foss/2017a`` +``4.5.5`` | ``-ParMETIS-4.0.3`` | ``foss/2017b`` +``4.5.5`` | ``-METIS-5.1.0`` | ``intel/2017a`` +``4.5.5`` | ``-ParMETIS-4.0.3`` | ``intel/2017a`` +``4.5.5`` | ``-ParMETIS-4.0.3`` | ``intel/2017b`` +``4.5.6`` | ``-METIS-5.1.0`` | ``foss/2017b`` +``5.1.2`` | ``-METIS-5.1.0`` | ``foss/2017b`` +``5.1.2`` | ``-ParMETIS-4.0.3`` | ``foss/2017b`` +``5.1.2`` | ``-METIS-5.1.0`` | ``foss/2018a`` +``5.1.2`` | ``-METIS-5.1.0`` | ``foss/2018b`` +``5.1.2`` | ``-METIS-5.1.0`` | ``intel/2017b`` +``5.1.2`` | ``-ParMETIS-4.0.3`` | ``intel/2017b`` +``5.1.2`` | ``-METIS-5.1.0`` | ``intel/2018a`` +``5.1.2`` | ``-METIS-5.1.0`` | ``intel/2018b`` +``5.10.1`` | ``-METIS-5.1.0-CUDA-11.3.1`` | ``foss/2021a`` +``5.10.1`` | ``-METIS-5.1.0`` | ``foss/2021a`` +``5.10.1`` | ``-METIS-5.1.0`` | ``foss/2021b`` +``5.10.1`` | ``-METIS-5.1.0`` | ``intel/2021a`` +``5.10.1`` | ``-METIS-5.1.0`` | ``intel/2021b`` +``5.13.0`` | ``-METIS-5.1.0`` | ``foss/2022a`` +``5.13.0`` | ``-METIS-5.1.0`` | ``foss/2022b`` +``5.4.0`` | ``-METIS-5.1.0`` | ``foss/2019a`` +``5.4.0`` | ``-METIS-5.1.0`` | ``intel/2018b`` +``5.4.0`` | ``-METIS-5.1.0`` | ``intel/2019a`` +``5.6.0`` | ``-METIS-5.1.0`` | ``foss/2019b`` +``5.6.0`` | ``-METIS-5.1.0`` | ``intel/2019b`` +``5.7.1`` | ``-METIS-5.1.0`` | ``foss/2020a`` +``5.7.1`` | ``-METIS-5.1.0`` | ``intel/2020a`` +``5.8.1`` | ``-METIS-5.1.0`` | ``foss/2020b`` +``5.8.1`` | ``-METIS-5.1.0`` | ``intel/2020b`` +``7.1.0`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SunPy.md b/docs/version-specific/supported-software/s/SunPy.md new file mode 100644 index 000000000..81c553f05 --- /dev/null +++ b/docs/version-specific/supported-software/s/SunPy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SunPy + +The community-developed, free and open-source solar data analysis environment for Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.3`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SuperLU.md b/docs/version-specific/supported-software/s/SuperLU.md new file mode 100644 index 000000000..58992e981 --- /dev/null +++ b/docs/version-specific/supported-software/s/SuperLU.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# SuperLU + +SuperLU is a general purpose library for the direct solution of large, sparse, nonsymmetric systems of linear equations on high performance machines. + +*homepage*: + +version | toolchain +--------|---------- +``5.1.1`` | ``foss/2016a`` +``5.1.1`` | ``intel/2016a`` +``5.2.1`` | ``foss/2017b`` +``5.2.1`` | ``intel/2017b`` +``5.2.2`` | ``foss/2020a`` +``5.2.2`` | ``intel/2020a`` +``5.3.0`` | ``foss/2020b`` +``5.3.0`` | ``foss/2021a`` +``5.3.0`` | ``foss/2022a`` +``5.3.0`` | ``intel/2020b`` +``5.3.0`` | ``intel/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SuperLU_DIST.md b/docs/version-specific/supported-software/s/SuperLU_DIST.md new file mode 100644 index 000000000..362a16347 --- /dev/null +++ b/docs/version-specific/supported-software/s/SuperLU_DIST.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# SuperLU_DIST + +SuperLU is a general purpose library for the direct solution of large, sparse, nonsymmetric systems of linear equations on high performance machines. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.4.0`` | ``-trisolve-merge`` | ``intel/2020a`` +``6.4.0`` | | ``foss/2020a`` +``6.4.0`` | | ``intel/2020a`` +``8.1.0`` | | ``foss/2022a`` +``8.1.2`` | | ``foss/2022b`` +``8.1.2`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SyRI.md b/docs/version-specific/supported-software/s/SyRI.md new file mode 100644 index 000000000..8701c4980 --- /dev/null +++ b/docs/version-specific/supported-software/s/SyRI.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# SyRI + +Synteny and Rearrangement Identifier (SyRI). + +*homepage*: + +version | toolchain +--------|---------- +``1.4`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SymEngine-python.md b/docs/version-specific/supported-software/s/SymEngine-python.md new file mode 100644 index 000000000..58ef72e0d --- /dev/null +++ b/docs/version-specific/supported-software/s/SymEngine-python.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# SymEngine-python + +Python wrappers to the C++ library SymEngine, a fast C++ symbolic manipulation library. + +*homepage*: + +version | toolchain +--------|---------- +``0.11.0`` | ``gfbf/2023b`` +``0.7.2`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/SymEngine.md b/docs/version-specific/supported-software/s/SymEngine.md new file mode 100644 index 000000000..79a3cb2c6 --- /dev/null +++ b/docs/version-specific/supported-software/s/SymEngine.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# SymEngine + +SymEngine is a standalone fast C++ symbolic manipulation library + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.11.2`` | | ``gfbf/2023b`` +``0.3.0`` | ``-20181006`` | ``intel/2018a`` +``0.4.0`` | | ``GCC/8.2.0-2.31.1`` +``0.7.0`` | | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/Szip.md b/docs/version-specific/supported-software/s/Szip.md new file mode 100644 index 000000000..08969265c --- /dev/null +++ b/docs/version-specific/supported-software/s/Szip.md @@ -0,0 +1,44 @@ +--- +search: + boost: 0.5 +--- +# Szip + +Szip compression software, providing lossless compression of scientific data + +*homepage*: + +version | toolchain +--------|---------- +``2.1`` | ``GCC/4.8.1`` +``2.1`` | ``GCCcore/5.4.0`` +``2.1`` | ``foss/2016a`` +``2.1`` | ``foss/2016b`` +``2.1`` | ``foss/2017a`` +``2.1`` | ``gimkl/2.11.5`` +``2.1`` | ``gimkl/2017a`` +``2.1`` | ``gmpolf/2017.10`` +``2.1`` | ``intel/2016.02-GCC-4.9`` +``2.1`` | ``intel/2016a`` +``2.1`` | ``intel/2016b`` +``2.1`` | ``intel/2017.01`` +``2.1`` | ``intel/2017a`` +``2.1`` | ``iomkl/2016.07`` +``2.1`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``2.1.1`` | ``GCCcore/10.2.0`` +``2.1.1`` | ``GCCcore/10.3.0`` +``2.1.1`` | ``GCCcore/11.2.0`` +``2.1.1`` | ``GCCcore/11.3.0`` +``2.1.1`` | ``GCCcore/12.2.0`` +``2.1.1`` | ``GCCcore/12.3.0`` +``2.1.1`` | ``GCCcore/13.2.0`` +``2.1.1`` | ``GCCcore/6.3.0`` +``2.1.1`` | ``GCCcore/6.4.0`` +``2.1.1`` | ``GCCcore/7.3.0`` +``2.1.1`` | ``GCCcore/8.2.0`` +``2.1.1`` | ``GCCcore/8.3.0`` +``2.1.1`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/index.md b/docs/version-specific/supported-software/s/index.md new file mode 100644 index 000000000..ad8969841 --- /dev/null +++ b/docs/version-specific/supported-software/s/index.md @@ -0,0 +1,352 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (s) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - *s* - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [S-Lang](S-Lang.md) + * [s3fs](s3fs.md) + * [S4](S4.md) + * [Sabre](Sabre.md) + * [safestringlib](safestringlib.md) + * [Safetensors](Safetensors.md) + * [SAGE](SAGE.md) + * [Sailfish](Sailfish.md) + * [SALib](SALib.md) + * [Salmon](Salmon.md) + * [SALMON-TDDFT](SALMON-TDDFT.md) + * [Sambamba](Sambamba.md) + * [samblaster](samblaster.md) + * [Samcef](Samcef.md) + * [samclip](samclip.md) + * [samplot](samplot.md) + * [SAMtools](SAMtools.md) + * [sansa](sansa.md) + * [SAP](SAP.md) + * [SAS](SAS.md) + * [Satsuma2](Satsuma2.md) + * [savvy](savvy.md) + * [Saxon-HE](Saxon-HE.md) + * [SBCL](SBCL.md) + * [sbt](sbt.md) + * [ScaFaCoS](ScaFaCoS.md) + * [ScaLAPACK](ScaLAPACK.md) + * [Scalasca](Scalasca.md) + * [SCALCE](SCALCE.md) + * [Scalene](Scalene.md) + * [scanpy](scanpy.md) + * [scArches](scArches.md) + * [scCODA](scCODA.md) + * [sceasy](sceasy.md) + * [SCENIC](SCENIC.md) + * [scGeneFit](scGeneFit.md) + * [SCGid](SCGid.md) + * [scGSVA](scGSVA.md) + * [scHiCExplorer](scHiCExplorer.md) + * [Schrodinger](Schrodinger.md) + * [scib](scib.md) + * [scib-metrics](scib-metrics.md) + * [sciClone](sciClone.md) + * [ScientificPython](ScientificPython.md) + * [scikit-allel](scikit-allel.md) + * [scikit-bio](scikit-bio.md) + * [scikit-build](scikit-build.md) + * [scikit-build-core](scikit-build-core.md) + * [scikit-cuda](scikit-cuda.md) + * [scikit-extremes](scikit-extremes.md) + * [scikit-image](scikit-image.md) + * [scikit-learn](scikit-learn.md) + * [scikit-lego](scikit-lego.md) + * [scikit-misc](scikit-misc.md) + * [scikit-multilearn](scikit-multilearn.md) + * [scikit-optimize](scikit-optimize.md) + * [scikit-plot](scikit-plot.md) + * [scikit-uplift](scikit-uplift.md) + * [SCIP](SCIP.md) + * [SCIPhI](SCIPhI.md) + * [scipy](scipy.md) + * [SciPy-bundle](SciPy-bundle.md) + * [SciTools-Iris](SciTools-Iris.md) + * [SCnorm](SCnorm.md) + * [Scoary](Scoary.md) + * [SCons](SCons.md) + * [SCOOP](SCOOP.md) + * [SCopeLoomR](SCopeLoomR.md) + * [Score-P](Score-P.md) + * [SCOTCH](SCOTCH.md) + * [scp](scp.md) + * [scPred](scPred.md) + * [Scrappie](Scrappie.md) + * [SCReadCounts](SCReadCounts.md) + * [scrublet](scrublet.md) + * [scVelo](scVelo.md) + * [scvi-tools](scvi-tools.md) + * [Scythe](Scythe.md) + * [SDCC](SDCC.md) + * [SDL](SDL.md) + * [SDL2](SDL2.md) + * [SDL2_gfx](SDL2_gfx.md) + * [SDL2_image](SDL2_image.md) + * [SDL2_mixer](SDL2_mixer.md) + * [SDL2_ttf](SDL2_ttf.md) + * [SDL_image](SDL_image.md) + * [SDSL](SDSL.md) + * [Seaborn](Seaborn.md) + * [SEACells](SEACells.md) + * [SearchGUI](SearchGUI.md) + * [SeaView](SeaView.md) + * [SECAPR](SECAPR.md) + * [Seeder](Seeder.md) + * [segemehl](segemehl.md) + * [segment-anything](segment-anything.md) + * [segmentation-models](segmentation-models.md) + * [segmentation-models-pytorch](segmentation-models-pytorch.md) + * [SeisSol](SeisSol.md) + * [SelEstim](SelEstim.md) + * [SELFIES](SELFIES.md) + * [SemiBin](SemiBin.md) + * [semla](semla.md) + * [Sentence-Transformers](Sentence-Transformers.md) + * [SentencePiece](SentencePiece.md) + * [sentinelsat](sentinelsat.md) + * [sep](sep.md) + * [SEPP](SEPP.md) + * [Seq-Gen](Seq-Gen.md) + * [seq2HLA](seq2HLA.md) + * [SeqAn](SeqAn.md) + * [SeqAn3](SeqAn3.md) + * [SeqKit](SeqKit.md) + * [SeqLib](SeqLib.md) + * [Seqmagick](Seqmagick.md) + * [SeqPrep](SeqPrep.md) + * [seqtk](seqtk.md) + * [Serf](Serf.md) + * [setuptools](setuptools.md) + * [setuptools-rust](setuptools-rust.md) + * [Seurat](Seurat.md) + * [SeuratData](SeuratData.md) + * [SeuratDisk](SeuratDisk.md) + * [SeuratWrappers](SeuratWrappers.md) + * [sf](sf.md) + * [sfftk](sfftk.md) + * [Shannon](Shannon.md) + * [SHAP](SHAP.md) + * [shapAAR](shapAAR.md) + * [SHAPEIT](SHAPEIT.md) + * [SHAPEIT4](SHAPEIT4.md) + * [Shapely](Shapely.md) + * [sharutils](sharutils.md) + * [Shasta](Shasta.md) + * [ShengBTE](ShengBTE.md) + * [shift](shift.md) + * [SHORE](SHORE.md) + * [Short-Pair](Short-Pair.md) + * [shovill](shovill.md) + * [shrinkwrap](shrinkwrap.md) + * [SHTns](SHTns.md) + * [Sibelia](Sibelia.md) + * [SICER2](SICER2.md) + * [sickle](sickle.md) + * [Siesta](Siesta.md) + * [SignalP](SignalP.md) + * [silhouetteRank](silhouetteRank.md) + * [silx](silx.md) + * [simanneal](simanneal.md) + * [simint](simint.md) + * [SimNIBS](SimNIBS.md) + * [SimPEG](SimPEG.md) + * [SIMPLE](SIMPLE.md) + * [Simple-DFTD3](Simple-DFTD3.md) + * [SimpleElastix](SimpleElastix.md) + * [SimpleITK](SimpleITK.md) + * [simpy](simpy.md) + * [Simstrat](Simstrat.md) + * [SimVascular](SimVascular.md) + * [SingleM](SingleM.md) + * [Singular](Singular.md) + * [sinto](sinto.md) + * [SiNVICT](SiNVICT.md) + * [SIONlib](SIONlib.md) + * [SIP](SIP.md) + * [siscone](siscone.md) + * [SISSO](SISSO.md) + * [SISSO++](SISSO++.md) + * [SKESA](SKESA.md) + * [sketchmap](sketchmap.md) + * [skewer](skewer.md) + * [sklearn-pandas](sklearn-pandas.md) + * [sklearn-som](sklearn-som.md) + * [skorch](skorch.md) + * [sktime](sktime.md) + * [SlamDunk](SlamDunk.md) + * [SLATEC](SLATEC.md) + * [SLEPc](SLEPc.md) + * [slepc4py](slepc4py.md) + * [sleuth](sleuth.md) + * [slidingwindow](slidingwindow.md) + * [SLiM](SLiM.md) + * [slow5tools](slow5tools.md) + * [slurm-drmaa](slurm-drmaa.md) + * [smafa](smafa.md) + * [smallgenomeutilities](smallgenomeutilities.md) + * [SMAP](SMAP.md) + * [SMARTdenovo](SMARTdenovo.md) + * [SMC++](SMC++.md) + * [smfishHmrf](smfishHmrf.md) + * [smithwaterman](smithwaterman.md) + * [Smoldyn](Smoldyn.md) + * [smooth-topk](smooth-topk.md) + * [SMRT-Link](SMRT-Link.md) + * [SMV](SMV.md) + * [snakemake](snakemake.md) + * [SNAP](SNAP.md) + * [SNAP-ESA](SNAP-ESA.md) + * [SNAP-ESA-python](SNAP-ESA-python.md) + * [SNAP-HMM](SNAP-HMM.md) + * [SNAPE-pooled](SNAPE-pooled.md) + * [snaphu](snaphu.md) + * [snappy](snappy.md) + * [Sniffles](Sniffles.md) + * [snippy](snippy.md) + * [snp-sites](snp-sites.md) + * [snpEff](snpEff.md) + * [SNPhylo](SNPhylo.md) + * [SNPomatic](SNPomatic.md) + * [SOAPaligner](SOAPaligner.md) + * [SOAPdenovo-Trans](SOAPdenovo-Trans.md) + * [SOAPdenovo2](SOAPdenovo2.md) + * [SOAPfuse](SOAPfuse.md) + * [socat](socat.md) + * [SOCI](SOCI.md) + * [SolexaQA++](SolexaQA++.md) + * [solo](solo.md) + * [sonic](sonic.md) + * [SoPlex](SoPlex.md) + * [SoQt](SoQt.md) + * [SortMeRNA](SortMeRNA.md) + * [SoupX](SoupX.md) + * [SoX](SoX.md) + * [SoXt](SoXt.md) + * [SpaceRanger](SpaceRanger.md) + * [Spack](Spack.md) + * [spaCy](spaCy.md) + * [SPAdes](SPAdes.md) + * [spaln](spaln.md) + * [Spark](Spark.md) + * [sparse-neighbors-search](sparse-neighbors-search.md) + * [sparsehash](sparsehash.md) + * [SpatialDE](SpatialDE.md) + * [spatialreg](spatialreg.md) + * [spdlog](spdlog.md) + * [SpectrA](SpectrA.md) + * [spectral.methods](spectral.methods.md) + * [speech_tools](speech_tools.md) + * [SPEI](SPEI.md) + * [spektral](spektral.md) + * [spglib](spglib.md) + * [spglib-python](spglib-python.md) + * [Sphinx](Sphinx.md) + * [Sphinx-RTD-Theme](Sphinx-RTD-Theme.md) + * [SpiceyPy](SpiceyPy.md) + * [SpiecEasi](SpiecEasi.md) + * [SplAdder](SplAdder.md) + * [SPLASH](SPLASH.md) + * [SpliceMap](SpliceMap.md) + * [split-seq](split-seq.md) + * [splitRef](splitRef.md) + * [SPM](SPM.md) + * [spoa](spoa.md) + * [SPOOLES](SPOOLES.md) + * [SPOTPY](SPOTPY.md) + * [SPRNG](SPRNG.md) + * [Spyder](Spyder.md) + * [SQLAlchemy](SQLAlchemy.md) + * [SQLite](SQLite.md) + * [SqueezeMeta](SqueezeMeta.md) + * [Squidpy](Squidpy.md) + * [SRA-Toolkit](SRA-Toolkit.md) + * [sradownloader](sradownloader.md) + * [SRPRISM](SRPRISM.md) + * [SRST2](SRST2.md) + * [SSAHA2](SSAHA2.md) + * [SSN](SSN.md) + * [SSPACE_Basic](SSPACE_Basic.md) + * [SSW](SSW.md) + * [STACEY](STACEY.md) + * [Stack](Stack.md) + * [Stacks](Stacks.md) + * [STAMP](STAMP.md) + * [StaMPS](StaMPS.md) + * [Stampy](Stampy.md) + * [STAR](STAR.md) + * [STAR-CCM+](STAR-CCM+.md) + * [STAR-Fusion](STAR-Fusion.md) + * [stardist](stardist.md) + * [starparser](starparser.md) + * [stars](stars.md) + * [Stata](Stata.md) + * [Statistics-R](Statistics-R.md) + * [statsmodels](statsmodels.md) + * [STEAK](STEAK.md) + * [STIR](STIR.md) + * [stpipeline](stpipeline.md) + * [strace](strace.md) + * [Strainberry](Strainberry.md) + * [STREAM](STREAM.md) + * [strelka](strelka.md) + * [StringTie](StringTie.md) + * [stripy](stripy.md) + * [STRique](STRique.md) + * [Structure](Structure.md) + * [Structure_threader](Structure_threader.md) + * [STRUMPACK](STRUMPACK.md) + * [suave](suave.md) + * [SuAVE-biomat](SuAVE-biomat.md) + * [Subread](Subread.md) + * [subset-bam](subset-bam.md) + * [subunit](subunit.md) + * [Subversion](Subversion.md) + * [suds](suds.md) + * [SuiteSparse](SuiteSparse.md) + * [SUMACLUST](SUMACLUST.md) + * [SUMATRA](SUMATRA.md) + * [SUMO](SUMO.md) + * [SUNDIALS](SUNDIALS.md) + * [SunPy](SunPy.md) + * [SuperLU](SuperLU.md) + * [SuperLU_DIST](SuperLU_DIST.md) + * [supermagic](supermagic.md) + * [supernova](supernova.md) + * [SUPPA](SUPPA.md) + * [SURVIVOR](SURVIVOR.md) + * [SVclone](SVclone.md) + * [SVDetect](SVDetect.md) + * [SVDquest](SVDquest.md) + * [SVG](SVG.md) + * [SVIM](SVIM.md) + * [svist4get](svist4get.md) + * [swarm](swarm.md) + * [SWASH](SWASH.md) + * [SWAT+](SWAT+.md) + * [swifter](swifter.md) + * [SWIG](SWIG.md) + * [SWIPE](SWIPE.md) + * [swissknife](swissknife.md) + * [SymEngine](SymEngine.md) + * [SymEngine-python](SymEngine-python.md) + * [SYMMETRICA](SYMMETRICA.md) + * [SYMPHONY](SYMPHONY.md) + * [sympy](sympy.md) + * [synapseclient](synapseclient.md) + * [synthcity](synthcity.md) + * [SyRI](SyRI.md) + * [sysbench](sysbench.md) + * [Szip](Szip.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - *s* - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/s3fs.md b/docs/version-specific/supported-software/s/s3fs.md new file mode 100644 index 000000000..0ddc32e75 --- /dev/null +++ b/docs/version-specific/supported-software/s/s3fs.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# s3fs + +S3FS builds on aiobotocore to provide a convenient Python filesystem interface for S3.. + +*homepage*: + +version | toolchain +--------|---------- +``2023.12.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/safestringlib.md b/docs/version-specific/supported-software/s/safestringlib.md new file mode 100644 index 000000000..5719dcf78 --- /dev/null +++ b/docs/version-specific/supported-software/s/safestringlib.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# safestringlib + +The Secure Development Lifecycle (SDL) recommends banning certain C Library functions because they directly contribute to security vulnerabilities such as buffer overflows. However routines for the manipulation of strings and memory buffers are common in software and firmware, and are essential to accomplish certain programming tasks. Safer replacements for these functions that avoid or prevent serious security vulnerabilities (e.g. buffer overflows, string format attacks, conversion overflows/underflows, etc.) are available in the SafeString Library. + +*homepage*: + +version | toolchain +--------|---------- +``20240228`` | ``intel-compilers/2023.1.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/samblaster.md b/docs/version-specific/supported-software/s/samblaster.md new file mode 100644 index 000000000..dcaaf2f0f --- /dev/null +++ b/docs/version-specific/supported-software/s/samblaster.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# samblaster + +samblaster is a fast and flexible program for marking duplicates in read-id grouped1 paired-end SAM files. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.24`` | ``foss/2018b`` +``0.1.26`` | ``GCC/10.2.0`` +``0.1.26`` | ``GCC/10.3.0`` +``0.1.26`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/samclip.md b/docs/version-specific/supported-software/s/samclip.md new file mode 100644 index 000000000..bb4eaf44c --- /dev/null +++ b/docs/version-specific/supported-software/s/samclip.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# samclip + +Filter SAM file for soft and hard clipped alignments + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2`` | ``-Perl-5.28.0`` | ``GCCcore/7.3.0`` +``0.4.0`` | | ``GCCcore/10.2.0`` +``0.4.0`` | | ``GCCcore/11.2.0`` +``0.4.0`` | | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/samplot.md b/docs/version-specific/supported-software/s/samplot.md new file mode 100644 index 000000000..807203bb8 --- /dev/null +++ b/docs/version-specific/supported-software/s/samplot.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# samplot + +Plot structural variant signals from many BAMs and CRAMs. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.0`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/sansa.md b/docs/version-specific/supported-software/s/sansa.md new file mode 100644 index 000000000..deb6c5e1e --- /dev/null +++ b/docs/version-specific/supported-software/s/sansa.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# sansa + +Structural variant (SV) annotation, a companion to the 'dolly' tool. + +*homepage*: + +version | toolchain +--------|---------- +``0.0.7`` | ``gompi/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/savvy.md b/docs/version-specific/supported-software/s/savvy.md new file mode 100644 index 000000000..e99ab8abc --- /dev/null +++ b/docs/version-specific/supported-software/s/savvy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# savvy + +Interface to various variant calling formats. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.0`` | ``GCC/8.2.0-2.31.1`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/sbt.md b/docs/version-specific/supported-software/s/sbt.md new file mode 100644 index 000000000..fc836639f --- /dev/null +++ b/docs/version-specific/supported-software/s/sbt.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# sbt + +sbt is a build tool for Scala, Java, and more. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.2`` | ``-Java-1.8.0_152`` | ``system`` +``1.3.13`` | ``-Java-1.8`` | ``system`` +``1.3.13`` | ``-Java-8`` | ``system`` +``1.6.2`` | ``-Java-8`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scArches.md b/docs/version-specific/supported-software/s/scArches.md new file mode 100644 index 000000000..77284bcb6 --- /dev/null +++ b/docs/version-specific/supported-software/s/scArches.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# scArches + +Single-cell architecture surgery (scArches) is a package for reference-based analysis of single-cell data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.5.6`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``0.5.6`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scCODA.md b/docs/version-specific/supported-software/s/scCODA.md new file mode 100644 index 000000000..0a4bd6150 --- /dev/null +++ b/docs/version-specific/supported-software/s/scCODA.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# scCODA + +scCODA allows for identification of compositional changes in high-throughput sequencing count data, especially cell compositions from scRNA-seq. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.9`` | ``foss/2021a`` +``0.1.9`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scGSVA.md b/docs/version-specific/supported-software/s/scGSVA.md new file mode 100644 index 000000000..2592cde90 --- /dev/null +++ b/docs/version-specific/supported-software/s/scGSVA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# scGSVA + +scGSVA provides wrap functions to do GSVA analysis for single cell data. And scGSVA includes functions to build annotation for almost all species. scGSVA also provides function to generate figures based on the GSVA results. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.0.14`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scGeneFit.md b/docs/version-specific/supported-software/s/scGeneFit.md new file mode 100644 index 000000000..459b5d239 --- /dev/null +++ b/docs/version-specific/supported-software/s/scGeneFit.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# scGeneFit + +Python code for genetic marker selection using linear programming. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.2`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scHiCExplorer.md b/docs/version-specific/supported-software/s/scHiCExplorer.md new file mode 100644 index 000000000..047d3f3c0 --- /dev/null +++ b/docs/version-specific/supported-software/s/scHiCExplorer.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# scHiCExplorer + +The scHiCExplorer is a software to demultiplex, process, correct, normalize, manipulate, analyse and visualize single-cell Hi-C data. + +*homepage*: + +version | toolchain +--------|---------- +``7`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scPred.md b/docs/version-specific/supported-software/s/scPred.md new file mode 100644 index 000000000..8519059ae --- /dev/null +++ b/docs/version-specific/supported-software/s/scPred.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# scPred + +scPred package for cell type prediction from scRNA-seq data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.9.2`` | ``-R-4.1.2`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scVelo.md b/docs/version-specific/supported-software/s/scVelo.md new file mode 100644 index 000000000..565898c1c --- /dev/null +++ b/docs/version-specific/supported-software/s/scVelo.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# scVelo + +scVelo is a scalable toolkit for estimating and analyzing RNA velocities in single cells using dynamical modeling. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.24`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.2.3`` | | ``foss/2021a`` +``0.3.1`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scanpy.md b/docs/version-specific/supported-software/s/scanpy.md new file mode 100644 index 000000000..0354ff2ba --- /dev/null +++ b/docs/version-specific/supported-software/s/scanpy.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# scanpy + +Scanpy is a scalable toolkit for analyzing single-cell gene expression data built jointly with anndata. It includes preprocessing, visualization, clustering, trajectory inference and differential expression testing. The Python-based implementation efficiently deals with datasets of more than one million cells. + +*homepage*: + +version | toolchain +--------|---------- +``1.7.2`` | ``foss/2020b`` +``1.8.1`` | ``foss/2020b`` +``1.8.1`` | ``foss/2021a`` +``1.8.2`` | ``foss/2021b`` +``1.9.1`` | ``foss/2021b`` +``1.9.1`` | ``foss/2022a`` +``1.9.8`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/sceasy.md b/docs/version-specific/supported-software/s/sceasy.md new file mode 100644 index 000000000..0e3a6e4e0 --- /dev/null +++ b/docs/version-specific/supported-software/s/sceasy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# sceasy + +sceasy is a package that helps easy conversion of different single-cell data formats to each other + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.0.7`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/sciClone.md b/docs/version-specific/supported-software/s/sciClone.md new file mode 100644 index 000000000..2ce11223e --- /dev/null +++ b/docs/version-specific/supported-software/s/sciClone.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# sciClone + +An R package for inferring the subclonal architecture of tumors + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1`` | ``-R-3.5.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scib-metrics.md b/docs/version-specific/supported-software/s/scib-metrics.md new file mode 100644 index 000000000..47578a066 --- /dev/null +++ b/docs/version-specific/supported-software/s/scib-metrics.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# scib-metrics + +Accelerated and Python-only metrics for benchmarking single-cell integration outputs + +*homepage*: + +version | toolchain +--------|---------- +``0.3.3`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scib.md b/docs/version-specific/supported-software/s/scib.md new file mode 100644 index 000000000..527398334 --- /dev/null +++ b/docs/version-specific/supported-software/s/scib.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# scib + +Benchmarking atlas-level data integration in single-cell genomics. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``foss/2022a`` +``1.1.3`` | ``foss/2021a`` +``1.1.4`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scikit-allel.md b/docs/version-specific/supported-software/s/scikit-allel.md new file mode 100644 index 000000000..0ac2e77be --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-allel.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# scikit-allel + +This package provides utilities for exploratory analysis of large scale genetic variation data. It is based on numpy, scipy and other general-purpose Python scientific libraries. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.8`` | ``-Python-2.7.13`` | ``foss/2017a`` +``1.2.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.3.2`` | | ``foss/2020b`` +``1.3.3`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scikit-bio.md b/docs/version-specific/supported-software/s/scikit-bio.md new file mode 100644 index 000000000..d6d0f00af --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-bio.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# scikit-bio + +scikit-bio is an open-source, BSD-licensed Python 3 package providing data structures, algorithms and educational resources for bioinformatics. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.5.6`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.5.7`` | | ``foss/2020b`` +``0.5.7`` | | ``foss/2021a`` +``0.5.7`` | | ``foss/2021b`` +``0.5.7`` | | ``foss/2022a`` +``0.6.0`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scikit-build-core.md b/docs/version-specific/supported-software/s/scikit-build-core.md new file mode 100644 index 000000000..9e3681890 --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-build-core.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# scikit-build-core + +Scikit-build-core is a complete ground-up rewrite of scikit-build on top of modern packaging APIs. It provides a bridge between CMake and the Python build system, allowing you to make Python modules with CMake. + +*homepage*: + +version | toolchain +--------|---------- +``0.5.0`` | ``GCCcore/12.3.0`` +``0.9.3`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scikit-build.md b/docs/version-specific/supported-software/s/scikit-build.md new file mode 100644 index 000000000..02036a816 --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-build.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# scikit-build + +Scikit-Build, or skbuild, is an improved build system generator for CPython C/C++/Fortran/Cython extensions. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.10.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.10.0`` | ``-Python-3.8.2`` | ``fosscuda/2020a`` +``0.10.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``0.11.1`` | | ``GCCcore/10.3.0`` +``0.11.1`` | | ``GCCcore/11.2.0`` +``0.11.1`` | | ``foss/2020b`` +``0.11.1`` | | ``fosscuda/2020b`` +``0.11.1`` | | ``intel/2020b`` +``0.11.1`` | | ``intelcuda/2020b`` +``0.15.0`` | | ``GCCcore/10.2.0`` +``0.15.0`` | | ``GCCcore/10.3.0`` +``0.15.0`` | | ``GCCcore/11.2.0`` +``0.15.0`` | | ``GCCcore/11.3.0`` +``0.17.2`` | | ``GCCcore/12.2.0`` +``0.17.6`` | | ``GCCcore/12.3.0`` +``0.17.6`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scikit-cuda.md b/docs/version-specific/supported-software/s/scikit-cuda.md new file mode 100644 index 000000000..e0cfefcbd --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-cuda.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# scikit-cuda + +SciKit-cuda, a.k.a. skcuda, provides Python interfaces to many of the functions in the CUDA device/runtime, CUBLAS, CUFFT, and CUSOLVER libraries distributed as part of NVIDIA's CUDA Programming Toolkit. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.5.3`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scikit-extremes.md b/docs/version-specific/supported-software/s/scikit-extremes.md new file mode 100644 index 000000000..37e00b570 --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-extremes.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# scikit-extremes + +scikit-extremes is a basic statistical package to perform univariate extreme value calculations using Python + +*homepage*: + +version | toolchain +--------|---------- +``2022.4.10`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scikit-image.md b/docs/version-specific/supported-software/s/scikit-image.md new file mode 100644 index 000000000..d4c74ee20 --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-image.md @@ -0,0 +1,44 @@ +--- +search: + boost: 0.5 +--- +# scikit-image + +scikit-image is a collection of algorithms for image processing. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.12.3`` | ``-Python-2.7.11`` | ``foss/2016a`` +``0.12.3`` | ``-Python-3.5.2`` | ``foss/2016b`` +``0.12.3`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.12.3`` | ``-Python-3.5.2`` | ``intel/2016b`` +``0.13.0`` | ``-Python-3.6.3`` | ``foss/2017b`` +``0.13.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``0.13.0`` | ``-Python-3.6.1`` | ``intel/2017a`` +``0.13.1`` | ``-Python-3.6.3`` | ``foss/2017b`` +``0.13.1`` | ``-Python-3.6.4`` | ``foss/2018a`` +``0.13.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.14.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``0.14.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.14.1`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``0.14.1`` | ``-Python-3.6.6`` | ``intel/2018b`` +``0.15.0`` | ``-Python-3.7.2`` | ``foss/2019a`` +``0.16.2`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.16.2`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``0.16.2`` | ``-Python-3.7.4`` | ``intel/2019b`` +``0.17.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.18.1`` | | ``foss/2020b`` +``0.18.1`` | | ``fosscuda/2020b`` +``0.18.1`` | | ``intel/2020b`` +``0.18.1`` | | ``intelcuda/2020b`` +``0.18.3`` | | ``foss/2021a`` +``0.19.1`` | | ``foss/2021b`` +``0.19.3`` | | ``foss/2022a`` +``0.21.0`` | | ``foss/2022b`` +``0.22.0`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scikit-learn.md b/docs/version-specific/supported-software/s/scikit-learn.md new file mode 100644 index 000000000..4c1f80cc5 --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-learn.md @@ -0,0 +1,81 @@ +--- +search: + boost: 0.5 +--- +# scikit-learn + +Scikit-learn integrates machine learning algorithms in the tightly-knit scientific Python world, building upon numpy, scipy, and matplotlib. As a machine-learning module, it provides versatile tools for data mining and analysis in any field of science and engineering. It strives to be simple and efficient, accessible to everybody, and reusable in various contexts. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.16.1`` | ``-Python-2.7.13`` | ``foss/2017a`` +``0.17.1`` | ``-Python-2.7.11`` | ``foss/2016a`` +``0.17.1`` | ``-Python-3.5.1`` | ``foss/2016a`` +``0.17.1`` | ``-Python-2.7.11-freetype-2.6.3`` | ``intel/2016a`` +``0.17.1`` | ``-Python-2.7.11`` | ``intel/2016a`` +``0.17.1`` | ``-Python-3.5.1`` | ``intel/2016a`` +``0.17.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.18`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.18`` | ``-Python-3.5.2`` | ``intel/2016b`` +``0.18.1`` | ``-Python-2.7.12`` | ``foss/2016b`` +``0.18.1`` | ``-Python-3.5.2`` | ``foss/2016b`` +``0.18.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.18.1`` | ``-Python-3.5.2`` | ``intel/2016b`` +``0.18.1`` | ``-Python-2.7.13`` | ``intel/2017a`` +``0.18.1`` | ``-Python-3.6.1`` | ``intel/2017a`` +``0.18.2`` | ``-Python-3.6.1`` | ``intel/2017a`` +``0.19.0`` | ``-Python-3.6.1`` | ``intel/2017a`` +``0.19.1`` | ``-Python-2.7.13`` | ``foss/2017a`` +``0.19.1`` | ``-Python-2.7.14`` | ``foss/2017b`` +``0.19.1`` | ``-Python-3.6.3`` | ``foss/2017b`` +``0.19.1`` | ``-Python-3.6.4`` | ``foss/2018a`` +``0.19.1`` | ``-Python-2.7.14`` | ``fosscuda/2017b`` +``0.19.1`` | ``-Python-3.6.3`` | ``fosscuda/2017b`` +``0.19.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.19.1`` | ``-Python-3.6.3`` | ``intel/2017b`` +``0.19.1`` | ``-Python-3.6.4`` | ``intel/2018a`` +``0.19.1`` | ``-Python-2.7.14`` | ``intelcuda/2017b`` +``0.19.1`` | ``-Python-3.6.3`` | ``intelcuda/2017b`` +``0.20.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``0.20.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.20.0`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``0.20.0`` | ``-Python-2.7.15`` | ``intel/2018b`` +``0.20.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``0.20.2`` | ``-Python-2.7.15`` | ``foss/2018b`` +``0.20.2`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.20.3`` | | ``foss/2019a`` +``0.20.3`` | | ``fosscuda/2019a`` +``0.20.3`` | | ``intel/2019a`` +``0.20.4`` | ``-Python-2.7.18`` | ``foss/2020b`` +``0.20.4`` | ``-Python-2.7.18`` | ``foss/2021b`` +``0.20.4`` | ``-Python-2.7.16`` | ``intel/2019b`` +``0.21.3`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.21.3`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``0.21.3`` | ``-Python-3.7.4`` | ``intel/2019b`` +``0.23.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.23.1`` | ``-Python-3.8.2`` | ``fosscuda/2020a`` +``0.23.1`` | ``-Python-3.8.2`` | ``intel/2020a`` +``0.23.1`` | ``-Python-3.8.2`` | ``intelcuda/2020a`` +``0.23.2`` | | ``foss/2020b`` +``0.23.2`` | | ``fosscuda/2020b`` +``0.23.2`` | | ``intel/2020b`` +``0.23.2`` | | ``intelcuda/2020b`` +``0.24.2`` | | ``foss/2021a`` +``0.24.2`` | | ``intel/2021a`` +``1.0.1`` | | ``foss/2021b`` +``1.0.1`` | | ``intel/2021b`` +``1.0.2`` | | ``foss/2021b`` +``1.1.2`` | | ``foss/2022a`` +``1.1.2`` | | ``intel/2022a`` +``1.2.1`` | | ``gfbf/2022b`` +``1.3.1`` | | ``gfbf/2023a`` +``1.3.1`` | | ``iimkl/2023a`` +``1.3.2`` | | ``gfbf/2023b`` +``1.4.0`` | | ``gfbf/2023b`` +``1.4.2`` | | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scikit-lego.md b/docs/version-specific/supported-software/s/scikit-lego.md new file mode 100644 index 000000000..d2331aed2 --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-lego.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# scikit-lego + +We love scikit learn but very often we find ourselves writing custom transformers, metrics and models. The goal of this project is to attempt to consolidate these into a package that offers code quality/testing. + +*homepage*: + +version | toolchain +--------|---------- +``0.6.16`` | ``foss/2022a`` +``0.7.4`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scikit-misc.md b/docs/version-specific/supported-software/s/scikit-misc.md new file mode 100644 index 000000000..b508bb357 --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-misc.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# scikit-misc + +Miscellaneous tools for data analysis and scientific computing + +*homepage*: + +version | toolchain +--------|---------- +``0.1.4`` | ``foss/2021a`` +``0.1.4`` | ``foss/2022a`` +``0.3.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scikit-multilearn.md b/docs/version-specific/supported-software/s/scikit-multilearn.md new file mode 100644 index 000000000..de31381cf --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-multilearn.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# scikit-multilearn + +Scikit-multilearn is a BSD-licensed library for multi-label classification that is built on top of the well-known scikit-learn ecosystem. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.0`` | ``-Python-3.6.6`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scikit-optimize.md b/docs/version-specific/supported-software/s/scikit-optimize.md new file mode 100644 index 000000000..6fbe67ba4 --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-optimize.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# scikit-optimize + +Scikit-Optimize, or skopt, is a simple and efficient library to minimize (very) expensive and noisy black-box functions. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.5.2`` | ``-Python-3.6.6`` | ``intel/2018b`` +``0.7.4`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.8.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.9.0`` | | ``foss/2021a`` +``0.9.0`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scikit-plot.md b/docs/version-specific/supported-software/s/scikit-plot.md new file mode 100644 index 000000000..782af8176 --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-plot.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# scikit-plot + +Scikit-plot is the result of an unartistic data scientist's dreadful realization that *visualization is one of the most crucial components in the data science process, not just a mere afterthought*. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.7`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scikit-uplift.md b/docs/version-specific/supported-software/s/scikit-uplift.md new file mode 100644 index 000000000..642fb84a7 --- /dev/null +++ b/docs/version-specific/supported-software/s/scikit-uplift.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# scikit-uplift + +scikit-uplift is a Python module for classic approaches for uplift modeling built on top of scikit-learn. Uplift prediction aims to estimate the causal impact of a treatment at the individual level. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.0`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scipy.md b/docs/version-specific/supported-software/s/scipy.md new file mode 100644 index 000000000..ce7107cd7 --- /dev/null +++ b/docs/version-specific/supported-software/s/scipy.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# scipy + +SciPy is a collection of mathematical algorithms and convenience functions built on the Numpy extension for Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.16.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.17.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``0.19.0`` | ``-Python-3.5.2`` | ``intel/2016b`` +``1.4.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.4.1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scp.md b/docs/version-specific/supported-software/s/scp.md new file mode 100644 index 000000000..98c72adaf --- /dev/null +++ b/docs/version-specific/supported-software/s/scp.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# scp + +The scp.py module uses a paramiko transport to send and recieve files via the scp1 protocol. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.2`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.13.1`` | ``-Python-2.7.15`` | ``intel/2018b`` +``0.13.2`` | ``-Python-2.7.15`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scrublet.md b/docs/version-specific/supported-software/s/scrublet.md new file mode 100644 index 000000000..91529dec5 --- /dev/null +++ b/docs/version-specific/supported-software/s/scrublet.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# scrublet + +Single-Cell Remover of Doublets - Python code for identifying doublets in single-cell RNA-seq data + +*homepage*: + +version | toolchain +--------|---------- +``0.2.3`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/scvi-tools.md b/docs/version-specific/supported-software/s/scvi-tools.md new file mode 100644 index 000000000..c5ea454c9 --- /dev/null +++ b/docs/version-specific/supported-software/s/scvi-tools.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# scvi-tools + +scvi-tools (single-cell variational inference tools) is a package for probabilistic modeling and analysis of single-cell omics data, built on top of PyTorch and AnnData. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.16.4`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``0.16.4`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/segemehl.md b/docs/version-specific/supported-software/s/segemehl.md new file mode 100644 index 000000000..83d439f3f --- /dev/null +++ b/docs/version-specific/supported-software/s/segemehl.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# segemehl + +segemehl is a software to map short sequencer reads to reference genomes. Unlike other methods, segemehl is able to detect not only mismatches but also insertions and deletions. Furthermore, segemehl is not limited to a specific read length and is able to mapprimer- or polyadenylation contaminated reads correctly. segemehl implements a matching strategy based on enhanced suffix arrays (ESA). Segemehl now supports the SAM format, reads gziped queries to save both disk and memory space and allows bisulfite sequencing mapping and split read mapping. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.0`` | ``foss/2016b`` +``0.2.0`` | ``intel/2017b`` +``0.2.0`` | ``intel/2018a`` +``0.3.4`` | ``GCC/10.2.0`` +``0.3.4`` | ``GCC/10.3.0`` +``0.3.4`` | ``GCC/11.2.0`` +``0.3.4`` | ``GCC/8.3.0`` +``0.3.4`` | ``foss/2018b`` +``0.3.4`` | ``iccifort/2020.4.304`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/segment-anything.md b/docs/version-specific/supported-software/s/segment-anything.md new file mode 100644 index 000000000..c539e5311 --- /dev/null +++ b/docs/version-specific/supported-software/s/segment-anything.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# segment-anything + +The Segment Anything Model (SAM) produces high quality object masks from input prompts such as points or boxes, and it can be used to generate masks for all objects in an image. It has been trained on a dataset of 11 million images and 1.1 billion masks, and has strong zero-shot performance on a variety of segmentation tasks. + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/segmentation-models-pytorch.md b/docs/version-specific/supported-software/s/segmentation-models-pytorch.md new file mode 100644 index 000000000..8aebe12d9 --- /dev/null +++ b/docs/version-specific/supported-software/s/segmentation-models-pytorch.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# segmentation-models-pytorch + +Python library with Neural Networks for Image Segmentation based on PyTorch. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.3`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.3.3`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/segmentation-models.md b/docs/version-specific/supported-software/s/segmentation-models.md new file mode 100644 index 000000000..86f1b3223 --- /dev/null +++ b/docs/version-specific/supported-software/s/segmentation-models.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# segmentation-models + +Python library with Neural Networks for Image Segmentation based on Keras and TensorFlow. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.0.1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/semla.md b/docs/version-specific/supported-software/s/semla.md new file mode 100644 index 000000000..7566eaaa5 --- /dev/null +++ b/docs/version-specific/supported-software/s/semla.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# semla + +R interface to the Apache Arrow C++ library + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.6`` | ``-R-4.3.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/sentinelsat.md b/docs/version-specific/supported-software/s/sentinelsat.md new file mode 100644 index 000000000..a42017b19 --- /dev/null +++ b/docs/version-specific/supported-software/s/sentinelsat.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# sentinelsat + +Sentinelsat makes searching, downloading and retrieving the metadata of Sentinel satellite images from the Copernicus Open Access Hub easy. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.1`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/sep.md b/docs/version-specific/supported-software/s/sep.md new file mode 100644 index 000000000..52cdea7ab --- /dev/null +++ b/docs/version-specific/supported-software/s/sep.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# sep + +Python and C library for Source Extraction and Photometry. (this easyconfig provides python library only) + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.3`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.0.3`` | ``-Python-2.7.15`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/seq2HLA.md b/docs/version-specific/supported-software/s/seq2HLA.md new file mode 100644 index 000000000..a1c29c3c5 --- /dev/null +++ b/docs/version-specific/supported-software/s/seq2HLA.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# seq2HLA + +In-silico method written in Python and R to determine HLA genotypes of a sample. seq2HLA takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie index comprising all HLA alleles and outputs the most likely HLA class I and class II genotypes (in 4 digit resolution), a p-value for each call, and the expression of each class. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.3`` | ``-Python-2.7.15`` | ``foss/2018b`` +``2.3`` | ``-Python-2.7.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/seqtk.md b/docs/version-specific/supported-software/s/seqtk.md new file mode 100644 index 000000000..b14474b13 --- /dev/null +++ b/docs/version-specific/supported-software/s/seqtk.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# seqtk + +Seqtk is a fast and lightweight tool for processing sequences in the FASTA or FASTQ format. It seamlessly parses both FASTA and FASTQ files which can also be optionally compressed by gzip. + +*homepage*: + +version | toolchain +--------|---------- +``1.2`` | ``foss/2016b`` +``1.2`` | ``intel/2017a`` +``1.3`` | ``GCC/10.2.0`` +``1.3`` | ``GCC/10.3.0`` +``1.3`` | ``GCC/11.2.0`` +``1.3`` | ``GCC/11.3.0`` +``1.3`` | ``GCC/8.2.0-2.31.1`` +``1.3`` | ``GCC/8.3.0`` +``1.3`` | ``GCC/9.3.0`` +``1.3`` | ``foss/2018a`` +``1.3`` | ``foss/2018b`` +``1.4`` | ``GCC/12.2.0`` +``1.4`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/setuptools-rust.md b/docs/version-specific/supported-software/s/setuptools-rust.md new file mode 100644 index 000000000..77bfe51c4 --- /dev/null +++ b/docs/version-specific/supported-software/s/setuptools-rust.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# setuptools-rust + +setuptools-rust is a plugin for setuptools to build Rust Python extensions implemented with PyO3 or rust-cpython. + +*homepage*: + +version | toolchain +--------|---------- +``1.6.0`` | ``GCCcore/12.3.0`` +``1.8.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/setuptools.md b/docs/version-specific/supported-software/s/setuptools.md new file mode 100644 index 000000000..d8a2fc7c1 --- /dev/null +++ b/docs/version-specific/supported-software/s/setuptools.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# setuptools + +Download, build, install, upgrade, and uninstall Python packages -- easily! + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4.2`` | | ``system`` +``41.0.1`` | ``-py3`` | ``system`` +``64.0.3`` | | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/sf.md b/docs/version-specific/supported-software/s/sf.md new file mode 100644 index 000000000..521fc2892 --- /dev/null +++ b/docs/version-specific/supported-software/s/sf.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# sf + +Support for simple features, a standardized way to encode spatial vector data. Binds to GDAL for reading and writing data, to GEOS for geometrical operations, and to PROJ for projection conversions and datum transformations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.9-5`` | ``-R-4.0.0-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/sfftk.md b/docs/version-specific/supported-software/s/sfftk.md new file mode 100644 index 000000000..42e3bf531 --- /dev/null +++ b/docs/version-specific/supported-software/s/sfftk.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# sfftk + +sfftk is a set of utilities that facilitate creation, conversion and modification of Electron Microscopy Data Bank - Segmentation File Format (EMDB-SFF) files. EMDB-SFF is an open, community-driven file format to handle annotated segmentations and subtomogram averages that facilitates segmentation file interchange. It is written in Python and provides both a command-line suite of commands and a Python API. + +*homepage*: + +version | toolchain +--------|---------- +``0.7.4`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/shapAAR.md b/docs/version-specific/supported-software/s/shapAAR.md new file mode 100644 index 000000000..5e1b81d23 --- /dev/null +++ b/docs/version-specific/supported-software/s/shapAAR.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# shapAAR + +An R package for the extraction, analysis and classification of (not only) archaeological objects from scanned images. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.0-20180425`` | ``-R-3.6.0`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/sharutils.md b/docs/version-specific/supported-software/s/sharutils.md new file mode 100644 index 000000000..3e65cac1f --- /dev/null +++ b/docs/version-specific/supported-software/s/sharutils.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# sharutils + +GNU shar makes so-called shell archives out of many files, preparing them for transmission by electronic mail services, while unshar helps unpacking shell archives after reception. + +*homepage*: + +version | toolchain +--------|---------- +``4.15`` | ``GCCcore/6.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/shift.md b/docs/version-specific/supported-software/s/shift.md new file mode 100644 index 000000000..38869330f --- /dev/null +++ b/docs/version-specific/supported-software/s/shift.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# shift + +Shift is a framework for Self-Healing Independent File Transfer that provides high performance and resilience for local and remote transfers through a variety of techniques. + +*homepage*: + +version | toolchain +--------|---------- +``4.0`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/shovill.md b/docs/version-specific/supported-software/s/shovill.md new file mode 100644 index 000000000..9d2dd9800 --- /dev/null +++ b/docs/version-specific/supported-software/s/shovill.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# shovill + +Faster SPAdes assembly of Illumina reads + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.9.0`` | ``-Python-2.7.14`` | ``foss/2018a`` +``1.0.4`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.1.0`` | | ``gompi/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/shrinkwrap.md b/docs/version-specific/supported-software/s/shrinkwrap.md new file mode 100644 index 000000000..53c1dc254 --- /dev/null +++ b/docs/version-specific/supported-software/s/shrinkwrap.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# shrinkwrap + +A std::streambuf wrapper for compression formats. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0-beta`` | ``GCCcore/8.2.0`` +``1.1.0`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/sickle.md b/docs/version-specific/supported-software/s/sickle.md new file mode 100644 index 000000000..262333724 --- /dev/null +++ b/docs/version-specific/supported-software/s/sickle.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# sickle + +Windowed Adaptive Trimming for fastq files using quality + +*homepage*: + +version | toolchain +--------|---------- +``1.33`` | ``foss/2017a`` +``1.33`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/silhouetteRank.md b/docs/version-specific/supported-software/s/silhouetteRank.md new file mode 100644 index 000000000..3b7388f53 --- /dev/null +++ b/docs/version-specific/supported-software/s/silhouetteRank.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# silhouetteRank + +silhouetteRank is a tool for finding spatially variable genes based on computing silhouette coefficient from binarized spatial gene expression data + +*homepage*: + +version | toolchain +--------|---------- +``1.0.5.13`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/silx.md b/docs/version-specific/supported-software/s/silx.md new file mode 100644 index 000000000..d3791ea9e --- /dev/null +++ b/docs/version-specific/supported-software/s/silx.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# silx + +The silx project provides a collection of Python packages to support the development of data assessment, reduction and analysis applications at synchrotron radiation facilities. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.13.2`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.13.2`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``0.14.0`` | | ``foss/2020b`` +``0.14.0`` | | ``fosscuda/2020b`` +``1.0.0`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/simanneal.md b/docs/version-specific/supported-software/s/simanneal.md new file mode 100644 index 000000000..9e4c034ad --- /dev/null +++ b/docs/version-specific/supported-software/s/simanneal.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# simanneal + +This module performs simulated annealing optimization to find the optimal state of a system. It is inspired by the metallurgic process of annealing whereby metals must be cooled at a regular schedule in order to settle into their lowest energy state. + +*homepage*: + +version | toolchain +--------|---------- +``0.5.0`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/simint.md b/docs/version-specific/supported-software/s/simint.md new file mode 100644 index 000000000..9294c7069 --- /dev/null +++ b/docs/version-specific/supported-software/s/simint.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# simint + +Simint is a vectorized implementation of the Obara-Saika (OS) method of calculating electron repulsion integrals. Speedup is gained by vectorizing the primitive loop of the OS algorithm, with additional vectorization and optimizations left to the compiler. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7`` | ``-lmax-5-vec-avx-psi4`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/simpy.md b/docs/version-specific/supported-software/s/simpy.md new file mode 100644 index 000000000..8f8a371ad --- /dev/null +++ b/docs/version-specific/supported-software/s/simpy.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# simpy + +SimPy is a process-based discrete-event simulation framework based on standard Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.11`` | ``-Python-3.6.6`` | ``intel/2018b`` +``3.0.11`` | | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/sinto.md b/docs/version-specific/supported-software/s/sinto.md new file mode 100644 index 000000000..01e9915b9 --- /dev/null +++ b/docs/version-specific/supported-software/s/sinto.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# sinto + +Sinto is a toolkit for processing aligned single-cell data. + +*homepage*: + +version | toolchain +--------|---------- +``0.7.4`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/siscone.md b/docs/version-specific/supported-software/s/siscone.md new file mode 100644 index 000000000..b6837f585 --- /dev/null +++ b/docs/version-specific/supported-software/s/siscone.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# siscone + +Hadron Seedless Infrared-Safe Cone jet algorithm + +*homepage*: + +version | toolchain +--------|---------- +``3.0.5`` | ``GCCcore/11.3.0`` +``3.0.6`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/sketchmap.md b/docs/version-specific/supported-software/s/sketchmap.md new file mode 100644 index 000000000..26803b108 --- /dev/null +++ b/docs/version-specific/supported-software/s/sketchmap.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# sketchmap + +Sketch-map is a dimensionality reduction algorithm that is particularly well suited to examining the high-dimensionality data that is routinely produced in atomistic simulations. + +*homepage*: + +version | toolchain +--------|---------- +``20170130`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/skewer.md b/docs/version-specific/supported-software/s/skewer.md new file mode 100644 index 000000000..c0ba2df5a --- /dev/null +++ b/docs/version-specific/supported-software/s/skewer.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# skewer + +skewer implements the bit-masked k-difference matching algorithm dedicated to the task of adapter trimming and it is specially designed for processing next-generation sequencing (NGS) paired-end sequences. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.2`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/sklearn-pandas.md b/docs/version-specific/supported-software/s/sklearn-pandas.md new file mode 100644 index 000000000..a458f15cc --- /dev/null +++ b/docs/version-specific/supported-software/s/sklearn-pandas.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# sklearn-pandas + +This module provides a bridge between Scikit-Learn's machine learning methods and pandas-style Data Frames. In particular, it provides a way to map DataFrame columns to transformations, which are later recombined into features. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.0`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/sklearn-som.md b/docs/version-specific/supported-software/s/sklearn-som.md new file mode 100644 index 000000000..6ea3cd335 --- /dev/null +++ b/docs/version-specific/supported-software/s/sklearn-som.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# sklearn-som + +A simple, planar self-organizing map with methods similar to clustering methods in Scikit Learn. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/skorch.md b/docs/version-specific/supported-software/s/skorch.md new file mode 100644 index 000000000..b649950d0 --- /dev/null +++ b/docs/version-specific/supported-software/s/skorch.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# skorch + +A scikit-learn compatible neural network library that wraps PyTorch. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.11.0`` | ``-PyTorch-1.10.0-CUDA-11.3.1`` | ``foss/2021a`` +``0.11.0`` | ``-PyTorch-1.10.0`` | ``foss/2021a`` +``0.15.0`` | ``-PyTorch-2.1.2-CUDA-12.1.1`` | ``foss/2023a`` +``0.15.0`` | ``-PyTorch-2.1.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/sktime.md b/docs/version-specific/supported-software/s/sktime.md new file mode 100644 index 000000000..445744e39 --- /dev/null +++ b/docs/version-specific/supported-software/s/sktime.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# sktime + +sktime is a library for time series analysis in Python. It provides a unified interface for multiple time series learning tasks. Currently, this includes time series classification, regression, clustering, annotation, and forecasting. It comes with time series algorithms and scikit-learn compatible tools to build, tune and validate time series models. + +*homepage*: + +version | toolchain +--------|---------- +``0.25.0`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/slepc4py.md b/docs/version-specific/supported-software/s/slepc4py.md new file mode 100644 index 000000000..204554d7e --- /dev/null +++ b/docs/version-specific/supported-software/s/slepc4py.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# slepc4py + +Python bindings for SLEPc, the Scalable Library for Eigenvalue Problem Computations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.12.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``3.15.1`` | | ``foss/2021a`` +``3.9.0`` | ``-Python-3.6.4`` | ``foss/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/sleuth.md b/docs/version-specific/supported-software/s/sleuth.md new file mode 100644 index 000000000..d4375274e --- /dev/null +++ b/docs/version-specific/supported-software/s/sleuth.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# sleuth + +Investigate RNA-Seq transcript abundance from kallisto and perform differential expression analysis. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.29.0`` | ``-R-3.4.0`` | ``intel/2017a`` +``0.30.0`` | ``-R-3.5.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/slidingwindow.md b/docs/version-specific/supported-software/s/slidingwindow.md new file mode 100644 index 000000000..128c3ecde --- /dev/null +++ b/docs/version-specific/supported-software/s/slidingwindow.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# slidingwindow + +slidingwindow is a simple little Python library for computing a set of windows into a larger dataset, designed for use with image-processing algorithms that utilise a sliding window to break the processing up into a series of smaller chunks. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.0.13`` | ``-Python-2.7.15`` | ``intel/2018b`` +``0.0.13`` | ``-Python-3.6.6`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/slow5tools.md b/docs/version-specific/supported-software/s/slow5tools.md new file mode 100644 index 000000000..875e5cd66 --- /dev/null +++ b/docs/version-specific/supported-software/s/slow5tools.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# slow5tools + +slow5tools is a toolkit for converting (FAST5 <-> SLOW5), compressing, viewing, indexing and manipulating data in SLOW5 format. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.0`` | ``gompi/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/slurm-drmaa.md b/docs/version-specific/supported-software/s/slurm-drmaa.md new file mode 100644 index 000000000..6bb7e17a8 --- /dev/null +++ b/docs/version-specific/supported-software/s/slurm-drmaa.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# slurm-drmaa + +DRMAA for Slurm Workload Manager (Slurm) is an implementation of Open Grid Forum Distributed Resource Management Application API (DRMAA) version 1 for submission and control of jobs to Slurm. Using DRMAA, grid applications builders, portal developers and ISVs can use the same high-level API to link their software with different cluster/resource management systems. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.3`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/smafa.md b/docs/version-specific/supported-software/s/smafa.md new file mode 100644 index 000000000..267c77b77 --- /dev/null +++ b/docs/version-specific/supported-software/s/smafa.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# smafa + +Smafa attempts to align or cluster pre-aligned biological sequences, handling sequences which are all the same length. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.0`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/smallgenomeutilities.md b/docs/version-specific/supported-software/s/smallgenomeutilities.md new file mode 100644 index 000000000..32f8e32c7 --- /dev/null +++ b/docs/version-specific/supported-software/s/smallgenomeutilities.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# smallgenomeutilities + +The smallgenomeutilities are a collection of scripts that is useful for dealing and manipulating NGS data of small viral genomes. They are written in Python 3 with a small number of dependencies. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.1`` | ``-Python-3.6.6`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/smfishHmrf.md b/docs/version-specific/supported-software/s/smfishHmrf.md new file mode 100644 index 000000000..015553acc --- /dev/null +++ b/docs/version-specific/supported-software/s/smfishHmrf.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# smfishHmrf + +smFish spatial pattern mining and cell type prediction + +*homepage*: + +version | toolchain +--------|---------- +``1.3.3`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/smithwaterman.md b/docs/version-specific/supported-software/s/smithwaterman.md new file mode 100644 index 000000000..697f80ee9 --- /dev/null +++ b/docs/version-specific/supported-software/s/smithwaterman.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# smithwaterman + +smith-waterman-gotoh alignment algorithm. + +*homepage*: + +version | toolchain +--------|---------- +``20160702`` | ``GCCcore/10.2.0`` +``20160702`` | ``GCCcore/10.3.0`` +``20160702`` | ``GCCcore/11.2.0`` +``20160702`` | ``GCCcore/11.3.0`` +``20160702`` | ``GCCcore/12.3.0`` +``20160702`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/smooth-topk.md b/docs/version-specific/supported-software/s/smooth-topk.md new file mode 100644 index 000000000..7f5330057 --- /dev/null +++ b/docs/version-specific/supported-software/s/smooth-topk.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# smooth-topk + +Smooth Loss Functions for Deep Top-k Classification + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0-20210817`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``1.0-20210817`` | | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/snakemake.md b/docs/version-specific/supported-software/s/snakemake.md new file mode 100644 index 000000000..56cf98f6a --- /dev/null +++ b/docs/version-specific/supported-software/s/snakemake.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# snakemake + +The Snakemake workflow management system is a tool to create reproducible and scalable data analyses. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.2.2`` | ``-Python-3.6.4`` | ``intel/2018a`` +``5.2.4`` | ``-Python-3.6.6`` | ``foss/2018b`` +``5.2.4`` | ``-Python-3.6.6`` | ``intel/2018b`` +``5.26.1`` | ``-Python-3.8.2`` | ``intel/2020a`` +``5.7.1`` | ``-Python-3.7.2`` | ``foss/2019a`` +``6.1.0`` | | ``foss/2020b`` +``6.10.0`` | | ``foss/2021b`` +``6.6.1`` | | ``foss/2021a`` +``7.18.2`` | | ``foss/2021b`` +``7.22.0`` | | ``foss/2022a`` +``7.32.3`` | | ``foss/2022b`` +``8.4.2`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/snaphu.md b/docs/version-specific/supported-software/s/snaphu.md new file mode 100644 index 000000000..9dcf3a7d7 --- /dev/null +++ b/docs/version-specific/supported-software/s/snaphu.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# snaphu + +SNAPHU is an implementation of the Statistical-cost, Network-flow Algorithm for Phase Unwrapping proposed by Chen and Zebker + +*homepage*: + +version | toolchain +--------|---------- +``1.4.2`` | ``GCCcore/6.3.0`` +``1.4.2`` | ``intel/2016b`` +``1.4.2`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/snappy.md b/docs/version-specific/supported-software/s/snappy.md new file mode 100644 index 000000000..f0dbb0795 --- /dev/null +++ b/docs/version-specific/supported-software/s/snappy.md @@ -0,0 +1,34 @@ +--- +search: + boost: 0.5 +--- +# snappy + +Snappy is a compression/decompression library. It does not aim for maximum compression, or compatibility with any other compression library; instead, it aims for very high speeds and reasonable compression. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.10`` | ``GCCcore/12.3.0`` +``1.1.10`` | ``GCCcore/13.2.0`` +``1.1.2`` | ``GCC/4.9.2`` +``1.1.3`` | ``GCC/4.9.3-2.25`` +``1.1.3`` | ``GCC/4.9.3`` +``1.1.6`` | ``system`` +``1.1.7`` | ``GCCcore/6.4.0`` +``1.1.7`` | ``GCCcore/7.3.0`` +``1.1.7`` | ``GCCcore/8.2.0`` +``1.1.7`` | ``GCCcore/8.3.0`` +``1.1.7`` | ``intel/2017a`` +``1.1.7`` | ``intel/2017b`` +``1.1.8`` | ``GCCcore/10.2.0`` +``1.1.8`` | ``GCCcore/10.3.0`` +``1.1.8`` | ``GCCcore/9.3.0`` +``1.1.9`` | ``GCCcore/11.2.0`` +``1.1.9`` | ``GCCcore/11.3.0`` +``1.1.9`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/snippy.md b/docs/version-specific/supported-software/s/snippy.md new file mode 100644 index 000000000..23ebd8d0b --- /dev/null +++ b/docs/version-specific/supported-software/s/snippy.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# snippy + +Snippy finds SNPs between a haploid reference genome and your NGS sequence reads. It will find both substitutions (snps) and insertions/deletions (indels). Rapid haploid variant calling and core genome alignment. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.4.1`` | ``-Perl-5.28.0`` | ``foss/2018b`` +``4.6.0`` | | ``GCC/10.2.0`` +``4.6.0`` | ``-Java-13-Python-3.8.2`` | ``GCC/9.3.0`` +``4.6.0`` | ``-R-4.1.2`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/snp-sites.md b/docs/version-specific/supported-software/s/snp-sites.md new file mode 100644 index 000000000..85881e646 --- /dev/null +++ b/docs/version-specific/supported-software/s/snp-sites.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# snp-sites + +Finds SNP sites from a multi-FASTA alignment file. + +*homepage*: + +version | toolchain +--------|---------- +``2.5.1`` | ``GCCcore/10.2.0`` +``2.5.1`` | ``GCCcore/10.3.0`` +``2.5.1`` | ``GCCcore/11.2.0`` +``2.5.1`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/snpEff.md b/docs/version-specific/supported-software/s/snpEff.md new file mode 100644 index 000000000..b0bc3dac1 --- /dev/null +++ b/docs/version-specific/supported-software/s/snpEff.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# snpEff + +SnpEff is a variant annotation and effect prediction tool. It annotates and predicts the effects of genetic variants (such as amino acid changes). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.6`` | ``-Java-1.7.0_80`` | ``system`` +``4.1d`` | ``-Java-1.7.0_80`` | ``system`` +``4.3t`` | ``-Java-1.8`` | ``system`` +``5.0`` | ``-Java-13-Python-3.8.2`` | ``GCCcore/9.3.0`` +``5.0`` | ``-Java-13`` | ``system`` +``5.0e`` | ``-Java-13`` | ``GCCcore/10.2.0`` +``5.0e`` | ``-Java-11`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/socat.md b/docs/version-specific/supported-software/s/socat.md new file mode 100644 index 000000000..f40858833 --- /dev/null +++ b/docs/version-specific/supported-software/s/socat.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# socat + +socat is a relay for bidirectional data transfer between two independent data channels. + +*homepage*: + +version | toolchain +--------|---------- +``1.7.3.3`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/solo.md b/docs/version-specific/supported-software/s/solo.md new file mode 100644 index 000000000..f8a3c1f7f --- /dev/null +++ b/docs/version-specific/supported-software/s/solo.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# solo + +Doublet detection via semi-supervised deep learning + +*homepage*: + +version | toolchain +--------|---------- +``1.3`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/sonic.md b/docs/version-specific/supported-software/s/sonic.md new file mode 100644 index 000000000..866118fd2 --- /dev/null +++ b/docs/version-specific/supported-software/s/sonic.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# sonic + +Sonic is a simple algorithm for speeding up or slowing down speech. However, it's optimized for speed ups of over 2X, unlike previous algorithms for changing speech rate. The Sonic library is a very simple ANSI C library that is designed to easily be integrated into streaming voice applications, like TTS back ends. + +*homepage*: + +version | toolchain +--------|---------- +``20180202`` | ``gfbf/2023a`` +``20180202`` | ``gompi/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/spaCy.md b/docs/version-specific/supported-software/s/spaCy.md new file mode 100644 index 000000000..381e84c5f --- /dev/null +++ b/docs/version-specific/supported-software/s/spaCy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# spaCy + +Industrial-strength Natural Language Processing (NLP) in Python. + +*homepage*: + +version | toolchain +--------|---------- +``3.4.4`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/spaln.md b/docs/version-specific/supported-software/s/spaln.md new file mode 100644 index 000000000..ff5577377 --- /dev/null +++ b/docs/version-specific/supported-software/s/spaln.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# spaln + +Spaln (space-efficient spliced alignment) is a stand-alone program that maps and aligns a set of cDNA or protein sequences onto a whole genomic sequence in a single job. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.3c`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``2.4.03`` | ``iccifort/2019.5.281`` +``2.4.12`` | ``GCC/10.2.0`` +``2.4.12`` | ``GCC/11.2.0`` +``2.4.13f`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/sparse-neighbors-search.md b/docs/version-specific/supported-software/s/sparse-neighbors-search.md new file mode 100644 index 000000000..38f619198 --- /dev/null +++ b/docs/version-specific/supported-software/s/sparse-neighbors-search.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# sparse-neighbors-search + +A Python/C++ implementation of an approximate nearest neighbor search for sparse data structures based on the idea of local sensitive hash functions. + +*homepage*: + +version | toolchain +--------|---------- +``0.7`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/sparsehash.md b/docs/version-specific/supported-software/s/sparsehash.md new file mode 100644 index 000000000..206935474 --- /dev/null +++ b/docs/version-specific/supported-software/s/sparsehash.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# sparsehash + +An extremely memory-efficient hash_map implementation. 2 bits/entry overhead! The SparseHash library contains several hash-map implementations, including implementations that optimize for space or speed. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.2`` | ``foss/2016a`` +``2.0.3`` | ``GCCcore/5.4.0`` +``2.0.3`` | ``GCCcore/6.4.0`` +``2.0.3`` | ``GCCcore/7.3.0`` +``2.0.3`` | ``GCCcore/8.2.0`` +``2.0.3`` | ``GCCcore/8.3.0`` +``2.0.3`` | ``foss/2016b`` +``2.0.3`` | ``intel/2017a`` +``2.0.4`` | ``GCCcore/10.2.0`` +``2.0.4`` | ``GCCcore/11.3.0`` +``2.0.4`` | ``GCCcore/12.3.0`` +``2.0.4`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/spatialreg.md b/docs/version-specific/supported-software/s/spatialreg.md new file mode 100644 index 000000000..47aa0e0e1 --- /dev/null +++ b/docs/version-specific/supported-software/s/spatialreg.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# spatialreg + +A collection of all the estimation functions for spatial cross-sectional models (on lattice/areal data using spatial weights matrices) contained up to now in 'spdep', 'sphet' and 'spse'. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1-5`` | ``-R-3.6.2`` | ``foss/2019b`` +``1.1-8`` | ``-R-4.1.0`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/spdlog.md b/docs/version-specific/supported-software/s/spdlog.md new file mode 100644 index 000000000..f923496eb --- /dev/null +++ b/docs/version-specific/supported-software/s/spdlog.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# spdlog + +Very fast, header-only/compiled, C++ logging library. + +*homepage*: + +version | toolchain +--------|---------- +``1.10.0`` | ``GCCcore/11.2.0`` +``1.11.0`` | ``GCCcore/12.2.0`` +``1.11.0`` | ``GCCcore/12.3.0`` +``1.12.0`` | ``GCCcore/13.2.0`` +``1.9.2`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/spectral.methods.md b/docs/version-specific/supported-software/s/spectral.methods.md new file mode 100644 index 000000000..20e57c10c --- /dev/null +++ b/docs/version-specific/supported-software/s/spectral.methods.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# spectral.methods + +Contains some implementations of Singular Spectrum Analysis (SSA) for the gapfilling and spectral decomposition of time series. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7.2.133`` | ``-R-3.4.3`` | ``intel/2017b`` +``0.7.2.133`` | ``-R-3.4.4`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/speech_tools.md b/docs/version-specific/supported-software/s/speech_tools.md new file mode 100644 index 000000000..fdfbee72b --- /dev/null +++ b/docs/version-specific/supported-software/s/speech_tools.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# speech_tools + +The Edinburgh Speech Tools Library is a collection of C++ class, functions and related programs for manipulating the sorts of objects used in speech processing. It includes support for reading and writing waveforms, parameter files (LPC, Ceptra, F0) in various formats and converting between them. It also includes support for linguistic type objects and support for various label files and ngrams (with smoothing). + +*homepage*: <['http://festvox.org/festival/']> + +version | toolchain +--------|---------- +``2.5.0`` | ``GCCcore/12.3.0`` +``2.5.0`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/spektral.md b/docs/version-specific/supported-software/s/spektral.md new file mode 100644 index 000000000..d17c5dceb --- /dev/null +++ b/docs/version-specific/supported-software/s/spektral.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# spektral + +Spektral is a Python library for graph deep learning. The main goal of this project is to provide a simple but flexible framework for creating graph neural networks (GNNs). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.0`` | ``-CUDA-11.4.1`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/spglib-python.md b/docs/version-specific/supported-software/s/spglib-python.md new file mode 100644 index 000000000..9f6b555fb --- /dev/null +++ b/docs/version-specific/supported-software/s/spglib-python.md @@ -0,0 +1,40 @@ +--- +search: + boost: 0.5 +--- +# spglib-python + +Spglib for Python. Spglib is a library for finding and handling crystal symmetries written in C. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.10.0.2`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.10.0.2`` | ``-Python-3.6.3`` | ``intel/2017b`` +``1.14.1.post0`` | ``-Python-3.7.2`` | ``intel/2019a`` +``1.16.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.16.0`` | | ``foss/2020b`` +``1.16.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``1.16.0`` | | ``fosscuda/2020b`` +``1.16.0`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.16.0`` | ``-Python-3.8.2`` | ``intel/2020a`` +``1.16.0`` | | ``intel/2020b`` +``1.16.0`` | ``-Python-3.7.4`` | ``intelcuda/2019b`` +``1.16.1`` | | ``foss/2021a`` +``1.16.1`` | | ``gomkl/2021a`` +``1.16.1`` | | ``intel/2021a`` +``1.16.3`` | | ``foss/2021b`` +``1.16.3`` | | ``intel/2021b`` +``1.9.4.2`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.9.5`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.9.9.38`` | ``-Python-2.7.13`` | ``intel/2017a`` +``2.0.0`` | | ``foss/2022a`` +``2.0.0`` | | ``intel/2022a`` +``2.0.2`` | | ``gfbf/2022b`` +``2.1.0`` | | ``gfbf/2023a`` +``2.1.0`` | | ``iimkl/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/spglib.md b/docs/version-specific/supported-software/s/spglib.md new file mode 100644 index 000000000..aa0b2310e --- /dev/null +++ b/docs/version-specific/supported-software/s/spglib.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# spglib + +Spglib is a C library for finding and handling crystal symmetries. + +*homepage*: + +version | toolchain +--------|---------- +``1.16.1`` | ``GCCcore/10.2.0`` +``1.16.2`` | ``GCCcore/10.3.0`` +``1.9.2`` | ``intel/2016.02-GCC-4.9`` +``1.9.9`` | ``intel/2017b`` +``2.0.2`` | ``GCCcore/11.3.0`` +``2.0.2`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/split-seq.md b/docs/version-specific/supported-software/s/split-seq.md new file mode 100644 index 000000000..4643c83e4 --- /dev/null +++ b/docs/version-specific/supported-software/s/split-seq.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# split-seq + +Analysis tools for split-seq. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20190717`` | ``-Python-3.6.6`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/splitRef.md b/docs/version-specific/supported-software/s/splitRef.md new file mode 100644 index 000000000..e35e30c5c --- /dev/null +++ b/docs/version-specific/supported-software/s/splitRef.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# splitRef + +splitRef splits a reference haplotype file into smaller files with subsets of markers. The current version is a pre-release. + +*homepage*: + +version | toolchain +--------|---------- +``0.0.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/spoa.md b/docs/version-specific/supported-software/s/spoa.md new file mode 100644 index 000000000..18aa7c615 --- /dev/null +++ b/docs/version-specific/supported-software/s/spoa.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# spoa + +Spoa (SIMD POA) is a c++ implementation of the partial order alignment (POA) algorithm which is used to generate consensus sequences + +*homepage*: + +version | toolchain +--------|---------- +``3.0.1`` | ``GCC/7.3.0-2.30`` +``3.4.0`` | ``GCC/10.2.0`` +``4.0.0`` | ``GCC/8.3.0`` +``4.0.7`` | ``GCC/10.2.0`` +``4.0.7`` | ``GCC/10.3.0`` +``4.0.7`` | ``GCC/11.2.0`` +``4.0.7`` | ``GCC/11.3.0`` +``4.0.7`` | ``GCC/12.2.0`` +``4.1.0`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/sradownloader.md b/docs/version-specific/supported-software/s/sradownloader.md new file mode 100644 index 000000000..1005f7a3d --- /dev/null +++ b/docs/version-specific/supported-software/s/sradownloader.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# sradownloader + +SRAdownloader takes the annotation table from the SRA run selector tool and retrieves the raw fastq files for the selected samples + +*homepage*: + +version | toolchain +--------|---------- +``3.9`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/stardist.md b/docs/version-specific/supported-software/s/stardist.md new file mode 100644 index 000000000..079b72eb9 --- /dev/null +++ b/docs/version-specific/supported-software/s/stardist.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# stardist + +Object Detection with Star-convex Shapes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8.3`` | ``-CUDA-11.4.1`` | ``foss/2021b`` +``0.8.3`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/starparser.md b/docs/version-specific/supported-software/s/starparser.md new file mode 100644 index 000000000..ca35e9738 --- /dev/null +++ b/docs/version-specific/supported-software/s/starparser.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# starparser + +Use this package to manipulate Relion star files, including counting, modifying, plotting, and sifting the data. At the very least, this is a useful alternative to awk commands, which can get awkward. Below is a description of the command- line options with some examples. Alternatively, use starparser within Relion or load the modules in your own Python scripts. + +*homepage*: + +version | toolchain +--------|---------- +``1.49`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/stars.md b/docs/version-specific/supported-software/s/stars.md new file mode 100644 index 000000000..6edd95391 --- /dev/null +++ b/docs/version-specific/supported-software/s/stars.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# stars + +Reading, manipulating, writing and plotting spatiotemporal arrays (raster and vector data cubes) in R, using GDAL bindings provided by sf, and NetCDF bindings by ncmeta and RNetCDF. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.4-3`` | ``-R-4.0.0-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/statsmodels.md b/docs/version-specific/supported-software/s/statsmodels.md new file mode 100644 index 000000000..b392bab25 --- /dev/null +++ b/docs/version-specific/supported-software/s/statsmodels.md @@ -0,0 +1,40 @@ +--- +search: + boost: 0.5 +--- +# statsmodels + +Statsmodels is a Python module that allows users to explore data, estimate statistical models, and perform statistical tests. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.1`` | | ``foss/2019a`` +``0.11.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.11.0`` | ``-Python-3.7.4`` | ``intel/2019b`` +``0.11.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.11.1`` | ``-Python-3.8.2`` | ``intel/2020a`` +``0.12.1`` | | ``foss/2020b`` +``0.12.1`` | | ``fosscuda/2020b`` +``0.12.1`` | | ``intel/2020b`` +``0.12.2`` | | ``foss/2021a`` +``0.13.1`` | | ``foss/2021b`` +``0.13.1`` | | ``foss/2022a`` +``0.13.1`` | | ``intel/2021b`` +``0.14.0`` | | ``gfbf/2022b`` +``0.14.1`` | | ``gfbf/2023a`` +``0.14.1`` | | ``gfbf/2023b`` +``0.6.1`` | ``-Python-2.7.13`` | ``foss/2017a`` +``0.6.1`` | ``-Python-3.5.1`` | ``intel/2016a`` +``0.6.1`` | ``-Python-3.5.2`` | ``intel/2016b`` +``0.8.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``0.9.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``0.9.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.9.0`` | ``-Python-2.7.15`` | ``intel/2018b`` +``0.9.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``0.9.0`` | ``-Python-2.7.16`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/stpipeline.md b/docs/version-specific/supported-software/s/stpipeline.md new file mode 100644 index 000000000..2cfa62d50 --- /dev/null +++ b/docs/version-specific/supported-software/s/stpipeline.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# stpipeline + +The ST Pipeline contains the tools and scripts needed to process and analyze the raw files generated with the Spatial Transcriptomics method in FASTQ format to generated datasets for down-stream analysis. The ST pipeline can also be used to process single cell data as long as a file with barcodes identifying each cell is provided. The ST Pipeline can also process RNA-Seq datasets generated with or without UMIs. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.7.3`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.7.6`` | ``-Python-3.7.2`` | ``foss/2019a`` +``1.7.6`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/strace.md b/docs/version-specific/supported-software/s/strace.md new file mode 100644 index 000000000..f42a024c2 --- /dev/null +++ b/docs/version-specific/supported-software/s/strace.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# strace + +strace is a diagnostic, debugging and instructional userspace utility for Linux. It is used to monitor and tamper with interactions between processes and the Linux kernel, which include system calls, signal deliveries, and changes of process state. + +*homepage*: + +version | toolchain +--------|---------- +``5.14`` | ``GCCcore/11.2.0`` +``6.6`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/strelka.md b/docs/version-specific/supported-software/s/strelka.md new file mode 100644 index 000000000..d5b1dd8f4 --- /dev/null +++ b/docs/version-specific/supported-software/s/strelka.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# strelka + +Strelka2 is a fast and accurate small variant caller optimized for analysis of germline variation in small cohorts and somatic variation in tumor/normal sample pairs. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.9.10`` | ``-Python-2.7.15`` | ``foss/2018b`` +``2.9.10`` | ``-Python-2.7.15`` | ``intel/2018b`` +``2.9.7`` | | ``intel/2018a`` +``2.9.9`` | | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/stripy.md b/docs/version-specific/supported-software/s/stripy.md new file mode 100644 index 000000000..6cb4db808 --- /dev/null +++ b/docs/version-specific/supported-software/s/stripy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# stripy + +A Python interface to TRIPACK and STRIPACK Fortran code for (constrained) triangulation in Cartesian coordinates and on a sphere. Stripy is an object-oriented package and includes routines from SRFPACK and SSRFPACK for interpolation (nearest neighbor, linear and hermite cubic) and to evaluate derivatives (Renka 1996a,b and 1997a,b). + +*homepage*: + +version | toolchain +--------|---------- +``2.1.0`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/suave.md b/docs/version-specific/supported-software/s/suave.md new file mode 100644 index 000000000..13d6baee3 --- /dev/null +++ b/docs/version-specific/supported-software/s/suave.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# suave + +suave is an interactive web application to visualize read depth ratios between two samples and the structural variants of one of the samples (typically the "case" sample in a case/control setup such as tumor/normal comparison). + +*homepage*: + +version | toolchain +--------|---------- +``20160529`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/subset-bam.md b/docs/version-specific/supported-software/s/subset-bam.md new file mode 100644 index 000000000..cdc8d3611 --- /dev/null +++ b/docs/version-specific/supported-software/s/subset-bam.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# subset-bam + +subset-bam is a tool to subset a 10x Genomics BAM file based on a tag, most commonly the cell barcode tag. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/subunit.md b/docs/version-specific/supported-software/s/subunit.md new file mode 100644 index 000000000..c98af8a6e --- /dev/null +++ b/docs/version-specific/supported-software/s/subunit.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# subunit + +Subunit is a streaming protocol for test results. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.3`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/suds.md b/docs/version-specific/supported-software/s/suds.md new file mode 100644 index 000000000..5ca922844 --- /dev/null +++ b/docs/version-specific/supported-software/s/suds.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# suds + +Lightweight SOAP client + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.3.0`` | ``-Python-3.6.4`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/supermagic.md b/docs/version-specific/supported-software/s/supermagic.md new file mode 100644 index 000000000..8035039f2 --- /dev/null +++ b/docs/version-specific/supported-software/s/supermagic.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# supermagic + +Very simple MPI sanity code. Nothing more, nothing less. + +*homepage*: + +version | toolchain +--------|---------- +``20170824`` | ``foss/2017a`` +``20170824`` | ``gompi/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/supernova.md b/docs/version-specific/supported-software/s/supernova.md new file mode 100644 index 000000000..ffed4ba59 --- /dev/null +++ b/docs/version-specific/supported-software/s/supernova.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# supernova + +Supernova is a software package for de novo assembly from Chromium Linked-Reads that are made from a single whole-genome library from an individual DNA source + +*homepage*: + +version | toolchain +--------|---------- +``2.0.1`` | ``system`` +``2.1.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/svist4get.md b/docs/version-specific/supported-software/s/svist4get.md new file mode 100644 index 000000000..62dfc724b --- /dev/null +++ b/docs/version-specific/supported-software/s/svist4get.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# svist4get + +Svist4get is a simple bioinformatics tool for visualization of genomic signal tracks in user-defined genomic windows, either arbitrary selected by genomic coordinates or anchored to particular transcripts or genes. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.1`` | ``foss/2020b`` +``1.3.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/swarm.md b/docs/version-specific/supported-software/s/swarm.md new file mode 100644 index 000000000..16a189806 --- /dev/null +++ b/docs/version-specific/supported-software/s/swarm.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# swarm + +A robust and fast clustering method for amplicon-based studies + +*homepage*: + +version | toolchain +--------|---------- +``2.2.2`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/swifter.md b/docs/version-specific/supported-software/s/swifter.md new file mode 100644 index 000000000..d0262a09a --- /dev/null +++ b/docs/version-specific/supported-software/s/swifter.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# swifter + +A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.9`` | ``foss/2020b`` +``1.0.9`` | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/swissknife.md b/docs/version-specific/supported-software/s/swissknife.md new file mode 100644 index 000000000..c61748c76 --- /dev/null +++ b/docs/version-specific/supported-software/s/swissknife.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# swissknife + +Perl module for reading and writing UniProtKB data in plain text format. + +*homepage*: + +version | toolchain +--------|---------- +``1.80`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/sympy.md b/docs/version-specific/supported-software/s/sympy.md new file mode 100644 index 000000000..fb76b08f4 --- /dev/null +++ b/docs/version-specific/supported-software/s/sympy.md @@ -0,0 +1,38 @@ +--- +search: + boost: 0.5 +--- +# sympy + +SymPy is a Python library for symbolic mathematics. It aims to become a full-featured computer algebra system (CAS) while keeping the code as simple as possible in order to be comprehensible and easily extensible. SymPy is written entirely in Python and does not require any external libraries. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.10.1`` | | ``foss/2022a`` +``1.10.1`` | | ``intel/2022a`` +``1.11.1`` | | ``foss/2022a`` +``1.11.1`` | | ``intel/2022a`` +``1.12`` | | ``gfbf/2022b`` +``1.12`` | | ``gfbf/2023a`` +``1.12`` | | ``gfbf/2023b`` +``1.3`` | ``-Python-2.7.15`` | ``foss/2018b`` +``1.3`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.3`` | ``-Python-2.7.14`` | ``intel/2018a`` +``1.3`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.4`` | | ``foss/2019a`` +``1.4`` | | ``intel/2019a`` +``1.5.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.6.2`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.7.1`` | | ``foss/2020b`` +``1.7.1`` | | ``intel/2020b`` +``1.8`` | | ``foss/2021a`` +``1.9`` | | ``foss/2021b`` +``1.9`` | | ``intel/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/synapseclient.md b/docs/version-specific/supported-software/s/synapseclient.md new file mode 100644 index 000000000..da86db5ed --- /dev/null +++ b/docs/version-specific/supported-software/s/synapseclient.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# synapseclient + +The synapseclient package provides an interface to Synapse, a collaborative, open-source research platform that allows teams to share data, track analyses, and collaborate, providing support for: integrated presentation of data, code and text fine grained access control provenance tracking The synapseclient package lets you communicate with the cloud-hosted Synapse service to access data and create shared data analysis projects from within Python scripts or at the interactive Python console. Other Synapse clients exist for R, Java, and the web. The Python client can also be used from the command line. + +*homepage*: + +version | toolchain +--------|---------- +``3.0.0`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/synthcity.md b/docs/version-specific/supported-software/s/synthcity.md new file mode 100644 index 000000000..e09cd1088 --- /dev/null +++ b/docs/version-specific/supported-software/s/synthcity.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# synthcity + +A library for generating and evaluating synthetic tabular data. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.4`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/s/sysbench.md b/docs/version-specific/supported-software/s/sysbench.md new file mode 100644 index 000000000..1cb4275a7 --- /dev/null +++ b/docs/version-specific/supported-software/s/sysbench.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# sysbench + +sysbench is a scriptable multi-threaded benchmark tool based on LuaJIT. It is most frequently used for database benchmarks, but can also be used to create arbitrarily complex workloads that do not involve a database server. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.20`` | ``GCC/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/T-Coffee.md b/docs/version-specific/supported-software/t/T-Coffee.md new file mode 100644 index 000000000..e34c8e599 --- /dev/null +++ b/docs/version-specific/supported-software/t/T-Coffee.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# T-Coffee + +A collection of tools for Computing, Evaluating and Manipulating Multiple Alignments of DNA, RNA, Protein Sequences and Structures + +*homepage*: + +version | toolchain +--------|---------- +``13.45.61.3c310a9`` | ``system`` +``13.46.0.919e8c6b`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TALON.md b/docs/version-specific/supported-software/t/TALON.md new file mode 100644 index 000000000..bb1b0c3b4 --- /dev/null +++ b/docs/version-specific/supported-software/t/TALON.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# TALON + +TALON is a Python package for identifying and quantifying known and novel genes/isoforms in long-read transcriptome data sets. TALON is technology-agnostic in that it works from mapped SAM files, allowing data from different sequencing platforms (i.e. PacBio and Oxford Nanopore) to be analyzed side by side. + +*homepage*: + +version | toolchain +--------|---------- +``5.0`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TALYS.md b/docs/version-specific/supported-software/t/TALYS.md new file mode 100644 index 000000000..ef70bbdfe --- /dev/null +++ b/docs/version-specific/supported-software/t/TALYS.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# TALYS + +TALYS is a nuclear reaction program. + +*homepage*: + +version | toolchain +--------|---------- +``1.95`` | ``GCCcore/10.3.0`` +``1.95`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TAMkin.md b/docs/version-specific/supported-software/t/TAMkin.md new file mode 100644 index 000000000..0feefea11 --- /dev/null +++ b/docs/version-specific/supported-software/t/TAMkin.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# TAMkin + +TAMkin is a post-processing toolkit for normal mode analysis, thermochemistry and reaction kinetics. It uses a Hessian computation from a standard computational chemistry program as its input. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.9`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.2.4`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.2.6`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.2.6`` | | ``foss/2020b`` +``1.2.6`` | | ``foss/2021a`` +``1.2.6`` | | ``foss/2021b`` +``1.2.6`` | | ``foss/2023a`` +``1.2.6`` | ``-Python-3.7.2`` | ``intel/2019a`` +``1.2.6`` | ``-Python-3.8.2`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TBA.md b/docs/version-specific/supported-software/t/TBA.md new file mode 100644 index 000000000..f18e75a41 --- /dev/null +++ b/docs/version-specific/supported-software/t/TBA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# TBA + +TBA (a Transcription factor Binding Analysis): TBA is a multi-functional machine learning tool for identifying transcription factors associated with genomic features + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TCC.md b/docs/version-specific/supported-software/t/TCC.md new file mode 100644 index 000000000..0a8cd7e2e --- /dev/null +++ b/docs/version-specific/supported-software/t/TCC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# TCC + +The Tiny C Compiler (aka TCC, tCc, or TinyCC) is an x86 and x86-64 C compiler created by Fabrice Bellard. It is designed to work for slow computers with little disk space and can run shebang style !/usr/bin/tcc . TCC is distributed under the LGPL. TCC claims to implement all of ANSI C (C89/C90),[1] much of the new ISO C99 standard, and many GNU C extensions including inline assembly. + +*homepage*: + +version | toolchain +--------|---------- +``0.9.26`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TCLAP.md b/docs/version-specific/supported-software/t/TCLAP.md new file mode 100644 index 000000000..74fa8e954 --- /dev/null +++ b/docs/version-specific/supported-software/t/TCLAP.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# TCLAP + +TCLAP is a small, flexible library that provides a simple interface for defining and accessing command line arguments. It was intially inspired by the user friendly CLAP libary. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.2`` | ``GCCcore/8.3.0`` +``1.2.4`` | ``GCCcore/10.2.0`` +``1.2.4`` | ``GCCcore/9.3.0`` +``1.2.5`` | ``GCCcore/10.3.0`` +``1.2.5`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TELEMAC-MASCARET.md b/docs/version-specific/supported-software/t/TELEMAC-MASCARET.md new file mode 100644 index 000000000..4f222d51c --- /dev/null +++ b/docs/version-specific/supported-software/t/TELEMAC-MASCARET.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# TELEMAC-MASCARET + +TELEMAC-MASCARET is an integrated suite of solvers for use in the field of free-surface flow. Having been used in the context of many studies throughout the world, it has become one of the major standards in its field. + +*homepage*: + +version | toolchain +--------|---------- +``8p3r1`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TEToolkit.md b/docs/version-specific/supported-software/t/TEToolkit.md new file mode 100644 index 000000000..c26a4b41d --- /dev/null +++ b/docs/version-specific/supported-software/t/TEToolkit.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# TEToolkit + +Tools for estimating differential enrichment of Transposable Elements and other highly repetitive regions + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5.1`` | ``-Python-2.7.11`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TEtranscripts.md b/docs/version-specific/supported-software/t/TEtranscripts.md new file mode 100644 index 000000000..45606301e --- /dev/null +++ b/docs/version-specific/supported-software/t/TEtranscripts.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# TEtranscripts + +TEtranscripts and TEcount takes RNA-seq (and similar data) and annotates reads to both genes & transposable elements. TEtranscripts then performs differential analysis using DESeq2. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.0`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TF-COMB.md b/docs/version-specific/supported-software/t/TF-COMB.md new file mode 100644 index 000000000..119edb4bb --- /dev/null +++ b/docs/version-specific/supported-software/t/TF-COMB.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# TF-COMB + +Transcription Factor Co-Occurrence using Market Basket analysis. + +*homepage*: + +version | toolchain +--------|---------- +``1.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TFEA.md b/docs/version-specific/supported-software/t/TFEA.md new file mode 100644 index 000000000..06b5f5c91 --- /dev/null +++ b/docs/version-specific/supported-software/t/TFEA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# TFEA + +Transcription Factor Enrichment Analysis + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.4`` | ``-muMerge-1.1.0`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/THetA.md b/docs/version-specific/supported-software/t/THetA.md new file mode 100644 index 000000000..b4bf0d906 --- /dev/null +++ b/docs/version-specific/supported-software/t/THetA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# THetA + +Tumor Heterogeneity Analysis (THetA) and THetA2 are algorithms that estimate the tumor purity and clonal/subclonal copy number aberrations directly from high-throughput DNA sequencing data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.7`` | ``-Python-2.7.15`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TINKER.md b/docs/version-specific/supported-software/t/TINKER.md new file mode 100644 index 000000000..683e25650 --- /dev/null +++ b/docs/version-specific/supported-software/t/TINKER.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# TINKER + +The TINKER molecular modeling software is a complete and general package for molecular mechanics and dynamics, with some special features for biopolymers. + +*homepage*: + +version | toolchain +--------|---------- +``8.6.1`` | ``foss/2018b`` +``8.7.2`` | ``foss/2019b`` +``8.8.1`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TM-align.md b/docs/version-specific/supported-software/t/TM-align.md new file mode 100644 index 000000000..62b650ee3 --- /dev/null +++ b/docs/version-specific/supported-software/t/TM-align.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# TM-align + +This package unifies protein structure alignment and RNA structure alignment into the standard TM-align program for single chain structure alignment, MM-align program for multi-chain structure alignment, and TM-score program for sequence dependent structure superposition. + +*homepage*: + +version | toolchain +--------|---------- +``20180426`` | ``foss/2018b`` +``20180426`` | ``intel/2019a`` +``20190822`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TN93.md b/docs/version-specific/supported-software/t/TN93.md new file mode 100644 index 000000000..202dbaab7 --- /dev/null +++ b/docs/version-specific/supported-software/t/TN93.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# TN93 + +This is a simple program meant to compute pairwise distances between aligned nucleotide sequences in sequential FASTA format using the Tamura Nei 93 distance. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.7`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TOBIAS.md b/docs/version-specific/supported-software/t/TOBIAS.md new file mode 100644 index 000000000..c86821443 --- /dev/null +++ b/docs/version-specific/supported-software/t/TOBIAS.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# TOBIAS + +TOBIAS is a collection of command-line bioinformatics tools for performing footprinting analysis on ATAC-seq data, and includes: Correction of Tn5 insertion bias; Calculation of footprint scores within regulatory regions; Estimation of bound/unbound transcription factor binding sites; and Visualization of footprints within and across different conditions + +*homepage*: + +version | toolchain +--------|---------- +``0.12.12`` | ``foss/2021b`` +``0.14.0`` | ``foss/2020b`` +``0.16.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TOML-Fortran.md b/docs/version-specific/supported-software/t/TOML-Fortran.md new file mode 100644 index 000000000..e54215c2e --- /dev/null +++ b/docs/version-specific/supported-software/t/TOML-Fortran.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# TOML-Fortran + +TOML parser for Fortran projects + +*homepage*: + +version | toolchain +--------|---------- +``0.2.2`` | ``GCC/10.2.0`` +``0.2.2`` | ``iccifort/2020.4.304`` +``0.3.1`` | ``GCC/11.2.0`` +``0.3.1`` | ``GCC/11.3.0`` +``0.4.1`` | ``GCC/12.2.0`` +``0.4.1`` | ``intel-compilers/2022.2.1`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TOPAS.md b/docs/version-specific/supported-software/t/TOPAS.md new file mode 100644 index 000000000..fe2c9c12f --- /dev/null +++ b/docs/version-specific/supported-software/t/TOPAS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# TOPAS + +TOPAS wraps and extends the Geant4 Simulation Toolkit to make advanced Monte Carlo simulation of all forms of radiotherapy easier to use for medical physicists. + +*homepage*: + +version | toolchain +--------|---------- +``3.9`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TRAVIS-Analyzer.md b/docs/version-specific/supported-software/t/TRAVIS-Analyzer.md new file mode 100644 index 000000000..aa455c650 --- /dev/null +++ b/docs/version-specific/supported-software/t/TRAVIS-Analyzer.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# TRAVIS-Analyzer + +TRAVIS is a free tool for analyzing and visualizing trajectories from all kinds of Molecular Dynamics or Monte Carlo simulations. + +*homepage*: + +version | toolchain +--------|---------- +``210521`` | ``GCC/10.3.0`` +``220729`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TRF.md b/docs/version-specific/supported-software/t/TRF.md new file mode 100644 index 000000000..a5e5482c5 --- /dev/null +++ b/docs/version-specific/supported-software/t/TRF.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# TRF + +Tandem repeats finder: a program to analyze DNA sequences. Legacy version. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.09`` | ``-linux64`` | ``system`` +``4.09.1`` | | ``GCC/10.3.0`` +``4.09.1`` | | ``GCCcore/10.2.0`` +``4.09.1`` | | ``GCCcore/11.2.0`` +``4.09.1`` | | ``GCCcore/11.3.0`` +``4.09.1`` | | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TRIQS-cthyb.md b/docs/version-specific/supported-software/t/TRIQS-cthyb.md new file mode 100644 index 000000000..d0cceb811 --- /dev/null +++ b/docs/version-specific/supported-software/t/TRIQS-cthyb.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# TRIQS-cthyb + +TRIQS (Toolbox for Research on Interacting Quantum Systems) is a scientific project providing a set of C++ and Python libraries to develop new tools for the study of interacting quantum systems. cthyb = continuous-time hybridisation-expansion quantum Monte Carlo The TRIQS-based hybridization-expansion solver allows to solve the generic problem of a quantum impurity embedded in a conduction bath for an arbitrary local interaction vertex. The “impurity” can be any set of orbitals, on one or several atoms. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.0`` | ``-Python-2.7.15`` | ``foss/2019a`` +``3.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``3.1.0`` | | ``foss/2022a`` +``3.2.1`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TRIQS-dft_tools.md b/docs/version-specific/supported-software/t/TRIQS-dft_tools.md new file mode 100644 index 000000000..3bab8b0db --- /dev/null +++ b/docs/version-specific/supported-software/t/TRIQS-dft_tools.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# TRIQS-dft_tools + +TRIQS (Toolbox for Research on Interacting Quantum Systems) is a scientific project providing a set of C++ and Python libraries to develop new tools for the study of interacting quantum systems. This TRIQS-based-based application is aimed at ab-initio calculations for correlated materials, combining realistic DFT band-structure calculations with the dynamical mean-field theory. Together with the necessary tools to perform the DMFT self-consistency loop for realistic multi-band problems, the package provides a full-fledged charge self-consistent interface to the Wien2K package. In addition, if Wien2k is not available, it provides a generic interface for one-shot DFT+DMFT calculations, where only the single-particle Hamiltonian in orbital space has to be provided. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.0`` | ``-Python-2.7.15`` | ``foss/2019a`` +``3.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``3.1.0`` | | ``foss/2022a`` +``3.2.0`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TRIQS-tprf.md b/docs/version-specific/supported-software/t/TRIQS-tprf.md new file mode 100644 index 000000000..0c75ce5e5 --- /dev/null +++ b/docs/version-specific/supported-software/t/TRIQS-tprf.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# TRIQS-tprf + +TRIQS (Toolbox for Research on Interacting Quantum Systems) is a scientific project providing a set of C++ and Python libraries to develop new tools for the study of interacting quantum systems. TPRF is a TRIQS-based two-particle response function tool box that implements basic operations for higher order response functions such as inversion, products, the random phase approximation, the bethe salpeter equation (in the local vertex approximation), etc.. The aim is to provide efficient (C++/OpenMP/MPI) implementations of the basic operations needed to compute the two-particle response in the different two-particle channels (particle-hole, particle-particle). + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.0`` | ``-Python-2.7.15`` | ``foss/2019a`` +``3.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``3.1.1`` | | ``foss/2022a`` +``3.2.1`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TRIQS.md b/docs/version-specific/supported-software/t/TRIQS.md new file mode 100644 index 000000000..142196612 --- /dev/null +++ b/docs/version-specific/supported-software/t/TRIQS.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# TRIQS + +TRIQS (Toolbox for Research on Interacting Quantum Systems) is a scientific project providing a set of C++ and Python libraries to develop new tools for the study of interacting quantum systems. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.0`` | ``-Python-2.7.15`` | ``foss/2019a`` +``2.2.1`` | ``-Python-2.7.15`` | ``foss/2019a`` +``3.0.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``3.1.1`` | | ``foss/2022a`` +``3.2.0`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TRUST.md b/docs/version-specific/supported-software/t/TRUST.md new file mode 100644 index 000000000..88c0ce5b2 --- /dev/null +++ b/docs/version-specific/supported-software/t/TRUST.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# TRUST + +Tcr Receptor Utilities for Solid Tissue (TRUST) is a computational tool to analyze TCR and BCR sequences using unselected RNA sequencing data, profiled from solid tissues, including tumors. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.2`` | ``-Python-2.7.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TRUST4.md b/docs/version-specific/supported-software/t/TRUST4.md new file mode 100644 index 000000000..7fd42310b --- /dev/null +++ b/docs/version-specific/supported-software/t/TRUST4.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# TRUST4 + +Tcr Receptor Utilities for Solid Tissue (TRUST) is a computational tool to analyze TCR and BCR sequences using unselected RNA sequencing data, profiled from solid tissues, including tumors. TRUST4 performs de novo assembly on V, J, C genes including the hypervariable complementarity-determining region 3 (CDR3) and reports consensus of BCR/TCR sequences. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.5.1`` | ``system`` +``1.0.6`` | ``GCC/11.2.0`` +``1.0.7`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TVB-deps.md b/docs/version-specific/supported-software/t/TVB-deps.md new file mode 100644 index 000000000..7c460d974 --- /dev/null +++ b/docs/version-specific/supported-software/t/TVB-deps.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# TVB-deps + +Bundle of dependency Python packages for TVB (The Virtual Brain) + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20160618`` | ``-Python-2.7.11`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TVB.md b/docs/version-specific/supported-software/t/TVB.md new file mode 100644 index 000000000..a2fd2fc7c --- /dev/null +++ b/docs/version-specific/supported-software/t/TVB.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# TVB + +The Virtual Brain will deliver the first open simulation of the human brain based on individual large-scale connectivity. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4.1`` | ``-Python-2.7.11`` | ``intel/2016a`` +``1.5`` | ``-Python-2.7.11`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TWL-NINJA.md b/docs/version-specific/supported-software/t/TWL-NINJA.md new file mode 100644 index 000000000..5e27c1688 --- /dev/null +++ b/docs/version-specific/supported-software/t/TWL-NINJA.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# TWL-NINJA + +Nearly Infinite Neighbor Joining Application. + +*homepage*: + +version | toolchain +--------|---------- +``0.97-cluster_only`` | ``GCC/10.2.0`` +``0.98-cluster_only`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TXR.md b/docs/version-specific/supported-software/t/TXR.md new file mode 100644 index 000000000..fdc45b6cf --- /dev/null +++ b/docs/version-specific/supported-software/t/TXR.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# TXR + +TXR is a pragmatic, convenient tool ready to take on your daily hacking challenges with its dual personality: its whole-document pattern matching and extraction language for scraping information from arbitrary text sources, and its powerful data-processing language to slice through problems like a hot knife through butter. Many tasks can be accomplished with TXR "one liners" directly from your system prompt. + +*homepage*: + +version | toolchain +--------|---------- +``291`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TagDust.md b/docs/version-specific/supported-software/t/TagDust.md new file mode 100644 index 000000000..338d8f813 --- /dev/null +++ b/docs/version-specific/supported-software/t/TagDust.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# TagDust + +Raw sequences produced by next generation sequencing (NGS) machines may contain adapter, linker, barcode and fingerprint sequences. TagDust2 is a program to extract and correctly label the sequences to be mapped in downstream pipelines. + +*homepage*: + +version | toolchain +--------|---------- +``2.33`` | ``GCCcore/10.2.0`` +``2.33`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TagLib.md b/docs/version-specific/supported-software/t/TagLib.md new file mode 100644 index 000000000..0f09d2457 --- /dev/null +++ b/docs/version-specific/supported-software/t/TagLib.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# TagLib + +TagLib is a library for reading and editing the meta-data of several popular audio formats. + +*homepage*: + +version | toolchain +--------|---------- +``1.11.1`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Taiyaki.md b/docs/version-specific/supported-software/t/Taiyaki.md new file mode 100644 index 000000000..85cf6ec68 --- /dev/null +++ b/docs/version-specific/supported-software/t/Taiyaki.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Taiyaki + +Taiyaki is research software for training models for basecalling Oxford Nanopore reads. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.1.0-20200617`` | ``-Python-3.7.2-PyTorch-1.2.0`` | ``foss/2019a`` +``5.1.0-20200617`` | ``-Python-3.7.2-PyTorch-1.2.0`` | ``fosscuda/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Tapenade.md b/docs/version-specific/supported-software/t/Tapenade.md new file mode 100644 index 000000000..eb0e9d4e8 --- /dev/null +++ b/docs/version-specific/supported-software/t/Tapenade.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Tapenade + +Tool for Algorithmic Differentiation of programs. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.16`` | ``-Java-17`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Tcl.md b/docs/version-specific/supported-software/t/Tcl.md new file mode 100644 index 000000000..292199528 --- /dev/null +++ b/docs/version-specific/supported-software/t/Tcl.md @@ -0,0 +1,53 @@ +--- +search: + boost: 0.5 +--- +# Tcl + +Tcl (Tool Command Language) is a very powerful but easy to learn dynamic programming language, suitable for a very wide range of uses, including web and desktop applications, networking, administration, testing and many more. + +*homepage*: + +version | toolchain +--------|---------- +``8.5.19`` | ``foss/2017a`` +``8.6.10`` | ``GCCcore/10.2.0`` +``8.6.10`` | ``GCCcore/9.3.0`` +``8.6.11`` | ``GCCcore/10.3.0`` +``8.6.11`` | ``GCCcore/11.2.0`` +``8.6.12`` | ``GCCcore/11.3.0`` +``8.6.12`` | ``GCCcore/12.2.0`` +``8.6.13`` | ``GCCcore/12.3.0`` +``8.6.13`` | ``GCCcore/13.1.0`` +``8.6.13`` | ``GCCcore/13.2.0`` +``8.6.14`` | ``GCCcore/13.3.0`` +``8.6.3`` | ``GCC/4.8.4`` +``8.6.3`` | ``GCC/4.9.2`` +``8.6.4`` | ``GCC/4.9.3-2.25`` +``8.6.4`` | ``GNU/4.9.3-2.25`` +``8.6.4`` | ``foss/2016a`` +``8.6.4`` | ``gimkl/2.11.5`` +``8.6.4`` | ``intel/2016.02-GCC-4.9`` +``8.6.4`` | ``intel/2016a`` +``8.6.4`` | ``iomkl/2016.07`` +``8.6.4`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``8.6.5`` | ``GCC/4.9.3-2.25`` +``8.6.5`` | ``GCC/5.4.0-2.26`` +``8.6.5`` | ``GCCcore/6.3.0`` +``8.6.5`` | ``foss/2016.04`` +``8.6.5`` | ``foss/2016a`` +``8.6.5`` | ``foss/2016b`` +``8.6.5`` | ``iccifort/2016.3.210-GCC-5.4.0-2.26`` +``8.6.5`` | ``intel/2016b`` +``8.6.6`` | ``GCCcore/4.9.3`` +``8.6.6`` | ``GCCcore/6.3.0`` +``8.6.7`` | ``GCCcore/6.4.0`` +``8.6.8`` | ``GCCcore/6.4.0`` +``8.6.8`` | ``GCCcore/7.2.0`` +``8.6.8`` | ``GCCcore/7.3.0`` +``8.6.9`` | ``GCCcore/8.2.0`` +``8.6.9`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Telescope.md b/docs/version-specific/supported-software/t/Telescope.md new file mode 100644 index 000000000..913c2dcaa --- /dev/null +++ b/docs/version-specific/supported-software/t/Telescope.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Telescope + +Single locus resolution of Transposable ELEment expression using next-generation sequencing. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.3`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Teneto.md b/docs/version-specific/supported-software/t/Teneto.md new file mode 100644 index 000000000..5146b8810 --- /dev/null +++ b/docs/version-specific/supported-software/t/Teneto.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Teneto + +Teneto is package for deriving, analysing and plotting temporal network representations. Additional tools for temporal network analysis with neuroimaging contexts. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.5.1`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TensorFlow-Datasets.md b/docs/version-specific/supported-software/t/TensorFlow-Datasets.md new file mode 100644 index 000000000..24bc7ecb0 --- /dev/null +++ b/docs/version-specific/supported-software/t/TensorFlow-Datasets.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# TensorFlow-Datasets + +TensorFlow Datasets is a collection of datasets ready to use, with TensorFlow or other Python ML frameworks, such as Jax. All datasets are exposed as tf.data.Datasets , enabling easy-to-use and high-performance input pipelines. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.7.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``4.8.3`` | ``-CUDA-11.4.1`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TensorFlow-Graphics.md b/docs/version-specific/supported-software/t/TensorFlow-Graphics.md new file mode 100644 index 000000000..ce0b5e8ba --- /dev/null +++ b/docs/version-specific/supported-software/t/TensorFlow-Graphics.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# TensorFlow-Graphics + +Tensorflow Graphics provides a set of differentiable graphics and geometry layers (e.g. cameras, reflectance models, spatial transformations, mesh convolutions) and 3D viewer functionalities (e.g. 3D TensorBoard) that can be used to train and debug your machine learning models of choice. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2021.12.3`` | ``-CUDA-11.4.1`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TensorFlow.md b/docs/version-specific/supported-software/t/TensorFlow.md new file mode 100644 index 000000000..b72adcb99 --- /dev/null +++ b/docs/version-specific/supported-software/t/TensorFlow.md @@ -0,0 +1,101 @@ +--- +search: + boost: 0.5 +--- +# TensorFlow + +An open-source software library for Machine Intelligence + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.12.1`` | ``-Python-2.7.12`` | ``foss/2016b`` +``0.12.1`` | ``-Python-3.5.2`` | ``foss/2016b`` +``0.12.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.12.1`` | ``-Python-3.5.2`` | ``intel/2016b`` +``1.0.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.0.1`` | ``-Python-3.5.2`` | ``intel/2016b`` +``1.1.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``1.1.0`` | ``-Python-3.6.1`` | ``intel/2017a`` +``1.10.0`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``1.10.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.10.1`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``1.11.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.12.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.12.0`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``1.12.0`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``1.13.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.13.1`` | ``-Python-3.7.2`` | ``foss/2019a`` +``1.13.1`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` +``1.14.0`` | ``-Python-3.7.2`` | ``foss/2019a`` +``1.14.0`` | ``-Python-3.7.2`` | ``fosscuda/2019a`` +``1.15.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.15.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``1.15.2`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.15.2`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``1.15.5`` | ``-Python-3.7.4-nompi`` | ``fosscuda/2019b`` +``1.15.5`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``1.2.0`` | ``-Python-3.6.1`` | ``intel/2017a`` +``1.2.1`` | ``-GPU-Python-3.5.2`` | ``foss/2016b`` +``1.2.1`` | ``-Python-3.5.2`` | ``foss/2016b`` +``1.3.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``1.3.0`` | ``-Python-3.6.1`` | ``intel/2017a`` +``1.3.0`` | ``-Python-3.6.3`` | ``intel/2017b`` +``1.4.0`` | ``-Python-3.6.3`` | ``foss/2017b`` +``1.4.0`` | ``-Python-3.6.3`` | ``intel/2017b`` +``1.4.1`` | ``-Python-3.6.3`` | ``foss/2017b`` +``1.5.0`` | ``-Python-3.6.3`` | ``foss/2017b`` +``1.5.0`` | ``-Python-3.6.3`` | ``intel/2017b`` +``1.6.0`` | ``-Python-3.6.4-CUDA-9.1.85`` | ``foss/2018a`` +``1.6.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``1.6.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.7.0`` | ``-Python-3.6.4-CUDA-9.1.85`` | ``foss/2018a`` +``1.7.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``1.8.0`` | ``-Python-2.7.14`` | ``foss/2017b`` +``1.8.0`` | ``-Python-3.6.3`` | ``foss/2017b`` +``1.8.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``1.8.0`` | ``-Python-2.7.14`` | ``fosscuda/2017b`` +``1.8.0`` | ``-Python-3.6.3`` | ``fosscuda/2017b`` +``1.8.0`` | ``-Python-3.6.4`` | ``fosscuda/2018a`` +``1.8.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``2.0.0`` | ``-Python-3.7.2`` | ``foss/2019a`` +``2.0.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``2.0.1`` | ``-Python-3.7.2`` | ``foss/2019a`` +``2.0.1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``2.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.1.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``2.11.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``2.11.0`` | | ``foss/2022a`` +``2.13.0`` | | ``foss/2022b`` +``2.13.0`` | | ``foss/2023a`` +``2.15.1`` | | ``foss/2023a`` +``2.2.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.2.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``2.2.2`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.2.3`` | | ``foss/2020b`` +``2.3.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.3.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2.3.1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``2.3.1`` | ``-Python-3.8.2`` | ``fosscuda/2020a`` +``2.4.1`` | | ``foss/2020b`` +``2.4.1`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``2.4.1`` | | ``fosscuda/2020b`` +``2.4.4`` | | ``foss/2021a`` +``2.5.0`` | | ``foss/2020b`` +``2.5.0`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``2.5.0`` | | ``fosscuda/2020b`` +``2.5.3`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``2.5.3`` | | ``foss/2021a`` +``2.6.0`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``2.6.0`` | | ``foss/2021a`` +``2.7.1`` | ``-CUDA-11.4.1`` | ``foss/2021b`` +``2.7.1`` | | ``foss/2021b`` +``2.8.4`` | ``-CUDA-11.4.1`` | ``foss/2021b`` +``2.8.4`` | | ``foss/2021b`` +``2.9.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``2.9.1`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TensorRT.md b/docs/version-specific/supported-software/t/TensorRT.md new file mode 100644 index 000000000..3ee3738e2 --- /dev/null +++ b/docs/version-specific/supported-software/t/TensorRT.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# TensorRT + +NVIDIA TensorRT is a platform for high-performance deep learning inference + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.0.1.6`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``8.6.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Tesla-Deployment-Kit.md b/docs/version-specific/supported-software/t/Tesla-Deployment-Kit.md new file mode 100644 index 000000000..1d31609eb --- /dev/null +++ b/docs/version-specific/supported-software/t/Tesla-Deployment-Kit.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Tesla-Deployment-Kit + +The Tesla Deployment Kit is a set of tools provided primarily for the NVIDIA Tesla range of GPUs. They aim to empower users to better manage their NVIDIA GPUs by providing a broad range of functionalities. The kit contains: * NVIDIA Management Library (NVML), * Tesla Deployment Kit - Linux Edition (Aug 1st, 2013) + +*homepage*: + +version | toolchain +--------|---------- +``5.319.43`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TetGen.md b/docs/version-specific/supported-software/t/TetGen.md new file mode 100644 index 000000000..8a153b890 --- /dev/null +++ b/docs/version-specific/supported-software/t/TetGen.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# TetGen + +A Quality Tetrahedral Mesh Generator and a 3D Delaunay Triangulator + +*homepage*: + +version | toolchain +--------|---------- +``1.5.0`` | ``GCCcore/6.4.0`` +``1.6.0`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Text-CSV.md b/docs/version-specific/supported-software/t/Text-CSV.md new file mode 100644 index 000000000..b21af0cd9 --- /dev/null +++ b/docs/version-specific/supported-software/t/Text-CSV.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Text-CSV + +Text-CSV parser + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.33`` | ``-Perl-5.22.1`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Theano.md b/docs/version-specific/supported-software/t/Theano.md new file mode 100644 index 000000000..9864bfa46 --- /dev/null +++ b/docs/version-specific/supported-software/t/Theano.md @@ -0,0 +1,48 @@ +--- +search: + boost: 0.5 +--- +# Theano + +Theano is a Python library that allows you to define, optimize, and evaluate mathematical expressions involving multi-dimensional arrays efficiently. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.8.2`` | ``-Python-2.7.11`` | ``foss/2016a`` +``0.8.2`` | ``-Python-3.5.1`` | ``foss/2016a`` +``0.8.2`` | ``-Python-3.5.2`` | ``intel/2016b`` +``0.9.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``0.9.0`` | ``-Python-3.6.1`` | ``intel/2017a`` +``1.0.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.0.0`` | ``-Python-3.6.3`` | ``intel/2017b`` +``1.0.1`` | ``-Python-3.6.3`` | ``foss/2017b`` +``1.0.1`` | ``-Python-3.6.3`` | ``intel/2017b`` +``1.0.2`` | ``-Python-3.6.4`` | ``foss/2018a`` +``1.0.2`` | ``-Python-2.7.14`` | ``fosscuda/2017b`` +``1.0.2`` | ``-Python-3.6.3`` | ``fosscuda/2017b`` +``1.0.2`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``1.0.2`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.0.2`` | ``-Python-2.7.14`` | ``intelcuda/2017b`` +``1.0.2`` | ``-Python-3.6.3`` | ``intelcuda/2017b`` +``1.0.3`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.0.3`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``1.0.4`` | ``-Python-3.6.4`` | ``foss/2018a`` +``1.0.4`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.0.4`` | | ``foss/2019a`` +``1.0.4`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.0.4`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.0.4`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``1.0.4`` | | ``fosscuda/2019a`` +``1.0.4`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``1.0.4`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.1.2`` | ``-PyMC`` | ``foss/2020b`` +``1.1.2`` | ``-PyMC`` | ``foss/2021b`` +``1.1.2`` | ``-PyMC`` | ``fosscuda/2020b`` +``1.1.2`` | ``-PyMC`` | ``intel/2020b`` +``1.1.2`` | ``-PyMC`` | ``intel/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/ThemisPy.md b/docs/version-specific/supported-software/t/ThemisPy.md new file mode 100644 index 000000000..c12d90428 --- /dev/null +++ b/docs/version-specific/supported-software/t/ThemisPy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ThemisPy + +A header-only C++ library for L-BFGS and L-BFGS-B algorithms + +*homepage*: + +version | toolchain +--------|---------- +``0.3.0`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TiCCutils.md b/docs/version-specific/supported-software/t/TiCCutils.md new file mode 100644 index 000000000..8f2099980 --- /dev/null +++ b/docs/version-specific/supported-software/t/TiCCutils.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# TiCCutils + +TiCC utils is a collection of generic C++ software which is used in a lot of programs produced at Tilburg centre for Cognition and Communication (TiCC) at Tilburg University and Centre for Dutch Language and Speech at University of Antwerp. + +*homepage*: + +version | toolchain +--------|---------- +``0.11`` | ``foss/2016a`` +``0.21`` | ``iimpi/2019a`` +``0.21`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TiMBL.md b/docs/version-specific/supported-software/t/TiMBL.md new file mode 100644 index 000000000..5ad93fa72 --- /dev/null +++ b/docs/version-specific/supported-software/t/TiMBL.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# TiMBL + +TiMBL (Tilburg Memory Based Learner) is an open source software package implementing several memory-based learning algorithms, among which IB1-IG, an implementation of k-nearest neighbor classification with feature weighting suitable for symbolic feature spaces, and IGTree, a decision-tree approximation of IB1-IG. All implemented algorithms have in common that they store some representation of the training set explicitly in memory. During testing, new cases are classified by extrapolation from the most similar stored cases. + +*homepage*: + +version | toolchain +--------|---------- +``6.4.13`` | ``iimpi/2019a`` +``6.4.13`` | ``intel/2018b`` +``6.4.7`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Tika.md b/docs/version-specific/supported-software/t/Tika.md new file mode 100644 index 000000000..1b5f2c650 --- /dev/null +++ b/docs/version-specific/supported-software/t/Tika.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Tika + +The Apache Tika toolkit detects and extracts metadata and text from over a thousand different file types (such as PPT, XLS, and PDF). + +*homepage*: + +version | toolchain +--------|---------- +``1.16`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TinyDB.md b/docs/version-specific/supported-software/t/TinyDB.md new file mode 100644 index 000000000..a717c3ff3 --- /dev/null +++ b/docs/version-specific/supported-software/t/TinyDB.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# TinyDB + +TinyDB is a lightweight document oriented database optimized for your happiness :) It's written in pure Python and has no external dependencies. The target are small apps that would be blown away by a SQL-DB or an external database server. + +*homepage*: + +version | toolchain +--------|---------- +``3.15.2`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TinyXML.md b/docs/version-specific/supported-software/t/TinyXML.md new file mode 100644 index 000000000..9c621d3fa --- /dev/null +++ b/docs/version-specific/supported-software/t/TinyXML.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# TinyXML + +TinyXML is a simple, small, minimal, C++ XML parser that can be easily integrating into other programs. It reads XML and creates C++ objects representing the XML document. The objects can be manipulated, changed, and saved again as XML. + +*homepage*: + +version | toolchain +--------|---------- +``2.6.2`` | ``GCCcore/11.2.0`` +``2.6.2`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Tk.md b/docs/version-specific/supported-software/t/Tk.md new file mode 100644 index 000000000..a3645ac50 --- /dev/null +++ b/docs/version-specific/supported-software/t/Tk.md @@ -0,0 +1,54 @@ +--- +search: + boost: 0.5 +--- +# Tk + +Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building a graphical user interface (GUI) in many different programming languages. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``8.6.10`` | | ``GCCcore/10.2.0`` +``8.6.10`` | | ``GCCcore/9.3.0`` +``8.6.11`` | | ``GCCcore/10.3.0`` +``8.6.11`` | | ``GCCcore/11.2.0`` +``8.6.12`` | | ``GCCcore/11.3.0`` +``8.6.12`` | | ``GCCcore/12.2.0`` +``8.6.13`` | | ``GCCcore/12.3.0`` +``8.6.13`` | | ``GCCcore/13.2.0`` +``8.6.3`` | ``-no-X11`` | ``GCC/4.8.4`` +``8.6.3`` | ``-no-X11`` | ``GCC/4.9.2`` +``8.6.4`` | ``-no-X11`` | ``GCC/4.9.3-2.25`` +``8.6.4`` | ``-no-X11`` | ``GNU/4.9.3-2.25`` +``8.6.4`` | ``-no-X11`` | ``foss/2016a`` +``8.6.4`` | ``-no-X11`` | ``gimkl/2.11.5`` +``8.6.4`` | ``-no-X11`` | ``intel/2016.02-GCC-4.9`` +``8.6.4`` | ``-libX11-1.6.3`` | ``intel/2016a`` +``8.6.4`` | ``-no-X11`` | ``intel/2016a`` +``8.6.4`` | | ``iomkl/2016.07`` +``8.6.4`` | | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``8.6.5`` | | ``GCC/5.4.0-2.26`` +``8.6.5`` | | ``GCCcore/6.3.0`` +``8.6.5`` | | ``foss/2016.04`` +``8.6.5`` | | ``foss/2016a`` +``8.6.5`` | | ``foss/2016b`` +``8.6.5`` | | ``iccifort/2016.3.210-GCC-5.4.0-2.26`` +``8.6.5`` | | ``intel/2016b`` +``8.6.6`` | | ``foss/2017a`` +``8.6.6`` | | ``intel/2017a`` +``8.6.7`` | | ``foss/2017b`` +``8.6.7`` | | ``fosscuda/2017b`` +``8.6.7`` | | ``intel/2017b`` +``8.6.7`` | | ``intelcuda/2017b`` +``8.6.8`` | | ``GCCcore/6.4.0`` +``8.6.8`` | | ``GCCcore/7.3.0`` +``8.6.8`` | | ``foss/2018a`` +``8.6.8`` | | ``iomkl/2018a`` +``8.6.9`` | | ``GCCcore/8.2.0`` +``8.6.9`` | | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Tkinter.md b/docs/version-specific/supported-software/t/Tkinter.md new file mode 100644 index 000000000..3d5c2384a --- /dev/null +++ b/docs/version-specific/supported-software/t/Tkinter.md @@ -0,0 +1,57 @@ +--- +search: + boost: 0.5 +--- +# Tkinter + +Tkinter module, built with the Python buildsystem + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.7.13`` | ``-Python-2.7.13`` | ``foss/2017a`` +``2.7.13`` | ``-Python-2.7.13`` | ``intel/2017a`` +``2.7.14`` | ``-Python-2.7.14`` | ``foss/2017b`` +``2.7.14`` | ``-Python-2.7.14`` | ``foss/2018a`` +``2.7.14`` | ``-Python-2.7.14`` | ``fosscuda/2017b`` +``2.7.14`` | ``-Python-2.7.14`` | ``intel/2017b`` +``2.7.14`` | ``-Python-2.7.14`` | ``intel/2018a`` +``2.7.14`` | ``-Python-2.7.14`` | ``intelcuda/2017b`` +``2.7.15`` | | ``GCCcore/8.2.0`` +``2.7.15`` | ``-Python-2.7.15`` | ``foss/2018b`` +``2.7.15`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``2.7.15`` | ``-Python-2.7.15`` | ``intel/2018b`` +``2.7.16`` | | ``GCCcore/8.3.0`` +``2.7.18`` | | ``GCCcore/10.2.0`` +``2.7.18`` | | ``GCCcore/11.2.0`` +``2.7.18`` | | ``GCCcore/9.3.0`` +``3.10.4`` | | ``GCCcore/11.3.0`` +``3.10.8`` | | ``GCCcore/12.2.0`` +``3.11.3`` | | ``GCCcore/12.3.0`` +``3.11.5`` | | ``GCCcore/13.2.0`` +``3.6.1`` | ``-Python-3.6.1`` | ``foss/2017a`` +``3.6.1`` | ``-Python-3.6.1`` | ``intel/2017a`` +``3.6.2`` | ``-Python-3.6.2`` | ``foss/2017b`` +``3.6.3`` | ``-Python-3.6.3`` | ``foss/2017b`` +``3.6.3`` | ``-Python-3.6.3`` | ``fosscuda/2017b`` +``3.6.3`` | ``-Python-3.6.3`` | ``intel/2017b`` +``3.6.3`` | ``-Python-3.6.3`` | ``intelcuda/2017b`` +``3.6.4`` | ``-Python-3.6.4`` | ``foss/2018a`` +``3.6.4`` | ``-Python-3.6.4`` | ``intel/2018a`` +``3.6.4`` | ``-Python-3.6.4`` | ``iomkl/2018.02`` +``3.6.4`` | ``-Python-3.6.4`` | ``iomkl/2018a`` +``3.6.6`` | ``-Python-3.6.6`` | ``foss/2018b`` +``3.6.6`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``3.6.6`` | ``-Python-3.6.6`` | ``intel/2018b`` +``3.6.6`` | ``-Python-3.6.6`` | ``iomkl/2018b`` +``3.7.2`` | | ``GCCcore/8.2.0`` +``3.7.4`` | | ``GCCcore/8.3.0`` +``3.8.2`` | | ``GCCcore/9.3.0`` +``3.8.6`` | | ``GCCcore/10.2.0`` +``3.9.5`` | | ``GCCcore/10.3.0`` +``3.9.6`` | | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/ToFu.md b/docs/version-specific/supported-software/t/ToFu.md new file mode 100644 index 000000000..a59850892 --- /dev/null +++ b/docs/version-specific/supported-software/t/ToFu.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# ToFu + +Tomography for Fusion. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.17`` | ``-Python-2.7.14`` | ``foss/2018a`` +``1.3.17`` | ``-Python-3.6.4`` | ``foss/2018a`` +``1.4.0`` | ``-Python-2.7.14`` | ``foss/2018a`` +``1.4.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``1.4.0`` | ``-Python-2.7.14`` | ``intel/2018a`` +``1.4.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.4.1`` | ``-Python-3.6.4`` | ``foss/2018a`` +``1.4.1`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.5.0`` | | ``foss/2020b`` +``1.5.0`` | | ``intel/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Togl.md b/docs/version-specific/supported-software/t/Togl.md new file mode 100644 index 000000000..b53637945 --- /dev/null +++ b/docs/version-specific/supported-software/t/Togl.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Togl + +A Tcl/Tk widget for OpenGL rendering. + +*homepage*: + +version | toolchain +--------|---------- +``2.0`` | ``GCCcore/10.2.0`` +``2.0`` | ``GCCcore/11.2.0`` +``2.0`` | ``GCCcore/11.3.0`` +``2.0`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Tombo.md b/docs/version-specific/supported-software/t/Tombo.md new file mode 100644 index 000000000..cf1f7edca --- /dev/null +++ b/docs/version-specific/supported-software/t/Tombo.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Tombo + +Tombo is a suite of tools primarily for the identification of modified nucleotides from raw nanopore sequencing data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5.1`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TopHat.md b/docs/version-specific/supported-software/t/TopHat.md new file mode 100644 index 000000000..2c32802d6 --- /dev/null +++ b/docs/version-specific/supported-software/t/TopHat.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# TopHat + +TopHat is a fast splice junction mapper for RNA-Seq reads. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.0`` | ``-Python-2.7.14`` | ``intel/2018a`` +``2.1.1`` | | ``foss/2016a`` +``2.1.1`` | | ``foss/2016b`` +``2.1.1`` | | ``foss/2017b`` +``2.1.1`` | | ``intel/2017a`` +``2.1.1`` | | ``intel/2017b`` +``2.1.2`` | ``-Python-2.7.18`` | ``GCC/10.2.0`` +``2.1.2`` | ``-Python-2.7.18`` | ``GCC/11.2.0`` +``2.1.2`` | ``-Python-2.7.18`` | ``GCC/11.3.0`` +``2.1.2`` | | ``foss/2018b`` +``2.1.2`` | | ``gompi/2019b`` +``2.1.2`` | ``-Python-2.7.18`` | ``gompi/2020a`` +``2.1.2`` | | ``iimpi/2019b`` +``2.1.2`` | ``-Python-2.7.18`` | ``iimpi/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TorchIO.md b/docs/version-specific/supported-software/t/TorchIO.md new file mode 100644 index 000000000..30a578885 --- /dev/null +++ b/docs/version-specific/supported-software/t/TorchIO.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# TorchIO + +TorchIO is an open-source Python library for efficient loading, preprocessing, augmentation and patch-based sampling of 3D medical images in deep learning, following the design of PyTorch. It includes multiple intensity and spatial transforms for data augmentation and preprocessing. These transforms include typical computer vision operations such as random affine transformations and also domain-specific ones such as simulation of intensity artifacts due to MRI magnetic field inhomogeneity (bias) or k-space motion artifacts. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.19.6`` | ``-CUDA-12.1.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TotalView.md b/docs/version-specific/supported-software/t/TotalView.md new file mode 100644 index 000000000..f41177296 --- /dev/null +++ b/docs/version-specific/supported-software/t/TotalView.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# TotalView + +TotalView is a GUI-based source code defect analysis tool that gives you unprecedented control over processes and thread execution and visibility into program state and variables. It allows you to debug one or many processes and/or threads in a single window with complete control over program execution. This allows you to set breakpoints, stepping line by line through the code on a single thread, or with coordinated groups of processes or threads, and run or halt arbitrary sets of processes or threads. You can reproduce and troubleshoot difficult problems that can occur in concurrent programs that take advantage of threads, OpenMP, MPI, GPUs or coprocessors. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``8.11.0-0`` | ``-linux-x86-64`` | ``system`` +``8.11.0-2`` | ``-linux-x86-64`` | ``system`` +``8.12.0-0`` | ``-linux-x86-64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Tracer.md b/docs/version-specific/supported-software/t/Tracer.md new file mode 100644 index 000000000..a93ea5d6d --- /dev/null +++ b/docs/version-specific/supported-software/t/Tracer.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Tracer + +Tracer is a graphical tool for visualization and diagnostics of MCMC output. + +*homepage*: + +version | toolchain +--------|---------- +``1.7.1`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TransDecoder.md b/docs/version-specific/supported-software/t/TransDecoder.md new file mode 100644 index 000000000..79e00f7f0 --- /dev/null +++ b/docs/version-specific/supported-software/t/TransDecoder.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# TransDecoder + +TransDecoder identifies candidate coding regions within transcript sequences, such as those generated by de novo RNA-Seq transcript assembly using Trinity, or constructed based on RNA-Seq alignments to the genome using Tophat and Cufflinks. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.0`` | ``-Perl-5.24.1`` | ``intel/2017a`` +``5.5.0`` | | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TranscriptClean.md b/docs/version-specific/supported-software/t/TranscriptClean.md new file mode 100644 index 000000000..88ac1ee3d --- /dev/null +++ b/docs/version-specific/supported-software/t/TranscriptClean.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# TranscriptClean + +TranscriptClean is a Python program that corrects mismatches, microindels, and noncanonical splice junctions in long reads that have been mapped to the genome. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.2`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Transformers.md b/docs/version-specific/supported-software/t/Transformers.md new file mode 100644 index 000000000..85f4b9319 --- /dev/null +++ b/docs/version-specific/supported-software/t/Transformers.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# Transformers + +State-of-the-art Natural Language Processing for PyTorch and TensorFlow 2.0 + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.2.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``4.20.1`` | | ``foss/2021a`` +``4.21.1`` | | ``foss/2021b`` +``4.24.0`` | | ``foss/2022a`` +``4.29.2`` | | ``foss/2022a`` +``4.30.2`` | | ``foss/2022b`` +``4.39.3`` | | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Transrate.md b/docs/version-specific/supported-software/t/Transrate.md new file mode 100644 index 000000000..3fe8915c2 --- /dev/null +++ b/docs/version-specific/supported-software/t/Transrate.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Transrate + +Transrate is software for de-novo transcriptome assembly quality analysis. It examines your assembly in detail and compares it to experimental evidence such as the sequencing reads, reporting quality scores for contigs and assemblies. This allows you to choose between assemblers and parameters, filter out the bad contigs from an assembly, and help decide when to stop trying to improve the assembly. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.3`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TreeMix.md b/docs/version-specific/supported-software/t/TreeMix.md new file mode 100644 index 000000000..191ae0f14 --- /dev/null +++ b/docs/version-specific/supported-software/t/TreeMix.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# TreeMix + +TreeMix is a method for inferring the patterns of population splits and mixtures in the history of a set of populations. + +*homepage*: + +version | toolchain +--------|---------- +``1.13`` | ``GCC/10.3.0`` +``1.13`` | ``GCC/11.2.0`` +``1.13`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TreeShrink.md b/docs/version-specific/supported-software/t/TreeShrink.md new file mode 100644 index 000000000..ef4af548d --- /dev/null +++ b/docs/version-specific/supported-software/t/TreeShrink.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# TreeShrink + +TreeShrink is an algorithm for detecting abnormally long branches in one or more phylogenetic trees. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3.2`` | ``-Python-3.7.2`` | ``GCC/8.2.0-2.31.1`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Triangle.md b/docs/version-specific/supported-software/t/Triangle.md new file mode 100644 index 000000000..347f484f8 --- /dev/null +++ b/docs/version-specific/supported-software/t/Triangle.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# Triangle + +Triangle generates exact Delaunay triangulations, constrained Delaunay triangulations, conforming Delaunay triangulations, Voronoi diagrams, and high-quality triangular meshes. The latter can be generated with no small or large angles, and are thus suitable for finite element analysis. + +*homepage*: + +version | toolchain +--------|---------- +``1.6`` | ``GCCcore/6.4.0`` +``1.6`` | ``GCCcore/9.3.0`` +``1.6`` | ``foss/2016a`` +``1.6`` | ``foss/2018a`` +``1.6`` | ``intel/2016b`` +``1.6`` | ``intel/2017a`` +``1.6`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Trilinos.md b/docs/version-specific/supported-software/t/Trilinos.md new file mode 100644 index 000000000..556095eac --- /dev/null +++ b/docs/version-specific/supported-software/t/Trilinos.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# Trilinos + +The Trilinos Project is an effort to develop algorithms and enabling technologies within an object-oriented software framework for the solution of large-scale, complex multi-physics engineering and scientific problems. A unique design feature of Trilinos is its focus on packages. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``12.12.1`` | ``-Python-2.7.14`` | ``foss/2017b`` +``12.12.1`` | ``-Python-3.6.4`` | ``foss/2018a`` +``12.12.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``12.12.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``12.12.1`` | ``-Python-3.6.4`` | ``intel/2018a`` +``13.4.1`` | ``-zoltan`` | ``foss/2022a`` +``13.4.1`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Trim_Galore.md b/docs/version-specific/supported-software/t/Trim_Galore.md new file mode 100644 index 000000000..22cabe0fd --- /dev/null +++ b/docs/version-specific/supported-software/t/Trim_Galore.md @@ -0,0 +1,34 @@ +--- +search: + boost: 0.5 +--- +# Trim_Galore + +A wrapper tool around Cutadapt and FastQC to consistently apply quality and adapter trimming to FastQ files, with some extra functionality for MspI-digested RRBS-type (Reduced Representation Bisufite-Seq) libraries. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.4.2`` | | ``foss/2016b`` +``0.4.4`` | | ``foss/2016b`` +``0.4.4`` | | ``intel/2017a`` +``0.5.0`` | | ``foss/2018b`` +``0.5.0`` | ``-Python-3.6.6`` | ``intel/2018b`` +``0.6.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``0.6.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.6.1`` | ``-Python-2.7.15`` | ``foss/2018b`` +``0.6.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.6.10`` | | ``GCCcore/11.2.0`` +``0.6.10`` | | ``GCCcore/11.3.0`` +``0.6.2`` | ``-Java-11`` | ``GCCcore/8.2.0`` +``0.6.2`` | ``-Python-2.7.15`` | ``foss/2018b`` +``0.6.2`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.6.5`` | ``-Java-11-Python-3.7.4`` | ``GCCcore/8.3.0`` +``0.6.6`` | ``-Python-2.7.18`` | ``GCC/10.2.0`` +``0.6.6`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``0.6.7`` | | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Trimmomatic.md b/docs/version-specific/supported-software/t/Trimmomatic.md new file mode 100644 index 000000000..511532cd1 --- /dev/null +++ b/docs/version-specific/supported-software/t/Trimmomatic.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# Trimmomatic + +Trimmomatic performs a variety of useful trimming tasks for illumina paired-end and single ended data.The selection of trimming steps and their associated parameters are supplied on the command line. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.32`` | ``-Java-1.7.0_80`` | ``system`` +``0.36`` | ``-Java-1.8.0_92`` | ``system`` +``0.38`` | ``-Java-1.8.0_162`` | ``system`` +``0.38`` | ``-Java-1.8`` | ``system`` +``0.39`` | ``-Java-1.8`` | ``system`` +``0.39`` | ``-Java-11`` | ``system`` +``0.39`` | ``-Java-17`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Trinity.md b/docs/version-specific/supported-software/t/Trinity.md new file mode 100644 index 000000000..9c9284139 --- /dev/null +++ b/docs/version-specific/supported-software/t/Trinity.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# Trinity + +Trinity represents a novel method for the efficient and robust de novo reconstruction of transcriptomes from RNA-Seq data. Trinity combines three independent software modules: Inchworm, Chrysalis, and Butterfly, applied sequentially to process large volumes of RNA-Seq reads. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.10.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.15.1`` | | ``foss/2021b`` +``2.15.1`` | | ``foss/2022a`` +``2.2.0`` | | ``foss/2016a`` +``2.4.0`` | | ``foss/2017a`` +``2.5.1`` | | ``intel/2017a`` +``2.5.1`` | | ``intel/2017b`` +``2.6.6`` | | ``intel/2018a`` +``2.8.4`` | | ``foss/2018b`` +``2.8.5`` | ``-Java-11`` | ``GCC/8.3.0`` +``2.8.5`` | | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``2.9.1`` | ``-Python-2.7.16`` | ``foss/2019b`` +``2.9.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.9.1`` | | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Trinotate.md b/docs/version-specific/supported-software/t/Trinotate.md new file mode 100644 index 000000000..27a959ebe --- /dev/null +++ b/docs/version-specific/supported-software/t/Trinotate.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Trinotate + +Trinotate is a comprehensive annotation suite designed for automatic functional annotation of transcriptomes, particularly de novo assembled transcriptomes, from model or non-model organisms. Trinotate makes use of a number of different well referenced methods for functional annotation including homology search to known sequence data (BLAST+/SwissProt), protein domain identification (HMMER/PFAM), protein signal peptide and transmembrane domain prediction (signalP/tmHMM), and leveraging various annotation databases (eggNOG/GO/Kegg databases). All functional annotation data derived from the analysis of transcripts is integrated into a SQLite database which allows fast efficient searching for terms with specific qualities related to a desired scientific hypothesis or a means to create a whole annotation report for a transcriptome. + +*homepage*: + +version | toolchain +--------|---------- +``4.0.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Triplexator.md b/docs/version-specific/supported-software/t/Triplexator.md new file mode 100644 index 000000000..424c023af --- /dev/null +++ b/docs/version-specific/supported-software/t/Triplexator.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Triplexator + +Triplexator is a tool for detecting nucleic acid triple helices and triplex features in nucleotide sequences using the canonical triplex-formation rules. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.3`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Triton.md b/docs/version-specific/supported-software/t/Triton.md new file mode 100644 index 000000000..61cff3374 --- /dev/null +++ b/docs/version-specific/supported-software/t/Triton.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Triton + +Triton is a language and compiler for parallel programming. It aims to provide a Python-based programming environment for productively writing custom DNN compute kernels capable of running at maximal throughput on modern GPU hardware. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/Trycycler.md b/docs/version-specific/supported-software/t/Trycycler.md new file mode 100644 index 000000000..c772c5aa8 --- /dev/null +++ b/docs/version-specific/supported-software/t/Trycycler.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Trycycler + +Trycycler is a tool for generating consensus long-read assemblies for bacterial genomes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.3`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.5.2`` | | ``foss/2021a`` +``0.5.3`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/TurboVNC.md b/docs/version-specific/supported-software/t/TurboVNC.md new file mode 100644 index 000000000..3fdcc5ad8 --- /dev/null +++ b/docs/version-specific/supported-software/t/TurboVNC.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# TurboVNC + +TurboVNC is a derivative of VNC (Virtual Network Computing) that is tuned to provide peak performance for 3D and video workloads. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.3`` | ``GCCcore/8.2.0`` +``3.0.1`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/index.md b/docs/version-specific/supported-software/t/index.md new file mode 100644 index 000000000..df8305a95 --- /dev/null +++ b/docs/version-specific/supported-software/t/index.md @@ -0,0 +1,148 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (t) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - *t* - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [T-Coffee](T-Coffee.md) + * [t-SNE-CUDA](t-SNE-CUDA.md) + * [tabix](tabix.md) + * [tabixpp](tabixpp.md) + * [taco](taco.md) + * [TagDust](TagDust.md) + * [TagLib](TagLib.md) + * [Taiyaki](Taiyaki.md) + * [TALON](TALON.md) + * [TALYS](TALYS.md) + * [TAMkin](TAMkin.md) + * [tantan](tantan.md) + * [Tapenade](Tapenade.md) + * [task-spooler](task-spooler.md) + * [taxator-tk](taxator-tk.md) + * [TBA](TBA.md) + * [tbb](tbb.md) + * [tbl2asn](tbl2asn.md) + * [TCC](TCC.md) + * [Tcl](Tcl.md) + * [TCLAP](TCLAP.md) + * [tcsh](tcsh.md) + * [tecplot360ex](tecplot360ex.md) + * [TELEMAC-MASCARET](TELEMAC-MASCARET.md) + * [Telescope](Telescope.md) + * [Teneto](Teneto.md) + * [tensorboard](tensorboard.md) + * [tensorboardX](tensorboardX.md) + * [TensorFlow](TensorFlow.md) + * [tensorflow-compression](tensorflow-compression.md) + * [TensorFlow-Datasets](TensorFlow-Datasets.md) + * [TensorFlow-Graphics](TensorFlow-Graphics.md) + * [tensorflow-probability](tensorflow-probability.md) + * [TensorRT](TensorRT.md) + * [terastructure](terastructure.md) + * [termcolor](termcolor.md) + * [Tesla-Deployment-Kit](Tesla-Deployment-Kit.md) + * [tesseract](tesseract.md) + * [testpath](testpath.md) + * [TetGen](TetGen.md) + * [TEToolkit](TEToolkit.md) + * [TEtranscripts](TEtranscripts.md) + * [texinfo](texinfo.md) + * [texlive](texlive.md) + * [Text-CSV](Text-CSV.md) + * [TF-COMB](TF-COMB.md) + * [TFEA](TFEA.md) + * [Theano](Theano.md) + * [ThemisPy](ThemisPy.md) + * [THetA](THetA.md) + * [thirdorder](thirdorder.md) + * [thurstonianIRT](thurstonianIRT.md) + * [TiCCutils](TiCCutils.md) + * [tidybayes](tidybayes.md) + * [tidymodels](tidymodels.md) + * [Tika](Tika.md) + * [tiktoken](tiktoken.md) + * [TiMBL](TiMBL.md) + * [time](time.md) + * [timm](timm.md) + * [TINKER](TINKER.md) + * [tiny-cuda-nn](tiny-cuda-nn.md) + * [TinyDB](TinyDB.md) + * [TinyXML](TinyXML.md) + * [Tk](Tk.md) + * [Tkinter](Tkinter.md) + * [TM-align](TM-align.md) + * [tMAE](tMAE.md) + * [tmap](tmap.md) + * [tmux](tmux.md) + * [TN93](TN93.md) + * [TOBIAS](TOBIAS.md) + * [ToFu](ToFu.md) + * [Togl](Togl.md) + * [toil](toil.md) + * [tokenizers](tokenizers.md) + * [Tombo](Tombo.md) + * [TOML-Fortran](TOML-Fortran.md) + * [TOPAS](TOPAS.md) + * [topaz](topaz.md) + * [TopHat](TopHat.md) + * [torchaudio](torchaudio.md) + * [torchdata](torchdata.md) + * [torchinfo](torchinfo.md) + * [TorchIO](TorchIO.md) + * [torchsampler](torchsampler.md) + * [torchtext](torchtext.md) + * [torchvf](torchvf.md) + * [torchvision](torchvision.md) + * [tornado](tornado.md) + * [TotalView](TotalView.md) + * [tox](tox.md) + * [tqdm](tqdm.md) + * [Tracer](Tracer.md) + * [TranscriptClean](TranscriptClean.md) + * [TransDecoder](TransDecoder.md) + * [Transformers](Transformers.md) + * [Transrate](Transrate.md) + * [travis](travis.md) + * [TRAVIS-Analyzer](TRAVIS-Analyzer.md) + * [treatSens](treatSens.md) + * [TreeMix](TreeMix.md) + * [TreeShrink](TreeShrink.md) + * [TRF](TRF.md) + * [Triangle](Triangle.md) + * [Trilinos](Trilinos.md) + * [Trim_Galore](Trim_Galore.md) + * [trimAl](trimAl.md) + * [trimesh](trimesh.md) + * [Trimmomatic](Trimmomatic.md) + * [Trinity](Trinity.md) + * [Trinotate](Trinotate.md) + * [Triplexator](Triplexator.md) + * [TRIQS](TRIQS.md) + * [TRIQS-cthyb](TRIQS-cthyb.md) + * [TRIQS-dft_tools](TRIQS-dft_tools.md) + * [TRIQS-tprf](TRIQS-tprf.md) + * [Triton](Triton.md) + * [tRNAscan-SE](tRNAscan-SE.md) + * [TRUST](TRUST.md) + * [TRUST4](TRUST4.md) + * [Trycycler](Trycycler.md) + * [tseriesEntropy](tseriesEntropy.md) + * [tsne](tsne.md) + * [turbinesFoam](turbinesFoam.md) + * [TurboVNC](TurboVNC.md) + * [TVB](TVB.md) + * [tvb-data](tvb-data.md) + * [TVB-deps](TVB-deps.md) + * [tvb-framework](tvb-framework.md) + * [tvb-library](tvb-library.md) + * [TWL-NINJA](TWL-NINJA.md) + * [TXR](TXR.md) + * [typing-extensions](typing-extensions.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - *t* - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/t-SNE-CUDA.md b/docs/version-specific/supported-software/t/t-SNE-CUDA.md new file mode 100644 index 000000000..384826e5d --- /dev/null +++ b/docs/version-specific/supported-software/t/t-SNE-CUDA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# t-SNE-CUDA + +GPU Accelerated t-SNE for CUDA with Python bindings + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.1`` | ``-CUDA-12.1.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tMAE.md b/docs/version-specific/supported-software/t/tMAE.md new file mode 100644 index 000000000..91c8ef23b --- /dev/null +++ b/docs/version-specific/supported-software/t/tMAE.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# tMAE + +Package containing functions to: perform a negative binomial test on allele-specific counts add gnomAD minor allele frequencies MAplot (FC vs total counts) of allele-specific counts and results allelic counts (ALT vs REF) + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.0`` | ``-R-4.0.3`` | ``foss/2020b`` +``1.0.1`` | ``-R-4.1.2`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tRNAscan-SE.md b/docs/version-specific/supported-software/t/tRNAscan-SE.md new file mode 100644 index 000000000..1b1c293ef --- /dev/null +++ b/docs/version-specific/supported-software/t/tRNAscan-SE.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# tRNAscan-SE + +A program for detection of tRNA genes + +*homepage*: + +version | toolchain +--------|---------- +``2.0.12`` | ``GCC/11.2.0`` +``2.0.12`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tabix.md b/docs/version-specific/supported-software/t/tabix.md new file mode 100644 index 000000000..1baca9849 --- /dev/null +++ b/docs/version-specific/supported-software/t/tabix.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# tabix + +Generic indexer for TAB-delimited genome position files + +*homepage*: + +version | toolchain +--------|---------- +``0.2.6`` | ``GCCcore/10.2.0`` +``0.2.6`` | ``GCCcore/10.3.0`` +``0.2.6`` | ``GCCcore/11.2.0`` +``0.2.6`` | ``GCCcore/11.3.0`` +``0.2.6`` | ``GCCcore/5.4.0`` +``0.2.6`` | ``GCCcore/6.4.0`` +``0.2.6`` | ``GCCcore/7.3.0`` +``0.2.6`` | ``GCCcore/8.3.0`` +``0.2.6`` | ``foss/2016a`` +``0.2.6`` | ``intel/2016a`` +``0.2.6`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tabixpp.md b/docs/version-specific/supported-software/t/tabixpp.md new file mode 100644 index 000000000..1d296064b --- /dev/null +++ b/docs/version-specific/supported-software/t/tabixpp.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# tabixpp + +C++ wrapper to tabix indexer + +*homepage*: + +version | toolchain +--------|---------- +``1.1.0`` | ``GCC/10.2.0`` +``1.1.0`` | ``GCC/10.3.0`` +``1.1.0`` | ``GCC/11.2.0`` +``1.1.0`` | ``GCC/9.3.0`` +``1.1.2`` | ``GCC/11.3.0`` +``1.1.2`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/taco.md b/docs/version-specific/supported-software/t/taco.md new file mode 100644 index 000000000..5a5ff8804 --- /dev/null +++ b/docs/version-specific/supported-software/t/taco.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# taco + +Multi-sample transcriptome assembly from RNA-Seq + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.5.1`` | ``-Python-2.7.12`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tantan.md b/docs/version-specific/supported-software/t/tantan.md new file mode 100644 index 000000000..f92872e9e --- /dev/null +++ b/docs/version-specific/supported-software/t/tantan.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# tantan + +tantan identifies simple regions / low complexity / tandem repeats in DNA or protein sequences + +*homepage*: + +version | toolchain +--------|---------- +``40`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/task-spooler.md b/docs/version-specific/supported-software/t/task-spooler.md new file mode 100644 index 000000000..bc49e3114 --- /dev/null +++ b/docs/version-specific/supported-software/t/task-spooler.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# task-spooler + +task spooler is a Unix batch system where the tasks spooled run one after the other. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.2`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/taxator-tk.md b/docs/version-specific/supported-software/t/taxator-tk.md new file mode 100644 index 000000000..d67ed11cd --- /dev/null +++ b/docs/version-specific/supported-software/t/taxator-tk.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# taxator-tk + +A set of programs for the taxonomic analysis of nucleotide sequence data + +*homepage*: + +version | toolchain +--------|---------- +``1.3.3`` | ``GCC/10.2.0`` +``1.3.3`` | ``foss/2018b`` +``1.3.3`` | ``gompi/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tbb.md b/docs/version-specific/supported-software/t/tbb.md new file mode 100644 index 000000000..30f23cbda --- /dev/null +++ b/docs/version-specific/supported-software/t/tbb.md @@ -0,0 +1,46 @@ +--- +search: + boost: 0.5 +--- +# tbb + +Intel Threading Building Blocks (Intel TBB) is a widely used, award-winning C++ template library for creating reliable, portable, and scalable parallel applications. Use Intel TBB for a simple and rapid way of developing robust task-based parallel applications that scale to available processor cores, are compatible with multiple environments, and are easier to maintain. Intel TBB is the most proficient way to implement future-proof parallel applications that tap into the power and performance of multicore and manycore hardware platforms. + +*homepage*: + +version | toolchain +--------|---------- +``2017.2.132`` | ``system`` +``2017.4.174`` | ``system`` +``2017.6.196`` | ``system`` +``2017_U5`` | ``GCCcore/5.4.0`` +``2017_U5`` | ``foss/2016b`` +``2017_U5`` | ``intel/2017a`` +``2017_U6`` | ``GCCcore/6.3.0`` +``2017_U6`` | ``intel/2017a`` +``2018_U1`` | ``GCCcore/6.4.0`` +``2018_U2`` | ``GCCcore/6.4.0`` +``2018_U3`` | ``GCCcore/6.4.0`` +``2018_U5`` | ``GCCcore/6.4.0`` +``2018_U5`` | ``GCCcore/7.3.0`` +``2019_U4`` | ``GCCcore/8.2.0`` +``2019_U9`` | ``GCCcore/8.3.0`` +``2020.1`` | ``GCCcore/12.3.0`` +``2020.1`` | ``GCCcore/9.3.0`` +``2020.2`` | ``GCCcore/8.3.0`` +``2020.3`` | ``GCCcore/10.2.0`` +``2020.3`` | ``GCCcore/10.3.0`` +``2020.3`` | ``GCCcore/11.2.0`` +``2020.3`` | ``GCCcore/12.3.0`` +``2021.10.0`` | ``GCCcore/12.2.0`` +``2021.11.0`` | ``GCCcore/12.3.0`` +``2021.4.0`` | ``GCCcore/11.2.0`` +``2021.5.0`` | ``GCCcore/11.3.0`` +``4.0.0.233`` | ``system`` +``4.0.5.339`` | ``system`` +``4.3.6.211`` | ``system`` +``4.4.2.152`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tbl2asn.md b/docs/version-specific/supported-software/t/tbl2asn.md new file mode 100644 index 000000000..e106adfb6 --- /dev/null +++ b/docs/version-specific/supported-software/t/tbl2asn.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# tbl2asn + +Tbl2asn is a command-line program that automates the creation of sequence records for submission to GenBank + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20180227`` | ``-linux64`` | ``system`` +``20200302`` | ``-linux64`` | ``system`` +``20220427`` | ``-linux64`` | ``system`` +``20230713`` | ``-linux64`` | ``system`` +``25.8`` | ``-linux64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tcsh.md b/docs/version-specific/supported-software/t/tcsh.md new file mode 100644 index 000000000..31cc848e7 --- /dev/null +++ b/docs/version-specific/supported-software/t/tcsh.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# tcsh + +Tcsh is an enhanced, but completely compatible version of the Berkeley UNIX C shell (csh). It is a command language interpreter usable both as an interactive login shell and a shell script command processor. It includes a command-line editor, programmable word completion, spelling correction, a history mechanism, job control and a C-like syntax. + +*homepage*: + +version | toolchain +--------|---------- +``6.19.00`` | ``intel/2016a`` +``6.20.00`` | ``GCCcore/5.4.0`` +``6.20.00`` | ``GCCcore/6.4.0`` +``6.20.00`` | ``GCCcore/7.3.0`` +``6.22.02`` | ``GCCcore/8.2.0`` +``6.22.02`` | ``GCCcore/8.3.0`` +``6.22.02`` | ``GCCcore/9.3.0`` +``6.22.03`` | ``GCCcore/10.2.0`` +``6.22.04`` | ``GCCcore/10.3.0`` +``6.24.01`` | ``GCCcore/11.2.0`` +``6.24.01`` | ``GCCcore/11.3.0`` +``6.24.07`` | ``GCCcore/12.2.0`` +``6.24.10`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tecplot360ex.md b/docs/version-specific/supported-software/t/tecplot360ex.md new file mode 100644 index 000000000..6b41ffb7d --- /dev/null +++ b/docs/version-specific/supported-software/t/tecplot360ex.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# tecplot360ex + +Quickly plot and animate your CFD results exactly the way you want. Analyze complex solutions, arrange multiple layouts, and communicate your results with professional images and animations. + +*homepage*: + +version | toolchain +--------|---------- +``linux64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tensorboard.md b/docs/version-specific/supported-software/t/tensorboard.md new file mode 100644 index 000000000..d8da38816 --- /dev/null +++ b/docs/version-specific/supported-software/t/tensorboard.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# tensorboard + +TensorBoard is a suite of web applications for inspecting and understanding your TensorFlow runs and graphs. + +*homepage*: + +version | toolchain +--------|---------- +``2.10.0`` | ``foss/2022a`` +``2.15.1`` | ``gfbf/2023a`` +``2.8.0`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tensorboardX.md b/docs/version-specific/supported-software/t/tensorboardX.md new file mode 100644 index 000000000..e05fcde5a --- /dev/null +++ b/docs/version-specific/supported-software/t/tensorboardX.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# tensorboardX + +Tensorboard for PyTorch. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``2.1`` | ``-PyTorch-1.7.1`` | ``fosscuda/2020b`` +``2.2`` | ``-PyTorch-1.7.1`` | ``foss/2020b`` +``2.2`` | ``-PyTorch-1.7.1`` | ``fosscuda/2020b`` +``2.5.1`` | | ``foss/2022a`` +``2.6.2.2`` | | ``foss/2022b`` +``2.6.2.2`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tensorflow-compression.md b/docs/version-specific/supported-software/t/tensorflow-compression.md new file mode 100644 index 000000000..b881b02a3 --- /dev/null +++ b/docs/version-specific/supported-software/t/tensorflow-compression.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# tensorflow-compression + +TensorFlow Compression (TFC) contains data compression tools for TensorFlow. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.11.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tensorflow-probability.md b/docs/version-specific/supported-software/t/tensorflow-probability.md new file mode 100644 index 000000000..85ea10f22 --- /dev/null +++ b/docs/version-specific/supported-software/t/tensorflow-probability.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# tensorflow-probability + +TensorFlow Probability (TFP) is a library for probabilistic reasoning and statistical analysis. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.12.1`` | | ``foss/2020b`` +``0.12.1`` | | ``fosscuda/2020b`` +``0.14.0`` | | ``foss/2021a`` +``0.16.0`` | | ``foss/2021b`` +``0.19.0`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.19.0`` | | ``foss/2022a`` +``0.20.0`` | | ``foss/2023a`` +``0.9.0`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/terastructure.md b/docs/version-specific/supported-software/t/terastructure.md new file mode 100644 index 000000000..dda8f2686 --- /dev/null +++ b/docs/version-specific/supported-software/t/terastructure.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# terastructure + +TeraStructure is a new algorithm to fit Bayesian models of genetic variation in human populations on tera-sample-sized data sets (10^12 observed genotypes, i.e., 1M individuals at 1M SNPs). This package provides a scalable, multi-threaded C++ implementation that can be run on a single computer. + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``GCC/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/termcolor.md b/docs/version-specific/supported-software/t/termcolor.md new file mode 100644 index 000000000..e757fec09 --- /dev/null +++ b/docs/version-specific/supported-software/t/termcolor.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# termcolor + +Termcolor is a header-only C++ library for printing colored messages to the terminal. + +*homepage*: + +version | toolchain +--------|---------- +``2.0.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tesseract.md b/docs/version-specific/supported-software/t/tesseract.md new file mode 100644 index 000000000..afbb8a805 --- /dev/null +++ b/docs/version-specific/supported-software/t/tesseract.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# tesseract + +Tesseract is an optical character recognition engine + +*homepage*: + +version | toolchain +--------|---------- +``4.0.0`` | ``GCCcore/7.3.0`` +``4.1.0`` | ``GCCcore/10.3.0`` +``4.1.0`` | ``GCCcore/8.2.0`` +``5.3.0`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/testpath.md b/docs/version-specific/supported-software/t/testpath.md new file mode 100644 index 000000000..65dcb79e2 --- /dev/null +++ b/docs/version-specific/supported-software/t/testpath.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# testpath + +Test utilities for code working with files and commands + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3`` | ``-Python-2.7.11`` | ``foss/2016a`` +``0.3`` | ``-Python-3.5.1`` | ``foss/2016a`` +``0.3`` | ``-Python-2.7.12`` | ``foss/2016b`` +``0.3`` | ``-Python-2.7.11`` | ``intel/2016a`` +``0.3`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.3`` | ``-Python-3.5.2`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/texinfo.md b/docs/version-specific/supported-software/t/texinfo.md new file mode 100644 index 000000000..855e3b810 --- /dev/null +++ b/docs/version-specific/supported-software/t/texinfo.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# texinfo + +Texinfo is the official documentation format of the GNU project. + +*homepage*: + +version | toolchain +--------|---------- +``4.13a`` | ``system`` +``5.2`` | ``GCC/4.8.2`` +``6.4`` | ``GCCcore/5.4.0`` +``6.5`` | ``GCCcore/6.4.0`` +``6.5`` | ``GCCcore/7.3.0`` +``6.6`` | ``GCCcore/8.2.0`` +``6.7`` | ``GCCcore/10.2.0`` +``6.7`` | ``GCCcore/8.3.0`` +``6.7`` | ``GCCcore/9.3.0`` +``6.8`` | ``GCCcore/11.2.0`` +``7.0.2`` | ``GCCcore/11.3.0`` +``7.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/texlive.md b/docs/version-specific/supported-software/t/texlive.md new file mode 100644 index 000000000..9e587303a --- /dev/null +++ b/docs/version-specific/supported-software/t/texlive.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# texlive + +TeX is a typesetting language. Instead of visually formatting your text, you enter your manuscript text intertwined with TeX commands in a plain text file. You then run TeX to produce formatted output, such as a PDF file. Thus, in contrast to standard word processors, your document is a separate file that does not pretend to be a representation of the final typeset output, and so can be easily edited and manipulated. + +*homepage*: + +version | toolchain +--------|---------- +``20200406`` | ``GCCcore/8.3.0`` +``20210324`` | ``GCC/10.3.0`` +``20210324`` | ``GCC/11.2.0`` +``20220321`` | ``GCC/11.2.0`` +``20230313`` | ``GCC/11.3.0`` +``20230313`` | ``GCC/12.3.0`` +``20230313`` | ``GCC/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/thirdorder.md b/docs/version-specific/supported-software/t/thirdorder.md new file mode 100644 index 000000000..33d62aaab --- /dev/null +++ b/docs/version-specific/supported-software/t/thirdorder.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# thirdorder + +A Python script to help create input files for computing anhamonic interatomic force constants, harnessing the symmetries of the system to minimize the number of required DFT calculations. A second mode of operation allows the user to build the third-order IFC matrix from the results of those runs. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/thurstonianIRT.md b/docs/version-specific/supported-software/t/thurstonianIRT.md new file mode 100644 index 000000000..50d42369b --- /dev/null +++ b/docs/version-specific/supported-software/t/thurstonianIRT.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# thurstonianIRT + +Fit Thurstonian IRT models in R using Stan, lavaan, or Mplus + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.9.0`` | ``-R-3.6.0`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tidybayes.md b/docs/version-specific/supported-software/t/tidybayes.md new file mode 100644 index 000000000..c80a1a65d --- /dev/null +++ b/docs/version-specific/supported-software/t/tidybayes.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# tidybayes + +Compose data for and extract, manipulate, and visualize posterior draws from Bayesian models ('JAGS', 'Stan', 'rstanarm', 'brms', 'MCMCglmm', 'coda', ...) in a tidy data format. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.1`` | ``-R-4.0.0`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tidymodels.md b/docs/version-specific/supported-software/t/tidymodels.md new file mode 100644 index 000000000..4d111a5d2 --- /dev/null +++ b/docs/version-specific/supported-software/t/tidymodels.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# tidymodels + +The tidy modeling "verse" is a collection of packages for modeling and statistical analysis that share the underlying design philosophy, grammar, and data structures of the tidyverse. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.0`` | ``-R-4.0.0`` | ``foss/2020a`` +``1.1.0`` | | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tiktoken.md b/docs/version-specific/supported-software/t/tiktoken.md new file mode 100644 index 000000000..491fb006f --- /dev/null +++ b/docs/version-specific/supported-software/t/tiktoken.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# tiktoken + +tiktoken is a fast BPE tokeniser for use with OpenAI's models + +*homepage*: + +version | toolchain +--------|---------- +``0.6.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/time.md b/docs/version-specific/supported-software/t/time.md new file mode 100644 index 000000000..23efa302c --- /dev/null +++ b/docs/version-specific/supported-software/t/time.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# time + +The `time' command runs another program, then displays information about the resources used by that program, collected by the system while the program was running. + +*homepage*: + +version | toolchain +--------|---------- +``1.7`` | ``system`` +``1.9`` | ``GCCcore/10.2.0`` +``1.9`` | ``GCCcore/10.3.0`` +``1.9`` | ``GCCcore/11.2.0`` +``1.9`` | ``GCCcore/11.3.0`` +``1.9`` | ``GCCcore/12.2.0`` +``1.9`` | ``GCCcore/12.3.0`` +``1.9`` | ``GCCcore/7.3.0`` +``1.9`` | ``GCCcore/8.3.0`` +``1.9`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/timm.md b/docs/version-specific/supported-software/t/timm.md new file mode 100644 index 000000000..8b99f86d6 --- /dev/null +++ b/docs/version-specific/supported-software/t/timm.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# timm + +timm is a library containing SOTA computer vision models, layers, utilities, optimizers, schedulers, data-loaders, augmentations, and training/evaluation scripts. It comes packaged with >700 pretrained models, and is designed to be flexible and easy to use. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.6.13`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.9.7`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tiny-cuda-nn.md b/docs/version-specific/supported-software/t/tiny-cuda-nn.md new file mode 100644 index 000000000..790cc29af --- /dev/null +++ b/docs/version-specific/supported-software/t/tiny-cuda-nn.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# tiny-cuda-nn + +is a small, self-contained framework for training and querying neural networks. Most notably, it contains a lightning fast "fully fused" multi-layer perceptron (technical paper), a versatile multiresolution hash encoding (technical paper), as well as support for various other input encodings, losses, and optimizers. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.6`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tmap.md b/docs/version-specific/supported-software/t/tmap.md new file mode 100644 index 000000000..f8a74f375 --- /dev/null +++ b/docs/version-specific/supported-software/t/tmap.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# tmap + +tmap is a very fast visualization library for large, high-dimensional data sets. Currently, tmap is available for Python. tmap's graph layouts are based on the OGDF library. + +*homepage*: + +version | toolchain +--------|---------- +``20220502`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tmux.md b/docs/version-specific/supported-software/t/tmux.md new file mode 100644 index 000000000..26564a608 --- /dev/null +++ b/docs/version-specific/supported-software/t/tmux.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# tmux + +tmux is a terminal multiplexer. It lets you switch easily between several programs in one terminal, detach them (they keep running in the background) and reattach them to a different terminal. + +*homepage*: + +version | toolchain +--------|---------- +``1.9a`` | ``GCC/4.9.2`` +``2.2`` | ``GCCcore/4.9.3`` +``2.3`` | ``GCC/5.4.0-2.26`` +``2.3`` | ``system`` +``3.1c`` | ``GCCcore/8.3.0`` +``3.2`` | ``GCCcore/10.2.0`` +``3.2`` | ``GCCcore/9.3.0`` +``3.2a`` | ``GCCcore/10.3.0`` +``3.2a`` | ``GCCcore/11.2.0`` +``3.2a`` | ``system`` +``3.3a`` | ``GCCcore/11.3.0`` +``3.3a`` | ``GCCcore/12.2.0`` +``3.3a`` | ``GCCcore/12.3.0`` +``3.3a`` | ``system`` +``3.4`` | ``GCCcore/13.2.0`` +``3.4`` | ``GCCcore/13.3.0`` +``3.4`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/toil.md b/docs/version-specific/supported-software/t/toil.md new file mode 100644 index 000000000..890d803b1 --- /dev/null +++ b/docs/version-specific/supported-software/t/toil.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# toil + +A scalable, efficient, cross-platform (Linux/macOS) and easy-to-use workflow engine in pure Python. + +*homepage*: + +version | toolchain +--------|---------- +``5.8.0`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tokenizers.md b/docs/version-specific/supported-software/t/tokenizers.md new file mode 100644 index 000000000..c7a71305f --- /dev/null +++ b/docs/version-specific/supported-software/t/tokenizers.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# tokenizers + +Fast State-of-the-Art Tokenizers optimized for Research and Production + +*homepage*: + +version | toolchain +--------|---------- +``0.12.1`` | ``GCCcore/10.3.0`` +``0.13.3`` | ``GCCcore/12.2.0`` +``0.15.2`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/topaz.md b/docs/version-specific/supported-software/t/topaz.md new file mode 100644 index 000000000..2b7a3f02c --- /dev/null +++ b/docs/version-specific/supported-software/t/topaz.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# topaz + +A pipeline for particle detection in cryo-electron microscopy images using convolutional neural networks trained from positive and unlabeled examples. Topaz also includes methods for micrograph denoising using deep de- noising models. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.2.5`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``0.2.5`` | | ``foss/2021a`` +``0.2.5.20230926`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.2.5.20231120`` | ``-CUDA-12.1.1`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/torchaudio.md b/docs/version-specific/supported-software/t/torchaudio.md new file mode 100644 index 000000000..66a1a7add --- /dev/null +++ b/docs/version-specific/supported-software/t/torchaudio.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# torchaudio + +Data manipulation and transformation for audio signal processing, powered by PyTorch + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.12.0`` | ``-PyTorch-1.12.0-CUDA-11.7.0`` | ``foss/2022a`` +``0.12.0`` | ``-PyTorch-1.12.0`` | ``foss/2022a`` +``0.5.0`` | ``-Python-3.7.4-PyTorch-1.4.0`` | ``foss/2019b`` +``0.5.0`` | ``-Python-3.7.4-PyTorch-1.4.0`` | ``fosscuda/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/torchdata.md b/docs/version-specific/supported-software/t/torchdata.md new file mode 100644 index 000000000..4c0cea639 --- /dev/null +++ b/docs/version-specific/supported-software/t/torchdata.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# torchdata + +TorchData is a prototype library of common modular data loading primitives for easily constructing flexible and performant data pipelines." + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.0`` | ``-PyTorch-1.11.0-CUDA-11.3.1`` | ``foss/2021a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/torchinfo.md b/docs/version-specific/supported-software/t/torchinfo.md new file mode 100644 index 000000000..bf69ad412 --- /dev/null +++ b/docs/version-specific/supported-software/t/torchinfo.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# torchinfo + +" Torchinfo provides information complementary to what is provided by print(your_model) in PyTorch, similar to Tensorflow's model.summary() API to view the visualization of the model, which is helpful while debugging your network. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5.2`` | ``-PyTorch-1.7.1`` | ``foss/2020b`` +``1.5.2`` | ``-PyTorch-1.7.1`` | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/torchsampler.md b/docs/version-specific/supported-software/t/torchsampler.md new file mode 100644 index 000000000..bab3362a5 --- /dev/null +++ b/docs/version-specific/supported-software/t/torchsampler.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# torchsampler + +A (PyTorch) imbalanced dataset sampler for oversampling low classes and undersampling high frequent ones. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.1.2`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/torchtext.md b/docs/version-specific/supported-software/t/torchtext.md new file mode 100644 index 000000000..cc5a298af --- /dev/null +++ b/docs/version-specific/supported-software/t/torchtext.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# torchtext + +Data loaders and abstractions for text and NLP + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.0`` | ``-PyTorch-1.9.0`` | ``fosscuda/2020b`` +``0.14.1`` | ``-PyTorch-1.12.0`` | ``foss/2022a`` +``0.5.0`` | ``-PyTorch-1.4.0-Python-3.7.4`` | ``fosscuda/2019b`` +``0.7.0`` | ``-Python-3.7.4-PyTorch-1.6.0`` | ``foss/2019b`` +``0.7.0`` | ``-Python-3.7.4-PyTorch-1.6.0`` | ``fosscuda/2019b`` +``0.8.1`` | ``-PyTorch-1.7.1`` | ``fosscuda/2020b`` +``0.9.1`` | ``-PyTorch-1.8.1`` | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/torchvf.md b/docs/version-specific/supported-software/t/torchvf.md new file mode 100644 index 000000000..e125a0ea8 --- /dev/null +++ b/docs/version-specific/supported-software/t/torchvf.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# torchvf + +TorchVF is a unifying Python library for using vector fields for efficient proposal-free instance segmentation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.3`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.1.3`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/torchvision.md b/docs/version-specific/supported-software/t/torchvision.md new file mode 100644 index 000000000..a26466d24 --- /dev/null +++ b/docs/version-specific/supported-software/t/torchvision.md @@ -0,0 +1,44 @@ +--- +search: + boost: 0.5 +--- +# torchvision + +Datasets, Transforms and Models specific to Computer Vision + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.0`` | ``-PyTorch-1.9.0`` | ``fosscuda/2020b`` +``0.11.1`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``0.11.1`` | | ``foss/2021a`` +``0.11.3`` | ``-CUDA-11.3.1`` | ``foss/2021a`` +``0.11.3`` | | ``foss/2021a`` +``0.12.0`` | ``-PyTorch-1.11.0-CUDA-11.3.1`` | ``foss/2021a`` +``0.13.1`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``0.13.1`` | | ``foss/2022a`` +``0.14.1`` | | ``foss/2022b`` +``0.16.0`` | ``-CUDA-12.1.1`` | ``foss/2023a`` +``0.16.0`` | | ``foss/2023a`` +``0.2.0`` | ``-Python-3.6.4-CUDA-9.1.85`` | ``foss/2018a`` +``0.2.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``0.2.2`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.2.2`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``0.3.0`` | ``-Python-3.7.2`` | ``foss/2019a`` +``0.4.2`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.4.2`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``0.4.2`` | ``-PyTorch-1.3.1`` | ``fosscuda/2020b`` +``0.5.0`` | ``-Python-3.7.4-PyTorch-1.4.0`` | ``fosscuda/2019b`` +``0.7.0`` | ``-Python-3.7.4-PyTorch-1.6.0`` | ``foss/2019b`` +``0.7.0`` | ``-Python-3.7.4-PyTorch-1.6.0-imkl`` | ``fosscuda/2019b`` +``0.7.0`` | ``-Python-3.7.4-PyTorch-1.6.0`` | ``fosscuda/2019b`` +``0.8.2`` | ``-PyTorch-1.7.1`` | ``foss/2020b`` +``0.8.2`` | ``-Python-3.7.4-PyTorch-1.7.1`` | ``fosscuda/2019b`` +``0.8.2`` | ``-PyTorch-1.7.1`` | ``fosscuda/2020b`` +``0.9.1`` | ``-Python-3.7.4-PyTorch-1.8.1`` | ``fosscuda/2019b`` +``0.9.1`` | ``-PyTorch-1.8.1`` | ``fosscuda/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tornado.md b/docs/version-specific/supported-software/t/tornado.md new file mode 100644 index 000000000..241bb525c --- /dev/null +++ b/docs/version-specific/supported-software/t/tornado.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# tornado + +Tornado is a Python web framework and asynchronous networking library. + +*homepage*: + +version | toolchain +--------|---------- +``6.3.2`` | ``GCCcore/12.3.0`` +``6.4`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tox.md b/docs/version-specific/supported-software/t/tox.md new file mode 100644 index 000000000..7cf574d07 --- /dev/null +++ b/docs/version-specific/supported-software/t/tox.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# tox + +tox aims to automate and standardize testing in Python + +*homepage*: + +version | toolchain +--------|---------- +``3.25.1`` | ``GCCcore/10.2.0`` +``3.25.1`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tqdm.md b/docs/version-specific/supported-software/t/tqdm.md new file mode 100644 index 000000000..dabfed554 --- /dev/null +++ b/docs/version-specific/supported-software/t/tqdm.md @@ -0,0 +1,34 @@ +--- +search: + boost: 0.5 +--- +# tqdm + +A fast, extensible progress bar for Python and CLI + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.24.0`` | ``-Python-3.5.1`` | ``foss/2016a`` +``4.24.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``4.29.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``4.32.1`` | | ``GCCcore/8.2.0`` +``4.41.1`` | | ``GCCcore/8.3.0`` +``4.41.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``4.41.1`` | ``-Python-3.6.6`` | ``intel/2018b`` +``4.47.0`` | | ``GCCcore/9.3.0`` +``4.51.0`` | ``-Python-3.8.2`` | ``intel/2020a`` +``4.56.2`` | | ``GCCcore/10.2.0`` +``4.60.0`` | | ``GCCcore/10.2.0`` +``4.61.1`` | | ``GCCcore/10.3.0`` +``4.61.2`` | | ``GCCcore/10.3.0`` +``4.62.3`` | | ``GCCcore/11.2.0`` +``4.64.0`` | | ``GCCcore/11.3.0`` +``4.64.1`` | | ``GCCcore/12.2.0`` +``4.66.1`` | | ``GCCcore/12.3.0`` +``4.66.2`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/travis.md b/docs/version-specific/supported-software/t/travis.md new file mode 100644 index 000000000..33630f9b1 --- /dev/null +++ b/docs/version-specific/supported-software/t/travis.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# travis + +Travis CI Client (CLI and Ruby library) + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.8.2`` | ``-Ruby-2.3.1`` | ``system`` +``1.8.4`` | ``-Ruby-2.3.3`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/treatSens.md b/docs/version-specific/supported-software/t/treatSens.md new file mode 100644 index 000000000..f1c3aadd5 --- /dev/null +++ b/docs/version-specific/supported-software/t/treatSens.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# treatSens + +Utilities to investigate sensitivity to unmeasured confounding in parametric models with either binary or continuous treatment. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0-20201002`` | ``-R-4.0.0`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/trimAl.md b/docs/version-specific/supported-software/t/trimAl.md new file mode 100644 index 000000000..3db3bcccc --- /dev/null +++ b/docs/version-specific/supported-software/t/trimAl.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# trimAl + +EVB, FEP and LIE simulator. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.1`` | ``GCC/8.2.0-2.31.1`` +``1.4.1`` | ``GCCcore/10.3.0`` +``1.4.1`` | ``GCCcore/11.2.0`` +``1.4.1`` | ``GCCcore/11.3.0`` +``1.4.1`` | ``GCCcore/12.3.0`` +``1.4.1`` | ``GCCcore/9.3.0`` +``1.4.1`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/trimesh.md b/docs/version-specific/supported-software/t/trimesh.md new file mode 100644 index 000000000..a67dec99d --- /dev/null +++ b/docs/version-specific/supported-software/t/trimesh.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# trimesh + +Trimesh is a Python (2.7- 3.3+) library for loading and using triangular meshes with an emphasis on watertight meshes. The goal of the library is to provide a fully featured Trimesh object which allows for easy manipulation and analysis, in the style of the excellent Polygon object in the Shapely library. + +*homepage*: + +version | toolchain +--------|---------- +``3.17.1`` | ``foss/2022a`` +``3.21.5`` | ``gfbf/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tseriesEntropy.md b/docs/version-specific/supported-software/t/tseriesEntropy.md new file mode 100644 index 000000000..def51ff00 --- /dev/null +++ b/docs/version-specific/supported-software/t/tseriesEntropy.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# tseriesEntropy + +Implements an Entropy measure of dependence based on the Bhattacharya-Hellinger-Matusita distance. Can be used as a (nonlinear) autocorrelation/crosscorrelation function for continuous and categorical time series. The package includes tests for serial dependence and nonlinearity based on it. Some routines have a parallel version that can be used in a multicore/cluster environment. The package makes use of S4 classes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.6-0`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tsne.md b/docs/version-specific/supported-software/t/tsne.md new file mode 100644 index 000000000..5ef25c03c --- /dev/null +++ b/docs/version-specific/supported-software/t/tsne.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# tsne + +Python library containing T-SNE algorithms. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.8`` | ``-Python-2.7.16`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/turbinesFoam.md b/docs/version-specific/supported-software/t/turbinesFoam.md new file mode 100644 index 000000000..0dfffc0ee --- /dev/null +++ b/docs/version-specific/supported-software/t/turbinesFoam.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# turbinesFoam + +turbinesFoam is a library for simulating wind and marine hydrokinetic turbines in OpenFOAM using the actuator line method. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20220516`` | ``-OpenFOAM-8`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tvb-data.md b/docs/version-specific/supported-software/t/tvb-data.md new file mode 100644 index 000000000..9a87bca45 --- /dev/null +++ b/docs/version-specific/supported-software/t/tvb-data.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# tvb-data + +The Virtual Brain Project (TVB Project) has the purpose of offering some modern tools to the Neurosciences community, for computing, simulating and analyzing functional and structural data of human brains. Various demonstration data for use with TVB. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5`` | ``-Python-2.7.11`` | ``intel/2016a`` +``20150915`` | ``-Python-2.7.11`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tvb-framework.md b/docs/version-specific/supported-software/t/tvb-framework.md new file mode 100644 index 000000000..8577323cc --- /dev/null +++ b/docs/version-specific/supported-software/t/tvb-framework.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# tvb-framework + +The Virtual Brain Project (TVB Project) has the purpose of offering some modern tools to the Neurosciences community, for computing, simulating and analyzing functional and structural data of human brains. TVB Scientific Library is the most important scientific contribution of TVB Project. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5`` | ``-Python-2.7.11`` | ``intel/2016a`` +``20150921`` | ``-Python-2.7.11`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/tvb-library.md b/docs/version-specific/supported-software/t/tvb-library.md new file mode 100644 index 000000000..bf558c93f --- /dev/null +++ b/docs/version-specific/supported-software/t/tvb-library.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# tvb-library + +The Virtual Brain Project (TVB Project) has the purpose of offering some modern tools to the Neurosciences community, for computing, simulating and analyzing functional and structural data of human brains. TVB Scientific Library is the most important scientific contribution of TVB Project. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5`` | ``-Python-2.7.11`` | ``intel/2016a`` +``20150922`` | ``-Python-2.7.11`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/t/typing-extensions.md b/docs/version-specific/supported-software/t/typing-extensions.md new file mode 100644 index 000000000..23984d453 --- /dev/null +++ b/docs/version-specific/supported-software/t/typing-extensions.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# typing-extensions + +Typing Extensions – Backported and Experimental Type Hints for Python + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.10.0.0`` | | ``GCCcore/10.3.0`` +``3.10.0.2`` | | ``GCCcore/11.2.0`` +``3.7.4.3`` | | ``GCCcore/10.2.0`` +``3.7.4.3`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``3.7.4.3`` | ``-Python-3.8.2`` | ``GCCcore/9.3.0`` +``4.10.0`` | | ``GCCcore/13.2.0`` +``4.3.0`` | | ``GCCcore/11.3.0`` +``4.4.0`` | | ``GCCcore/10.3.0`` +``4.9.0`` | | ``GCCcore/12.2.0`` +``4.9.0`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/UCC-CUDA.md b/docs/version-specific/supported-software/u/UCC-CUDA.md new file mode 100644 index 000000000..7ee53c238 --- /dev/null +++ b/docs/version-specific/supported-software/u/UCC-CUDA.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# UCC-CUDA + +UCC (Unified Collective Communication) is a collective communication operations API and library that is flexible, complete, and feature-rich for current and emerging programming models and runtimes. This module adds the UCC CUDA support. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.0`` | ``-CUDA-11.7.0`` | ``GCCcore/11.3.0`` +``1.1.0`` | ``-CUDA-12.0.0`` | ``GCCcore/12.2.0`` +``1.2.0`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/UCC.md b/docs/version-specific/supported-software/u/UCC.md new file mode 100644 index 000000000..ab6b0523a --- /dev/null +++ b/docs/version-specific/supported-software/u/UCC.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# UCC + +UCC (Unified Collective Communication) is a collective communication operations API and library that is flexible, complete, and feature-rich for current and emerging programming models and runtimes. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0`` | ``GCCcore/11.3.0`` +``1.1.0`` | ``GCCcore/12.2.0`` +``1.2.0`` | ``GCCcore/12.3.0`` +``1.2.0`` | ``GCCcore/13.2.0`` +``1.3.0`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/UCLUST.md b/docs/version-specific/supported-software/u/UCLUST.md new file mode 100644 index 000000000..19d18177d --- /dev/null +++ b/docs/version-specific/supported-software/u/UCLUST.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# UCLUST + +UCLUST: Extreme high-speed sequence clustering, alignment and database search. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.22q`` | ``-i86linux64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/UCX-CUDA.md b/docs/version-specific/supported-software/u/UCX-CUDA.md new file mode 100644 index 000000000..106340236 --- /dev/null +++ b/docs/version-specific/supported-software/u/UCX-CUDA.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# UCX-CUDA + +Unified Communication X An open-source production grade communication framework for data centric and high-performance applications This module adds the UCX CUDA support. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.10.0`` | ``-CUDA-11.3.1`` | ``GCCcore/10.3.0`` +``1.11.0`` | ``-CUDA-11.4.1`` | ``GCCcore/11.2.0`` +``1.11.2`` | ``-CUDA-11.4.1`` | ``GCCcore/11.2.0`` +``1.11.2`` | ``-CUDA-11.5.2`` | ``GCCcore/11.2.0`` +``1.12.1`` | ``-CUDA-11.7.0`` | ``GCCcore/11.3.0`` +``1.13.1`` | ``-CUDA-11.7.0`` | ``GCCcore/12.2.0`` +``1.13.1`` | ``-CUDA-12.0.0`` | ``GCCcore/12.2.0`` +``1.14.1`` | ``-CUDA-12.1.1`` | ``GCCcore/12.3.0`` +``1.15.0`` | ``-CUDA-12.4.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/UCX-ROCm.md b/docs/version-specific/supported-software/u/UCX-ROCm.md new file mode 100644 index 000000000..192495967 --- /dev/null +++ b/docs/version-specific/supported-software/u/UCX-ROCm.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# UCX-ROCm + +Unified Communication X An open-source production grade communication framework for data centric and high-performance applications This module adds the UCX ROCm support. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.11.2`` | ``-ROCm-4.5.0`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/UCX.md b/docs/version-specific/supported-software/u/UCX.md new file mode 100644 index 000000000..aaea0fdd6 --- /dev/null +++ b/docs/version-specific/supported-software/u/UCX.md @@ -0,0 +1,44 @@ +--- +search: + boost: 0.5 +--- +# UCX + +Unified Communication X An open-source production grade communication framework for data centric and high-performance applications + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.10.0`` | | ``GCCcore/10.3.0`` +``1.11.0`` | | ``GCCcore/11.2.0`` +``1.11.2`` | | ``GCCcore/11.2.0`` +``1.12.1`` | | ``GCCcore/11.3.0`` +``1.13.1`` | | ``GCCcore/12.2.0`` +``1.14.0`` | | ``GCCcore/12.2.0`` +``1.14.1`` | | ``GCCcore/12.3.0`` +``1.15.0`` | | ``GCCcore/13.2.0`` +``1.16.0`` | | ``GCCcore/13.2.0`` +``1.16.0`` | | ``GCCcore/13.3.0`` +``1.16.0-rc4`` | | ``GCCcore/11.2.0`` +``1.16.0-rc4`` | | ``GCCcore/11.3.0`` +``1.16.0-rc4`` | | ``GCCcore/12.2.0`` +``1.16.0-rc4`` | | ``GCCcore/12.3.0`` +``1.16.0-rc4`` | | ``GCCcore/13.2.0`` +``1.3.1`` | | ``GCCcore/6.4.0`` +``1.3.1`` | | ``GCCcore/7.3.0`` +``1.5.0`` | | ``GCCcore/6.4.0`` +``1.5.0`` | | ``GCCcore/7.3.0`` +``1.5.0`` | | ``GCCcore/8.2.0`` +``1.5.0rc1`` | ``-hpcx`` | ``GCCcore/8.2.0`` +``1.5.1`` | | ``GCCcore/8.2.0`` +``1.6.1`` | | ``GCCcore/8.3.0`` +``1.8.0`` | ``-CUDA-11.0.2`` | ``GCCcore/9.3.0`` +``1.8.0`` | | ``GCCcore/9.3.0`` +``1.9.0`` | ``-CUDA-11.1.1`` | ``GCCcore/10.2.0`` +``1.9.0`` | ``-CUDA-11.2.1`` | ``GCCcore/10.2.0`` +``1.9.0`` | | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/UDUNITS.md b/docs/version-specific/supported-software/u/UDUNITS.md new file mode 100644 index 000000000..617902ecb --- /dev/null +++ b/docs/version-specific/supported-software/u/UDUNITS.md @@ -0,0 +1,38 @@ +--- +search: + boost: 0.5 +--- +# UDUNITS + +UDUNITS supports conversion of unit specifications between formatted and binary forms, arithmetic manipulation of units, and conversion of values between compatible scales of measurement. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.20`` | ``foss/2016a`` +``2.2.20`` | ``intel/2016b`` +``2.2.24`` | ``intel/2017a`` +``2.2.25`` | ``foss/2017b`` +``2.2.25`` | ``intel/2017b`` +``2.2.26`` | ``GCCcore/10.2.0`` +``2.2.26`` | ``GCCcore/8.2.0`` +``2.2.26`` | ``GCCcore/8.3.0`` +``2.2.26`` | ``GCCcore/9.3.0`` +``2.2.26`` | ``foss/2018a`` +``2.2.26`` | ``foss/2018b`` +``2.2.26`` | ``foss/2020a`` +``2.2.26`` | ``intel/2017b`` +``2.2.26`` | ``intel/2018a`` +``2.2.26`` | ``intel/2018b`` +``2.2.26`` | ``iomkl/2018b`` +``2.2.28`` | ``GCCcore/10.3.0`` +``2.2.28`` | ``GCCcore/11.2.0`` +``2.2.28`` | ``GCCcore/11.3.0`` +``2.2.28`` | ``GCCcore/12.2.0`` +``2.2.28`` | ``GCCcore/12.3.0`` +``2.2.28`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/UFL.md b/docs/version-specific/supported-software/u/UFL.md new file mode 100644 index 000000000..4cab8a43e --- /dev/null +++ b/docs/version-specific/supported-software/u/UFL.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# UFL + +The Unified Form Language (UFL) is a domain specific language for declaration of finite element discretizations of variational forms. More precisely, it defines a flexible interface for choosing finite element spaces and defining expressions for weak forms in a notation close to mathematical notation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2018.1.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``2019.1.0`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/UMI-tools.md b/docs/version-specific/supported-software/u/UMI-tools.md new file mode 100644 index 000000000..f709c90f8 --- /dev/null +++ b/docs/version-specific/supported-software/u/UMI-tools.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# UMI-tools + +Tools for handling Unique Molecular Identifiers in NGS data sets + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.0`` | ``-Python-3.6.6`` | ``foss/2018b`` +``1.0.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.0.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.1.4`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/UNAFold.md b/docs/version-specific/supported-software/u/UNAFold.md new file mode 100644 index 000000000..b75e9e228 --- /dev/null +++ b/docs/version-specific/supported-software/u/UNAFold.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# UNAFold + +The UNAFold package contains several programs for performing energy minimization and partition function calculations on nucleic acid sequences. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.8`` | ``-Perl-5.24.1`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/UQTk.md b/docs/version-specific/supported-software/u/UQTk.md new file mode 100644 index 000000000..fab6b25bb --- /dev/null +++ b/docs/version-specific/supported-software/u/UQTk.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# UQTk + +The UQ Toolkit (UQTk) is a collection of libraries and tools for the quantification of uncertainty in numerical model predictions. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.1.0`` | ``-Python-3.7.4`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/USEARCH.md b/docs/version-specific/supported-software/u/USEARCH.md new file mode 100644 index 000000000..7be9b447b --- /dev/null +++ b/docs/version-specific/supported-software/u/USEARCH.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# USEARCH + +USEARCH is a unique sequence analysis tool which offers search and clustering algorithms that are often orders of magnitude faster than BLAST. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``11.0.667`` | ``-i86linux32`` | ``system`` +``5.2.236-6.1.544`` | ``-i86linux32`` | ``system`` +``5.2.236`` | ``-i86linux32`` | ``system`` +``6.1.544`` | ``-i86linux32`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/USPEX.md b/docs/version-specific/supported-software/u/USPEX.md new file mode 100644 index 000000000..58962de33 --- /dev/null +++ b/docs/version-specific/supported-software/u/USPEX.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# USPEX + +USPEX (Universal Structure Predictor: Evolutionary Xtallography... and in Russian "uspekh" means "success" - owing to the high success rate and many useful results produced by this method) is a method developed by the Oganov laboratory since 2004. The problem of crystal structure prediction is very old and does, in fact, constitute the central problem of theoretical crystal chemistry. USPEX can also be used for finding low-energy metastable phases, as well as stable structures of nanoparticles, surface reconstructions, molecular packings in organic crystals, and for searching for materials with desired physical (mechanical, electronic) properties. The USPEX code is based on an efficient evolutionary algorithm developed by A.R. Oganov's group, but also has options for using alternative methods (random sampling, metadynamics, corrected particle swarm optimization algorithms). USPEX is interfaced with many ab initio codes, such as VASP, SIESTA, GULP, Quantum Espresso, CP2K, CASTEP, LAMMPS, and so on. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``9.4.4`` | ``-Python-2.7.12`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/UShER.md b/docs/version-specific/supported-software/u/UShER.md new file mode 100644 index 000000000..1f048b4b3 --- /dev/null +++ b/docs/version-specific/supported-software/u/UShER.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# UShER + +UShER is now a package consisting of a family of programs for rapid phylogenetic analyses, particularly suitable for the SARS-CoV-2 genomes. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.1`` | ``gompi/2020b`` +``0.5.0`` | ``gompi/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/Ultralytics.md b/docs/version-specific/supported-software/u/Ultralytics.md new file mode 100644 index 000000000..1c6365612 --- /dev/null +++ b/docs/version-specific/supported-software/u/Ultralytics.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Ultralytics + +Ultralytics YOLOv8 is a cutting-edge, state-of-the-art (SOTA) model that builds upon the success of previous YOLO versions and introduces new features and improvements to further boost performance and flexibility. YOLOv8 is designed to be fast, accurate, and easy to use, making it an excellent choice for a wide range of object detection and tracking, instance segmentation, image classification and pose estimation tasks. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``8.0.92`` | ``-CUDA-11.7.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/UnZip.md b/docs/version-specific/supported-software/u/UnZip.md new file mode 100644 index 000000000..d394c446e --- /dev/null +++ b/docs/version-specific/supported-software/u/UnZip.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# UnZip + +UnZip is an extraction utility for archives compressed in .zip format (also called "zipfiles"). Although highly compatible both with PKWARE's PKZIP and PKUNZIP utilities for MS-DOS and with Info-ZIP's own Zip program, our primary objectives have been portability and non-MSDOS functionality. + +*homepage*: + +version | toolchain +--------|---------- +``6.0`` | ``GCCcore/10.2.0`` +``6.0`` | ``GCCcore/10.3.0`` +``6.0`` | ``GCCcore/11.2.0`` +``6.0`` | ``GCCcore/11.3.0`` +``6.0`` | ``GCCcore/12.2.0`` +``6.0`` | ``GCCcore/12.3.0`` +``6.0`` | ``GCCcore/13.1.0`` +``6.0`` | ``GCCcore/13.2.0`` +``6.0`` | ``GCCcore/13.3.0`` +``6.0`` | ``GCCcore/6.4.0`` +``6.0`` | ``GCCcore/7.3.0`` +``6.0`` | ``GCCcore/8.2.0`` +``6.0`` | ``GCCcore/8.3.0`` +``6.0`` | ``GCCcore/9.3.0`` +``6.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/UniFrac.md b/docs/version-specific/supported-software/u/UniFrac.md new file mode 100644 index 000000000..789e48187 --- /dev/null +++ b/docs/version-specific/supported-software/u/UniFrac.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# UniFrac + +UniFrac is the de facto repository for high-performance phylogenetic diversity calculations. The methods in this repository are based on an implementation of the Strided State UniFrac algorithm which is faster, and uses less memory than Fast UniFrac. Strided State UniFrac supports Unweighted UniFrac, Weighted UniFrac, Generalized UniFrac, Variance Adjusted UniFrac and meta UniFrac, in both double and single precision (fp32). This repository also includes Stacked Faith (manuscript in preparation), a method for calculating Faith's PD that is faster and uses less memory than the Fast UniFrac-based reference implementation. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.2`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/Unicycler.md b/docs/version-specific/supported-software/u/Unicycler.md new file mode 100644 index 000000000..e45b0ff8a --- /dev/null +++ b/docs/version-specific/supported-software/u/Unicycler.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Unicycler + +Unicycler is an assembly pipeline for bacterial genomes. It can assemble Illumina-only read sets where it functions as a SPAdes-optimiser. It can also assembly long-read-only sets (PacBio or Nanopore) where it runs a miniasm+Racon pipeline. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.4.7`` | ``-Python-3.7.2`` | ``foss/2019a`` +``0.4.8`` | ``-Python-3.8.2`` | ``gompi/2020a`` +``0.4.9`` | | ``gompi/2021a`` +``0.5.0`` | | ``gompi/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/Unidecode.md b/docs/version-specific/supported-software/u/Unidecode.md new file mode 100644 index 000000000..0e84ea28b --- /dev/null +++ b/docs/version-specific/supported-software/u/Unidecode.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Unidecode + +Python library for lossy ASCII transliterations of Unicode text (port of Text::Unidecode Perl module) + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.1`` | ``-Python-3.7.4`` | ``GCCcore/8.3.0`` +``1.3.6`` | | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/index.md b/docs/version-specific/supported-software/u/index.md new file mode 100644 index 000000000..c21fcc0c2 --- /dev/null +++ b/docs/version-specific/supported-software/u/index.md @@ -0,0 +1,48 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (u) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - *u* - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [UCC](UCC.md) + * [UCC-CUDA](UCC-CUDA.md) + * [UCLUST](UCLUST.md) + * [UCX](UCX.md) + * [UCX-CUDA](UCX-CUDA.md) + * [ucx-py](ucx-py.md) + * [UCX-ROCm](UCX-ROCm.md) + * [udocker](udocker.md) + * [UDUNITS](UDUNITS.md) + * [UFL](UFL.md) + * [Ultralytics](Ultralytics.md) + * [umap-learn](umap-learn.md) + * [UMI-tools](UMI-tools.md) + * [umi4cPackage](umi4cPackage.md) + * [umis](umis.md) + * [UNAFold](UNAFold.md) + * [uncertainties](uncertainties.md) + * [uncertainty-calibration](uncertainty-calibration.md) + * [unicore-uftp](unicore-uftp.md) + * [Unicycler](Unicycler.md) + * [Unidecode](Unidecode.md) + * [unifdef](unifdef.md) + * [UniFrac](UniFrac.md) + * [unimap](unimap.md) + * [units](units.md) + * [unixODBC](unixODBC.md) + * [unrar](unrar.md) + * [UnZip](UnZip.md) + * [UQTk](UQTk.md) + * [USEARCH](USEARCH.md) + * [UShER](UShER.md) + * [USPEX](USPEX.md) + * [utf8proc](utf8proc.md) + * [util-linux](util-linux.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - *u* - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/ucx-py.md b/docs/version-specific/supported-software/u/ucx-py.md new file mode 100644 index 000000000..767228577 --- /dev/null +++ b/docs/version-specific/supported-software/u/ucx-py.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ucx-py + +UCX-Py is the Python interface for UCX, a low-level high-performance networking library. UCX and UCX-Py supports several transport methods including InfiniBand and NVLink while still using traditional networking protocols like TCP. + +*homepage*: + +version | toolchain +--------|---------- +``0.21.0`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/udocker.md b/docs/version-specific/supported-software/u/udocker.md new file mode 100644 index 000000000..8d1e4dd33 --- /dev/null +++ b/docs/version-specific/supported-software/u/udocker.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# udocker + +A basic user tool to execute simple docker containers in batch or interactive systems without root privileges. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.1`` | ``-Python-2.7.14`` | ``foss/2017b`` +``1.1.3`` | ``-Python-2.7.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/umap-learn.md b/docs/version-specific/supported-software/u/umap-learn.md new file mode 100644 index 000000000..432e396cd --- /dev/null +++ b/docs/version-specific/supported-software/u/umap-learn.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# umap-learn + +Uniform Manifold Approximation and Projection (UMAP) is a dimension reduction technique that can be used for visualisation similarly to t-SNE, but also for general non-linear dimension reduction. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.6`` | ``foss/2020b`` +``0.4.6`` | ``fosscuda/2020b`` +``0.5.3`` | ``foss/2020b`` +``0.5.3`` | ``foss/2021a`` +``0.5.3`` | ``foss/2021b`` +``0.5.3`` | ``foss/2022a`` +``0.5.5`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/umi4cPackage.md b/docs/version-specific/supported-software/u/umi4cPackage.md new file mode 100644 index 000000000..59b8cfb69 --- /dev/null +++ b/docs/version-specific/supported-software/u/umi4cPackage.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# umi4cPackage + +umi4cPackage is a processing and analysis pipeline for UMI-4C experiment. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20200116`` | ``-R-4.0.0`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/umis.md b/docs/version-specific/supported-software/u/umis.md new file mode 100644 index 000000000..85d367af1 --- /dev/null +++ b/docs/version-specific/supported-software/u/umis.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# umis + +Package for estimating UMI counts in Transcript Tag Counting data. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.3`` | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/uncertainties.md b/docs/version-specific/supported-software/u/uncertainties.md new file mode 100644 index 000000000..71f3f7bc3 --- /dev/null +++ b/docs/version-specific/supported-software/u/uncertainties.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# uncertainties + +Transparent calculations with uncertainties on the quantities involved (aka error propagation); fast calculation of derivatives + +*homepage*: + +version | toolchain +--------|---------- +``3.1.7`` | ``foss/2021b`` +``3.1.7`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/uncertainty-calibration.md b/docs/version-specific/supported-software/u/uncertainty-calibration.md new file mode 100644 index 000000000..c5345f830 --- /dev/null +++ b/docs/version-specific/supported-software/u/uncertainty-calibration.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# uncertainty-calibration + +Python library to measure the calibration error of models, including confidence intervals computed by Bootstrap resampling, and code to recalibrate models. + +*homepage*: + +version | toolchain +--------|---------- +``0.0.9`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/unicore-uftp.md b/docs/version-specific/supported-software/u/unicore-uftp.md new file mode 100644 index 000000000..4a5420ead --- /dev/null +++ b/docs/version-specific/supported-software/u/unicore-uftp.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# unicore-uftp + +UNICORE Java-based client for UFTP + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4.2`` | ``-Java-11`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/unifdef.md b/docs/version-specific/supported-software/u/unifdef.md new file mode 100644 index 000000000..3feb42c58 --- /dev/null +++ b/docs/version-specific/supported-software/u/unifdef.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# unifdef + +unifdef - selectively remove C preprocessor conditionals The unifdef utility selectively processes conditional C preprocessor and the additional text that they delimit, while otherwise leaving the file alone. + +*homepage*: + +version | toolchain +--------|---------- +``2.12`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/unimap.md b/docs/version-specific/supported-software/u/unimap.md new file mode 100644 index 000000000..60d004fa2 --- /dev/null +++ b/docs/version-specific/supported-software/u/unimap.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# unimap + +Unimap is a fork of minimap2 optimized for assembly-to-reference alignment. It integrates the minigraph chaining algorithm and can align through long INDELs (up to 100kb by default) much faster than minimap2. Unimap is a better fit for resolving segmental duplications and is recommended over minimap2 for alignment between high-quality assemblies. Unimap does not replace minimap2 for other types of alignment. It drops the support of multi-part index and short-read mapping. Its long-read alignment is different from minimap2 but is not necessarily better. Unimap is more of a specialized minimap2 at the moment. + +*homepage*: + +version | toolchain +--------|---------- +``0.1`` | ``GCCcore/10.2.0`` +``0.1`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/units.md b/docs/version-specific/supported-software/u/units.md new file mode 100644 index 000000000..de76be04e --- /dev/null +++ b/docs/version-specific/supported-software/u/units.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# units + +GNU Units converts quantities expressed in various systems of measurement to their equivalents in other systems of measurement. Like many similar programs, it can handle multiplicative scale changes. It can also handle nonlinear conversions such as Fahrenheit to Celsius or wire gauge, and it can convert from and to sums of units, such as converting between meters and feet plus inches. + +*homepage*: + +version | toolchain +--------|---------- +``2.19`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/unixODBC.md b/docs/version-specific/supported-software/u/unixODBC.md new file mode 100644 index 000000000..4b75d745a --- /dev/null +++ b/docs/version-specific/supported-software/u/unixODBC.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# unixODBC + +unixODBC provides a uniform interface between application and database driver + +*homepage*: + +version | toolchain +--------|---------- +``2.3.11`` | ``foss/2022b`` +``2.3.7`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/unrar.md b/docs/version-specific/supported-software/u/unrar.md new file mode 100644 index 000000000..715d92ccc --- /dev/null +++ b/docs/version-specific/supported-software/u/unrar.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# unrar + +RAR is a powerful archive manager. + +*homepage*: + +version | toolchain +--------|---------- +``5.6.1`` | ``GCCcore/7.3.0`` +``5.7.3`` | ``GCCcore/8.2.0`` +``6.0.2`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/utf8proc.md b/docs/version-specific/supported-software/u/utf8proc.md new file mode 100644 index 000000000..5154215cb --- /dev/null +++ b/docs/version-specific/supported-software/u/utf8proc.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# utf8proc + +utf8proc is a small, clean C library that provides Unicode normalization, case-folding, and other operations for data in the UTF-8 encoding. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.0`` | ``GCCcore/6.4.0`` +``2.3.0`` | ``GCCcore/8.2.0`` +``2.5.0`` | ``GCCcore/10.2.0`` +``2.5.0`` | ``GCCcore/8.3.0`` +``2.5.0`` | ``GCCcore/9.3.0`` +``2.6.1`` | ``GCCcore/10.3.0`` +``2.6.1`` | ``GCCcore/11.2.0`` +``2.7.0`` | ``GCCcore/11.3.0`` +``2.8.0`` | ``GCCcore/12.2.0`` +``2.8.0`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/u/util-linux.md b/docs/version-specific/supported-software/u/util-linux.md new file mode 100644 index 000000000..6ae96add9 --- /dev/null +++ b/docs/version-specific/supported-software/u/util-linux.md @@ -0,0 +1,44 @@ +--- +search: + boost: 0.5 +--- +# util-linux + +Set of Linux utilities + +*homepage*: + +version | toolchain +--------|---------- +``2.27.1`` | ``foss/2016a`` +``2.27.1`` | ``intel/2016a`` +``2.28`` | ``foss/2016a`` +``2.28`` | ``intel/2016a`` +``2.28.1`` | ``intel/2016b`` +``2.29`` | ``foss/2016b`` +``2.29`` | ``intel/2016b`` +``2.29.2`` | ``GCCcore/6.3.0`` +``2.29.2`` | ``intel/2017a`` +``2.30`` | ``GCCcore/6.4.0`` +``2.30.1`` | ``GCCcore/6.3.0`` +``2.30.1`` | ``foss/2017a`` +``2.31`` | ``GCCcore/6.4.0`` +``2.31.1`` | ``GCCcore/6.4.0`` +``2.32`` | ``GCCcore/6.4.0`` +``2.32`` | ``GCCcore/7.3.0`` +``2.32.1`` | ``GCCcore/7.3.0`` +``2.33`` | ``GCCcore/8.2.0`` +``2.34`` | ``GCCcore/8.3.0`` +``2.35`` | ``GCCcore/9.3.0`` +``2.36`` | ``GCCcore/10.2.0`` +``2.36`` | ``GCCcore/10.3.0`` +``2.37`` | ``GCCcore/11.2.0`` +``2.38`` | ``GCCcore/11.3.0`` +``2.38.1`` | ``GCCcore/12.2.0`` +``2.39`` | ``GCCcore/12.3.0`` +``2.39`` | ``GCCcore/13.2.0`` +``2.40`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/V8.md b/docs/version-specific/supported-software/v/V8.md new file mode 100644 index 000000000..c0f304a95 --- /dev/null +++ b/docs/version-specific/supported-software/v/V8.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# V8 + +R interface to Google's open source JavaScript engine + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2`` | ``-R-3.5.1`` | ``foss/2018b`` +``2.3`` | ``-R-3.6.0`` | ``foss/2019a`` +``2.3`` | ``-R-3.6.0`` | ``intel/2019a`` +``3.2.0`` | ``-R-3.6.2`` | ``foss/2019b`` +``3.4.0`` | ``-R-4.0.0`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VAMPIRE-ASM.md b/docs/version-specific/supported-software/v/VAMPIRE-ASM.md new file mode 100644 index 000000000..e82754159 --- /dev/null +++ b/docs/version-specific/supported-software/v/VAMPIRE-ASM.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# VAMPIRE-ASM + +Vampire is designed from the ground-up to be an easy to use, fast, open-source and extensible software package capable of modelling almost any magnetic material with atomic resolution. + +*homepage*: + +version | toolchain +--------|---------- +``6.0`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VASP.md b/docs/version-specific/supported-software/v/VASP.md new file mode 100644 index 000000000..c0f13c6d2 --- /dev/null +++ b/docs/version-specific/supported-software/v/VASP.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# VASP + +The Vienna Ab initio Simulation Package (VASP) is a computer program for atomic scale materials modelling, e.g. electronic structure calculations and quantum-mechanical molecular dynamics, from first principles. + +*homepage*: + +version | toolchain +--------|---------- +``5.4.1`` | ``intel/2016.02-GCC-4.9`` +``6.3.2`` | ``nvofbf/2022.07`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VAtools.md b/docs/version-specific/supported-software/v/VAtools.md new file mode 100644 index 000000000..b8faaede6 --- /dev/null +++ b/docs/version-specific/supported-software/v/VAtools.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# VAtools + +VAtools is a python package that includes several tools to annotate VCF files with data from other tools. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.1`` | ``-Python-3.6.6`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VBZ-Compression.md b/docs/version-specific/supported-software/v/VBZ-Compression.md new file mode 100644 index 000000000..1bd53174a --- /dev/null +++ b/docs/version-specific/supported-software/v/VBZ-Compression.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# VBZ-Compression + +VBZ compression HDF5 plugin for nanopolish + +*homepage*: + +version | toolchain +--------|---------- +``1.0.1`` | ``gompi/2020b`` +``1.0.3`` | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VCF-kit.md b/docs/version-specific/supported-software/v/VCF-kit.md new file mode 100644 index 000000000..0066aa096 --- /dev/null +++ b/docs/version-specific/supported-software/v/VCF-kit.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# VCF-kit + +VCF-kit is a command-line based collection of utilities for performing analysis on Variant Call Format (VCF) files. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.6`` | ``-Python-2.7.15`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VCFtools.md b/docs/version-specific/supported-software/v/VCFtools.md new file mode 100644 index 000000000..db8d25108 --- /dev/null +++ b/docs/version-specific/supported-software/v/VCFtools.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# VCFtools + +The aim of VCFtools is to provide easily accessible methods for working with complex genetic variation data in the form of VCF files. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.14`` | ``-Perl-5.22.1`` | ``foss/2016a`` +``0.1.14`` | ``-Perl-5.22.1`` | ``intel/2016a`` +``0.1.15`` | ``-Perl-5.24.0`` | ``foss/2016b`` +``0.1.15`` | ``-Perl-5.26.0`` | ``foss/2017b`` +``0.1.15`` | ``-Perl-5.26.1`` | ``foss/2018a`` +``0.1.15`` | ``-Perl-5.26.0`` | ``intel/2017b`` +``0.1.16`` | | ``GCC/10.2.0`` +``0.1.16`` | | ``GCC/10.3.0`` +``0.1.16`` | | ``GCC/11.2.0`` +``0.1.16`` | | ``GCC/11.3.0`` +``0.1.16`` | | ``GCC/12.2.0`` +``0.1.16`` | | ``GCC/12.3.0`` +``0.1.16`` | | ``GCC/8.3.0`` +``0.1.16`` | | ``GCC/9.3.0`` +``0.1.16`` | ``-Perl-5.28.0`` | ``foss/2018b`` +``0.1.16`` | | ``iccifort/2019.5.281`` +``0.1.16`` | ``-Perl-5.28.0`` | ``intel/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VEGAS.md b/docs/version-specific/supported-software/v/VEGAS.md new file mode 100644 index 000000000..23b8a1f1b --- /dev/null +++ b/docs/version-specific/supported-software/v/VEGAS.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# VEGAS + +VEGAS (Versatile Gene-based Association Study) is a free program for performing gene-based tests for association using the results from genetic association studies + +*homepage*: + +version | toolchain +--------|---------- +``0.8.27`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VEP.md b/docs/version-specific/supported-software/v/VEP.md new file mode 100644 index 000000000..2218a64db --- /dev/null +++ b/docs/version-specific/supported-software/v/VEP.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# VEP + +Variant Effect Predictor (VEP) determines the effect of your variants (SNPs, insertions, deletions, CNVs or structural variants) on genes, transcripts, and protein sequence, as well as regulatory regions. Includes EnsEMBL-XS, which provides pre-compiled replacements for frequently used routines in VEP. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``103.1`` | | ``GCC/10.2.0`` +``105`` | | ``GCC/11.2.0`` +``107`` | | ``GCC/11.3.0`` +``111`` | | ``GCC/12.2.0`` +``93.4`` | ``-Perl-5.26.1`` | ``intel/2018a`` +``94.0`` | ``-Perl-5.28.0`` | ``foss/2018b`` +``94.5`` | ``-Perl-5.26.0`` | ``foss/2017b`` +``94.5`` | ``-Perl-5.26.0`` | ``intel/2017b`` +``95.0`` | ``-Perl-5.28.0`` | ``foss/2018b`` +``96.0`` | ``-Perl-5.28.1`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VERSE.md b/docs/version-specific/supported-software/v/VERSE.md new file mode 100644 index 000000000..35fd387bb --- /dev/null +++ b/docs/version-specific/supported-software/v/VERSE.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# VERSE + +A versatile and efficient RNA-Seq read counting tool + +*homepage*: + +version | toolchain +--------|---------- +``0.1.5`` | ``foss/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VESTA.md b/docs/version-specific/supported-software/v/VESTA.md new file mode 100644 index 000000000..bd9703057 --- /dev/null +++ b/docs/version-specific/supported-software/v/VESTA.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# VESTA + +VESTA is a 3D visualization program for structured models, volumetric data such as electron/nuclear densities, and crystal morphologies. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.5.8`` | ``-gtk3`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VMD.md b/docs/version-specific/supported-software/v/VMD.md new file mode 100644 index 000000000..f7a02cd71 --- /dev/null +++ b/docs/version-specific/supported-software/v/VMD.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# VMD + +VMD is a molecular visualization program for displaying, animating, and analyzing large biomolecular systems using 3-D graphics and built-in scripting. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.9.3`` | ``-Python-2.7.14`` | ``foss/2017b`` +``1.9.3`` | ``-Python-2.7.12`` | ``intel/2016b`` +``1.9.3`` | ``-Python-2.7.14`` | ``intel/2018a`` +``1.9.3`` | ``-Python-2.7.15`` | ``intel/2018b`` +``1.9.4a43`` | ``-Python-3.7.4`` | ``fosscuda/2019b`` +``1.9.4a51`` | | ``foss/2020b`` +``1.9.4a51`` | | ``fosscuda/2020b`` +``1.9.4a57`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VMTK.md b/docs/version-specific/supported-software/v/VMTK.md new file mode 100644 index 000000000..272586217 --- /dev/null +++ b/docs/version-specific/supported-software/v/VMTK.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# VMTK + +vmtk is a collection of libraries and tools for 3D reconstruction, geometric analysis, mesh generation and surface data analysis for image-based modeling of blood vessels. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.4.0`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VSCode.md b/docs/version-specific/supported-software/v/VSCode.md new file mode 100644 index 000000000..985b42803 --- /dev/null +++ b/docs/version-specific/supported-software/v/VSCode.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# VSCode + +Visual Studio Code is a lightweight but powerful source code editor which runs on your desktop and is available for Windows, macOS and Linux. It comes with built-in support for JavaScript, TypeScript and Node.js and has a rich ecosystem of extensions for other languages and runtimes (such as C++, C#, Java, Python, PHP, Go, .NET). Begin your journey with VS Code with these introductory videos. + +*homepage*: + +version | toolchain +--------|---------- +``1.85.0`` | ``system`` +``1.88.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VSEARCH.md b/docs/version-specific/supported-software/v/VSEARCH.md new file mode 100644 index 000000000..fea11e35b --- /dev/null +++ b/docs/version-specific/supported-software/v/VSEARCH.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# VSEARCH + +VSEARCH supports de novo and reference based chimera detection, clustering, full-length and prefix dereplication, rereplication, reverse complementation, masking, all-vs-all pairwise global alignment, exact and global alignment searching, shuffling, subsampling and sorting. It also supports FASTQ file analysis, filtering, conversion and merging of paired-end reads. + +*homepage*: + +version | toolchain +--------|---------- +``2.13.4`` | ``iccifort/2019.1.144-GCC-8.2.0-2.31.1`` +``2.15.0`` | ``GCC/9.3.0`` +``2.18.0`` | ``GCC/10.2.0`` +``2.21.1`` | ``GCC/10.3.0`` +``2.22.1`` | ``GCC/11.3.0`` +``2.25.0`` | ``GCC/12.3.0`` +``2.9.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VTK.md b/docs/version-specific/supported-software/v/VTK.md new file mode 100644 index 000000000..e5fe9805c --- /dev/null +++ b/docs/version-specific/supported-software/v/VTK.md @@ -0,0 +1,51 @@ +--- +search: + boost: 0.5 +--- +# VTK + +The Visualization Toolkit (VTK) is an open-source, freely available software system for 3D computer graphics, image processing and visualization. VTK consists of a C++ class library and several interpreted interface layers including Tcl/Tk, Java, and Python. VTK supports a wide variety of visualization algorithms including: scalar, vector, tensor, texture, and volumetric methods; and advanced modeling techniques such as: implicit modeling, polygon reduction, mesh smoothing, cutting, contouring, and Delaunay triangulation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``6.3.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``6.3.0`` | ``-Python-2.7.12`` | ``foss/2016b`` +``6.3.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``6.3.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``7.0.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``7.1.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``7.1.1`` | ``-Python-2.7.13`` | ``intel/2017a`` +``8.0.1`` | ``-Python-2.7.14`` | ``foss/2017b`` +``8.0.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``8.1.0`` | ``-Python-2.7.14`` | ``foss/2018a`` +``8.1.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``8.1.0`` | ``-Python-2.7.14`` | ``intel/2018a`` +``8.1.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``8.1.1`` | ``-Python-2.7.15`` | ``foss/2018b`` +``8.1.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``8.1.1`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` +``8.1.1`` | ``-Python-2.7.14`` | ``intel/2018a`` +``8.2.0`` | ``-Python-2.7.15`` | ``foss/2019a`` +``8.2.0`` | ``-Python-3.7.2`` | ``foss/2019a`` +``8.2.0`` | ``-Python-2.7.16`` | ``foss/2019b`` +``8.2.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``8.2.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``8.2.0`` | | ``foss/2021a`` +``8.2.0`` | ``-Python-3.8.2`` | ``fosscuda/2020a`` +``8.2.0`` | ``-Python-3.7.2`` | ``intel/2019a`` +``8.2.0`` | ``-Python-3.8.2`` | ``intel/2020a`` +``9.0.1`` | | ``foss/2020b`` +``9.0.1`` | | ``foss/2021a`` +``9.0.1`` | | ``fosscuda/2020b`` +``9.1.0`` | | ``foss/2021b`` +``9.2.0.rc2`` | | ``foss/2022a`` +``9.2.2`` | | ``foss/2022a`` +``9.2.6`` | | ``foss/2022b`` +``9.3.0`` | | ``foss/2023a`` +``9.3.0`` | | ``foss/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VTune.md b/docs/version-specific/supported-software/v/VTune.md new file mode 100644 index 000000000..f64dee85b --- /dev/null +++ b/docs/version-specific/supported-software/v/VTune.md @@ -0,0 +1,40 @@ +--- +search: + boost: 0.5 +--- +# VTune + +Intel VTune Amplifier XE is the premier performance profiler for C, C++, C#, Fortran, Assembly and Java. + +*homepage*: + +version | toolchain +--------|---------- +``2013_update10`` | ``system`` +``2013_update11`` | ``system`` +``2013_update12`` | ``system`` +``2013_update6`` | ``system`` +``2013_update8`` | ``system`` +``2013_update9`` | ``system`` +``2016_update3`` | ``system`` +``2017`` | ``system`` +``2017_update1`` | ``system`` +``2017_update2`` | ``system`` +``2017_update3`` | ``system`` +``2018_update1`` | ``system`` +``2018_update2`` | ``system`` +``2018_update3`` | ``system`` +``2019_update2`` | ``system`` +``2019_update3`` | ``system`` +``2019_update5`` | ``system`` +``2020_update3`` | ``system`` +``2021.6.0`` | ``system`` +``2021.9.0`` | ``system`` +``2022.0.0`` | ``system`` +``2022.2.0`` | ``system`` +``2022.3.0`` | ``system`` +``2023.2.0`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VV.md b/docs/version-specific/supported-software/v/VV.md new file mode 100644 index 000000000..4ab7382a0 --- /dev/null +++ b/docs/version-specific/supported-software/v/VV.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# VV + +VV is an open-source and cross platform image viewer, designed for fast and simple visualization of spatio-temporal images: 2D, 2D+t, 3D and 3D+t (or 4D) images. Only the command-line (clitk) tools are build. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2018.09.19`` | ``-Python-3.6.6`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VXL.md b/docs/version-specific/supported-software/v/VXL.md new file mode 100644 index 000000000..5461ba2f0 --- /dev/null +++ b/docs/version-specific/supported-software/v/VXL.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# VXL + +A multi-platform collection of C++ software libraries for Computer Vision and Image Understanding. + +*homepage*: + +version | toolchain +--------|---------- +``1.18.0`` | ``foss/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/Vala.md b/docs/version-specific/supported-software/v/Vala.md new file mode 100644 index 000000000..06441082d --- /dev/null +++ b/docs/version-specific/supported-software/v/Vala.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Vala + +Vala is a programming language using modern high level abstractions without imposing additional runtime requirements and without using a different ABI compared to applications and libraries written in C. + +*homepage*: + +version | toolchain +--------|---------- +``0.52.4`` | ``GCCcore/10.3.0`` +``0.56.14`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/Valgrind.md b/docs/version-specific/supported-software/v/Valgrind.md new file mode 100644 index 000000000..bbb7aee76 --- /dev/null +++ b/docs/version-specific/supported-software/v/Valgrind.md @@ -0,0 +1,36 @@ +--- +search: + boost: 0.5 +--- +# Valgrind + +Valgrind: Debugging and profiling tools + +*homepage*: + +version | toolchain +--------|---------- +``3.11.0`` | ``foss/2016a`` +``3.11.0`` | ``intel/2016a`` +``3.13.0`` | ``foss/2017b`` +``3.13.0`` | ``foss/2018a`` +``3.13.0`` | ``intel/2017a`` +``3.13.0`` | ``intel/2017b`` +``3.13.0`` | ``intel/2018a`` +``3.14.0`` | ``foss/2018b`` +``3.16.1`` | ``gompi/2019b`` +``3.16.1`` | ``gompi/2020a`` +``3.16.1`` | ``gompi/2020b`` +``3.16.1`` | ``iimpi/2020a`` +``3.17.0`` | ``gompi/2021a`` +``3.18.1`` | ``gompi/2021b`` +``3.18.1`` | ``iimpi/2021b`` +``3.19.0`` | ``gompi/2022a`` +``3.20.0`` | ``gompi/2022a`` +``3.21.0`` | ``gompi/2022b`` +``3.21.0`` | ``gompi/2023a`` +``3.23.0`` | ``gompi/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/Vamb.md b/docs/version-specific/supported-software/v/Vamb.md new file mode 100644 index 000000000..56812d652 --- /dev/null +++ b/docs/version-specific/supported-software/v/Vamb.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Vamb + +Vamb is a metagenomic binner which feeds sequence composition information from a contig catalogue and co-abundance information from BAM files into a variational autoencoder and clusters the latent representation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.9`` | ``-CUDA-11.5.2`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/Vampir.md b/docs/version-specific/supported-software/v/Vampir.md new file mode 100644 index 000000000..877487717 --- /dev/null +++ b/docs/version-specific/supported-software/v/Vampir.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Vampir + +The Vampir software tool provides an easy-to-use framework that enables developers to quickly display and analyze arbitrary program behavior at any level of detail. The tool suite implements optimized event analysis algorithms and customizable displays that enable fast and interactive rendering of very complex performance monitoring data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``8.4.1`` | ``-demo`` | ``system`` +``8.4.1`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/Vampire.md b/docs/version-specific/supported-software/v/Vampire.md new file mode 100644 index 000000000..f85d237dd --- /dev/null +++ b/docs/version-specific/supported-software/v/Vampire.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Vampire + +The Vampire Theorem Prover. + +*homepage*: + +version | toolchain +--------|---------- +``4.5.1`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VarDict.md b/docs/version-specific/supported-software/v/VarDict.md new file mode 100644 index 000000000..60fd08f31 --- /dev/null +++ b/docs/version-specific/supported-software/v/VarDict.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# VarDict + +VarDict is an ultra sensitive variant caller for both single and paired sample variant calling from BAM files. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.5.7`` | ``-Perl-5.28.0`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VarScan.md b/docs/version-specific/supported-software/v/VarScan.md new file mode 100644 index 000000000..bfa35c12e --- /dev/null +++ b/docs/version-specific/supported-software/v/VarScan.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# VarScan + +Variant calling and somatic mutation/CNV detection for next-generation sequencing data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.3.6`` | ``-Java-1.7.0_80`` | ``system`` +``2.4.1`` | ``-Java-1.7.0_80`` | ``system`` +``2.4.4`` | ``-Java-1.8`` | ``system`` +``2.4.4`` | ``-Java-11`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VariantMetaCaller.md b/docs/version-specific/supported-software/v/VariantMetaCaller.md new file mode 100644 index 000000000..fb5180ed4 --- /dev/null +++ b/docs/version-specific/supported-software/v/VariantMetaCaller.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# VariantMetaCaller + +VariantMetaCaller automatically integrates variant calling pipelines into a better performing overall model that also predicts accurate variant probabilities. + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/Velvet.md b/docs/version-specific/supported-software/v/Velvet.md new file mode 100644 index 000000000..58a41eb82 --- /dev/null +++ b/docs/version-specific/supported-software/v/Velvet.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# Velvet + +Sequence assembler for very short reads + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.10`` | ``-mt-kmer_191`` | ``GCC/11.2.0`` +``1.2.10`` | ``-mt-kmer_191`` | ``GCC/8.3.0`` +``1.2.10`` | ``-mt-kmer_191`` | ``foss/2018a`` +``1.2.10`` | ``-mt-kmer_191`` | ``foss/2018b`` +``1.2.10`` | ``-mt-kmer_191`` | ``foss/2023a`` +``1.2.10`` | ``-mt-kmer_37`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/ViennaRNA.md b/docs/version-specific/supported-software/v/ViennaRNA.md new file mode 100644 index 000000000..6e97f49b5 --- /dev/null +++ b/docs/version-specific/supported-software/v/ViennaRNA.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# ViennaRNA + +The Vienna RNA Package consists of a C code library and several stand-alone programs for the prediction and comparison of RNA secondary structures. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.3`` | | ``intel/2016b`` +``2.3.4`` | | ``foss/2016b`` +``2.3.5`` | | ``intel/2017a`` +``2.4.10`` | ``-Python-2.7.15`` | ``foss/2018b`` +``2.4.10`` | ``-Python-2.7.15`` | ``intel/2018b`` +``2.4.11`` | ``-Python-3.6.6`` | ``foss/2018b`` +``2.4.14`` | ``-Python-3.6.6`` | ``foss/2018b`` +``2.5.0`` | | ``foss/2021b`` +``2.5.1`` | | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/Vim.md b/docs/version-specific/supported-software/v/Vim.md new file mode 100644 index 000000000..08ea82a46 --- /dev/null +++ b/docs/version-specific/supported-software/v/Vim.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# Vim + +Vim is an advanced text editor that seeks to provide the power of the de-facto Unix editor 'Vi', with a more complete feature set. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``8.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``8.1.0483`` | ``-Python-2.7.15`` | ``foss/2018b`` +``8.1.1209`` | ``-Python-3.7.2`` | ``GCCcore/8.2.0`` +``9.0.0950`` | | ``GCCcore/11.3.0`` +``9.0.1434`` | | ``GCCcore/12.2.0`` +``9.1.0004`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VirSorter.md b/docs/version-specific/supported-software/v/VirSorter.md new file mode 100644 index 000000000..167f78814 --- /dev/null +++ b/docs/version-specific/supported-software/v/VirSorter.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# VirSorter + +VirSorter: mining viral signal from microbial genomic data. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.6`` | | ``foss/2021b`` +``20160601`` | ``-Perl-5.22.1`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VirSorter2.md b/docs/version-specific/supported-software/v/VirSorter2.md new file mode 100644 index 000000000..c33f6d53f --- /dev/null +++ b/docs/version-specific/supported-software/v/VirSorter2.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# VirSorter2 + +VirSorter2 applies a multi-classifier, expert-guided approach to detect diverse DNA and RNA virus genomes. + +*homepage*: + +version | toolchain +--------|---------- +``2.2.4`` | ``foss/2021b`` +``2.2.4`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VirtualGL.md b/docs/version-specific/supported-software/v/VirtualGL.md new file mode 100644 index 000000000..307b046e7 --- /dev/null +++ b/docs/version-specific/supported-software/v/VirtualGL.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# VirtualGL + +VirtualGL is an open source toolkit that gives any Linux or Unix remote display software the ability to run OpenGL applications with full hardware acceleration. + +*homepage*: + +version | toolchain +--------|---------- +``2.6.1`` | ``foss/2018b`` +``2.6.2`` | ``GCCcore/9.3.0`` +``3.0`` | ``GCC/11.2.0`` +``3.1`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/Virtuoso-opensource.md b/docs/version-specific/supported-software/v/Virtuoso-opensource.md new file mode 100644 index 000000000..80fc8a1cd --- /dev/null +++ b/docs/version-specific/supported-software/v/Virtuoso-opensource.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Virtuoso-opensource + +Virtuoso is a high-performance and scalable Multi-Model RDBMS, Data Integration Middleware, Linked Data Deployment, and HTTP Application Server Platform. + +*homepage*: + +version | toolchain +--------|---------- +``7.2.6.1`` | ``GCC/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/VisPy.md b/docs/version-specific/supported-software/v/VisPy.md new file mode 100644 index 000000000..10348b8b9 --- /dev/null +++ b/docs/version-specific/supported-software/v/VisPy.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# VisPy + +VisPy is a high-performance interactive 2D/3D data visualization library leveraging the computational power of modern Graphics Processing Units (GPUs) through the OpenGL library to display very large datasets. + +*homepage*: + +version | toolchain +--------|---------- +``0.12.2`` | ``foss/2022a`` +``0.12.2`` | ``gfbf/2023a`` +``0.14.1`` | ``foss/2023a`` +``0.6.6`` | ``foss/2020b`` +``0.6.6`` | ``intel/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/Voro++.md b/docs/version-specific/supported-software/v/Voro++.md new file mode 100644 index 000000000..73bdcacac --- /dev/null +++ b/docs/version-specific/supported-software/v/Voro++.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# Voro++ + +Voro++ is a software library for carrying out three-dimensional computations of the Voronoi tessellation. A distinguishing feature of the Voro++ library is that it carries out cell-based calculations, computing the Voronoi cell for each particle individually. It is particularly well-suited for applications that rely on cell-based statistics, where features of Voronoi cells (eg. volume, centroid, number of faces) can be used to analyze a system of particles. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.6`` | ``GCCcore/10.2.0`` +``0.4.6`` | ``GCCcore/10.3.0`` +``0.4.6`` | ``GCCcore/11.2.0`` +``0.4.6`` | ``GCCcore/11.3.0`` +``0.4.6`` | ``GCCcore/12.2.0`` +``0.4.6`` | ``GCCcore/12.3.0`` +``0.4.6`` | ``GCCcore/6.4.0`` +``0.4.6`` | ``GCCcore/9.3.0`` +``0.4.6`` | ``foss/2016a`` +``0.4.6`` | ``foss/2019b`` +``0.4.6`` | ``intel/2016a`` +``0.4.6`` | ``intel/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/index.md b/docs/version-specific/supported-software/v/index.md new file mode 100644 index 000000000..5c84bf088 --- /dev/null +++ b/docs/version-specific/supported-software/v/index.md @@ -0,0 +1,72 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (v) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - *v* - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [V8](V8.md) + * [vaeda](vaeda.md) + * [Vala](Vala.md) + * [Valgrind](Valgrind.md) + * [Vamb](Vamb.md) + * [Vampir](Vampir.md) + * [Vampire](Vampire.md) + * [VAMPIRE-ASM](VAMPIRE-ASM.md) + * [VarDict](VarDict.md) + * [variant_tools](variant_tools.md) + * [VariantMetaCaller](VariantMetaCaller.md) + * [VarScan](VarScan.md) + * [vartools](vartools.md) + * [VASP](VASP.md) + * [VAtools](VAtools.md) + * [vawk](vawk.md) + * [VBZ-Compression](VBZ-Compression.md) + * [VCF-kit](VCF-kit.md) + * [vcflib](vcflib.md) + * [vcfnp](vcfnp.md) + * [VCFtools](VCFtools.md) + * [vConTACT2](vConTACT2.md) + * [VEGAS](VEGAS.md) + * [velocyto](velocyto.md) + * [Velvet](Velvet.md) + * [VEP](VEP.md) + * [verifyBamID](verifyBamID.md) + * [VERSE](VERSE.md) + * [VESTA](VESTA.md) + * [ViennaRNA](ViennaRNA.md) + * [Vim](Vim.md) + * [VirSorter](VirSorter.md) + * [VirSorter2](VirSorter2.md) + * [virtualenv](virtualenv.md) + * [VirtualGL](VirtualGL.md) + * [Virtuoso-opensource](Virtuoso-opensource.md) + * [visdom](visdom.md) + * [vispr](vispr.md) + * [VisPy](VisPy.md) + * [vitessce-python](vitessce-python.md) + * [vitessceR](vitessceR.md) + * [VMD](VMD.md) + * [VMTK](VMTK.md) + * [voltools](voltools.md) + * [vorbis-tools](vorbis-tools.md) + * [Voro++](Voro++.md) + * [vsc-base](vsc-base.md) + * [vsc-install](vsc-install.md) + * [vsc-mympirun](vsc-mympirun.md) + * [vsc-mympirun-scoop](vsc-mympirun-scoop.md) + * [vsc-processcontrol](vsc-processcontrol.md) + * [VSCode](VSCode.md) + * [VSEARCH](VSEARCH.md) + * [vt](vt.md) + * [VTK](VTK.md) + * [VTune](VTune.md) + * [VV](VV.md) + * [VXL](VXL.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - *v* - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/vConTACT2.md b/docs/version-specific/supported-software/v/vConTACT2.md new file mode 100644 index 000000000..835427a2d --- /dev/null +++ b/docs/version-specific/supported-software/v/vConTACT2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# vConTACT2 + +vConTACT2 is a tool to perform guilt-by-contig-association classification of viral genomic sequence data. + +*homepage*: + +version | toolchain +--------|---------- +``0.11.3`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/vaeda.md b/docs/version-specific/supported-software/v/vaeda.md new file mode 100644 index 000000000..1bb972dd0 --- /dev/null +++ b/docs/version-specific/supported-software/v/vaeda.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# vaeda + +vaeda (variaitonal auto-encoder (vae) for doublet annotation (da)) is a Python package for doublet annotation in single cell RNA-sequencing. + +*homepage*: + +version | toolchain +--------|---------- +``0.0.30`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/variant_tools.md b/docs/version-specific/supported-software/v/variant_tools.md new file mode 100644 index 000000000..7ffefc6c2 --- /dev/null +++ b/docs/version-specific/supported-software/v/variant_tools.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# variant_tools + +Variant tools is a software tool for the manipulation, annotation, selection, simulation, and analysis of variants in the context of next-gen sequencing analysis. Unlike some other tools used for Next-Gen sequencing analysis, variant tools is project based and provides a whole set of tools to manipulate and analyze genetic variants. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.1.3`` | ``-Python-3.7.4`` | ``foss/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/vartools.md b/docs/version-specific/supported-software/v/vartools.md new file mode 100644 index 000000000..8a6d9b295 --- /dev/null +++ b/docs/version-specific/supported-software/v/vartools.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# vartools + +Command line utility that provides tools for processing and analyzing astronomical time series data. + +*homepage*: + +version | toolchain +--------|---------- +``1.35`` | ``foss/2016b`` +``1.35`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/vawk.md b/docs/version-specific/supported-software/v/vawk.md new file mode 100644 index 000000000..3cb992f33 --- /dev/null +++ b/docs/version-specific/supported-software/v/vawk.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# vawk + +An awk-like VCF parser + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.0.1`` | ``-Python-2.7.18`` | ``GCCcore/10.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/vcflib.md b/docs/version-specific/supported-software/v/vcflib.md new file mode 100644 index 000000000..4f1d90507 --- /dev/null +++ b/docs/version-specific/supported-software/v/vcflib.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# vcflib + +vcflib provides methods to manipulate and interpret sequence variation as it can be described by VCF. The Variant Call Format (VCF) is a flat-file, tab-delimited textual format intended to concisely describe reference-indexed genetic variations between individuals. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.2`` | | ``GCC/10.2.0`` +``1.0.2`` | | ``GCC/10.3.0`` +``1.0.2`` | ``-Python-3.8.2`` | ``GCC/9.3.0`` +``1.0.3`` | ``-R-4.1.0`` | ``foss/2021a`` +``1.0.3`` | ``-R-4.1.2`` | ``foss/2021b`` +``1.0.9`` | ``-R-4.2.1`` | ``foss/2022a`` +``1.0.9`` | ``-R-4.3.2`` | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/vcfnp.md b/docs/version-specific/supported-software/v/vcfnp.md new file mode 100644 index 000000000..2f26ce398 --- /dev/null +++ b/docs/version-specific/supported-software/v/vcfnp.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# vcfnp + +Load data from a VCF (variant call format) file into numpy arrays, and (optionally) from there into an HDF5 file. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.3.0`` | ``-Python-2.7.11`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/velocyto.md b/docs/version-specific/supported-software/v/velocyto.md new file mode 100644 index 000000000..f331f90b3 --- /dev/null +++ b/docs/version-specific/supported-software/v/velocyto.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# velocyto + +Velocyto is a library for the analysis of RNA velocity. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.17.17`` | | ``foss/2021a`` +``0.17.17`` | | ``foss/2022a`` +``0.17.17`` | ``-Python-3.8.2`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/verifyBamID.md b/docs/version-specific/supported-software/v/verifyBamID.md new file mode 100644 index 000000000..ccee7b3cd --- /dev/null +++ b/docs/version-specific/supported-software/v/verifyBamID.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# verifyBamID + +verifyBamID is a software that verifies whether the reads in particular file match previously known genotypes for an individual (or group of individuals), and checks whether the reads are contaminated as a mixture of two samples. verifyBamID can detect sample contamination and swaps when external genotypes are available. When external genotypes are not available, verifyBamID still robustly detects sample swaps. + +*homepage*: + +version | toolchain +--------|---------- +``1.1.3`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/virtualenv.md b/docs/version-specific/supported-software/v/virtualenv.md new file mode 100644 index 000000000..0454a1a16 --- /dev/null +++ b/docs/version-specific/supported-software/v/virtualenv.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# virtualenv + +A tool for creating isolated virtual python environments. + +*homepage*: + +version | toolchain +--------|---------- +``20.23.1`` | ``GCCcore/12.3.0`` +``20.24.6`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/visdom.md b/docs/version-specific/supported-software/v/visdom.md new file mode 100644 index 000000000..84539e6a7 --- /dev/null +++ b/docs/version-specific/supported-software/v/visdom.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# visdom + +A flexible tool for creating, organizing, and sharing visualizations of live, rich data. Supports Torch and Numpy. + +*homepage*: + +version | toolchain +--------|---------- +``0.2.4`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/vispr.md b/docs/version-specific/supported-software/v/vispr.md new file mode 100644 index 000000000..04a63a2e0 --- /dev/null +++ b/docs/version-specific/supported-software/v/vispr.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# vispr + +VISPR - A visualization framework for CRISPR data. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.14`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/vitessce-python.md b/docs/version-specific/supported-software/v/vitessce-python.md new file mode 100644 index 000000000..78c5d8ab7 --- /dev/null +++ b/docs/version-specific/supported-software/v/vitessce-python.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# vitessce-python + +Python API and Jupyter widget facilitating interactive visualization of spatial single-cell data with Vitessce. + +*homepage*: + +version | toolchain +--------|---------- +``20230222`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/vitessceR.md b/docs/version-specific/supported-software/v/vitessceR.md new file mode 100644 index 000000000..e178dc3a0 --- /dev/null +++ b/docs/version-specific/supported-software/v/vitessceR.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# vitessceR + +Vitessce is a visual integration tool for exploration of spatial single-cell experiments. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.99.0-20230110`` | ``-R-4.2.1`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/voltools.md b/docs/version-specific/supported-software/v/voltools.md new file mode 100644 index 000000000..5b95acebc --- /dev/null +++ b/docs/version-specific/supported-software/v/voltools.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# voltools + +CUDA-accelerated numpy 3D affine transformations + +*homepage*: + +version | toolchain +--------|---------- +``0.4.2`` | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/vorbis-tools.md b/docs/version-specific/supported-software/v/vorbis-tools.md new file mode 100644 index 000000000..df62afc2e --- /dev/null +++ b/docs/version-specific/supported-software/v/vorbis-tools.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# vorbis-tools + +Command-line tools for creating and playing Ogg Vorbis files. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.2`` | ``GCCcore/10.2.0`` +``1.4.2`` | ``GCCcore/10.3.0`` +``1.4.2`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/vsc-base.md b/docs/version-specific/supported-software/v/vsc-base.md new file mode 100644 index 000000000..7ee698e16 --- /dev/null +++ b/docs/version-specific/supported-software/v/vsc-base.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# vsc-base + +VSC-tools is a set of Python libraries and scripts that are commonly used within HPC-UGent. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.6.9`` | | ``system`` +``1.7.3`` | | ``system`` +``2.0.4`` | | ``system`` +``2.1.2`` | | ``system`` +``2.4.17`` | ``-Python-2.7.11`` | ``intel/2016a`` +``2.4.2`` | | ``system`` +``2.5.1`` | ``-Python-2.7.11`` | ``intel/2016a`` +``2.5.1`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2.5.1`` | | ``system`` +``2.5.8`` | | ``system`` +``2.8.0`` | | ``system`` +``2.8.1`` | | ``system`` +``2.8.3`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/vsc-install.md b/docs/version-specific/supported-software/v/vsc-install.md new file mode 100644 index 000000000..23a69ba76 --- /dev/null +++ b/docs/version-specific/supported-software/v/vsc-install.md @@ -0,0 +1,25 @@ +--- +search: + boost: 0.5 +--- +# vsc-install + +vsc-install provides shared setuptools functions and classes for Python libraries developed by UGent's HPC group + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.11`` | ``-Python-2.7.11`` | ``intel/2016a`` +``0.10.11`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.10.25`` | | ``system`` +``0.10.26`` | | ``system`` +``0.10.6`` | ``-Python-2.7.11`` | ``intel/2016a`` +``0.10.6`` | | ``system`` +``0.11.1`` | | ``system`` +``0.11.2`` | | ``system`` +``0.9.18`` | ``-Python-2.7.11`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/vsc-mympirun-scoop.md b/docs/version-specific/supported-software/v/vsc-mympirun-scoop.md new file mode 100644 index 000000000..681c6fa56 --- /dev/null +++ b/docs/version-specific/supported-software/v/vsc-mympirun-scoop.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# vsc-mympirun-scoop + +VSC-tools is a set of Python libraries and scripts that are commonly used within HPC-UGent. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.4.1`` | ``-Python-2.7.12`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/vsc-mympirun.md b/docs/version-specific/supported-software/v/vsc-mympirun.md new file mode 100644 index 000000000..a51e49ca8 --- /dev/null +++ b/docs/version-specific/supported-software/v/vsc-mympirun.md @@ -0,0 +1,46 @@ +--- +search: + boost: 0.5 +--- +# vsc-mympirun + +VSC-tools is a set of Python libraries and scripts that are commonly used within HPC-UGent. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.2.1`` | | ``system`` +``3.3.0`` | | ``system`` +``3.4.2`` | ``-Python-2.7.11-vsc-base-2.4.17`` | ``intel/2016a`` +``3.4.2`` | ``-Python-2.7.11-vsc-base-2.5.1`` | ``intel/2016a`` +``3.4.2`` | ``-vsc-base-2.4.2`` | ``system`` +``3.4.2`` | | ``system`` +``3.4.3`` | ``-Python-2.7.12`` | ``intel/2016b`` +``4.0.0`` | | ``system`` +``4.0.0b0`` | | ``system`` +``4.0.1`` | | ``system`` +``4.0.2`` | | ``system`` +``4.1.4`` | | ``system`` +``4.1.5`` | | ``system`` +``4.1.6`` | | ``system`` +``4.1.8`` | | ``system`` +``4.1.9`` | | ``system`` +``5.1.0`` | | ``system`` +``5.2.0`` | | ``system`` +``5.2.10`` | | ``system`` +``5.2.11`` | | ``system`` +``5.2.2`` | | ``system`` +``5.2.3`` | | ``system`` +``5.2.4`` | | ``system`` +``5.2.5`` | | ``system`` +``5.2.6`` | | ``system`` +``5.2.7`` | | ``system`` +``5.2.9`` | | ``system`` +``5.3.0`` | | ``system`` +``5.3.1`` | | ``system`` +``5.4.0`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/vsc-processcontrol.md b/docs/version-specific/supported-software/v/vsc-processcontrol.md new file mode 100644 index 000000000..4fad4cea3 --- /dev/null +++ b/docs/version-specific/supported-software/v/vsc-processcontrol.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# vsc-processcontrol + +vsc-processcontrol is a module to abstract process control like scheduler settings and affinity from actual implementations like vsc.affinity and psutil. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0`` | ``-vsc-base-2.1.2`` | ``system`` +``1.0`` | | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/v/vt.md b/docs/version-specific/supported-software/v/vt.md new file mode 100644 index 000000000..d8eedc00f --- /dev/null +++ b/docs/version-specific/supported-software/v/vt.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# vt + +A tool set for short variant discovery in genetic sequence data. + +*homepage*: + +version | toolchain +--------|---------- +``0.57721`` | ``GCC/10.2.0`` +``0.57721`` | ``GCC/10.3.0`` +``0.57721`` | ``GCC/11.2.0`` +``0.57721`` | ``GCC/9.3.0`` +``0.57721`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/WCSLIB.md b/docs/version-specific/supported-software/w/WCSLIB.md new file mode 100644 index 000000000..1d2967f83 --- /dev/null +++ b/docs/version-specific/supported-software/w/WCSLIB.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# WCSLIB + +The FITS "World Coordinate System" (WCS) standard defines keywords and usage that provide for the description of astronomical coordinate systems in a FITS image header. + +*homepage*: + +version | toolchain +--------|---------- +``7.11`` | ``GCC/11.2.0`` +``7.11`` | ``GCC/11.3.0`` +``7.11`` | ``GCC/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/WCT.md b/docs/version-specific/supported-software/w/WCT.md new file mode 100644 index 000000000..3b673bcea --- /dev/null +++ b/docs/version-specific/supported-software/w/WCT.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# WCT + +NOAA's Weather and Climate Toolkit (WCT) is free, platform independent software distributed from NOAA's National Centers for Environmental Information (NCEI). The WCT allows the visualization and data export of weather and climate data, including Radar, Satellite and Model data. The WCT also provides access to weather/climate web services provided from NCEI and other organizations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.6.0`` | ``-Java-11`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/WEKA.md b/docs/version-specific/supported-software/w/WEKA.md new file mode 100644 index 000000000..b74e5aa9f --- /dev/null +++ b/docs/version-specific/supported-software/w/WEKA.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# WEKA + +Weka is a collection of machine learning algorithms for data mining tasks. The algorithms can either be applied directly to a dataset or called from your own Java code. Weka contains tools for data pre-processing, classification, regression, clustering, association rules, and visualization. It is also well-suited for developing new machine learning schemes. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.6.12`` | ``-Java-1.7.0_80`` | ``system`` +``3.7.0`` | ``-Java-1.7.0_80`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/WFA2.md b/docs/version-specific/supported-software/w/WFA2.md new file mode 100644 index 000000000..79a3bbb31 --- /dev/null +++ b/docs/version-specific/supported-software/w/WFA2.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# WFA2 + +The wavefront alignment (WFA) algorithm is an exact gap-affine algorithm that takes advantage of homologous regions between the sequences to accelerate the alignment process. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.3`` | ``GCCcore/11.3.0`` +``2.3.4`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/WGDgc.md b/docs/version-specific/supported-software/w/WGDgc.md new file mode 100644 index 000000000..b12536896 --- /dev/null +++ b/docs/version-specific/supported-software/w/WGDgc.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# WGDgc + +Analysis of whole genome duplications (WGD) and triplications (WGT) using comparative gene count data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.3`` | ``-R-4.3.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/WHAM.md b/docs/version-specific/supported-software/w/WHAM.md new file mode 100644 index 000000000..1f9aa6077 --- /dev/null +++ b/docs/version-specific/supported-software/w/WHAM.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# WHAM + +An implementation of WHAM: the Weighted Histogram Analysis Method + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0.10.2`` | ``-kj_mol`` | ``intel/2020a`` +``2.0.10.2`` | | ``intel/2020a`` +``2.0.9.1`` | ``-kj_mol`` | ``intel/2019a`` +``2.0.9.1`` | | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/WIEN2k.md b/docs/version-specific/supported-software/w/WIEN2k.md new file mode 100644 index 000000000..01c9c51a8 --- /dev/null +++ b/docs/version-specific/supported-software/w/WIEN2k.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# WIEN2k + +The program package WIEN2k allows to perform electronic structure calculations of solids using density functional theory (DFT). It is based on the full-potential (linearized) augmented plane-wave ((L)APW) + local orbitals (lo) method, one among the most accurate schemes for band structure calculations. WIEN2k is an all-electron scheme including relativistic effects and has many features. + +*homepage*: + +version | toolchain +--------|---------- +``17.1`` | ``foss/2018a`` +``17.1`` | ``gimkl/2017a`` +``17.1`` | ``intel/2018a`` +``18.1`` | ``foss/2018a`` +``18.1`` | ``gimkl/2017a`` +``18.1`` | ``intel/2018a`` +``19.1`` | ``intel/2019a`` +``19.2`` | ``intel/2020b`` +``21.1`` | ``intel/2021a`` +``21.1`` | ``intel/2021b`` +``23.2`` | ``intel/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/WISExome.md b/docs/version-specific/supported-software/w/WISExome.md new file mode 100644 index 000000000..fd77e4dc5 --- /dev/null +++ b/docs/version-specific/supported-software/w/WISExome.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# WISExome + +A within-sample comparison approach to detect copy number variations in whole exome sequencing data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20180517`` | ``-Python-2.7.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/WPS.md b/docs/version-specific/supported-software/w/WPS.md new file mode 100644 index 000000000..4131e3e1f --- /dev/null +++ b/docs/version-specific/supported-software/w/WPS.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# WPS + +WRF Preprocessing System (WPS) for WRF. The Weather Research and Forecasting (WRF) Model is a next-generation mesoscale numerical weather prediction system designed to serve both operational forecasting and atmospheric research needs. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.8.0`` | ``-dmpar`` | ``intel/2016a`` +``3.9.1`` | ``-dmpar`` | ``foss/2020b`` +``4.0.1`` | ``-dmpar`` | ``intel/2018b`` +``4.0.2`` | ``-dmpar`` | ``foss/2018b`` +``4.1`` | ``-dmpar`` | ``intel/2019b`` +``4.2`` | ``-dmpar`` | ``foss/2020b`` +``4.3.1`` | ``-dmpar`` | ``foss/2021a`` +``4.4`` | ``-dmpar`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/WRF-Fire.md b/docs/version-specific/supported-software/w/WRF-Fire.md new file mode 100644 index 000000000..7c16c640d --- /dev/null +++ b/docs/version-specific/supported-software/w/WRF-Fire.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# WRF-Fire + +WRF-Fire combines the Weather Research and Forecasting model (WRF) with a fire code implementing a surface fire behavior model, called SFIRE, based on semi-empirical formulas calculate the rate of spread of the fire line (the interface between burning and unignited fuel) based on fuel properties, wind velocities from WRF, and terrain slope. The fire spread is implemented by the level set method. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20170221`` | ``-dmpar`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/WRF.md b/docs/version-specific/supported-software/w/WRF.md new file mode 100644 index 000000000..74a70d93f --- /dev/null +++ b/docs/version-specific/supported-software/w/WRF.md @@ -0,0 +1,32 @@ +--- +search: + boost: 0.5 +--- +# WRF + +The Weather Research and Forecasting (WRF) Model is a next-generation mesoscale numerical weather prediction system designed to serve both operational forecasting and atmospheric research needs. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.8.0`` | ``-dmpar`` | ``intel/2016a`` +``3.8.0`` | ``-dmpar`` | ``intel/2016b`` +``3.9.1.1`` | ``-dmpar`` | ``foss/2020a`` +``3.9.1.1`` | ``-dmpar`` | ``foss/2020b`` +``3.9.1.1`` | ``-dmpar`` | ``intel/2020a`` +``3.9.1.1`` | ``-dmpar`` | ``intel/2020b`` +``4.0.1`` | ``-dmpar`` | ``intel/2018b`` +``4.0.2`` | ``-dmpar`` | ``foss/2018b`` +``4.1.3`` | ``-dmpar`` | ``foss/2019b`` +``4.1.3`` | ``-dmpar`` | ``foss/2020a`` +``4.1.3`` | ``-dm+sm`` | ``intel/2019b`` +``4.1.3`` | ``-dmpar`` | ``intel/2019b`` +``4.2.2`` | ``-dmpar`` | ``foss/2020b`` +``4.3`` | ``-dmpar`` | ``foss/2021a`` +``4.4`` | ``-dmpar`` | ``foss/2022a`` +``4.4.1`` | ``-dmpar`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/WSClean.md b/docs/version-specific/supported-software/w/WSClean.md new file mode 100644 index 000000000..76b833135 --- /dev/null +++ b/docs/version-specific/supported-software/w/WSClean.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# WSClean + +WSClean (w-stacking clean) is a fast generic widefield imager. It implements several gridding algorithms and offers fully-automated multi-scale multi-frequency deconvolution. + +*homepage*: + +version | toolchain +--------|---------- +``3.4`` | ``foss/2022a`` +``3.4`` | ``foss/2023b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/Wannier90.md b/docs/version-specific/supported-software/w/Wannier90.md new file mode 100644 index 000000000..e8a55f545 --- /dev/null +++ b/docs/version-specific/supported-software/w/Wannier90.md @@ -0,0 +1,39 @@ +--- +search: + boost: 0.5 +--- +# Wannier90 + +A tool for obtaining maximally-localised Wannier functions + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2`` | | ``intel/2016.02-GCC-4.9`` +``2.0.1`` | | ``intel/2016.02-GCC-4.9`` +``2.0.1`` | | ``intel/2016a`` +``2.0.1.1`` | ``-abinit`` | ``intel/2018b`` +``2.1.0`` | | ``foss/2017b`` +``2.1.0`` | | ``intel/2017a`` +``2.1.0`` | | ``intel/2017b`` +``3.0.0`` | | ``intel/2018b`` +``3.1.0`` | | ``foss/2020b`` +``3.1.0`` | | ``foss/2021a`` +``3.1.0`` | | ``foss/2021b`` +``3.1.0`` | | ``foss/2022a`` +``3.1.0`` | | ``foss/2023a`` +``3.1.0`` | | ``gomkl/2021a`` +``3.1.0`` | | ``gomkl/2022a`` +``3.1.0`` | | ``gomkl/2023a`` +``3.1.0`` | | ``intel/2020a`` +``3.1.0`` | | ``intel/2020b`` +``3.1.0`` | | ``intel/2021a`` +``3.1.0`` | | ``intel/2021b`` +``3.1.0`` | | ``intel/2022a`` +``3.1.0`` | | ``intel/2022b`` +``3.1.0`` | | ``intel/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/WannierTools.md b/docs/version-specific/supported-software/w/WannierTools.md new file mode 100644 index 000000000..0f38c222a --- /dev/null +++ b/docs/version-specific/supported-software/w/WannierTools.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# WannierTools + +an open-source software package for novel topological materials + +*homepage*: + +version | toolchain +--------|---------- +``2.3.0`` | ``intel/2018a`` +``2.5.1`` | ``intel/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/Wayland.md b/docs/version-specific/supported-software/w/Wayland.md new file mode 100644 index 000000000..96a3e699c --- /dev/null +++ b/docs/version-specific/supported-software/w/Wayland.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# Wayland + +Wayland is a project to define a protocol for a compositor to talk to its clients as well as a library implementation of the protocol. The compositor can be a standalone display server running on Linux kernel modesetting and evdev input devices, an X application, or a wayland client itself. The clients can be traditional applications, X servers (rootless or fullscreen) or other display servers. + +*homepage*: + +version | toolchain +--------|---------- +``1.20.0`` | ``GCCcore/11.3.0`` +``1.21.0`` | ``GCCcore/11.2.0`` +``1.21.0`` | ``GCCcore/11.3.0`` +``1.22.0`` | ``GCCcore/12.2.0`` +``1.22.0`` | ``GCCcore/12.3.0`` +``1.22.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/Waylandpp.md b/docs/version-specific/supported-software/w/Waylandpp.md new file mode 100644 index 000000000..6c14c7ea1 --- /dev/null +++ b/docs/version-specific/supported-software/w/Waylandpp.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Waylandpp + +Wayland is an object oriented display protocol, which features request and events. Requests can be seen as method calls on certain objects, whereas events can be seen as signals of an object. This makes the Wayland protocol a perfect candidate for a C++ binding. The goal of this library is to create such a C++ binding for Wayland using the most modern C++ technology currently available, providing an easy to use C++ API to Wayland. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.0`` | ``GCCcore/11.2.0`` +``1.0.0`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/WebKitGTK+.md b/docs/version-specific/supported-software/w/WebKitGTK+.md new file mode 100644 index 000000000..5c87978f5 --- /dev/null +++ b/docs/version-specific/supported-software/w/WebKitGTK+.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# WebKitGTK+ + +WebKitGTK+ is a full-featured port of the WebKit rendering engine, suitable for projects requiring any kind of web integration, from hybrid HTML/CSS applications to full-fledged web browsers. It offers WebKit’s full functionality and is useful in a wide range of systems from desktop computers to embedded systems like phones, tablets, and televisions. + +*homepage*: + +version | toolchain +--------|---------- +``2.24.1`` | ``GCC/8.2.0-2.31.1`` +``2.27.4`` | ``GCC/10.3.0`` +``2.27.4`` | ``GCC/8.3.0`` +``2.37.1`` | ``GCC/11.2.0`` +``2.40.4`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/WebSocket++.md b/docs/version-specific/supported-software/w/WebSocket++.md new file mode 100644 index 000000000..90bf5b725 --- /dev/null +++ b/docs/version-specific/supported-software/w/WebSocket++.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# WebSocket++ + +WebSocket++ is an open source (BSD license) header only C++ library that implements RFC6455 The WebSocket Protocol. + +*homepage*: + +version | toolchain +--------|---------- +``0.8.1`` | ``gompi/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/WhatsHap.md b/docs/version-specific/supported-software/w/WhatsHap.md new file mode 100644 index 000000000..53b7b7401 --- /dev/null +++ b/docs/version-specific/supported-software/w/WhatsHap.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# WhatsHap + +WhatsHap is a software for phasing genomic variants using DNA sequencing reads, also called read-based phasing or haplotype assembly. It is especially suitable for long reads, but works also well with short reads. + +*homepage*: + +version | toolchain +--------|---------- +``1.1`` | ``foss/2020b`` +``1.1`` | ``foss/2021a`` +``1.4`` | ``foss/2021b`` +``1.7`` | ``foss/2022a`` +``2.1`` | ``foss/2022b`` +``2.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/WildMagic.md b/docs/version-specific/supported-software/w/WildMagic.md new file mode 100644 index 000000000..31c7259bc --- /dev/null +++ b/docs/version-specific/supported-software/w/WildMagic.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# WildMagic + +Wild Magic 5.17 + +*homepage*: + +version | toolchain +--------|---------- +``5.17`` | ``GCCcore/10.3.0`` +``5.17`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/Winnowmap.md b/docs/version-specific/supported-software/w/Winnowmap.md new file mode 100644 index 000000000..a0ab6f5fe --- /dev/null +++ b/docs/version-specific/supported-software/w/Winnowmap.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Winnowmap + +Winnowmap is a long-read mapping algorithm, and a result of our exploration into superior minimizer sampling techniques. + +*homepage*: + +version | toolchain +--------|---------- +``1.0`` | ``GCC/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/WisecondorX.md b/docs/version-specific/supported-software/w/WisecondorX.md new file mode 100644 index 000000000..50c0c0293 --- /dev/null +++ b/docs/version-specific/supported-software/w/WisecondorX.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# WisecondorX + +WisecondorX -- an evolved WISECONDOR + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.6`` | ``-Python-3.8.2`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/index.md b/docs/version-specific/supported-software/w/index.md new file mode 100644 index 000000000..663c633e7 --- /dev/null +++ b/docs/version-specific/supported-software/w/index.md @@ -0,0 +1,53 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (w) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - *w* - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + + + + * [waLBerla](waLBerla.md) + * [wandb](wandb.md) + * [Wannier90](Wannier90.md) + * [WannierTools](WannierTools.md) + * [Wayland](Wayland.md) + * [Waylandpp](Waylandpp.md) + * [WCSLIB](WCSLIB.md) + * [WCT](WCT.md) + * [wcwidth](wcwidth.md) + * [webin-cli](webin-cli.md) + * [WebKitGTK+](WebKitGTK+.md) + * [WebSocket++](WebSocket++.md) + * [WEKA](WEKA.md) + * [WFA2](WFA2.md) + * [wfdb](wfdb.md) + * [WGDgc](WGDgc.md) + * [wget](wget.md) + * [wgsim](wgsim.md) + * [WHAM](WHAM.md) + * [WhatsHap](WhatsHap.md) + * [wheel](wheel.md) + * [WIEN2k](WIEN2k.md) + * [WildMagic](WildMagic.md) + * [Winnowmap](Winnowmap.md) + * [WisecondorX](WisecondorX.md) + * [WISExome](WISExome.md) + * [wkhtmltopdf](wkhtmltopdf.md) + * [worker](worker.md) + * [wpebackend-fdo](wpebackend-fdo.md) + * [WPS](WPS.md) + * [wrapt](wrapt.md) + * [WRF](WRF.md) + * [WRF-Fire](WRF-Fire.md) + * [wrf-python](wrf-python.md) + * [WSClean](WSClean.md) + * [wtdbg2](wtdbg2.md) + * [wxPropertyGrid](wxPropertyGrid.md) + * [wxPython](wxPython.md) + * [wxWidgets](wxWidgets.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - *w* - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/waLBerla.md b/docs/version-specific/supported-software/w/waLBerla.md new file mode 100644 index 000000000..438616ffd --- /dev/null +++ b/docs/version-specific/supported-software/w/waLBerla.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# waLBerla + +Widely applicable Lattics-Boltzmann from Erlangen is a block-structured high-performance framework for multiphysics simulations + +*homepage*: + +version | toolchain +--------|---------- +``6.1`` | ``foss/2021a`` +``6.1`` | ``foss/2022b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/wandb.md b/docs/version-specific/supported-software/w/wandb.md new file mode 100644 index 000000000..473073b28 --- /dev/null +++ b/docs/version-specific/supported-software/w/wandb.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# wandb + +CLI and Python API for Weights and Biases: a tool for visualizing and tracking your machine learning experiments. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.13.4`` | | ``GCCcore/11.3.0`` +``0.13.6`` | | ``GCC/11.3.0`` +``0.16.1`` | | ``GCC/12.3.0`` +``0.8.30`` | ``-Python-3.7.4`` | ``gcccuda/2019b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/wcwidth.md b/docs/version-specific/supported-software/w/wcwidth.md new file mode 100644 index 000000000..97af7b6c1 --- /dev/null +++ b/docs/version-specific/supported-software/w/wcwidth.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# wcwidth + +wcwidth is a low-level Python library to simplify Terminal emulation. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.1.7`` | ``-Python-2.7.11`` | ``foss/2016a`` +``0.1.7`` | ``-Python-3.5.1`` | ``foss/2016a`` +``0.1.7`` | ``-Python-2.7.12`` | ``foss/2016b`` +``0.1.7`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.1.7`` | ``-Python-3.5.2`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/webin-cli.md b/docs/version-specific/supported-software/w/webin-cli.md new file mode 100644 index 000000000..13814456c --- /dev/null +++ b/docs/version-specific/supported-software/w/webin-cli.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# webin-cli + +The Webin command line submission interface can be used to validate, upload and submit files to the European Nucleotide Archive (ENA) + +*homepage*: + +version | toolchain +--------|---------- +``1.8.9`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/wfdb.md b/docs/version-specific/supported-software/w/wfdb.md new file mode 100644 index 000000000..b934f4bdd --- /dev/null +++ b/docs/version-specific/supported-software/w/wfdb.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# wfdb + +The native Python waveform-database (WFDB) package. A library of tools for reading, writing, and processing WFDB signals and annotations. + +*homepage*: + +version | toolchain +--------|---------- +``4.1.2`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/wget.md b/docs/version-specific/supported-software/w/wget.md new file mode 100644 index 000000000..968233f9c --- /dev/null +++ b/docs/version-specific/supported-software/w/wget.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# wget + +GNU Wget is a free software package for retrieving files using HTTP, HTTPS and FTP, the most widely-used Internet protocols. It is a non-interactive commandline tool, so it may easily be called from scripts, cron jobs, terminals without X-Windows support, etc. + +*homepage*: + +version | toolchain +--------|---------- +``1.17.1`` | ``foss/2016a`` +``1.17.1`` | ``foss/2016b`` +``1.19.4`` | ``GCCcore/6.4.0`` +``1.20.1`` | ``GCCcore/7.3.0`` +``1.20.1`` | ``GCCcore/8.3.0`` +``1.20.3`` | ``GCCcore/10.2.0`` +``1.20.3`` | ``GCCcore/9.3.0`` +``1.21.1`` | ``GCCcore/10.3.0`` +``1.21.2`` | ``GCCcore/11.2.0`` +``1.21.3`` | ``GCCcore/11.3.0`` +``1.21.4`` | ``GCCcore/13.2.0`` +``1.24.5`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/wgsim.md b/docs/version-specific/supported-software/w/wgsim.md new file mode 100644 index 000000000..12404f05b --- /dev/null +++ b/docs/version-specific/supported-software/w/wgsim.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# wgsim + +Wgsim is a small tool for simulating sequence reads from a reference genome. + +*homepage*: + +version | toolchain +--------|---------- +``20111017`` | ``GCC/10.2.0`` +``20111017`` | ``GCC/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/wheel.md b/docs/version-specific/supported-software/w/wheel.md new file mode 100644 index 000000000..f9c28575b --- /dev/null +++ b/docs/version-specific/supported-software/w/wheel.md @@ -0,0 +1,35 @@ +--- +search: + boost: 0.5 +--- +# wheel + +A built-package format for Python. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.29.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``0.29.0`` | ``-Python-3.5.1`` | ``foss/2016a`` +``0.30.0`` | ``-Python-2.7.14`` | ``foss/2017b`` +``0.30.0`` | ``-Python-3.6.3`` | ``foss/2017b`` +``0.30.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``0.30.0`` | ``-Python-2.7.14`` | ``fosscuda/2017b`` +``0.30.0`` | ``-Python-3.6.3`` | ``fosscuda/2017b`` +``0.30.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.30.0`` | ``-Python-3.6.3`` | ``intel/2017b`` +``0.30.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``0.30.0`` | ``-Python-2.7.14`` | ``intelcuda/2017b`` +``0.30.0`` | ``-Python-3.6.3`` | ``intelcuda/2017b`` +``0.31.0`` | ``-Python-3.6.4`` | ``foss/2018a`` +``0.31.0`` | ``-Python-2.7.14`` | ``fosscuda/2018a`` +``0.31.0`` | ``-Python-3.6.4`` | ``fosscuda/2018a`` +``0.31.0`` | ``-Python-2.7.14`` | ``intel/2018a`` +``0.31.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.31.1`` | ``-Python-2.7.15`` | ``fosscuda/2018b`` +``0.31.1`` | ``-Python-3.6.6`` | ``fosscuda/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/wkhtmltopdf.md b/docs/version-specific/supported-software/w/wkhtmltopdf.md new file mode 100644 index 000000000..b7520ba4c --- /dev/null +++ b/docs/version-specific/supported-software/w/wkhtmltopdf.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# wkhtmltopdf + +wkhtmltopdf and wkhtmltoimage are open source (LGPLv3) command line tools to render HTML into PDF and various image formats using the Qt WebKit rendering engine. These run entirely headless and do not require a display or display service. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.12.3`` | ``-Linux-x86_64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/worker.md b/docs/version-specific/supported-software/w/worker.md new file mode 100644 index 000000000..c6afd95a6 --- /dev/null +++ b/docs/version-specific/supported-software/w/worker.md @@ -0,0 +1,29 @@ +--- +search: + boost: 0.5 +--- +# worker + +The Worker framework has been developed to help deal with parameter exploration experiments that would otherwise result in many jobs, forcing the user resort to scripting to retain her sanity; see also https://vscentrum.be/neutral/documentation/cluster-doc/running-jobs/worker-framework. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.6.11`` | | ``intel/2019b`` +``1.6.12`` | | ``foss/2019a`` +``1.6.12`` | | ``foss/2021b`` +``1.6.13`` | | ``iimpi/2021b`` +``1.6.13`` | | ``iimpi/2022b`` +``1.6.4`` | | ``intel/2016a`` +``1.6.5`` | | ``intel/2016a`` +``1.6.6`` | | ``intel/2016b`` +``1.6.7`` | ``-intel-2016b`` | ``system`` +``1.6.7`` | ``-intel-2017a`` | ``system`` +``1.6.7`` | ``-intel-2017b`` | ``system`` +``1.6.8`` | ``-intel-2018a`` | ``system`` +``1.6.8`` | ``-intel-2018b`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/wpebackend-fdo.md b/docs/version-specific/supported-software/w/wpebackend-fdo.md new file mode 100644 index 000000000..e9612986e --- /dev/null +++ b/docs/version-specific/supported-software/w/wpebackend-fdo.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# wpebackend-fdo + +WPE WebKit allows embedders to create simple and performant systems based on Web platform technologies. It is a WebKit port designed with flexibility and hardware acceleration in mind, leveraging common 3D graphics APIs for best performance. + +*homepage*: + +version | toolchain +--------|---------- +``1.13.1`` | ``GCCcore/11.2.0`` +``1.14.1`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/wrapt.md b/docs/version-specific/supported-software/w/wrapt.md new file mode 100644 index 000000000..dc6fbde11 --- /dev/null +++ b/docs/version-specific/supported-software/w/wrapt.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# wrapt + +The aim of the wrapt module is to provide a transparent object proxy for Python, which can be used as the basis for the construction of function wrappers and decorator functions. + +*homepage*: + +version | toolchain +--------|---------- +``1.15.0`` | ``foss/2022a`` +``1.15.0`` | ``gfbf/2022b`` +``1.15.0`` | ``gfbf/2023a`` +``1.15.0`` | ``intel/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/wrf-python.md b/docs/version-specific/supported-software/w/wrf-python.md new file mode 100644 index 000000000..36b58927c --- /dev/null +++ b/docs/version-specific/supported-software/w/wrf-python.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# wrf-python + +A collection of diagnostic and interpolation routines for use with output from the Weather Research and Forecasting (WRF-ARW) Model. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.0`` | ``-Python-3.6.4`` | ``intel/2018a`` +``1.3.1`` | ``-Python-3.6.6`` | ``intel/2018b`` +``1.3.4.1`` | | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/wtdbg2.md b/docs/version-specific/supported-software/w/wtdbg2.md new file mode 100644 index 000000000..df862f5a5 --- /dev/null +++ b/docs/version-specific/supported-software/w/wtdbg2.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# wtdbg2 + +Wtdbg2 is a de novo sequence assembler for long noisy reads produced by PacBio or Oxford Nanopore Technologies (ONT). It assembles raw reads without error correction and then builds the consensus from intermediate assembly output. + +*homepage*: + +version | toolchain +--------|---------- +``2.3`` | ``GCC/7.3.0-2.30`` +``2.5`` | ``GCCcore/11.2.0`` +``2.5`` | ``GCCcore/11.3.0`` +``2.5`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/wxPropertyGrid.md b/docs/version-specific/supported-software/w/wxPropertyGrid.md new file mode 100644 index 000000000..dd4a28f35 --- /dev/null +++ b/docs/version-specific/supported-software/w/wxPropertyGrid.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# wxPropertyGrid + +wxPropertyGrid is a property sheet control for wxWidgets. In other words, it is a specialized two-column grid for editing properties such as strings, numbers, flagsets, string arrays, and colours. + +*homepage*: + +version | toolchain +--------|---------- +``1.4.15`` | ``GCC/4.9.2`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/wxPython.md b/docs/version-specific/supported-software/w/wxPython.md new file mode 100644 index 000000000..d50d7492c --- /dev/null +++ b/docs/version-specific/supported-software/w/wxPython.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# wxPython + +wxPython is a GUI toolkit for the Python programming language. It allows Python programmers to create programs with a robust, highly functional graphical user interface, simply and easily. It is implemented as a Python extension module (native code) that wraps the popular wxWidgets cross platform GUI library, which is written in C++. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.0.2.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``3.0.2.0`` | ``-Python-2.7.15`` | ``foss/2018b`` +``3.0.2.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``3.0.2.0`` | ``-Python-2.7.12`` | ``intel/2016b`` +``3.0.2.0`` | ``-Python-2.7.13`` | ``intel/2017a`` +``3.0.2.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``4.0.4`` | ``-Python-2.7.15`` | ``GCC/8.2.0-2.31.1`` +``4.0.4`` | ``-Python-3.7.2`` | ``GCC/8.2.0-2.31.1`` +``4.0.7.post2`` | ``-Python-3.7.4`` | ``GCC/8.3.0`` +``4.1.1`` | | ``foss/2021a`` +``4.2.0`` | | ``foss/2021b`` +``4.2.1`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/w/wxWidgets.md b/docs/version-specific/supported-software/w/wxWidgets.md new file mode 100644 index 000000000..24905ddbf --- /dev/null +++ b/docs/version-specific/supported-software/w/wxWidgets.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# wxWidgets + +wxWidgets is a C++ library that lets developers create applications for Windows, Mac OS X, Linux and other platforms with a single code base. It has popular language bindings for Python, Perl, Ruby and many other languages, and unlike other cross-platform toolkits, wxWidgets gives applications a truly native look and feel because it uses the platform's native API rather than emulating the GUI. + +*homepage*: + +version | toolchain +--------|---------- +``3.0.3`` | ``foss/2018a`` +``3.0.4`` | ``GCC/8.2.0-2.31.1`` +``3.1.3`` | ``GCC/8.3.0`` +``3.1.4`` | ``GCC/10.2.0`` +``3.1.5`` | ``GCC/10.3.0`` +``3.1.5`` | ``GCC/11.2.0`` +``3.2.0`` | ``GCC/11.2.0`` +``3.2.1`` | ``GCC/11.3.0`` +``3.2.2.1`` | ``GCC/12.2.0`` +``3.2.2.1`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/X11.md b/docs/version-specific/supported-software/x/X11.md new file mode 100644 index 000000000..526607b3f --- /dev/null +++ b/docs/version-specific/supported-software/x/X11.md @@ -0,0 +1,35 @@ +--- +search: + boost: 0.5 +--- +# X11 + +The X Window System (X11) is a windowing system for bitmap displays + +*homepage*: + +version | toolchain +--------|---------- +``20160819`` | ``GCCcore/5.4.0`` +``20160819`` | ``foss/2016b`` +``20160819`` | ``intel/2016b`` +``20170129`` | ``GCCcore/6.3.0`` +``20170129`` | ``gimkl/2017a`` +``20170314`` | ``GCCcore/6.3.0`` +``20171023`` | ``GCCcore/6.4.0`` +``20180131`` | ``GCCcore/6.4.0`` +``20180604`` | ``GCCcore/7.3.0`` +``20190311`` | ``GCCcore/8.2.0`` +``20190717`` | ``GCCcore/8.3.0`` +``20200222`` | ``GCCcore/9.3.0`` +``20201008`` | ``GCCcore/10.2.0`` +``20210518`` | ``GCCcore/10.3.0`` +``20210802`` | ``GCCcore/11.2.0`` +``20220504`` | ``GCCcore/11.3.0`` +``20221110`` | ``GCCcore/12.2.0`` +``20230603`` | ``GCCcore/12.3.0`` +``20231019`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/XALT.md b/docs/version-specific/supported-software/x/XALT.md new file mode 100644 index 000000000..397567cb8 --- /dev/null +++ b/docs/version-specific/supported-software/x/XALT.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# XALT + +XALT 2 is a tool to allow a site to track user executables and library usage on a cluster. When installed it can tell a site what are the top executables by Node-Hours or by the number of users or the number of times it is run. XALT 2 also tracks library usage as well. XALT 2 can also track package use by R, MATLAB or Python. It tracks both MPI and non-MPI programs. + +*homepage*: + +version | toolchain +--------|---------- +``2.8.4`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/XBeach.md b/docs/version-specific/supported-software/x/XBeach.md new file mode 100644 index 000000000..8722c48a6 --- /dev/null +++ b/docs/version-specific/supported-software/x/XBeach.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# XBeach + +XBeach is a two-dimensional model for wave propagation, long waves and mean flow, sediment transport and morphological changes of the nearshore area, beaches, dunes and backbarrier during storms. + +*homepage*: + +version | toolchain +--------|---------- +``20230831`` | ``gompi/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/XCFun.md b/docs/version-specific/supported-software/x/XCFun.md new file mode 100644 index 000000000..d4dae5936 --- /dev/null +++ b/docs/version-specific/supported-software/x/XCFun.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# XCFun + +Arbitrary order exchange-correlation functional library + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.0`` | | ``GCCcore/9.3.0`` +``2.1.1`` | | ``GCCcore/10.2.0`` +``2.1.1`` | | ``GCCcore/10.3.0`` +``2.1.1`` | | ``GCCcore/11.3.0`` +``2.1.1`` | | ``GCCcore/12.2.0`` +``20180122`` | ``-Python-2.7.14`` | ``intel/2017b`` +``20190127`` | ``-Python-3.7.2`` | ``foss/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/XCrySDen.md b/docs/version-specific/supported-software/x/XCrySDen.md new file mode 100644 index 000000000..f363da3b4 --- /dev/null +++ b/docs/version-specific/supported-software/x/XCrySDen.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# XCrySDen + +XCrySDen is a crystalline and molecular structure visualisation program aiming at display of isosurfaces and contours, which can be superimposed on crystalline structures and interactively rotated and manipulated. + +*homepage*: + +version | toolchain +--------|---------- +``1.5.60`` | ``intel/2019a`` +``1.6.2`` | ``foss/2019b`` +``1.6.2`` | ``foss/2020b`` +``1.6.2`` | ``foss/2022a`` +``1.6.2`` | ``intel/2019b`` +``1.6.2`` | ``intel/2021b`` +``1.6.2`` | ``intel/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/XGBoost.md b/docs/version-specific/supported-software/x/XGBoost.md new file mode 100644 index 000000000..240a4cfeb --- /dev/null +++ b/docs/version-specific/supported-software/x/XGBoost.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# XGBoost + +XGBoost is an optimized distributed gradient boosting library designed to be highly efficient, flexible and portable. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.6a2`` | ``-Python-2.7.12`` | ``intel/2016b`` +``0.6a2`` | ``-Python-3.5.2`` | ``intel/2016b`` +``0.6a2`` | ``-Python-3.6.1`` | ``intel/2017a`` +``0.72.1`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.90`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.2.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.5.0`` | | ``foss/2021a`` +``1.7.1`` | | ``foss/2022a`` +``1.7.2`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``1.7.2`` | | ``foss/2022a`` +``2.0.2`` | | ``gfbf/2023a`` +``20171120`` | ``-Java-1.8.0_152`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/XGrafix.md b/docs/version-specific/supported-software/x/XGrafix.md new file mode 100644 index 000000000..1e2e50e6a --- /dev/null +++ b/docs/version-specific/supported-software/x/XGrafix.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# XGrafix + +A graphics library and controller for physics simulation programs. 3-d surface plots, scatter plots, 2-d line plots. + +*homepage*: + +version | toolchain +--------|---------- +``2.41`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/XKeyboardConfig.md b/docs/version-specific/supported-software/x/XKeyboardConfig.md new file mode 100644 index 000000000..7bb6d8afd --- /dev/null +++ b/docs/version-specific/supported-software/x/XKeyboardConfig.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# XKeyboardConfig + +The non-arch keyboard configuration database for X Window. The goal is to provide the consistent, well-structured, frequently released open source of X keyboard configuration data for X Window System implementations (free, open source and commercial). The project is targeted to XKB-based systems. + +*homepage*: + +version | toolchain +--------|---------- +``2.17`` | ``foss/2016a`` +``2.17`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/XMDS2.md b/docs/version-specific/supported-software/x/XMDS2.md new file mode 100644 index 000000000..ce59997a1 --- /dev/null +++ b/docs/version-specific/supported-software/x/XMDS2.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# XMDS2 + +The purpose of XMDS2 is to simplify the process of creating simulations that solve systems of initial-value first-order partial and ordinary differential equations. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.2.3`` | ``-Python-2.7.15`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/XML-Compile.md b/docs/version-specific/supported-software/x/XML-Compile.md new file mode 100644 index 000000000..ed828a6b5 --- /dev/null +++ b/docs/version-specific/supported-software/x/XML-Compile.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# XML-Compile + +Perl module for compilation based XML processing + +*homepage*: + +version | toolchain +--------|---------- +``1.63`` | ``GCCcore/11.2.0`` +``1.63`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/XML-LibXML.md b/docs/version-specific/supported-software/x/XML-LibXML.md new file mode 100644 index 000000000..61ff4055a --- /dev/null +++ b/docs/version-specific/supported-software/x/XML-LibXML.md @@ -0,0 +1,32 @@ +--- +search: + boost: 0.5 +--- +# XML-LibXML + +Perl binding for libxml2 + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.0132`` | ``-Perl-5.26.1`` | ``GCCcore/6.4.0`` +``2.0132`` | ``-Perl-5.28.0`` | ``GCCcore/7.3.0`` +``2.0132`` | ``-Perl-5.24.0`` | ``foss/2016b`` +``2.0132`` | ``-Perl-5.26.0`` | ``foss/2017b`` +``2.0132`` | ``-Perl-5.24.0`` | ``intel/2016b`` +``2.0132`` | ``-Perl-5.24.1`` | ``intel/2017a`` +``2.0132`` | ``-Perl-5.26.0`` | ``intel/2017b`` +``2.0200`` | ``-Perl-5.28.1`` | ``GCCcore/8.2.0`` +``2.0201`` | | ``GCCcore/8.3.0`` +``2.0205`` | | ``GCCcore/9.3.0`` +``2.0206`` | | ``GCCcore/10.2.0`` +``2.0207`` | | ``GCCcore/10.3.0`` +``2.0207`` | | ``GCCcore/11.2.0`` +``2.0207`` | | ``GCCcore/11.3.0`` +``2.0208`` | | ``GCCcore/12.2.0`` +``2.0209`` | | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/XML-Parser.md b/docs/version-specific/supported-software/x/XML-Parser.md new file mode 100644 index 000000000..9d198077f --- /dev/null +++ b/docs/version-specific/supported-software/x/XML-Parser.md @@ -0,0 +1,32 @@ +--- +search: + boost: 0.5 +--- +# XML-Parser + +This is a Perl extension interface to James Clark's XML parser, expat. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.41`` | ``-Perl-5.20.3`` | ``intel/2016a`` +``2.44`` | ``-Perl-5.22.1`` | ``foss/2016a`` +``2.44`` | ``-Perl-5.22.1`` | ``intel/2016a`` +``2.44_01`` | ``-Perl-5.24.0`` | ``GCCcore/4.9.3`` +``2.44_01`` | ``-Perl-5.24.0`` | ``GCCcore/5.4.0`` +``2.44_01`` | ``-Perl-5.24.1`` | ``GCCcore/6.3.0`` +``2.44_01`` | ``-Perl-5.26.0`` | ``GCCcore/6.4.0`` +``2.44_01`` | ``-Perl-5.26.1`` | ``GCCcore/6.4.0`` +``2.44_01`` | ``-Perl-5.28.0`` | ``GCCcore/7.3.0`` +``2.44_01`` | ``-Perl-5.24.0`` | ``foss/2016b`` +``2.44_01`` | ``-Perl-5.24.0`` | ``gimkl/2017a`` +``2.44_01`` | ``-Perl-5.24.0`` | ``intel/2016b`` +``2.44_01`` | ``-Perl-5.24.1`` | ``intel/2017a`` +``2.46`` | ``-Perl-5.32.1`` | ``GCCcore/10.3.0`` +``2.46`` | ``-Perl-5.34.1`` | ``GCCcore/11.3.0`` +``2.46`` | ``-Perl-5.36.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/XMLSec.md b/docs/version-specific/supported-software/x/XMLSec.md new file mode 100644 index 000000000..96d93819c --- /dev/null +++ b/docs/version-specific/supported-software/x/XMLSec.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# XMLSec + +XML Security Library is a C library based on LibXML2, supporting major XML security standards. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.26`` | ``GCCcore/6.4.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/XMLStarlet.md b/docs/version-specific/supported-software/x/XMLStarlet.md new file mode 100644 index 000000000..ab7a2edb8 --- /dev/null +++ b/docs/version-specific/supported-software/x/XMLStarlet.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# XMLStarlet + +Command line XML tool + +*homepage*: + +version | toolchain +--------|---------- +``1.6.1`` | ``GCCcore/6.4.0`` +``1.6.1`` | ``foss/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/XOOPIC.md b/docs/version-specific/supported-software/x/XOOPIC.md new file mode 100644 index 000000000..29f0bd1e5 --- /dev/null +++ b/docs/version-specific/supported-software/x/XOOPIC.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# XOOPIC + +XOOPIC is a two-dimensional 3-velocity particle-in-cell simulator. It can handle electrostatic and electromagnetic models, has a large variety of boundary conditions, supports multiple gasses and gas chemistry, and is easily reconfigurable via an input file. + +*homepage*: + +version | toolchain +--------|---------- +``20210302`` | ``foss/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/XPLOR-NIH.md b/docs/version-specific/supported-software/x/XPLOR-NIH.md new file mode 100644 index 000000000..2be828e3c --- /dev/null +++ b/docs/version-specific/supported-software/x/XPLOR-NIH.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# XPLOR-NIH + +A System for X-ray Crystallography and NMR + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.4`` | ``-Linux_x86_64`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/XSD.md b/docs/version-specific/supported-software/x/XSD.md new file mode 100644 index 000000000..627eb5d33 --- /dev/null +++ b/docs/version-specific/supported-software/x/XSD.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# XSD + +CodeSynthesis XSD is an open-source, cross-platform W3C XML Schema to C++ data binding compiler. + +*homepage*: + +version | toolchain +--------|---------- +``4.0.0`` | ``GCCcore/8.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/XTandem.md b/docs/version-specific/supported-software/x/XTandem.md new file mode 100644 index 000000000..eb0c635fe --- /dev/null +++ b/docs/version-specific/supported-software/x/XTandem.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# XTandem + +X!Tandem open source is software that can match tandem mass spectra with peptide sequences, in a process that has come to be known as protein identification. + +*homepage*: + +version | toolchain +--------|---------- +``17.02.01.4`` | ``GCC/6.4.0-2.28`` +``17.02.01.4`` | ``iccifort/2017.4.196-GCC-6.4.0-2.28`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/XZ.md b/docs/version-specific/supported-software/x/XZ.md new file mode 100644 index 000000000..fb5eeb6c4 --- /dev/null +++ b/docs/version-specific/supported-software/x/XZ.md @@ -0,0 +1,48 @@ +--- +search: + boost: 0.5 +--- +# XZ + +xz: XZ utilities + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``5.0.5`` | | ``GCC/4.8.2`` +``5.2.0`` | | ``GCC/4.9.2`` +``5.2.2`` | | ``GCC/4.9.2`` +``5.2.2`` | | ``GCC/5.4.0-2.26`` +``5.2.2`` | | ``GCCcore/4.9.3`` +``5.2.2`` | | ``GCCcore/5.4.0`` +``5.2.2`` | | ``foss/2016.04`` +``5.2.2`` | ``-gettext-0.19.7`` | ``foss/2016a`` +``5.2.2`` | | ``foss/2016a`` +``5.2.2`` | | ``foss/2016b`` +``5.2.2`` | ``-gettext-0.19.7`` | ``intel/2016a`` +``5.2.2`` | | ``intel/2016a`` +``5.2.2`` | | ``intel/2016b`` +``5.2.3`` | | ``GCCcore/6.3.0`` +``5.2.3`` | | ``GCCcore/6.4.0`` +``5.2.3`` | | ``gimkl/2017a`` +``5.2.4`` | | ``GCCcore/7.2.0`` +``5.2.4`` | | ``GCCcore/7.3.0`` +``5.2.4`` | | ``GCCcore/8.2.0`` +``5.2.4`` | | ``GCCcore/8.3.0`` +``5.2.4`` | | ``GCCcore/9.2.0`` +``5.2.5`` | | ``GCCcore/10.1.0`` +``5.2.5`` | | ``GCCcore/10.2.0`` +``5.2.5`` | | ``GCCcore/10.3.0`` +``5.2.5`` | | ``GCCcore/11.2.0`` +``5.2.5`` | | ``GCCcore/11.3.0`` +``5.2.5`` | | ``GCCcore/9.3.0`` +``5.2.7`` | | ``GCCcore/12.2.0`` +``5.4.2`` | | ``GCCcore/12.3.0`` +``5.4.2`` | | ``GCCcore/13.1.0`` +``5.4.4`` | | ``GCCcore/13.2.0`` +``5.4.5`` | | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/Xerces-C++.md b/docs/version-specific/supported-software/x/Xerces-C++.md new file mode 100644 index 000000000..d6d08dace --- /dev/null +++ b/docs/version-specific/supported-software/x/Xerces-C++.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# Xerces-C++ + +Xerces-C++ is a validating XML parser written in a portable subset of C++. Xerces-C++ makes it easy to give your application the ability to read and write XML data. A shared library is provided for parsing, generating, manipulating, and validating XML documents using the DOM, SAX, and SAX2 APIs. + +*homepage*: + +version | toolchain +--------|---------- +``3.1.4`` | ``GCCcore/6.4.0`` +``3.2.0`` | ``GCCcore/7.3.0`` +``3.2.2`` | ``GCCcore/8.2.0`` +``3.2.2`` | ``GCCcore/8.3.0`` +``3.2.3`` | ``GCCcore/10.2.0`` +``3.2.3`` | ``GCCcore/10.3.0`` +``3.2.3`` | ``GCCcore/11.2.0`` +``3.2.3`` | ``GCCcore/9.3.0`` +``3.2.4`` | ``GCCcore/11.3.0`` +``3.2.4`` | ``GCCcore/12.2.0`` +``3.2.4`` | ``GCCcore/12.3.0`` +``3.2.5`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/XlsxWriter.md b/docs/version-specific/supported-software/x/XlsxWriter.md new file mode 100644 index 000000000..5b3ed75b9 --- /dev/null +++ b/docs/version-specific/supported-software/x/XlsxWriter.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# XlsxWriter + +A Python module for creating Excel XLSX files + +*homepage*: + +version | toolchain +--------|---------- +``1.4.0`` | ``GCCcore/10.2.0`` +``1.4.4`` | ``GCCcore/10.3.0`` +``3.0.2`` | ``GCCcore/11.2.0`` +``3.0.8`` | ``GCCcore/11.3.0`` +``3.1.2`` | ``GCCcore/12.2.0`` +``3.1.3`` | ``GCCcore/12.3.0`` +``3.1.9`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/Xmipp.md b/docs/version-specific/supported-software/x/Xmipp.md new file mode 100644 index 000000000..6136373e1 --- /dev/null +++ b/docs/version-specific/supported-software/x/Xmipp.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Xmipp + +Scipion is an image processing framework to obtain 3D models of macromolecular complexes using Electron Microscopy (3DEM). It integrates several software packages and presents an unified interface for both biologists and developers. Scipion allows to execute workflows combining different software tools, while taking care of formats and conversions. Additionally, all steps are tracked and can be reproduced later on. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``3.19.04-Apollo`` | ``-Python-2.7.15`` | ``foss/2019a`` +``3.19.04-Apollo`` | ``-Python-2.7.15`` | ``fosscuda/2019a`` +``3.22.07-Helios`` | ``-CUDA-11.7.0`` | ``foss/2022a`` +``3.22.07-Helios`` | | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/Xvfb.md b/docs/version-specific/supported-software/x/Xvfb.md new file mode 100644 index 000000000..8233f8e0f --- /dev/null +++ b/docs/version-specific/supported-software/x/Xvfb.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# Xvfb + +Xvfb is an X server that can run on machines with no display hardware and no physical input devices. It emulates a dumb framebuffer using virtual memory. + +*homepage*: + +version | toolchain +--------|---------- +``1.20.11`` | ``GCCcore/10.3.0`` +``1.20.13`` | ``GCCcore/11.2.0`` +``1.20.8`` | ``GCCcore/8.2.0`` +``1.20.8`` | ``GCCcore/8.3.0`` +``1.20.9`` | ``GCCcore/10.2.0`` +``1.20.9`` | ``GCCcore/9.3.0`` +``21.1.3`` | ``GCCcore/11.3.0`` +``21.1.6`` | ``GCCcore/12.2.0`` +``21.1.8`` | ``GCCcore/12.3.0`` +``21.1.9`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/index.md b/docs/version-specific/supported-software/x/index.md new file mode 100644 index 000000000..b81a7fccc --- /dev/null +++ b/docs/version-specific/supported-software/x/index.md @@ -0,0 +1,67 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (x) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - *x* - [y](../y/index.md) - [z](../z/index.md))* + + + + * [X11](X11.md) + * [x13as](x13as.md) + * [x264](x264.md) + * [x265](x265.md) + * [XALT](XALT.md) + * [xarray](xarray.md) + * [XBeach](XBeach.md) + * [xbitmaps](xbitmaps.md) + * [xcb-proto](xcb-proto.md) + * [xcb-util](xcb-util.md) + * [xcb-util-image](xcb-util-image.md) + * [xcb-util-keysyms](xcb-util-keysyms.md) + * [xcb-util-renderutil](xcb-util-renderutil.md) + * [xcb-util-wm](xcb-util-wm.md) + * [xCell](xCell.md) + * [XCFun](XCFun.md) + * [xclip](xclip.md) + * [XCrySDen](XCrySDen.md) + * [xdotool](xdotool.md) + * [Xerces-C++](Xerces-C++.md) + * [xESMF](xESMF.md) + * [xextproto](xextproto.md) + * [xf86vidmodeproto](xf86vidmodeproto.md) + * [XGBoost](XGBoost.md) + * [XGrafix](XGrafix.md) + * [xineramaproto](xineramaproto.md) + * [XKeyboardConfig](XKeyboardConfig.md) + * [XlsxWriter](XlsxWriter.md) + * [XMDS2](XMDS2.md) + * [Xmipp](Xmipp.md) + * [xmitgcm](xmitgcm.md) + * [XML-Compile](XML-Compile.md) + * [XML-LibXML](XML-LibXML.md) + * [XML-Parser](XML-Parser.md) + * [xmlf90](xmlf90.md) + * [XMLSec](XMLSec.md) + * [XMLStarlet](XMLStarlet.md) + * [xonsh](xonsh.md) + * [XOOPIC](XOOPIC.md) + * [xorg-macros](xorg-macros.md) + * [xpdf](xpdf.md) + * [XPLOR-NIH](XPLOR-NIH.md) + * [xprop](xprop.md) + * [xproto](xproto.md) + * [XSD](XSD.md) + * [XTandem](XTandem.md) + * [xtb](xtb.md) + * [xtensor](xtensor.md) + * [xtrans](xtrans.md) + * [Xvfb](Xvfb.md) + * [xxd](xxd.md) + * [xxHash](xxHash.md) + * [XZ](XZ.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - *x* - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/x13as.md b/docs/version-specific/supported-software/x/x13as.md new file mode 100644 index 000000000..930467e66 --- /dev/null +++ b/docs/version-specific/supported-software/x/x13as.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# x13as + +X-13ARIMA-SEATS is seasonal adjustment software produced, distributed, and maintained by the Census Bureau. Features of X-13ARIMA-SEATS include: - Extensive time series modeling and model selection capabilities for linear regression models with ARIMA errors (regARIMA models); - The capability to generate ARIMA model-based seasonal adjustment using a version of the SEATS software originally developed by Victor Gómez and Agustín Maravall at the Bank of Spain, as well as nonparametric adjustments from the X-11 procedure; - Diagnostics of the quality and stability of the adjustments achieved under the options selected; - The ability to efficiently process many series at once. + +*homepage*: + +version | toolchain +--------|---------- +``1-1-b59`` | ``GCCcore/10.2.0`` +``1-1-b59`` | ``GCCcore/11.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/x264.md b/docs/version-specific/supported-software/x/x264.md new file mode 100644 index 000000000..89b75b4ab --- /dev/null +++ b/docs/version-specific/supported-software/x/x264.md @@ -0,0 +1,40 @@ +--- +search: + boost: 0.5 +--- +# x264 + +x264 is a free software library and application for encoding video streams into the H.264/MPEG-4 AVC compression format, and is released under the terms of the GNU GPL. + +*homepage*: + +version | toolchain +--------|---------- +``20160114`` | ``gimkl/2.11.5`` +``20160114`` | ``intel/2016a`` +``20160430`` | ``foss/2016a`` +``20160430`` | ``intel/2016a`` +``20160614`` | ``foss/2016b`` +``20160614`` | ``intel/2016b`` +``20170406`` | ``gimkl/2017a`` +``20170721`` | ``GCCcore/6.4.0`` +``20170913`` | ``intel/2017a`` +``20171217`` | ``foss/2017b`` +``20171217`` | ``intel/2017b`` +``20180128`` | ``GCCcore/6.4.0`` +``20180325`` | ``GCCcore/6.4.0`` +``20181203`` | ``GCCcore/7.3.0`` +``20190413`` | ``GCCcore/8.2.0`` +``20190925`` | ``GCCcore/8.3.0`` +``20191217`` | ``GCCcore/9.3.0`` +``20201026`` | ``GCCcore/10.2.0`` +``20210414`` | ``GCCcore/10.3.0`` +``20210613`` | ``GCCcore/11.2.0`` +``20220620`` | ``GCCcore/11.3.0`` +``20230226`` | ``GCCcore/12.2.0`` +``20230226`` | ``GCCcore/12.3.0`` +``20231019`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/x265.md b/docs/version-specific/supported-software/x/x265.md new file mode 100644 index 000000000..0f3ea5b45 --- /dev/null +++ b/docs/version-specific/supported-software/x/x265.md @@ -0,0 +1,32 @@ +--- +search: + boost: 0.5 +--- +# x265 + +x265 is a free software library and application for encoding video streams into the H.265 AVC compression format, and is released under the terms of the GNU GPL. + +*homepage*: + +version | toolchain +--------|---------- +``2.4`` | ``foss/2016b`` +``2.5`` | ``intel/2017a`` +``2.6`` | ``GCCcore/6.4.0`` +``2.6`` | ``intel/2017b`` +``2.7`` | ``GCCcore/6.4.0`` +``2.9`` | ``GCCcore/7.3.0`` +``3.0`` | ``GCCcore/8.2.0`` +``3.2`` | ``GCCcore/8.3.0`` +``3.3`` | ``GCCcore/10.2.0`` +``3.3`` | ``GCCcore/9.3.0`` +``3.5`` | ``GCCcore/10.3.0`` +``3.5`` | ``GCCcore/11.2.0`` +``3.5`` | ``GCCcore/11.3.0`` +``3.5`` | ``GCCcore/12.2.0`` +``3.5`` | ``GCCcore/12.3.0`` +``3.5`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xCell.md b/docs/version-specific/supported-software/x/xCell.md new file mode 100644 index 000000000..d6873d180 --- /dev/null +++ b/docs/version-specific/supported-software/x/xCell.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# xCell + +xCell is a gene signatures-based method learned from thousands of pure cell types from various sources. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.12`` | ``-R-3.5.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xESMF.md b/docs/version-specific/supported-software/x/xESMF.md new file mode 100644 index 000000000..355fdd220 --- /dev/null +++ b/docs/version-specific/supported-software/x/xESMF.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# xESMF + +xESMF: Universal Regridder for Geospatial Data + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.3.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.3.0`` | | ``intel/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xarray.md b/docs/version-specific/supported-software/x/xarray.md new file mode 100644 index 000000000..70faf84ef --- /dev/null +++ b/docs/version-specific/supported-software/x/xarray.md @@ -0,0 +1,42 @@ +--- +search: + boost: 0.5 +--- +# xarray + +xarray (formerly xray) is an open source project and Python package that aims to bring the labeled data power of pandas to the physical sciences, by providing N-dimensional variants of the core pandas data structures. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.10.0`` | ``-Python-2.7.14`` | ``intel/2017b`` +``0.10.0`` | ``-Python-3.6.3`` | ``intel/2017b`` +``0.10.3`` | ``-Python-3.6.4`` | ``intel/2018a`` +``0.10.4`` | ``-Python-3.6.4`` | ``intel/2018a`` +``0.10.8`` | ``-Python-3.6.4`` | ``intel/2018a`` +``0.12.1`` | ``-Python-3.6.6`` | ``foss/2018b`` +``0.12.1`` | ``-Python-3.6.6`` | ``intel/2018b`` +``0.13.0`` | ``-Python-3.7.2`` | ``intel/2019a`` +``0.15.1`` | ``-Python-3.7.4`` | ``foss/2019b`` +``0.15.1`` | ``-Python-3.7.4`` | ``intel/2019b`` +``0.16.1`` | ``-Python-3.8.2`` | ``foss/2020a`` +``0.16.1`` | ``-Python-3.8.2`` | ``intel/2020a`` +``0.16.2`` | | ``foss/2020b`` +``0.16.2`` | | ``fosscuda/2020b`` +``0.16.2`` | | ``intel/2020b`` +``0.19.0`` | | ``foss/2021a`` +``0.20.1`` | | ``foss/2021b`` +``0.20.1`` | | ``intel/2021b`` +``0.9.5`` | ``-Python-2.7.13`` | ``intel/2017a`` +``0.9.5`` | ``-Python-3.6.1`` | ``intel/2017a`` +``0.9.6`` | ``-Python-2.7.13`` | ``intel/2017a`` +``2022.6.0`` | | ``foss/2022a`` +``2022.6.0`` | | ``intel/2022a`` +``2022.9.0`` | | ``foss/2022a`` +``2023.4.2`` | | ``gfbf/2022b`` +``2023.9.0`` | | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xbitmaps.md b/docs/version-specific/supported-software/x/xbitmaps.md new file mode 100644 index 000000000..c0e1a7bf0 --- /dev/null +++ b/docs/version-specific/supported-software/x/xbitmaps.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# xbitmaps + +provides bitmaps for x + +*homepage*: + +version | toolchain +--------|---------- +``1.1.1`` | ``foss/2016a`` +``1.1.1`` | ``intel/2016a`` +``1.1.1`` | ``system`` +``1.1.2`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xcb-proto.md b/docs/version-specific/supported-software/x/xcb-proto.md new file mode 100644 index 000000000..2268f8351 --- /dev/null +++ b/docs/version-specific/supported-software/x/xcb-proto.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# xcb-proto + +The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility. + +*homepage*: + +version | toolchain +--------|---------- +``1.11`` | ``system`` +``1.13`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xcb-util-image.md b/docs/version-specific/supported-software/x/xcb-util-image.md new file mode 100644 index 000000000..c5be4270f --- /dev/null +++ b/docs/version-specific/supported-software/x/xcb-util-image.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# xcb-util-image + +The xcb-util-image package provides additional extensions to the XCB library. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.0`` | ``foss/2016a`` +``0.4.0`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xcb-util-keysyms.md b/docs/version-specific/supported-software/x/xcb-util-keysyms.md new file mode 100644 index 000000000..a89ac0db9 --- /dev/null +++ b/docs/version-specific/supported-software/x/xcb-util-keysyms.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# xcb-util-keysyms + +The xcb-util-keysyms package contains a library for handling standard X key constants and conversion to/from keycodes. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.0`` | ``foss/2016a`` +``0.4.0`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xcb-util-renderutil.md b/docs/version-specific/supported-software/x/xcb-util-renderutil.md new file mode 100644 index 000000000..20e9c8682 --- /dev/null +++ b/docs/version-specific/supported-software/x/xcb-util-renderutil.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# xcb-util-renderutil + +The xcb-util-renderutil package provides additional extensions to the XCB library. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.9`` | ``foss/2016a`` +``0.3.9`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xcb-util-wm.md b/docs/version-specific/supported-software/x/xcb-util-wm.md new file mode 100644 index 000000000..940b092c8 --- /dev/null +++ b/docs/version-specific/supported-software/x/xcb-util-wm.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# xcb-util-wm + +The xcb-util-wm package contains libraries which provide client and window-manager helpers for EWMH and ICCCM. + +*homepage*: + +version | toolchain +--------|---------- +``0.4.1`` | ``foss/2016a`` +``0.4.1`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xcb-util.md b/docs/version-specific/supported-software/x/xcb-util.md new file mode 100644 index 000000000..5d49fa3dc --- /dev/null +++ b/docs/version-specific/supported-software/x/xcb-util.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# xcb-util + +The xcb-util package provides additional extensions to the XCB library, many that were previously found in Xlib, but are not part of core X protocol + +*homepage*: + +version | toolchain +--------|---------- +``0.4.0`` | ``foss/2016a`` +``0.4.0`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xclip.md b/docs/version-specific/supported-software/x/xclip.md new file mode 100644 index 000000000..cb0519acb --- /dev/null +++ b/docs/version-specific/supported-software/x/xclip.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# xclip + +xclip is a command line utility that is designed to run on any system with an X11 implementation. + +*homepage*: + +version | toolchain +--------|---------- +``0.13`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xdotool.md b/docs/version-specific/supported-software/x/xdotool.md new file mode 100644 index 000000000..407e3febe --- /dev/null +++ b/docs/version-specific/supported-software/x/xdotool.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# xdotool + +xdotool lets you simulate keyboard input and mouse activity, move and resize windows, etc. It does this using X11’s XTEST extension and other Xlib functions. + +*homepage*: + +version | toolchain +--------|---------- +``3.20211022.1`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xextproto.md b/docs/version-specific/supported-software/x/xextproto.md new file mode 100644 index 000000000..58729229c --- /dev/null +++ b/docs/version-specific/supported-software/x/xextproto.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# xextproto + +XExtProto protocol headers. + +*homepage*: + +version | toolchain +--------|---------- +``7.3.0`` | ``foss/2016a`` +``7.3.0`` | ``gimkl/2.11.5`` +``7.3.0`` | ``intel/2016a`` +``7.3.0`` | ``intel/2017b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xf86vidmodeproto.md b/docs/version-specific/supported-software/x/xf86vidmodeproto.md new file mode 100644 index 000000000..9e60ad4e8 --- /dev/null +++ b/docs/version-specific/supported-software/x/xf86vidmodeproto.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# xf86vidmodeproto + +X11 XFree86 video mode extension protocol headers. + +*homepage*: + +version | toolchain +--------|---------- +``2.3.1`` | ``foss/2016a`` +``2.3.1`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xineramaproto.md b/docs/version-specific/supported-software/x/xineramaproto.md new file mode 100644 index 000000000..21517b7a6 --- /dev/null +++ b/docs/version-specific/supported-software/x/xineramaproto.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# xineramaproto + +X protocol and ancillary headers for xinerama + +*homepage*: + +version | toolchain +--------|---------- +``1.2.1`` | ``foss/2016a`` +``1.2.1`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xmitgcm.md b/docs/version-specific/supported-software/x/xmitgcm.md new file mode 100644 index 000000000..9314b44d6 --- /dev/null +++ b/docs/version-specific/supported-software/x/xmitgcm.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# xmitgcm + +xmitgcm is a python package for reading MITgcm binary MDS files into xarray data structures. By storing data in dask arrays, xmitgcm enables parallel, out-of-core analysis of MITgcm output data. + +*homepage*: + +version | toolchain +--------|---------- +``0.5.2`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xmlf90.md b/docs/version-specific/supported-software/x/xmlf90.md new file mode 100644 index 000000000..05541a720 --- /dev/null +++ b/docs/version-specific/supported-software/x/xmlf90.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# xmlf90 + +xmlf90 is a basic XML parsing library written in Fortran. + +*homepage*: + +version | toolchain +--------|---------- +``1.5.3`` | ``foss/2016b`` +``1.5.3`` | ``foss/2017a`` +``1.5.4`` | ``GCC/10.2.0`` +``1.5.4`` | ``GCC/10.3.0`` +``1.5.4`` | ``GCC/11.2.0`` +``1.5.4`` | ``iccifort/2019.5.281`` +``1.5.4`` | ``iccifort/2020.4.304`` +``1.5.4`` | ``intel-compilers/2021.2.0`` +``1.5.4`` | ``intel-compilers/2021.4.0`` +``1.5.6`` | ``GCC/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xonsh.md b/docs/version-specific/supported-software/x/xonsh.md new file mode 100644 index 000000000..c5b1ac199 --- /dev/null +++ b/docs/version-specific/supported-software/x/xonsh.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# xonsh + +Xonsh is a Python-ish, BASHwards-looking shell language and command prompt. + +*homepage*: + +version | toolchain +--------|---------- +``0.3.2`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xorg-macros.md b/docs/version-specific/supported-software/x/xorg-macros.md new file mode 100644 index 000000000..57858bb78 --- /dev/null +++ b/docs/version-specific/supported-software/x/xorg-macros.md @@ -0,0 +1,37 @@ +--- +search: + boost: 0.5 +--- +# xorg-macros + +X.org macros utilities. + +*homepage*: + +version | toolchain +--------|---------- +``1.19.0`` | ``foss/2016a`` +``1.19.0`` | ``foss/2016b`` +``1.19.0`` | ``gimkl/2.11.5`` +``1.19.0`` | ``intel/2016a`` +``1.19.0`` | ``intel/2016b`` +``1.19.1`` | ``GCCcore/6.3.0`` +``1.19.1`` | ``GCCcore/6.4.0`` +``1.19.2`` | ``GCCcore/10.2.0`` +``1.19.2`` | ``GCCcore/7.2.0`` +``1.19.2`` | ``GCCcore/7.3.0`` +``1.19.2`` | ``GCCcore/8.2.0`` +``1.19.2`` | ``GCCcore/8.3.0`` +``1.19.2`` | ``GCCcore/9.2.0`` +``1.19.2`` | ``GCCcore/9.3.0`` +``1.19.3`` | ``GCCcore/10.3.0`` +``1.19.3`` | ``GCCcore/11.2.0`` +``1.19.3`` | ``GCCcore/11.3.0`` +``1.19.3`` | ``GCCcore/12.2.0`` +``1.20.0`` | ``GCCcore/12.3.0`` +``1.20.0`` | ``GCCcore/13.2.0`` +``1.20.1`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xpdf.md b/docs/version-specific/supported-software/x/xpdf.md new file mode 100644 index 000000000..a5e9be4d9 --- /dev/null +++ b/docs/version-specific/supported-software/x/xpdf.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# xpdf + +Xpdf was first released in 1995. It was written, and is still developed, by Derek Noonburg. Xpdf is a free PDF viewer and toolkit, including a text extractor, image converter, HTML converter, and more. Most of the tools are available as open source. + +*homepage*: + +version | toolchain +--------|---------- +``4.04`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xprop.md b/docs/version-specific/supported-software/x/xprop.md new file mode 100644 index 000000000..a41b0614f --- /dev/null +++ b/docs/version-specific/supported-software/x/xprop.md @@ -0,0 +1,35 @@ +--- +search: + boost: 0.5 +--- +# xprop + +The xprop utility is for displaying window and font properties in an X server. One window or font is selected using the command line arguments or possibly in the case of a window, by clicking on the desired window. A list of properties is then given, possibly with formatting information. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.2.2`` | | ``GCCcore/5.4.0`` +``1.2.2`` | ``-X11-20180131`` | ``GCCcore/6.4.0`` +``1.2.2`` | | ``GCCcore/6.4.0`` +``1.2.2`` | | ``foss/2016a`` +``1.2.2`` | | ``foss/2016b`` +``1.2.2`` | | ``intel/2016a`` +``1.2.2`` | | ``intel/2016b`` +``1.2.2`` | | ``intel/2017a`` +``1.2.3`` | | ``GCCcore/7.3.0`` +``1.2.4`` | | ``GCCcore/8.2.0`` +``1.2.4`` | | ``GCCcore/8.3.0`` +``1.2.4`` | | ``GCCcore/9.3.0`` +``1.2.5`` | | ``GCCcore/10.2.0`` +``1.2.5`` | | ``GCCcore/10.3.0`` +``1.2.5`` | | ``GCCcore/11.2.0`` +``1.2.5`` | | ``GCCcore/11.3.0`` +``1.2.5`` | | ``GCCcore/12.2.0`` +``1.2.6`` | | ``GCCcore/12.3.0`` +``1.2.7`` | | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xproto.md b/docs/version-specific/supported-software/x/xproto.md new file mode 100644 index 000000000..37705593d --- /dev/null +++ b/docs/version-specific/supported-software/x/xproto.md @@ -0,0 +1,31 @@ +--- +search: + boost: 0.5 +--- +# xproto + +X protocol and ancillary headers + +*homepage*: + +version | toolchain +--------|---------- +``7.0.28`` | ``foss/2016a`` +``7.0.28`` | ``gimkl/2.11.5`` +``7.0.28`` | ``intel/2016a`` +``7.0.29`` | ``intel/2016a`` +``7.0.31`` | ``GCCcore/10.2.0`` +``7.0.31`` | ``GCCcore/10.3.0`` +``7.0.31`` | ``GCCcore/11.2.0`` +``7.0.31`` | ``GCCcore/11.3.0`` +``7.0.31`` | ``GCCcore/12.3.0`` +``7.0.31`` | ``GCCcore/13.2.0`` +``7.0.31`` | ``GCCcore/6.3.0`` +``7.0.31`` | ``GCCcore/6.4.0`` +``7.0.31`` | ``GCCcore/7.3.0`` +``7.0.31`` | ``GCCcore/8.3.0`` +``7.0.31`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xtb.md b/docs/version-specific/supported-software/x/xtb.md new file mode 100644 index 000000000..6afe31bde --- /dev/null +++ b/docs/version-specific/supported-software/x/xtb.md @@ -0,0 +1,27 @@ +--- +search: + boost: 0.5 +--- +# xtb + +xtb - An extended tight-binding semi-empirical program package. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``6.2.2-hotfix`` | ``-Python-3.6.3`` | ``intel/2017b`` +``6.2.3`` | | ``foss/2019b`` +``6.4.1`` | | ``foss/2021b`` +``6.4.1`` | | ``intel/2021a`` +``6.5.0`` | | ``foss/2021b`` +``6.5.1`` | | ``foss/2022a`` +``6.6.0`` | | ``foss/2022a`` +``6.6.0`` | | ``intel/2022a`` +``6.6.1`` | | ``gfbf/2022b`` +``6.6.1`` | | ``gfbf/2023a`` +``6.7.0`` | | ``gfbf/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xtensor.md b/docs/version-specific/supported-software/x/xtensor.md new file mode 100644 index 000000000..3f074bb7b --- /dev/null +++ b/docs/version-specific/supported-software/x/xtensor.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# xtensor + +xtensor is a C++ library meant for numerical analysis with multi-dimensional array expressions. + +*homepage*: + +version | toolchain +--------|---------- +``0.24.0`` | ``foss/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xtrans.md b/docs/version-specific/supported-software/x/xtrans.md new file mode 100644 index 000000000..c82e3887e --- /dev/null +++ b/docs/version-specific/supported-software/x/xtrans.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# xtrans + +xtrans includes a number of routines to make X implementations transport-independent; at time of writing, it includes support for UNIX sockets, IPv4, IPv6, and DECnet. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.5`` | ``GCCcore/11.3.0`` +``1.3.5`` | ``foss/2016a`` +``1.3.5`` | ``gimkl/2.11.5`` +``1.3.5`` | ``intel/2016a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xxHash.md b/docs/version-specific/supported-software/x/xxHash.md new file mode 100644 index 000000000..0371ca116 --- /dev/null +++ b/docs/version-specific/supported-software/x/xxHash.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# xxHash + +xxHash is an extremely fast non-cryptographic hash algorithm, working at RAM speed limit. + +*homepage*: + +version | toolchain +--------|---------- +``0.8.0`` | ``GCCcore/11.2.0`` +``0.8.1`` | ``GCCcore/10.2.0`` +``0.8.1`` | ``GCCcore/11.3.0`` +``0.8.1`` | ``GCCcore/12.2.0`` +``0.8.2`` | ``GCCcore/12.3.0`` +``0.8.2`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/x/xxd.md b/docs/version-specific/supported-software/x/xxd.md new file mode 100644 index 000000000..5d420dc9d --- /dev/null +++ b/docs/version-specific/supported-software/x/xxd.md @@ -0,0 +1,23 @@ +--- +search: + boost: 0.5 +--- +# xxd + +xxd is part of the VIM package and serves to convert to/from hexdumps of binary files. + +*homepage*: + +version | toolchain +--------|---------- +``8.2.4220`` | ``GCCcore/10.2.0`` +``8.2.4220`` | ``GCCcore/10.3.0`` +``8.2.4220`` | ``GCCcore/11.2.0`` +``8.2.4220`` | ``GCCcore/11.3.0`` +``9.0.1696`` | ``GCCcore/12.2.0`` +``9.0.2112`` | ``GCCcore/12.3.0`` +``9.1.0307`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/y/YACS.md b/docs/version-specific/supported-software/y/YACS.md new file mode 100644 index 000000000..7dc7789bf --- /dev/null +++ b/docs/version-specific/supported-software/y/YACS.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# YACS + +YACS was created as a lightweight library to define and manage system configurations, such as those commonly found in software designed for scientific experimentation. These "configurations" typically cover concepts like hyperparameters used in training a machine learning model or configurable model hyperparameters, such as the depth of a convolutional neural network. + +*homepage*: + +version | toolchain +--------|---------- +``0.1.8`` | ``GCCcore/10.2.0`` +``0.1.8`` | ``GCCcore/10.3.0`` +``0.1.8`` | ``GCCcore/11.2.0`` +``0.1.8`` | ``GCCcore/11.3.0`` +``0.1.8`` | ``GCCcore/12.3.0`` +``0.1.8`` | ``GCCcore/8.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/y/YANK.md b/docs/version-specific/supported-software/y/YANK.md new file mode 100644 index 000000000..d1d764d2f --- /dev/null +++ b/docs/version-specific/supported-software/y/YANK.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# YANK + +A GPU-accelerated Python framework for exploring algorithms for alchemical free energy calculations + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``0.25.2`` | ``-Python-3.8.2`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/y/YAPS.md b/docs/version-specific/supported-software/y/YAPS.md new file mode 100644 index 000000000..14beb321e --- /dev/null +++ b/docs/version-specific/supported-software/y/YAPS.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# YAPS + +YAPS - Yet Another Positioning Solver + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.1.0`` | ``-R-3.5.1`` | ``foss/2018b`` +``1.1.0`` | ``-R-3.6.0`` | ``intel/2019a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/y/YAXT.md b/docs/version-specific/supported-software/y/YAXT.md new file mode 100644 index 000000000..31869c156 --- /dev/null +++ b/docs/version-specific/supported-software/y/YAXT.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# YAXT + +Yet Another eXchange Tool + +*homepage*: + +version | toolchain +--------|---------- +``0.10.0`` | ``gompi/2022b`` +``0.5.1`` | ``intel/2016b`` +``0.5.1`` | ``intel/2017a`` +``0.5.1`` | ``intel/2017b`` +``0.6.0`` | ``intel/2018a`` +``0.6.0`` | ``intel/2018b`` +``0.6.0`` | ``iomkl/2018b`` +``0.6.2`` | ``foss/2018b`` +``0.6.2`` | ``gompi/2019b`` +``0.6.2`` | ``iimpi/2019b`` +``0.9.0`` | ``gompi/2020b`` +``0.9.1`` | ``gompi/2021a`` +``0.9.2`` | ``iimpi/2021b`` +``0.9.2.1`` | ``gompi/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/y/YODA.md b/docs/version-specific/supported-software/y/YODA.md new file mode 100644 index 000000000..32c78d959 --- /dev/null +++ b/docs/version-specific/supported-software/y/YODA.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# YODA + +Yet more Objects for (High Energy Physics) Data Analysis + +*homepage*: + +version | toolchain +--------|---------- +``1.9.7`` | ``GCC/11.3.0`` +``1.9.9`` | ``GCC/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/y/Yade.md b/docs/version-specific/supported-software/y/Yade.md new file mode 100644 index 000000000..894826641 --- /dev/null +++ b/docs/version-specific/supported-software/y/Yade.md @@ -0,0 +1,22 @@ +--- +search: + boost: 0.5 +--- +# Yade + +Yade is an extensible open-source framework for discrete numerical models, focused on Discrete Element Method. The computation parts are written in c++ using flexible object model, allowing independent implementation of new alogrithms and interfaces. Python is used for rapid and concise scene construction, simulation control, postprocessing and debugging. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.20.0`` | ``-Python-2.7.11`` | ``foss/2016a`` +``1.20.0`` | ``-Python-2.7.11`` | ``intel/2016a`` +``2016.06a`` | ``-Python-2.7.12`` | ``foss/2016b`` +``2016.06a`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2017.01a`` | ``-Python-2.7.12`` | ``intel/2016b`` +``2018.02b`` | ``-Python-2.7.14`` | ``intel/2018a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/y/Yambo.md b/docs/version-specific/supported-software/y/Yambo.md new file mode 100644 index 000000000..1e14a7d71 --- /dev/null +++ b/docs/version-specific/supported-software/y/Yambo.md @@ -0,0 +1,19 @@ +--- +search: + boost: 0.5 +--- +# Yambo + +Yambo is a FORTRAN/C code for Many-Body calculations in solid state and molecular physics. Yambo relies on the Kohn-Sham wavefunctions generated by two DFT public codes: abinit, and PWscf. + +*homepage*: + +version | toolchain +--------|---------- +``3.4.2`` | ``intel/2016.02-GCC-4.9`` +``5.0.4`` | ``intel/2021a`` +``5.1.2`` | ``intel/2021b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/y/Yasm.md b/docs/version-specific/supported-software/y/Yasm.md new file mode 100644 index 000000000..31229b535 --- /dev/null +++ b/docs/version-specific/supported-software/y/Yasm.md @@ -0,0 +1,36 @@ +--- +search: + boost: 0.5 +--- +# Yasm + +Yasm: Complete rewrite of the NASM assembler with BSD license + +*homepage*: + +version | toolchain +--------|---------- +``1.3.0`` | ``GCCcore/10.2.0`` +``1.3.0`` | ``GCCcore/10.3.0`` +``1.3.0`` | ``GCCcore/11.2.0`` +``1.3.0`` | ``GCCcore/11.3.0`` +``1.3.0`` | ``GCCcore/12.2.0`` +``1.3.0`` | ``GCCcore/12.3.0`` +``1.3.0`` | ``GCCcore/13.2.0`` +``1.3.0`` | ``GCCcore/6.4.0`` +``1.3.0`` | ``GCCcore/7.3.0`` +``1.3.0`` | ``GCCcore/8.2.0`` +``1.3.0`` | ``GCCcore/8.3.0`` +``1.3.0`` | ``GCCcore/9.3.0`` +``1.3.0`` | ``foss/2016a`` +``1.3.0`` | ``foss/2016b`` +``1.3.0`` | ``foss/2017a`` +``1.3.0`` | ``gimkl/2.11.5`` +``1.3.0`` | ``gimkl/2017a`` +``1.3.0`` | ``intel/2016a`` +``1.3.0`` | ``intel/2016b`` +``1.3.0`` | ``intel/2017a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/y/Yices.md b/docs/version-specific/supported-software/y/Yices.md new file mode 100644 index 000000000..e27e11795 --- /dev/null +++ b/docs/version-specific/supported-software/y/Yices.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# Yices + +Yices 2 is an SMT solver that decides the satisfiability of formulas containing uninterpreted function symbols with equality, real and integer arithmetic, bitvectors, scalar types, and tuples. Yices 2 supports both linear and nonlinear arithmetic. + +*homepage*: + +version | toolchain +--------|---------- +``2.6.2`` | ``GCCcore/10.2.0`` +``2.6.4`` | ``GCCcore/12.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/y/index.md b/docs/version-specific/supported-software/y/index.md new file mode 100644 index 000000000..bd95c213f --- /dev/null +++ b/docs/version-specific/supported-software/y/index.md @@ -0,0 +1,26 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (y) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - *y* - [z](../z/index.md))* + + + + * [YACS](YACS.md) + * [Yade](Yade.md) + * [yaff](yaff.md) + * [Yambo](Yambo.md) + * [yaml-cpp](yaml-cpp.md) + * [YANK](YANK.md) + * [YAPS](YAPS.md) + * [Yasm](Yasm.md) + * [YAXT](YAXT.md) + * [Yices](Yices.md) + * [YODA](YODA.md) + * [yt](yt.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - *y* - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/y/yaff.md b/docs/version-specific/supported-software/y/yaff.md new file mode 100644 index 000000000..786bc7c42 --- /dev/null +++ b/docs/version-specific/supported-software/y/yaff.md @@ -0,0 +1,33 @@ +--- +search: + boost: 0.5 +--- +# yaff + +Yaff stands for 'Yet another force field'. It is a pythonic force-field code. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.0.develop.2.15`` | ``-Python-2.7.12-HDF5-1.8.18`` | ``intel/2016b`` +``1.1.2`` | ``-Python-2.7.13`` | ``intel/2017a`` +``1.1.3`` | ``-Python-2.7.13`` | ``intel/2017a`` +``1.4.2`` | ``-Python-2.7.14`` | ``foss/2018a`` +``1.4.2`` | ``-Python-2.7.14`` | ``intel/2017b`` +``1.4.2`` | ``-Python-3.6.3`` | ``intel/2017b`` +``1.4.2`` | ``-Python-2.7.14`` | ``intel/2018a`` +``1.4.5`` | ``-Python-2.7.15`` | ``intel/2018b`` +``1.5.0`` | ``-Python-2.7.15`` | ``intel/2018b`` +``1.5.0`` | ``-Python-3.7.2`` | ``intel/2019a`` +``1.6.0`` | ``-Python-3.7.4`` | ``foss/2019b`` +``1.6.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``1.6.0`` | | ``foss/2020b`` +``1.6.0`` | | ``foss/2023a`` +``1.6.0`` | ``-Python-3.7.2`` | ``intel/2019a`` +``1.6.0`` | ``-Python-3.7.4`` | ``intel/2019b`` +``1.6.0`` | ``-Python-3.8.2`` | ``intel/2020a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/y/yaml-cpp.md b/docs/version-specific/supported-software/y/yaml-cpp.md new file mode 100644 index 000000000..95a835c8f --- /dev/null +++ b/docs/version-specific/supported-software/y/yaml-cpp.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# yaml-cpp + +yaml-cpp is a YAML parser and emitter in C++ matching the YAML 1.2 spec + +*homepage*: + +version | toolchain +--------|---------- +``0.6.3`` | ``GCCcore/8.3.0`` +``0.7.0`` | ``GCCcore/11.3.0`` +``0.7.0`` | ``GCCcore/12.2.0`` +``0.7.0`` | ``GCCcore/12.3.0`` +``0.8.0`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/y/yt.md b/docs/version-specific/supported-software/y/yt.md new file mode 100644 index 000000000..4be848d2b --- /dev/null +++ b/docs/version-specific/supported-software/y/yt.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# yt + +yt is an open-source, permissively-licensed python package for analyzing and visualizing volumetric data. + +*homepage*: + +version | toolchain +--------|---------- +``4.3.0`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/z/Z3.md b/docs/version-specific/supported-software/z/Z3.md new file mode 100644 index 000000000..e85e08ab3 --- /dev/null +++ b/docs/version-specific/supported-software/z/Z3.md @@ -0,0 +1,32 @@ +--- +search: + boost: 0.5 +--- +# Z3 + +Z3 is a theorem prover from Microsoft Research with support for bitvectors, booleans, arrays, floating point numbers, strings, and other data types. This module includes z3_solver, the Python interface of Z3. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``4.10.2`` | ``-Python-3.10.4`` | ``GCCcore/11.3.0`` +``4.10.2`` | | ``GCCcore/11.3.0`` +``4.12.2`` | ``-Python-3.10.8`` | ``GCCcore/12.2.0`` +``4.12.2`` | | ``GCCcore/12.2.0`` +``4.12.2`` | | ``GCCcore/12.3.0`` +``4.13.0`` | | ``GCCcore/13.2.0`` +``4.8.10`` | ``-Python-3.8.6`` | ``GCCcore/10.2.0`` +``4.8.10`` | | ``GCCcore/10.2.0`` +``4.8.11`` | ``-Python-3.9.5`` | ``GCCcore/10.3.0`` +``4.8.11`` | | ``GCCcore/10.3.0`` +``4.8.12`` | ``-Python-3.9.6`` | ``GCCcore/11.2.0`` +``4.8.12`` | | ``GCCcore/11.2.0`` +``4.8.16`` | ``-Python-3.10.4`` | ``GCCcore/11.3.0`` +``4.8.16`` | | ``GCCcore/11.3.0`` +``4.8.9`` | | ``GCCcore/8.3.0`` +``4.8.9`` | | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/z/ZIMPL.md b/docs/version-specific/supported-software/z/ZIMPL.md new file mode 100644 index 000000000..8b5a4b86b --- /dev/null +++ b/docs/version-specific/supported-software/z/ZIMPL.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ZIMPL + +ZIMPL is a little language to translate the mathematical model of a problem into a linear or nonlinear (mixed-) integer mathematical program expressed in .lp or .mps file format which can be read and (hopefully) solved by a LP or MIP solver. + +*homepage*: + +version | toolchain +--------|---------- +``3.3.4`` | ``GCCcore/11.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/z/ZPAQ.md b/docs/version-specific/supported-software/z/ZPAQ.md new file mode 100644 index 000000000..2a51076a5 --- /dev/null +++ b/docs/version-specific/supported-software/z/ZPAQ.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# ZPAQ + +zpaq is a free and open source (GPL v3) incremental, journaling command-line archiver for Windows, Linux and Mac OS/X + +*homepage*: + +version | toolchain +--------|---------- +``7.00`` | ``GCC/4.8.2`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/z/Zeo++.md b/docs/version-specific/supported-software/z/Zeo++.md new file mode 100644 index 000000000..3d8a18d56 --- /dev/null +++ b/docs/version-specific/supported-software/z/Zeo++.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Zeo++ + +Zeo++ is a software package for analysis of crystalline porous materials. Zeo++ can be used to perform geometry-based analysis of structure and topology of the void space inside a material, to assemble or alternate structures as well as to generate structure representations to be used in structure similarity calculations. Zeo++ can be used to either analyze a single structure or perform high-throughput analysis of a large database. + +*homepage*: + +version | toolchain +--------|---------- +``0.3`` | ``intel-compilers/2023.1.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/z/ZeroMQ.md b/docs/version-specific/supported-software/z/ZeroMQ.md new file mode 100644 index 000000000..519bd47da --- /dev/null +++ b/docs/version-specific/supported-software/z/ZeroMQ.md @@ -0,0 +1,42 @@ +--- +search: + boost: 0.5 +--- +# ZeroMQ + +ZeroMQ looks like an embeddable networking library but acts like a concurrency framework. It gives you sockets that carry atomic messages across various transports like in-process, inter-process, TCP, and multicast. You can connect sockets N-to-N with patterns like fanout, pub-sub, task distribution, and request-reply. It's fast enough to be the fabric for clustered products. Its asynchronous I/O model gives you scalable multicore applications, built as asynchronous message-processing tasks. It has a score of language APIs and runs on most operating systems. + +*homepage*: + +version | toolchain +--------|---------- +``4.1.4`` | ``foss/2016a`` +``4.1.4`` | ``intel/2016a`` +``4.1.5`` | ``intel/2016b`` +``4.2.0`` | ``foss/2016b`` +``4.2.0`` | ``intel/2016b`` +``4.2.2`` | ``foss/2017a`` +``4.2.2`` | ``foss/2017b`` +``4.2.2`` | ``fosscuda/2017b`` +``4.2.2`` | ``intel/2017a`` +``4.2.2`` | ``intel/2017b`` +``4.2.2`` | ``intelcuda/2017b`` +``4.2.5`` | ``foss/2018a`` +``4.2.5`` | ``foss/2018b`` +``4.2.5`` | ``fosscuda/2018b`` +``4.2.5`` | ``intel/2018a`` +``4.2.5`` | ``intel/2018b`` +``4.3.2`` | ``GCCcore/8.2.0`` +``4.3.2`` | ``GCCcore/8.3.0`` +``4.3.2`` | ``GCCcore/9.3.0`` +``4.3.3`` | ``GCCcore/10.2.0`` +``4.3.4`` | ``GCCcore/10.3.0`` +``4.3.4`` | ``GCCcore/11.2.0`` +``4.3.4`` | ``GCCcore/11.3.0`` +``4.3.4`` | ``GCCcore/12.2.0`` +``4.3.4`` | ``GCCcore/12.3.0`` +``4.3.5`` | ``GCCcore/13.2.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/z/Zgoubi.md b/docs/version-specific/supported-software/z/Zgoubi.md new file mode 100644 index 000000000..48b19ce27 --- /dev/null +++ b/docs/version-specific/supported-software/z/Zgoubi.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# Zgoubi + +Zgoubi is a ray-tracing code in use for charged particle beam dynamics simulations. It can simulate beam dynamics in a large variety of machines and optical systems. + +*homepage*: + +version | toolchain +--------|---------- +``6.0.2`` | ``GCCcore/10.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/z/Zip.md b/docs/version-specific/supported-software/z/Zip.md new file mode 100644 index 000000000..0c5d96e87 --- /dev/null +++ b/docs/version-specific/supported-software/z/Zip.md @@ -0,0 +1,28 @@ +--- +search: + boost: 0.5 +--- +# Zip + +Zip is a compression and file packaging/archive utility. Although highly compatible both with PKWARE's PKZIP and PKUNZIP utilities for MS-DOS and with Info-ZIP's own UnZip, our primary objectives have been portability and other-than-MSDOS functionality + +*homepage*: + +version | toolchain +--------|---------- +``3.0`` | ``GCCcore/10.2.0`` +``3.0`` | ``GCCcore/10.3.0`` +``3.0`` | ``GCCcore/11.2.0`` +``3.0`` | ``GCCcore/11.3.0`` +``3.0`` | ``GCCcore/12.2.0`` +``3.0`` | ``GCCcore/12.3.0`` +``3.0`` | ``GCCcore/13.2.0`` +``3.0`` | ``GCCcore/13.3.0`` +``3.0`` | ``GCCcore/7.3.0`` +``3.0`` | ``GCCcore/8.2.0`` +``3.0`` | ``GCCcore/8.3.0`` +``3.0`` | ``GCCcore/9.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/z/Zopfli.md b/docs/version-specific/supported-software/z/Zopfli.md new file mode 100644 index 000000000..80abaea3b --- /dev/null +++ b/docs/version-specific/supported-software/z/Zopfli.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# Zopfli + +Zopfli Compression Algorithm is a compression library programmed in C to perform very good, but slow, deflate or zlib compression. + +*homepage*: + +version | toolchain +--------|---------- +``1.0.3`` | ``GCCcore/10.2.0`` +``1.0.3`` | ``GCCcore/10.3.0`` +``1.0.3`` | ``GCCcore/11.3.0`` +``1.0.3`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/z/index.md b/docs/version-specific/supported-software/z/index.md new file mode 100644 index 000000000..96f11fc5c --- /dev/null +++ b/docs/version-specific/supported-software/z/index.md @@ -0,0 +1,32 @@ +--- +search: + boost: 0.5 +--- +# List of supported software (z) + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - *z*)* + + + + * [Z3](Z3.md) + * [zarr](zarr.md) + * [Zeo++](Zeo++.md) + * [ZeroMQ](ZeroMQ.md) + * [zeus-mcmc](zeus-mcmc.md) + * [zfp](zfp.md) + * [Zgoubi](Zgoubi.md) + * [ZIMPL](ZIMPL.md) + * [zingeR](zingeR.md) + * [Zip](Zip.md) + * [zlib](zlib.md) + * [zlib-ng](zlib-ng.md) + * [zlibbioc](zlibbioc.md) + * [Zopfli](Zopfli.md) + * [ZPAQ](ZPAQ.md) + * [zsh](zsh.md) + * [zstd](zstd.md) + * [zUMIs](zUMIs.md) + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - *z*)* + diff --git a/docs/version-specific/supported-software/z/zUMIs.md b/docs/version-specific/supported-software/z/zUMIs.md new file mode 100644 index 000000000..c91a95f81 --- /dev/null +++ b/docs/version-specific/supported-software/z/zUMIs.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# zUMIs + +A fast and flexible pipeline to process RNA sequencing data with UMIs. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.9.7`` | ``-R-4.3.2`` | ``foss/2023a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/z/zarr.md b/docs/version-specific/supported-software/z/zarr.md new file mode 100644 index 000000000..40d7f1bee --- /dev/null +++ b/docs/version-specific/supported-software/z/zarr.md @@ -0,0 +1,24 @@ +--- +search: + boost: 0.5 +--- +# zarr + +Zarr is a Python package providing an implementation of compressed, chunked, N-dimensional arrays, designed for use in parallel computing. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``2.1.4`` | ``-Python-2.7.13`` | ``foss/2017a`` +``2.10.1`` | | ``foss/2021a`` +``2.13.3`` | | ``foss/2021b`` +``2.13.3`` | | ``foss/2022a`` +``2.16.0`` | | ``foss/2022b`` +``2.17.1`` | | ``foss/2023a`` +``2.4.0`` | ``-Python-3.8.2`` | ``foss/2020a`` +``2.8.1`` | | ``foss/2020b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/z/zeus-mcmc.md b/docs/version-specific/supported-software/z/zeus-mcmc.md new file mode 100644 index 000000000..fe84630be --- /dev/null +++ b/docs/version-specific/supported-software/z/zeus-mcmc.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# zeus-mcmc + +Zeus is a Python implementation of the Ensemble Slice Sampling method. + +*homepage*: + +version | toolchain +--------|---------- +``2.5.4`` | ``foss/2022a`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/z/zfp.md b/docs/version-specific/supported-software/z/zfp.md new file mode 100644 index 000000000..3af0a3b7c --- /dev/null +++ b/docs/version-specific/supported-software/z/zfp.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# zfp + +zfp is a compressed format for representing multidimensional floating-point and integer arrays. zfp provides compressed-array classes that support high throughput read and write random access to individual array elements. zfp also supports serial and parallel (OpenMP and CUDA) compression of whole arrays, e.g., for applications that read and write large data sets to and from disk. + +*homepage*: + +version | toolchain +--------|---------- +``0.5.5`` | ``GCCcore/10.2.0`` +``1.0.0`` | ``GCCcore/10.3.0`` +``1.0.0`` | ``GCCcore/11.3.0`` +``1.0.0`` | ``GCCcore/9.3.0`` +``1.0.1`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/z/zingeR.md b/docs/version-specific/supported-software/z/zingeR.md new file mode 100644 index 000000000..be3e357f2 --- /dev/null +++ b/docs/version-specific/supported-software/z/zingeR.md @@ -0,0 +1,17 @@ +--- +search: + boost: 0.5 +--- +# zingeR + +Zero-Inflated Negative binomial Gene Expression in R + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``20180131`` | ``-R-3.5.1`` | ``foss/2018b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/z/zlib-ng.md b/docs/version-specific/supported-software/z/zlib-ng.md new file mode 100644 index 000000000..5fcba910b --- /dev/null +++ b/docs/version-specific/supported-software/z/zlib-ng.md @@ -0,0 +1,20 @@ +--- +search: + boost: 0.5 +--- +# zlib-ng + +zlib data compression library for the next generation systems + +*homepage*: + +version | toolchain +--------|---------- +``2.0.5`` | ``GCCcore/10.2.0`` +``2.0.6`` | ``GCCcore/10.3.0`` +``2.0.7`` | ``GCCcore/11.3.0`` +``2.1.6`` | ``GCCcore/12.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/z/zlib.md b/docs/version-specific/supported-software/z/zlib.md new file mode 100644 index 000000000..34ddaf601 --- /dev/null +++ b/docs/version-specific/supported-software/z/zlib.md @@ -0,0 +1,85 @@ +--- +search: + boost: 0.5 +--- +# zlib + +zlib is designed to be a free, general-purpose, legally unencumbered -- that is, not covered by any patents -- lossless data-compression library for use on virtually any computer hardware and operating system. + +*homepage*: + +version | toolchain +--------|---------- +``1.2.10`` | ``system`` +``1.2.11`` | ``FCC/4.5.0`` +``1.2.11`` | ``GCCcore/10.1.0`` +``1.2.11`` | ``GCCcore/10.2.0`` +``1.2.11`` | ``GCCcore/10.3.0`` +``1.2.11`` | ``GCCcore/11.1.0`` +``1.2.11`` | ``GCCcore/11.2.0`` +``1.2.11`` | ``GCCcore/5.4.0`` +``1.2.11`` | ``GCCcore/5.5.0`` +``1.2.11`` | ``GCCcore/6.3.0`` +``1.2.11`` | ``GCCcore/6.4.0`` +``1.2.11`` | ``GCCcore/7.1.0`` +``1.2.11`` | ``GCCcore/7.2.0`` +``1.2.11`` | ``GCCcore/7.3.0`` +``1.2.11`` | ``GCCcore/7.4.0`` +``1.2.11`` | ``GCCcore/8.1.0`` +``1.2.11`` | ``GCCcore/8.2.0`` +``1.2.11`` | ``GCCcore/8.3.0`` +``1.2.11`` | ``GCCcore/8.4.0`` +``1.2.11`` | ``GCCcore/9.1.0`` +``1.2.11`` | ``GCCcore/9.2.0`` +``1.2.11`` | ``GCCcore/9.3.0`` +``1.2.11`` | ``GCCcore/9.4.0`` +``1.2.11`` | ``GCCcore/system`` +``1.2.11`` | ``gimkl/2017a`` +``1.2.11`` | ``system`` +``1.2.12`` | ``GCCcore/11.3.0`` +``1.2.12`` | ``GCCcore/12.1.0`` +``1.2.12`` | ``GCCcore/12.2.0`` +``1.2.12`` | ``GCCcore/9.5.0`` +``1.2.12`` | ``system`` +``1.2.13`` | ``GCCcore/11.4.0`` +``1.2.13`` | ``GCCcore/12.3.0`` +``1.2.13`` | ``GCCcore/13.1.0`` +``1.2.13`` | ``GCCcore/13.2.0`` +``1.2.13`` | ``system`` +``1.2.7`` | ``GCC/4.8.1`` +``1.2.7`` | ``GCC/4.8.2`` +``1.2.8`` | ``GCC/4.8.2`` +``1.2.8`` | ``GCC/4.8.3`` +``1.2.8`` | ``GCC/4.8.4`` +``1.2.8`` | ``GCC/4.9.2-binutils-2.25`` +``1.2.8`` | ``GCC/4.9.2`` +``1.2.8`` | ``GCC/4.9.3-2.25`` +``1.2.8`` | ``GCC/4.9.3-binutils-2.25`` +``1.2.8`` | ``GCC/4.9.3`` +``1.2.8`` | ``GCC/5.1.0-binutils-2.25`` +``1.2.8`` | ``GCCcore/4.9.2`` +``1.2.8`` | ``GCCcore/4.9.3`` +``1.2.8`` | ``GCCcore/4.9.4`` +``1.2.8`` | ``GCCcore/5.3.0`` +``1.2.8`` | ``GCCcore/5.4.0`` +``1.2.8`` | ``GCCcore/6.1.0`` +``1.2.8`` | ``GCCcore/6.2.0`` +``1.2.8`` | ``GCCcore/6.3.0`` +``1.2.8`` | ``GNU/4.9.3-2.25`` +``1.2.8`` | ``foss/2016.04`` +``1.2.8`` | ``foss/2016a`` +``1.2.8`` | ``gimkl/2.11.5`` +``1.2.8`` | ``intel/2016.02-GCC-4.9`` +``1.2.8`` | ``intel/2016a`` +``1.2.8`` | ``intel/2016b`` +``1.2.8`` | ``intel/2017.01`` +``1.2.8`` | ``iomkl/2016.07`` +``1.2.8`` | ``iomkl/2016.09-GCC-4.9.3-2.25`` +``1.2.8`` | ``system`` +``1.3.1`` | ``GCCcore/13.3.0`` +``1.3.1`` | ``GCCcore/14.1.0`` +``1.3.1`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/z/zlibbioc.md b/docs/version-specific/supported-software/z/zlibbioc.md new file mode 100644 index 000000000..654218684 --- /dev/null +++ b/docs/version-specific/supported-software/z/zlibbioc.md @@ -0,0 +1,18 @@ +--- +search: + boost: 0.5 +--- +# zlibbioc + +This package uses the source code of zlib-1.2.5 to create libraries for systems that do not have these available via other means. + +*homepage*: + +version | versionsuffix | toolchain +--------|---------------|---------- +``1.18.0`` | ``-R-3.2.3`` | ``intel/2016a`` +``1.20.0`` | ``-R-3.3.1`` | ``intel/2016b`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/z/zsh.md b/docs/version-specific/supported-software/z/zsh.md new file mode 100644 index 000000000..f01855388 --- /dev/null +++ b/docs/version-specific/supported-software/z/zsh.md @@ -0,0 +1,21 @@ +--- +search: + boost: 0.5 +--- +# zsh + +Zsh is a shell designed for interactive use, although it is also a powerful scripting language. + +*homepage*: + +version | toolchain +--------|---------- +``5.1.1`` | ``GNU/4.9.3-2.25`` +``5.2`` | ``foss/2016b`` +``5.8`` | ``GCC/8.3.0`` +``5.8`` | ``system`` +``5.9`` | ``system`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/supported-software/z/zstd.md b/docs/version-specific/supported-software/z/zstd.md new file mode 100644 index 000000000..710631693 --- /dev/null +++ b/docs/version-specific/supported-software/z/zstd.md @@ -0,0 +1,30 @@ +--- +search: + boost: 0.5 +--- +# zstd + +Zstandard is a real-time compression algorithm, providing high compression ratios. It offers a very wide range of compression/speed trade-off, while being backed by a very fast decoder. It also offers a special mode for small data, called dictionary compression, and can create dictionaries from any sample set. + +*homepage*: + +version | toolchain +--------|---------- +``1.3.4`` | ``foss/2016b`` +``1.4.0`` | ``GCCcore/7.3.0`` +``1.4.0`` | ``GCCcore/8.2.0`` +``1.4.0`` | ``foss/2018b`` +``1.4.4`` | ``GCCcore/8.3.0`` +``1.4.4`` | ``GCCcore/9.3.0`` +``1.4.5`` | ``GCCcore/10.2.0`` +``1.4.9`` | ``GCCcore/10.3.0`` +``1.5.0`` | ``GCCcore/11.2.0`` +``1.5.2`` | ``GCCcore/11.3.0`` +``1.5.2`` | ``GCCcore/12.2.0`` +``1.5.5`` | ``GCCcore/12.3.0`` +``1.5.5`` | ``GCCcore/13.2.0`` +``1.5.6`` | ``GCCcore/13.3.0`` + + +*(quick links: [(all)](../index.md) - [0](../0/index.md) - [a](../a/index.md) - [b](../b/index.md) - [c](../c/index.md) - [d](../d/index.md) - [e](../e/index.md) - [f](../f/index.md) - [g](../g/index.md) - [h](../h/index.md) - [i](../i/index.md) - [j](../j/index.md) - [k](../k/index.md) - [l](../l/index.md) - [m](../m/index.md) - [n](../n/index.md) - [o](../o/index.md) - [p](../p/index.md) - [q](../q/index.md) - [r](../r/index.md) - [s](../s/index.md) - [t](../t/index.md) - [u](../u/index.md) - [v](../v/index.md) - [w](../w/index.md) - [x](../x/index.md) - [y](../y/index.md) - [z](../z/index.md))* + diff --git a/docs/version-specific/update-version-specific-docs.sh b/docs/version-specific/update-version-specific-docs.sh index 534b9cec9..be14eb47b 100755 --- a/docs/version-specific/update-version-specific-docs.sh +++ b/docs/version-specific/update-version-specific-docs.sh @@ -155,17 +155,14 @@ echo "* [List of known toolchains](toolchains.md)" >> $overview ################################################################################################### +tmp_software_json="$(mktemp)" echo "eb --list-software=detailed" skip_lines='Temporary log file|Processed.*easyconfigs|Found.*different software packages|^# List of supported software' -echo "# List of supported software" > supported-software.md -echo >> supported-software.md -echo "!!! note" >> supported-software.md -echo >> supported-software.md -echo " This page contains a lot of information, it may take a while to load." >> supported-software.md -echo >> supported-software.md -eb --list-software=detailed --output-format=md | egrep -v $skip_lines >> supported-software.md - -echo "* [List of supported software](supported-software.md)" >> $overview +eb --list-software=detailed --output-format=json | egrep -v "$skip_lines" > ${tmp_software_json} +python3 software-markdown-pages.py --jsonfile ${tmp_software_json} --output-base supported-software --delete-existing-output +rm ${tmp_software_json} + +echo "* [List of supported software](supported-software/index.md)" >> $overview ################################################################################################### diff --git a/mkdocs.yml b/mkdocs.yml index 418c48878..536d7e34a 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -105,7 +105,7 @@ nav: - EasyBuild release notes: release-notes.md - EasyBuild maintainers: maintainers.md - API: api/ - - List of supported software: version-specific/supported-software.md + - List of supported software: version-specific/supported-software/index.md - Getting help: getting-help.md - User survey: user-survey/index.md - Policies: @@ -194,6 +194,8 @@ plugins: - api/easybuild/* - api/summary.md - index.md + - version-specific/supported-software/* + - version-specific/supported-software/*/* # necessary for search to work - search - redirects: